{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/jAVHP1O3ovVQbNYMNIzH/wpMRKkGkFEMOkvrwI9UH/CxEljz9yU.js", "ssg:https://framerusercontent.com/modules/y6lENt1gqX7fEKPDpItq/80thPCIVkvO10DYbPuaT/zVlT9lFJb.js", "ssg:https://framerusercontent.com/modules/qGLcEZZfU6HKSnXk2MnE/b9FcJj5RP2LGEfTX7Bqy/PAPqm0Dxg.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}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}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);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,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,end}=itemSizes.current[i];if(end<current||start>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: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/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,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};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));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\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:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`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(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.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:[isMouseDevice&&/*#__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\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__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\",{decoding:\"async\",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=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"aVrBhQJ01\",\"DYt6Byb8I\",\"uGibs82up\"];const serializationHash=\"framer-AELBj\";const variantClassNames={aVrBhQJ01:\"framer-v-1a2ycpm\",DYt6Byb8I:\"framer-v-8c7vbm\",uGibs82up:\"framer-v-1wnz2kp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"aVrBhQJ01\",Mobile:\"uGibs82up\",Tablet:\"DYt6Byb8I\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aVrBhQJ01\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aVrBhQJ01\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1a2ycpm\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"aVrBhQJ01\",ref:refBinding,style:{...style},...addPropertyOverrides({DYt6Byb8I:{\"data-framer-name\":\"Tablet\"},uGibs82up:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15prz0a-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"G7MoPSmuN-container\",nodeId:\"G7MoPSmuN\",rendersWithMotion:true,scopeId:\"CxEljz9yU\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(18, 18, 18, 0.5)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.4,fadeContent:true,fadeInset:8,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:28},gap:60,height:\"100%\",id:\"G7MoPSmuN\",layoutId:\"G7MoPSmuN\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(18, 18, 18, 0.5)\",dotsBlur:4,dotsFill:\"rgb(245, 245, 245)\",dotsGap:10,dotsInset:14,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:238,pixelHeight:480,pixelWidth:238,src:\"https://framerusercontent.com/images/Dy7OzEdol1FNtfsyU9xWaebTHew.png\"},className:\"framer-121rc9e\",\"data-framer-name\":\"Ss1\",layoutDependency:layoutDependency,layoutId:\"iL9uohkZV\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:237,pixelHeight:480,pixelWidth:237,src:\"https://framerusercontent.com/images/CDU5P0cXlkTnfI1BiGoDrBNYl0.png\"},className:\"framer-rhzifg\",\"data-framer-name\":\"Ss2\",layoutDependency:layoutDependency,layoutId:\"nMCaW43v3\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:233,pixelHeight:480,pixelWidth:233,src:\"https://framerusercontent.com/images/KFPFa34buAUNbIOFPJTK9fthR8A.png\"},className:\"framer-vnlr0l\",\"data-framer-name\":\"Ss3\",layoutDependency:layoutDependency,layoutId:\"mYm5CWSsQ\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:236,pixelHeight:480,pixelWidth:236,src:\"https://framerusercontent.com/images/GWx1GnE7CTLGn9g2s7OVKo4yQg.png\"},className:\"framer-1ciu70i\",\"data-framer-name\":\"Ss4\",layoutDependency:layoutDependency,layoutId:\"DbCDH2PJn\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:233,pixelHeight:480,pixelWidth:233,src:\"https://framerusercontent.com/images/vQpfChb3kcoQIMWgkqa28pGbEtY.png\"},className:\"framer-1vzn23y\",\"data-framer-name\":\"Ss5\",layoutDependency:layoutDependency,layoutId:\"l1FFTJVun\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:233,pixelHeight:480,pixelWidth:233,src:\"https://framerusercontent.com/images/9zbNPjpxz7oAgRjspGoMddwjPE.png\"},className:\"framer-pv5djq\",\"data-framer-name\":\"Ss6\",layoutDependency:layoutDependency,layoutId:\"JGAA432vi\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:481,intrinsicWidth:236,pixelHeight:481,pixelWidth:236,src:\"https://framerusercontent.com/images/Yo7QbjgsofwnAp6hlXWLkpGD7J4.png\"},className:\"framer-grz8vg\",\"data-framer-name\":\"Ss7\",layoutDependency:layoutDependency,layoutId:\"gcKY4tbIG\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:236,pixelHeight:480,pixelWidth:236,src:\"https://framerusercontent.com/images/xhKKpjCsMhPefTGuq0j7TIsgvQk.png\"},className:\"framer-17qyl50\",\"data-framer-name\":\"Ss8\",layoutDependency:layoutDependency,layoutId:\"VXRfEM7sJ\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:235,pixelHeight:480,pixelWidth:235,src:\"https://framerusercontent.com/images/EV2fTHSHDXB0EntnBNXhgFfABq0.png\"},className:\"framer-196bwau\",\"data-framer-name\":\"Ss9\",layoutDependency:layoutDependency,layoutId:\"H7mPnoM9Q\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:232,pixelHeight:480,pixelWidth:232,src:\"https://framerusercontent.com/images/s3xTebnOgWmrVbeGRMiW4M.png\"},className:\"framer-1cyew29\",\"data-framer-name\":\"Ss10\",layoutDependency:layoutDependency,layoutId:\"VvN2BdL5h\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:234,pixelHeight:480,pixelWidth:234,src:\"https://framerusercontent.com/images/YPll1pRTyAWSCBclXExxuAcjNQ.png\"},className:\"framer-pyt402\",\"data-framer-name\":\"Ss11\",layoutDependency:layoutDependency,layoutId:\"ZNmFXMwOn\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:234,pixelHeight:480,pixelWidth:234,src:\"https://framerusercontent.com/images/1IlSq7t9sbfc2CH5aurULyYOVM.png\"},className:\"framer-4g0zne\",\"data-framer-name\":\"Ss12\",layoutDependency:layoutDependency,layoutId:\"UlOe7vkbH\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:235,pixelHeight:480,pixelWidth:235,src:\"https://framerusercontent.com/images/28pKHWb7keWeUthsLNPeyySWWn4.png\"},className:\"framer-708uqr\",\"data-framer-name\":\"Ss13\",layoutDependency:layoutDependency,layoutId:\"Hid9rkfoK\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({DYt6Byb8I:{arrowObject:{arrowFill:\"rgba(18, 18, 18, 0.5)\",arrowPadding:20,arrowRadius:40,arrowSize:34,showMouseControls:true},gap:40,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(18, 18, 18, 0.5)\",dotsBlur:4,dotsFill:\"rgb(245, 245, 245)\",dotsGap:8,dotsInset:14,dotSize:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"}},uGibs82up:{arrowObject:{arrowFill:\"rgba(18, 18, 18, 0.5)\",arrowPadding:20,arrowRadius:40,arrowSize:24,showMouseControls:true},gap:30,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(18, 18, 18, 0.5)\",dotsBlur:4,dotsFill:\"rgb(245, 245, 245)\",dotsGap:6,dotsInset:14,dotSize:4,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AELBj.framer-1i8qqgy, .framer-AELBj .framer-1i8qqgy { display: block; }\",\".framer-AELBj.framer-1a2ycpm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1144px; }\",\".framer-AELBj .framer-15prz0a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AELBj .framer-121rc9e { aspect-ratio: 0.49583333333333335 / 1; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 238px; }\",\".framer-AELBj .framer-rhzifg { aspect-ratio: 0.49375 / 1; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 237px; }\",\".framer-AELBj .framer-vnlr0l, .framer-AELBj .framer-1vzn23y, .framer-AELBj .framer-pv5djq { aspect-ratio: 0.48541666666666666 / 1; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 233px; }\",\".framer-AELBj .framer-1ciu70i, .framer-AELBj .framer-17qyl50 { aspect-ratio: 0.49166666666666664 / 1; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 236px; }\",\".framer-AELBj .framer-grz8vg { aspect-ratio: 0.49064449064449067 / 1; height: var(--framer-aspect-ratio-supported, 481px); overflow: visible; position: relative; width: 236px; }\",\".framer-AELBj .framer-196bwau, .framer-AELBj .framer-708uqr { aspect-ratio: 0.4895833333333333 / 1; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 235px; }\",\".framer-AELBj .framer-1cyew29 { aspect-ratio: 0.48333333333333334 / 1; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 232px; }\",\".framer-AELBj .framer-pyt402, .framer-AELBj .framer-4g0zne { aspect-ratio: 0.4875 / 1; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 234px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AELBj.framer-1a2ycpm { gap: 0px; } .framer-AELBj.framer-1a2ycpm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AELBj.framer-1a2ycpm > :first-child { margin-top: 0px; } .framer-AELBj.framer-1a2ycpm > :last-child { margin-bottom: 0px; } }\",\".framer-AELBj.framer-v-8c7vbm.framer-1a2ycpm, .framer-AELBj.framer-v-1wnz2kp.framer-1a2ycpm { width: min-content; }\",\".framer-AELBj.framer-v-8c7vbm .framer-15prz0a-container { width: 750px; }\",\".framer-AELBj.framer-v-1wnz2kp .framer-15prz0a-container { width: 330px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 518\n * @framerIntrinsicWidth 1144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DYt6Byb8I\":{\"layout\":[\"auto\",\"auto\"]},\"uGibs82up\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCxEljz9yU=withCSS(Component,css,\"framer-AELBj\");export default FramerCxEljz9yU;FramerCxEljz9yU.displayName=\"CarouselLowFid\";FramerCxEljz9yU.defaultProps={height:518,width:1144};addPropertyControls(FramerCxEljz9yU,{variant:{options:[\"aVrBhQJ01\",\"DYt6Byb8I\",\"uGibs82up\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCxEljz9yU,[{explicitInter:true,fonts:[]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCxEljz9yU\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DYt6Byb8I\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uGibs82up\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1144\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"518\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CxEljz9yU.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";const CarouselFonts=getFonts(Carousel);const serializationHash=\"framer-uGBXZ\";const variantClassNames={hzkGmqR52:\"framer-v-1afqfcj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hzkGmqR52\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1afqfcj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hzkGmqR52\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ye2wsx\",layoutDependency:layoutDependency,layoutId:\"OikJhfLsO\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nbzony-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ocOETUQ9n-container\",nodeId:\"ocOETUQ9n\",rendersWithMotion:true,scopeId:\"zVlT9lFJb\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(18, 18, 18, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:26,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.75,fadeContent:true,fadeInset:8,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:28},gap:28,height:\"100%\",id:\"ocOETUQ9n\",layoutId:\"ocOETUQ9n\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(18, 18, 18, 0.2)\",dotsBlur:4,dotsFill:\"rgb(245, 245, 245)\",dotsGap:8,dotsInset:11,dotSize:5,dotsOpacity:.5,dotsPadding:8,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:238,pixelHeight:480,pixelWidth:238,src:\"https://framerusercontent.com/images/Dy7OzEdol1FNtfsyU9xWaebTHew.png\"},className:\"framer-12n2to8\",\"data-framer-name\":\"Ss1\",layoutDependency:layoutDependency,layoutId:\"j4vXAewcs\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:237,pixelHeight:480,pixelWidth:237,src:\"https://framerusercontent.com/images/CDU5P0cXlkTnfI1BiGoDrBNYl0.png\"},className:\"framer-158ed89\",\"data-framer-name\":\"Ss2\",layoutDependency:layoutDependency,layoutId:\"tCJD4KPce\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:233,pixelHeight:480,pixelWidth:233,src:\"https://framerusercontent.com/images/KFPFa34buAUNbIOFPJTK9fthR8A.png\"},className:\"framer-1981ynm\",\"data-framer-name\":\"Ss3\",layoutDependency:layoutDependency,layoutId:\"QOmkV75MY\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:236,pixelHeight:480,pixelWidth:236,src:\"https://framerusercontent.com/images/GWx1GnE7CTLGn9g2s7OVKo4yQg.png\"},className:\"framer-6bpr9x\",\"data-framer-name\":\"Ss4\",layoutDependency:layoutDependency,layoutId:\"klb1CcWKd\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:233,pixelHeight:480,pixelWidth:233,src:\"https://framerusercontent.com/images/vQpfChb3kcoQIMWgkqa28pGbEtY.png\"},className:\"framer-l8olv5\",\"data-framer-name\":\"Ss5\",layoutDependency:layoutDependency,layoutId:\"k_ZjTUhsT\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:233,pixelHeight:480,pixelWidth:233,src:\"https://framerusercontent.com/images/9zbNPjpxz7oAgRjspGoMddwjPE.png\"},className:\"framer-1liuboe\",\"data-framer-name\":\"Ss6\",layoutDependency:layoutDependency,layoutId:\"VVyGbfg0p\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:481,intrinsicWidth:236,pixelHeight:481,pixelWidth:236,src:\"https://framerusercontent.com/images/Yo7QbjgsofwnAp6hlXWLkpGD7J4.png\"},className:\"framer-29ffv5\",\"data-framer-name\":\"Ss7\",layoutDependency:layoutDependency,layoutId:\"KBPXgiHyE\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:236,pixelHeight:480,pixelWidth:236,src:\"https://framerusercontent.com/images/xhKKpjCsMhPefTGuq0j7TIsgvQk.png\"},className:\"framer-r4y80j\",\"data-framer-name\":\"Ss8\",layoutDependency:layoutDependency,layoutId:\"WzPM2p7J_\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:235,pixelHeight:480,pixelWidth:235,src:\"https://framerusercontent.com/images/EV2fTHSHDXB0EntnBNXhgFfABq0.png\"},className:\"framer-yol87p\",\"data-framer-name\":\"Ss9\",layoutDependency:layoutDependency,layoutId:\"yyFlSVI6o\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:232,pixelHeight:480,pixelWidth:232,src:\"https://framerusercontent.com/images/s3xTebnOgWmrVbeGRMiW4M.png\"},className:\"framer-pwhrd0\",\"data-framer-name\":\"Ss10\",layoutDependency:layoutDependency,layoutId:\"Tca8Q3ck1\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:234,pixelHeight:480,pixelWidth:234,src:\"https://framerusercontent.com/images/YPll1pRTyAWSCBclXExxuAcjNQ.png\"},className:\"framer-t5libp\",\"data-framer-name\":\"Ss11\",layoutDependency:layoutDependency,layoutId:\"XdIYtmMBk\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:234,pixelHeight:480,pixelWidth:234,src:\"https://framerusercontent.com/images/1IlSq7t9sbfc2CH5aurULyYOVM.png\"},className:\"framer-aa1wun\",\"data-framer-name\":\"Ss12\",layoutDependency:layoutDependency,layoutId:\"U_flwza92\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:235,pixelHeight:480,pixelWidth:235,src:\"https://framerusercontent.com/images/28pKHWb7keWeUthsLNPeyySWWn4.png\"},className:\"framer-1lsyhyg\",\"data-framer-name\":\"Ss13\",layoutDependency:layoutDependency,layoutId:\"gZY38pjRa\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uGBXZ.framer-5reb7n, .framer-uGBXZ .framer-5reb7n { display: block; }\",\".framer-uGBXZ.framer-1afqfcj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 351px; }\",\".framer-uGBXZ .framer-ye2wsx { 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: visible; padding: 0px 18px 0px 18px; position: relative; width: 100%; }\",\".framer-uGBXZ .framer-1nbzony-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-uGBXZ .framer-12n2to8 { aspect-ratio: 0.49583333333333335 / 1; height: var(--framer-aspect-ratio-supported, 282px); overflow: visible; position: relative; width: 140px; }\",\".framer-uGBXZ .framer-158ed89 { aspect-ratio: 0.49375 / 1; height: var(--framer-aspect-ratio-supported, 284px); overflow: visible; position: relative; width: 140px; }\",\".framer-uGBXZ .framer-1981ynm, .framer-uGBXZ .framer-l8olv5 { aspect-ratio: 0.48541666666666666 / 1; height: var(--framer-aspect-ratio-supported, 284px); overflow: visible; position: relative; width: 138px; }\",\".framer-uGBXZ .framer-6bpr9x { aspect-ratio: 0.49166666666666664 / 1; height: var(--framer-aspect-ratio-supported, 281px); overflow: visible; position: relative; width: 138px; }\",\".framer-uGBXZ .framer-1liuboe { aspect-ratio: 0.48541666666666666 / 1; height: var(--framer-aspect-ratio-supported, 282px); overflow: visible; position: relative; width: 137px; }\",\".framer-uGBXZ .framer-29ffv5 { aspect-ratio: 0.49064449064449067 / 1; height: var(--framer-aspect-ratio-supported, 281px); overflow: visible; position: relative; width: 138px; }\",\".framer-uGBXZ .framer-r4y80j { aspect-ratio: 0.49166666666666664 / 1; height: var(--framer-aspect-ratio-supported, 285px); overflow: visible; position: relative; width: 140px; }\",\".framer-uGBXZ .framer-yol87p { aspect-ratio: 0.4895833333333333 / 1; height: var(--framer-aspect-ratio-supported, 284px); overflow: visible; position: relative; width: 139px; }\",\".framer-uGBXZ .framer-pwhrd0 { aspect-ratio: 0.48333333333333334 / 1; height: var(--framer-aspect-ratio-supported, 283px); overflow: visible; position: relative; width: 137px; }\",\".framer-uGBXZ .framer-t5libp { aspect-ratio: 0.4875 / 1; height: var(--framer-aspect-ratio-supported, 281px); overflow: visible; position: relative; width: 137px; }\",\".framer-uGBXZ .framer-aa1wun { aspect-ratio: 0.4875 / 1; height: var(--framer-aspect-ratio-supported, 283px); overflow: visible; position: relative; width: 138px; }\",\".framer-uGBXZ .framer-1lsyhyg { aspect-ratio: 0.4895833333333333 / 1; height: var(--framer-aspect-ratio-supported, 282px); overflow: visible; position: relative; width: 138px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uGBXZ.framer-1afqfcj, .framer-uGBXZ .framer-ye2wsx { gap: 0px; } .framer-uGBXZ.framer-1afqfcj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uGBXZ.framer-1afqfcj > :first-child { margin-top: 0px; } .framer-uGBXZ.framer-1afqfcj > :last-child { margin-bottom: 0px; } .framer-uGBXZ .framer-ye2wsx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uGBXZ .framer-ye2wsx > :first-child { margin-left: 0px; } .framer-uGBXZ .framer-ye2wsx > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 296\n * @framerIntrinsicWidth 351\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzVlT9lFJb=withCSS(Component,css,\"framer-uGBXZ\");export default FramerzVlT9lFJb;FramerzVlT9lFJb.displayName=\"CarouselLowFidMobile\";FramerzVlT9lFJb.defaultProps={height:296,width:351};addFonts(FramerzVlT9lFJb,[{explicitInter:true,fonts:[]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzVlT9lFJb\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"351\",\"framerIntrinsicHeight\":\"296\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zVlT9lFJb.map", "// Generated by Framer (100f99d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CarouselLowFid from\"#framer/local/canvasComponent/CxEljz9yU/CxEljz9yU.js\";import Navbar from\"#framer/local/canvasComponent/escVIaPj3/escVIaPj3.js\";import Copymail from\"#framer/local/canvasComponent/NblXFrbMn/NblXFrbMn.js\";import CarouselLowFidMobile from\"#framer/local/canvasComponent/zVlT9lFJb/zVlT9lFJb.js\";import*as sharedStyle from\"#framer/local/css/CXMAkGlFo/CXMAkGlFo.js\";import*as sharedStyle1 from\"#framer/local/css/F4WbHM5h5/F4WbHM5h5.js\";import metadataProvider from\"#framer/local/webPageMetadata/PAPqm0Dxg/PAPqm0Dxg.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const CarouselLowFidFonts=getFonts(CarouselLowFid);const CarouselLowFidMobileFonts=getFonts(CarouselLowFidMobile);const CopymailFonts=getFonts(Copymail);const breakpoints={K3GYY0tP9:\"(min-width: 810px) and (max-width: 1199px)\",qgFnMzCLe:\"(max-width: 809px)\",rCU2Zhm2r:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-qEAE9\";const variantClassNames={K3GYY0tP9:\"framer-v-12ksbi7\",qgFnMzCLe:\"framer-v-1mrpnqt\",rCU2Zhm2r:\"framer-v-p1r0nh\"};const transition1={bounce:.2,delay:0,duration:3,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={bounce:.2,delay:0,duration:2,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"rCU2Zhm2r\",Phone:\"qgFnMzCLe\",Tablet:\"K3GYY0tP9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rCU2Zhm2r\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"txYbVZkWW\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"XYNKRqLOU\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"lTI5XbKLX\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"z2bqK51Ku\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"XRM08rc1T\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"chzUbcbOo\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"ttCxjjhig\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"AA1_yd4Xo\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"ZZPs77BOU\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"qgFnMzCLe\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"qgFnMzCLe\")return true;return false;};const ref10=React.useRef(null);const elementId9=useRouteElementId(\"Le7lONU8a\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"HUxGv_QZa\");const ref12=React.useRef(null);const elementId11=useRouteElementId(\"FxRH7Znuo\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"rCU2Zhm2r\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(18, 18, 18); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-p1r0nh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2v9gp6\",\"data-framer-name\":\"HeaderSection\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{width:\"calc(min(100vw, 1040px) - 60px)\"},qgFnMzCLe:{height:60,width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"calc(min(86.6667vw, 1040px) - 60px)\",y:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u2ylbg-container\",nodeId:\"qqX_xeGWz\",rendersWithMotion:true,scopeId:\"PAPqm0Dxg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{style:{width:\"100%\"},variant:\"C4JC9LQNq\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"qqX_xeGWz\",layoutId:\"qqX_xeGWz\",style:{height:\"100%\",width:\"100%\"},variant:\"InGgP4qpa\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lzv5fs\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-julcd2\",\"data-framer-appear-id\":\"julcd2\",\"data-framer-name\":\"HeroComponents\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-199n87a\",\"data-framer-name\":\"TitleSection\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Flight Booking App\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Flight Booking App\"})}),className:\"framer-mfehfc\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"A case study on designing an intuitive air travel experience\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"A case study on designing an intuitive air travel experience\"})}),className:\"framer-ebyyw4\",fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4003,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+156.8),pixelHeight:4003,pixelWidth:6e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png\",srcSet:\"https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4003,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+113.2),pixelHeight:4003,pixelWidth:6e3,sizes:\"860px\",src:\"https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png\",srcSet:\"https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Eda39BPH6sKPeYelU1pKN86eZI.png 6000w\"},className:\"framer-bxn7sx\",\"data-framer-name\":\"FlightBookingAppMockups\"})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-falrbx\",\"data-framer-name\":\"Overview\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xptvso\",\"data-framer-name\":\"Chapter\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"PROJECT OVERVIEW\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"PROJECT OVERVIEW\"})}),className:\"framer-898vk8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ucwy3a\",\"data-framer-name\":\"ChapterTitle\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Design Challenge, Goals and Process Overview\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Design Challenge, Goals and Process Overview\"})}),className:\"framer-osb7rx\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bzs3p8\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7nf3xi\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19oucjp\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"The\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\" flight booking app\"}),\" makes the booking process effortless and enjoyable. Users can quickly find flights, compare prices, and complete their \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"bookings with ease\"}),\". Through\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\" in-depth research\"}),\" and testing, I crafted an app that eliminates the hassle and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"enhances\"}),\" the overall \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"experience\"}),\", making travel planning simpler and more exciting.\"]})}),className:\"framer-1kj3omt\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2lez2\",\"data-framer-name\":\"ChallengeSolution\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z1l5x1\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122l333\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m0q2nb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10.69 5.001 C 11.056 3.965 10.702 2.812 9.819 2.159 C 8.936 1.506 7.729 1.506 6.846 2.159 C 5.963 2.812 5.609 3.965 5.975 5.001 C 4.071 5.008 3.055 5.076 2.398 5.733 C 1.742 6.389 1.673 7.405 1.667 9.308 C 2.702 8.944 3.855 9.298 4.507 10.181 C 5.159 11.064 5.159 12.269 4.507 13.152 C 3.855 14.035 2.702 14.389 1.667 14.025 C 1.673 15.928 1.742 16.944 2.398 17.601 C 3.055 18.258 4.071 18.326 5.974 18.333 C 5.61 17.297 5.964 16.145 6.847 15.492 C 7.73 14.84 8.935 14.84 9.818 15.492 C 10.701 16.145 11.055 17.297 10.691 18.333 C 12.594 18.326 13.61 18.258 14.267 17.601 C 14.924 16.944 14.992 15.928 14.998 14.024 C 16.034 14.39 17.187 14.036 17.84 13.153 C 18.494 12.27 18.494 11.064 17.84 10.18 C 17.187 9.297 16.034 8.944 14.998 9.309 C 14.992 7.405 14.923 6.389 14.267 5.733 C 13.61 5.075 12.594 5.008 10.69 5.001 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(245, 245, 245)\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10247986786}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-324rgq\",\"data-framer-name\":\"Puzzle\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12.828 6.001 C 13.267 4.758 12.843 3.374 11.783 2.59 C 10.723 1.807 9.275 1.807 8.215 2.59 C 7.155 3.374 6.731 4.758 7.17 6.001 C 4.885 6.009 3.666 6.091 2.878 6.879 C 2.09 7.667 2.008 8.886 2 11.17 C 3.243 10.733 4.625 11.158 5.408 12.217 C 6.191 13.277 6.191 14.723 5.408 15.783 C 4.625 16.842 3.243 17.267 2 16.83 C 2.008 19.114 2.09 20.333 2.878 21.121 C 3.666 21.91 4.885 21.991 7.169 21.999 C 6.732 20.756 7.157 19.374 8.216 18.591 C 9.276 17.808 10.722 17.808 11.782 18.591 C 12.841 19.374 13.266 20.756 12.829 21.999 C 15.113 21.991 16.332 21.909 17.12 21.121 C 17.909 20.333 17.99 19.114 17.998 16.829 C 19.241 17.268 20.625 16.844 21.409 15.784 C 22.192 14.724 22.192 13.276 21.409 12.216 C 20.625 11.156 19.241 10.732 17.998 11.171 C 17.99 8.886 17.908 7.667 17.12 6.879 C 16.332 6.09 15.113 6.009 12.828 6.001 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(245, 245, 245)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11437090225,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Challenge\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Challenge\"})}),className:\"framer-1akwtyt\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"The challenge is the frustrating and complex nature of many flight booking platforms. Cluttered interfaces, confusing navigation, and unclear pricing overwhelm users, often leading to abandoned bookings and dissatisfaction. The process requires a more intuitive, user-centered approach to improve overall usability.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"The challenge is the frustrating and complex nature of many flight booking platforms. Cluttered interfaces, confusing navigation, and unclear pricing overwhelm users, often leading to abandoned bookings and dissatisfaction. The process requires a more intuitive, user-centered approach to improve overall usability.\"})}),className:\"framer-t8267o\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8tq85w\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a10vdn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b50iko\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.727 11.592 C 8.333 13.276 11.667 6.534 17.5 9.905 L 15 2.32 C 11.187 -0.25 7.136 5.713 2.5 3.854 L 6.667 18.333\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(245, 245, 245)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 15.833 5.833 C 11.25 2.5 7.5 10 3.75 7.5 M 6.667 4.087 L 9.019 10.833 M 10.981 2.5 L 13.333 8.849\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(245, 245, 245)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8770835278}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gfvlt0\",\"data-framer-name\":\"Racing-flag\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 5.672 13.91 C 10 15.931 14 7.841 21 11.886 L 18 2.784 C 13.424 -0.3 8.563 6.856 3 4.625 L 8 22\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(245, 245, 245)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 19 7 C 13.5 3 9 12 4.5 9 M 8 4.905 L 10.823 13 M 13.177 3 L 16 10.619\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(245, 245, 245)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10666644075,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Solution\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Solution\"})}),className:\"framer-yftv4o\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"My focus was on simplifying the booking process with a clean, intuitive interface. By conducting UX research, testing, and analysis, I aimed to identify key pain points and create the best possible experience. I wanted to streamline the flight search, price comparison, and payment steps, reducing friction and enhancing the overall user experience, making travel planning faster and more enjoyable.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"My focus was on simplifying the booking process with a clean, intuitive interface. By conducting UX research, testing, and analysis, I aimed to identify key pain points and create the best possible experience. I wanted to streamline the flight search, price comparison, and payment steps, reducing friction and enhancing the overall user experience, making travel planning faster and more enjoyable.\"})}),className:\"framer-13usvqu\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n19neu\",\"data-framer-name\":\"ProjectInfo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5plm7\",\"data-framer-name\":\"Timeline\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10udbwm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wa9e9g\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Timeline\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Timeline\"})}),className:\"framer-1qv125u\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"October 2024 - February 2025\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"October 2024 - February 2025\"})}),className:\"framer-19qc8oi\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-195jupi\",\"data-framer-name\":\"Responsibilities\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l3d30s\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nujmes\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Responsibilities\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Responsibilities\"})}),className:\"framer-h6lkdt\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"UX Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Visual Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Product Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Prototyping\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"UX Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Visual Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Product Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Prototyping\"})]}),className:\"framer-18apwd0\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-502e2r\",\"data-framer-name\":\"Tools\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gya0yf\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wc2ap8\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Tools\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Tools\"})}),className:\"framer-1xs8ztx\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Figma\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"FigJam\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"Google Workspace\",/*#__PURE__*/_jsx(\"br\",{}),\"Notion\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Figma\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"FigJam\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"Google Workspace\",/*#__PURE__*/_jsx(\"br\",{}),\"Notion\"]})]}),className:\"framer-7fyk0n\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-38o4i1\",\"data-framer-name\":\"ProcessTitle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"The Process\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"The Process\"})}),className:\"framer-j3zf5s\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-87wlk0\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uzsp8d\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12l3s2\",\"data-framer-name\":\"ProcessSection\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6d8i9c\",\"data-framer-name\":\"Research\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wkpn6b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"1\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"1\"})}),className:\"framer-1f5w4su\",fonts:[\"FS;Manrope-medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Research\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Research\"})}),className:\"framer-1mkzjgw\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Competitive Benchmarking\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Online Survey\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Usability Test\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Competitive Benchmarking\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Online Survey\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Usability Test\"})]}),className:\"framer-12am77e\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ilus8x\",\"data-framer-name\":\"Define\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7oiz4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"2\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"2\"})}),className:\"framer-poagk8\",fonts:[\"FS;Manrope-medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Define\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Define\"})}),className:\"framer-1fnvqo2\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Affinity Diagram\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Customer Journey Map\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"User Flow\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Affinity Diagram\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Customer Journey Map\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"User Flow\"})]}),className:\"framer-ikzvc0\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t73htq\",\"data-framer-name\":\"Ideation\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i63ru1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"3\"})}),className:\"framer-1u73n8f\",fonts:[\"FS;Manrope-medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Ideation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Ideation\"})}),className:\"framer-rm5ynh\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Low Fidelity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"High Fidelity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Prototype\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Low Fidelity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"High Fidelity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Prototype\"})]}),className:\"framer-cbfrd1\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tu9s5t\",\"data-framer-name\":\"Final Design\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10dhswr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"4\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"4\"})}),className:\"framer-14tnrdu\",fonts:[\"FS;Manrope-medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Final Steps\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(46, 161, 255)\"},children:\"Final Steps\"})}),className:\"framer-icbam8\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Handoff\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Final Thoughts\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Handoff\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Final Thoughts\"})]}),className:\"framer-vtjgm3\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ennxfx\",\"data-framer-name\":\"Research\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jxhsta\",\"data-framer-name\":\"CompetitiveBenchmarking\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2t2zd\",\"data-framer-name\":\"ChapterResearch\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"RESEARCH\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"RESEARCH\"})}),className:\"framer-hwvevy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j1r254\",\"data-framer-name\":\"ChapterTitle\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Competitive Benchmarking\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Competitive Benchmarking\"})}),className:\"framer-11pnf8m\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11xc51m\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-e6zikm\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p0ava6\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"Conducting competitive benchmarking was crucial to understand how existing flight booking apps approach \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"key user tasks\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"identify both strengths\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"weaknesses\"}),\" in their designs. By analyzing competitor platforms, I was able to uncover \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"design\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"patterns\"}),\", user \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"flow efficiencies\"}),\", and common \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"pain points\"}),\", which helped inform decisions on how to improve the user experience. This research provided valuable insights into \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"industry standards\"}),\" and highlighted areas where my design could stand out, ensuring a more intuitive, user-friendly solution.\"]})}),className:\"framer-ai9w4n\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1658,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2496.6+0+0+0+265),pixelHeight:1658,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png\",srcSet:\"https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png 1960w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1658,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4617.4+0+0+0+453),pixelHeight:1658,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png\",srcSet:\"https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1658,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2526.6+0+0+0+265),pixelHeight:1658,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png\",srcSet:\"https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vy8ZcRnomhxfYmgUTunbpXWHZc.png 1960w\"},className:\"framer-tinohs\",\"data-framer-name\":\"Benchmarking\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u0a727\",\"data-framer-name\":\"CBSubtitle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Here are some key insights I gained from the benchmarking process:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Here are some key insights I gained from the benchmarking process:\"})}),className:\"framer-1z10io3\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p09pfb\",\"data-framer-name\":\"CBKeys\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkinld\",\"data-framer-name\":\"Strengths\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Strenghts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Strenghts\"})}),className:\"framer-g2lduw\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Simple, clean design with intuitive navigation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'Prominent \"book flight\" function'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Minimalistic, intuitive search with clear error states\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Saved search results, highlighted dates, and \"}),/*#__PURE__*/_jsx(\"p\",{children:\"easy reset\"})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear visual hierarchy for key fields\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Easy flight selection with price comparison\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear flight details (price, date, times, airlines)\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Neatly presented flight cards and clear fare display\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Strong visual hierarchy in booking summary\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear fare conditions and cost display\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Simple, clean design with intuitive navigation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'Prominent \"book flight\" function'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Minimalistic, intuitive search with clear error states\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Saved search results, highlighted dates, and \"}),/*#__PURE__*/_jsx(\"p\",{children:\"easy reset\"})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear visual hierarchy for key fields\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Easy flight selection with price comparison\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear flight details (price, date, times, airlines)\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Neatly presented flight cards and clear fare display\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Strong visual hierarchy in booking summary\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear fare conditions and cost display\"})})]})}),className:\"framer-1cov8jo\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq5mkf\",\"data-framer-name\":\"PainPoints\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Pain Points\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Pain Points\"})}),className:\"framer-57knio\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Limited user customization options\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Overwhelming amount of information on \"}),/*#__PURE__*/_jsx(\"p\",{children:\"some screens\"})]})]}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Confusing flight class distinctions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Filters and sorting could be better organized\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Difficulty in deselecting options, disrupting flow\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Inconsistent contrast and section separation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Lack of progress indicator during booking\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"No clear option to edit previous selections \"}),/*#__PURE__*/_jsx(\"p\",{children:\"easily\"})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Lack of intuitive navigation for complex pages\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Limited user customization options\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Overwhelming amount of information on \"}),/*#__PURE__*/_jsx(\"p\",{children:\"some screens\"})]})]}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Confusing flight class distinctions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Filters and sorting could be better organized\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Difficulty in deselecting options, disrupting flow\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Inconsistent contrast and section separation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Lack of progress indicator during booking\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"No clear option to edit previous selections \"}),/*#__PURE__*/_jsx(\"p\",{children:\"easily\"})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Lack of intuitive navigation for complex pages\"})})]})]}),className:\"framer-1ukzy8t\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lkzs24\",\"data-framer-name\":\"OnlineSurvey\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d0mrjo\",\"data-framer-name\":\"ChapterResearch\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"RESEARCH\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"RESEARCH\"})}),className:\"framer-hwkabr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-170a96v\",\"data-framer-name\":\"ChapterTitle\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Online Survey\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Online Survey\"})}),className:\"framer-zuwaqd\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sis1uk\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ee9wu6\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-js4er7\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"To gather insights on \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"user needs and behaviors\"}),\", I created an online survey \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"focused on flight booking experiences\"}),\". I defined clear research goals, designed the survey using Google Forms, and distributed it through personal networks. The results helped shape key design decisions in my case study.\"]})}),className:\"framer-1ywcz9q\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2206,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2496.6+0+2000.4+0+265),pixelHeight:2206,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png\",srcSet:\"https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png?scale-down-to=1024 909w,https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png?scale-down-to=2048 1819w,https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png 1960w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2206,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4617.4+0+4094+0+453),pixelHeight:2206,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png\",srcSet:\"https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png?scale-down-to=1024 909w,https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png?scale-down-to=2048 1819w,https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2206,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2526.6+0+1695.2+0+265),pixelHeight:2206,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png\",srcSet:\"https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png?scale-down-to=1024 909w,https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png?scale-down-to=2048 1819w,https://framerusercontent.com/images/6KYVUBn4LAjFTAuHLiUn7QLHaDw.png 1960w\"},className:\"framer-r50sse\",\"data-framer-name\":\"Survey2\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4br5ki\",\"data-framer-name\":\"SurveySubtitle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"The survey revealed the following insights:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"The survey revealed the following insights:\"})}),className:\"framer-d580ry\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y6dne6\",\"data-framer-name\":\"SurveyKeys\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yge4c4\",\"data-framer-name\":\"Strengths\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Insights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Insights\"})}),className:\"framer-1v4hb2p\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Prioritize a consistent interface across devices and languages\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Design with accessibility and clarity for all age groups\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Optimize for high-traffic periods, especially summer\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Highlight price, non-stop options, and baggage info early in the flow\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Simplify tasks to reduce user friction and improve completion rates\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Improve mobile usability, as users lean toward websites\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Focus on price-checking and info discovery in early booking steps\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Prioritize a consistent interface across devices and languages\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Design with accessibility and clarity for all age groups\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Optimize for high-traffic periods, especially summer\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Highlight price, non-stop options, and baggage info early in the flow\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Simplify tasks to reduce user friction and improve completion rates\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Improve mobile usability, as users lean toward websites\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Focus on price-checking and info discovery in early booking steps\"})})]})]}),className:\"framer-dpots2\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ttwj3d\",\"data-framer-name\":\"UsabilityTest\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1awcu6h\",\"data-framer-name\":\"ChapterResearch\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"RESEARCH\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"RESEARCH\"})}),className:\"framer-1ghml21\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m09v54\",\"data-framer-name\":\"ChapterTitle\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Usability Test\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Usability Test\"})}),className:\"framer-1d9pvgv\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16qmnlx\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gsjo1x\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qu0a10\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"To better understand how \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"users interact with existing flight booking platforms\"}),\", I conducted a comparative usability test using the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Austrian Airlines app\"}),\" and the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Ryanair app\"}),\". Testing two contrasting apps allowed me to observe how different design approaches impact usability, especially in terms of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"navigation, task completion, and user satisfaction\"}),\". It also provided valuable insights into \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"user expectations, common frustrations, and mental models\"}),\".\"]})}),className:\"framer-1cqk3u5\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2496.6+0+3838.8+0+265),pixelHeight:720,pixelWidth:1108,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png\",srcSet:\"https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png 1108w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4617.4+0+6736+0+453),pixelHeight:720,pixelWidth:1108,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png\",srcSet:\"https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png 1108w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2526.6+0+3563.6+0+265),pixelHeight:720,pixelWidth:1108,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png\",srcSet:\"https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/baev2cfePWkw7DXuKSAjoHxpQ8.png 1108w\"},className:\"framer-12lhnvz\",\"data-framer-name\":\"Usabilitytest2\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lp2msq\",\"data-framer-name\":\"UTSubtitle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Here are some insights I learned from the usability test\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Here are some insights I learned from the usability test\"})}),className:\"framer-1dopc0m\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ez0rmv\",\"data-framer-name\":\"UTKeys\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qpq12d\",\"data-framer-name\":\"Strengths\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Key Points\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Key Points\"})}),className:\"framer-1dfk4u1\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Price prioritization: Emphasize easy price comparison and access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sorting: Include a simple price sorting feature\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Guest access: Allow guest booking without registration\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Navigation confusion: Ensure clear, distinct buttons to avoid confusion\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Price details: Display accurate prices with no misleading information\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Booking summary: Highlight key details (e.g., passengers, price) for clarity\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Currency option: Make currency selection easily accessible\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Price comparison: Simplify price comparison and make it intuitive\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Information overload: Keep screens clean and concise, focusing on key details\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Price prioritization: Emphasize easy price comparison and access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sorting: Include a simple price sorting feature\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Guest access: Allow guest booking without registration\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Navigation confusion: Ensure clear, distinct buttons to avoid confusion\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Price details: Display accurate prices with no misleading information\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Booking summary: Highlight key details (e.g., passengers, price) for clarity\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Currency option: Make currency selection easily accessible\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Price comparison: Simplify price comparison and make it intuitive\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Information overload: Keep screens clean and concise, focusing on key details\"})})]})}),className:\"framer-1s402l4\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rls08l\",\"data-framer-name\":\"PainPoints\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"UX UI Takeaways\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"UX UI Takeaways\"})}),className:\"framer-1alt7u7\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Focus on clarity and simplicity throughout the app\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Make core features like price comparison, sorting, and booking easy to find and intuitive\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Reduce confusion by minimizing redundant or unclear buttons and labels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Ensure a seamless, guest-friendly booking process with simple navigation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Provide users with clear, concise information without overwhelming them with too much content at once\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Focus on clarity and simplicity throughout the app\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Make core features like price comparison, sorting, and booking easy to find and intuitive\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Reduce confusion by minimizing redundant or unclear buttons and labels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Ensure a seamless, guest-friendly booking process with simple navigation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Provide users with clear, concise information without overwhelming them with too much content at once\"})})]})]}),className:\"framer-15i67j7\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13k81up\",\"data-framer-name\":\"Define\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e320mf\",\"data-framer-name\":\"AffinityDiagram\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rbp43i\",\"data-framer-name\":\"ChapterDefine\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"DEFINE\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"DEFINE\"})}),className:\"framer-c06zlt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wz9kpz\",\"data-framer-name\":\"ChapterTitle\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Affinity Diagram\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Affinity Diagram\"})}),className:\"framer-9u4i8d\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c1dr1z\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gg67ex\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4qyoi9\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"After conducting competitive benchmarking, an online survey, usability testing, and note-taking, I created an affinity diagram \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"to organize both user pain points and positive design elements\"}),\". I \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"grouped\"}),\" the insights into \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"key themes\"}),\", which helped me \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"identify crucial areas for improvement\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"effective UX features\"}),\". This diagram not only highlights opportunities for refinement but also provides valuable guidance for enhancing the overall flight booking app experience.\"]})}),className:\"framer-v88v7v\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2246,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9373.4+0+0+0+265),pixelHeight:2184,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png\",srcSet:\"https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png?scale-down-to=1024 918w,https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png?scale-down-to=2048 1837w,https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png 1960w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2246,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14453.4+0+0+0+453),pixelHeight:2184,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png\",srcSet:\"https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png?scale-down-to=1024 918w,https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png?scale-down-to=2048 1837w,https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2246,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8460.2+0+0+0+265),pixelHeight:2184,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png\",srcSet:\"https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png?scale-down-to=1024 918w,https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png?scale-down-to=2048 1837w,https://framerusercontent.com/images/FcpRGUaPcysrreVwzfr1ENXjL8.png 1960w\"},className:\"framer-11lgxul\",\"data-framer-name\":\"Affinity\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dnq1p4\",\"data-framer-name\":\"CustomerJourneyMap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tza3ay\",\"data-framer-name\":\"ChapterDefine\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"DEFINE\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"DEFINE\"})}),className:\"framer-h8mui2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-314l66\",\"data-framer-name\":\"ChapterTitle\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Customer Journey Map\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Customer Journey Map\"})}),className:\"framer-1pqkoua\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h1ji3w\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m8w51z\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sd5h4p\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"The next step in the design process was creating a customer journey map \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"to better understand how users navigate the flight booking app\"}),\" from start to finish. This map helped to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"highlight\"}),\" key moments of both \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"positive experiences and pain points \"}),\"throughout the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"user journey\"}),\". By mapping out each step, I was able to visualize users\u2019 goals, behaviors, and mental models, as well as identify areas where their emotions fluctuate. The journey map also \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"provided a clear overview\"}),\" of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"effective design features\"}),\" and areas in need of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"improvement\"}),\". Incorporating an emotion graph and user quotes further enriched the map, helping to pinpoint the strengths and weaknesses in the app\u2019s flow and guiding the next phase of design refinement.\"]})}),className:\"framer-ayissr\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m8zvfr\",\"data-framer-name\":\"Strengths\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Significant Findings\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Significant Findings\"})}),className:\"framer-111qeag\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"The journey map revealed key UX issues, including overwhelming information, cluttered interfaces, and confusion around return/one-way flights. Users struggled with unclear fare details, the absence of a non-stop flight indicator, and poor overall clarity. These pain points highlight the need for a more streamlined, intuitive design to improve user experience and ensure clearer, more accessible information.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"The journey map revealed key UX issues, including overwhelming information, cluttered interfaces, and confusion around return/one-way flights. Users struggled with unclear fare details, the absence of a non-stop flight indicator, and poor overall clarity. These pain points highlight the need for a more streamlined, intuitive design to improve user experience and ensure clearer, more accessible information.\"})}),className:\"framer-1lgtagc\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2246,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9373.4+0+1478+0+459),pixelHeight:2246,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png\",srcSet:\"https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png?scale-down-to=1024 893w,https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png?scale-down-to=2048 1787w,https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png 1960w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2246,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14453.4+0+1636+0+731),pixelHeight:2246,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png\",srcSet:\"https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png?scale-down-to=1024 893w,https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png?scale-down-to=2048 1787w,https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2246,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8460.2+0+1478+0+459),pixelHeight:2246,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png\",srcSet:\"https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png?scale-down-to=1024 893w,https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png?scale-down-to=2048 1787w,https://framerusercontent.com/images/DLRrQNciHr328O0jFH8hsfNIBMY.png 1960w\"},className:\"framer-1butw1h\",\"data-framer-name\":\"CustomerJourneyMap\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y2qkv\",\"data-framer-name\":\"FlowDiagram\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6aapo3\",\"data-framer-name\":\"ChapterDefine\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"DEFINE\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"DEFINE\"})}),className:\"framer-4v8lqd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t1njda\",\"data-framer-name\":\"ChapterTitle\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"User Flow\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"User Flow\"})}),className:\"framer-17si17u\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ee75cv\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y5jdrz\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fpphhs\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"To begin shaping a smoother and more intuitive booking experience, I created a detailed flow diagram that \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"maps out the entire flight booking process\"}),\" - from the homepage to confirmation. This step was essential in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"translating insights\"}),\" from my affinity diagram and customer journey map into a structured, solution-focused design.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"By outlining each screen state and user interaction along the ideal, frustration-free path, I was able to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"identify opportunities to reduce friction, enhance clarity, and improve overall usability\"}),\". The flow includes \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"key stages\"}),\" like f\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"light search, selection, passenger details, add-ons, payment, and confirmation\"}),\" - ensuring that every interaction is intentional and aligned with user expectations.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"This process allowed me to tackle UX challenges step by step, focusing on functionality and logic before moving into visual design. The result is a user-centered flow that lays the groundwork for an efficient and enjoyable flight booking experience.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"To begin shaping a smoother and more intuitive booking experience, I created a detailed flow diagram that \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"maps out the entire flight booking process\"}),\" - from the homepage to confirmation. This step was essential in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"translating insights\"}),\" from my affinity diagram and customer journey map into a structured, solution-focused design.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"By outlining each screen state and user interaction along the ideal, frustration-free path, I was able to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"identify opportunities to reduce friction, enhance clarity, and improve overall usability\"}),\". The flow includes \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"key stages\"}),\" like f\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"light search, selection, passenger details, add-ons, payment, and confirmation\"}),\" - ensuring that every interaction is intentional and aligned with user expectations.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"This process allowed me to tackle UX challenges step by step, focusing on functionality and logic before moving into visual design. The result is a user-centered flow that lays the groundwork for an efficient and enjoyable flight booking experience.\"})]}),className:\"framer-1ksft89\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2222,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9373.4+0+4273+0+643),pixelHeight:2222,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png\",srcSet:\"https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png?scale-down-to=1024 903w,https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png?scale-down-to=2048 1806w,https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png 1960w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2222,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14453.4+0+4673+0+817),pixelHeight:2222,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png\",srcSet:\"https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png?scale-down-to=1024 903w,https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png?scale-down-to=2048 1806w,https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2222,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8460.2+0+4273+0+643),pixelHeight:2222,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png\",srcSet:\"https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png?scale-down-to=1024 903w,https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png?scale-down-to=2048 1806w,https://framerusercontent.com/images/A9XNFS8gZWdXqfstMktPnrPzc.png 1960w\"},className:\"framer-1swouxk\",\"data-framer-name\":\"FlowDiagram2\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qajq1r\",\"data-framer-name\":\"Ideation\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3pabyk\",\"data-framer-name\":\"LowFidelity\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vezjtd\",\"data-framer-name\":\"ChapterDefine\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"IDEATION\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"IDEATION\"})}),className:\"framer-1mvx4jx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qe5ij3\",\"data-framer-name\":\"ChapterTitle\",id:elementId8,ref:ref9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Low Fidelity\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Low Fidelity\"})}),className:\"framer-1q2nxfa\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s32kki\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fkipp8\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wewrs9\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"After completing the Define stage - guided by insights from the affinity diagram, customer journey map, and user flow - I began \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"bringing ideas to life through low-fidelity sketches\"}),\". This phase allowed me to explore layout concepts, test structure, and translate user needs into tangible interface solutions. Working in low fidelity helped me stay focused on usability and functionality without getting distracted by visual details.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"main goals\"}),\" of this sketching phase were to:\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"After completing the Define stage - guided by insights from the affinity diagram, customer journey map, and user flow - I began \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"bringing ideas to life through low-fidelity sketches\"}),\". This phase allowed me to explore layout concepts, test structure, and translate user needs into tangible interface solutions. Working in low fidelity helped me stay focused on usability and functionality without getting distracted by visual details.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"main goals\"}),\" of this sketching phase were to:\"]})]}),className:\"framer-1d0wihy\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sf6wm9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Simplify the booking process with clear navigation\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Highlight key features like price comparison and a clear fare breakdown\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Reduce information overload and improve content hierarchy\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Make core actions (search, select, book) intuitive and accessible\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Ensure a smooth, step-by-step flow from search to confirmation\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Simplify the booking process with clear navigation\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Highlight key features like price comparison and a clear fare breakdown\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Reduce information overload and improve content hierarchy\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Make core actions (search, select, book) intuitive and accessible\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Ensure a smooth, step-by-step flow from search to confirmation\"})})]})]}),className:\"framer-1mpwj17\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"These early sketches laid the groundwork for iterating and refining the user interface in the next stage of the design process.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"These early sketches laid the groundwork for iterating and refining the user interface in the next stage of the design process.\"})}),className:\"framer-hkcp3n\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{y:(componentViewport?.y||0)+0+15490.4+0+0+0+1297}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:518,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,y:(componentViewport?.y||0)+0+14607.2+0+0+0+1297,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jq8bgy-container hidden-1mrpnqt\",nodeId:\"OEmF0PIZN\",scopeId:\"PAPqm0Dxg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{variant:\"DYt6Byb8I\"}},children:/*#__PURE__*/_jsx(CarouselLowFid,{height:\"100%\",id:\"OEmF0PIZN\",layoutId:\"OEmF0PIZN\",style:{width:\"100%\"},variant:\"aVrBhQJ01\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{height:296,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,y:(componentViewport?.y||0)+0+21144.4+0+0+0+1333}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v64d78-container hidden-p1r0nh hidden-12ksbi7\",nodeId:\"ehOnDiHA_\",scopeId:\"PAPqm0Dxg\",children:/*#__PURE__*/_jsx(CarouselLowFidMobile,{height:\"100%\",id:\"ehOnDiHA_\",layoutId:\"ehOnDiHA_\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bvswrf\",\"data-framer-name\":\"Flow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"Alongside my low-fidelity sketches, I created a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"flow with annotations\"}),\" to clearly \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"outline\"}),\" each screen\u2019s \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"functionality and logic\"}),\" - ensuring both developers and stakeholders can easily understand the structure and purpose behind the user experience.\"]})}),className:\"framer-8n7boh\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1896,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+0+0+2001),pixelHeight:1896,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png\",srcSet:\"https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png 1960w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1896,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+0+0+1815),pixelHeight:1896,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png\",srcSet:\"https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1896,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+0+0+2001),pixelHeight:1896,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png\",srcSet:\"https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RvkiKPEWJHwp7NWhRiEWUsBfFw.png 1960w\"},className:\"framer-1fn9em0\",\"data-framer-name\":\"InteractionSketch\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref10,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-evc84w\",\"data-framer-name\":\"HighFidelity\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xukq21\",\"data-framer-name\":\"ChapterDefine\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"IDEATION\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"IDEATION\"})}),className:\"framer-hcgo5o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fokgjy\",\"data-framer-name\":\"ChapterTitle\",id:elementId9,ref:ref10,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"High Fidelity\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"High Fidelity\"})}),className:\"framer-1vtdm2y\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c54h3b\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-99mt3r\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lgqyqz\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"Refining the low-fidelity sketches into a high-fidelity prototype, the focus was on \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"creating a seamless and intuitive flight booking experience\"}),\". The design aims to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"simplify navigation\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"streamline the process\"}),\", ensuring that users can \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"easily compare prices, complete core actions, and navigate the journey from search to confirmation\"}),\" with minimal friction. Key features like clear fare breakdowns, a logical content hierarchy, and accessible options are prioritized to avoid overwhelming the user. The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"result\"}),\" is a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"smooth\"}),\", step-by-step flow that empowers users to make informed decisions while keeping the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"experience clean, efficient, and user-friendly\"}),\".\"]})}),className:\"framer-1bwqk3\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+3039+0+275),pixelHeight:3e3,pixelWidth:4500,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg 4500w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+2823+0+463),pixelHeight:3e3,pixelWidth:4500,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg 4500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+3039+0+275),pixelHeight:3e3,pixelWidth:4500,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zED7NtlVpig9ZalYsJgl7Q31oI0.jpg 4500w\"},className:\"framer-1mp9b9j\",\"data-framer-name\":\"AllScreensSS\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ruc83\",\"data-framer-name\":\"FlighInfoEntry\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6r0e4o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Flight Info Entry\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Flight Info Entry\"})}),className:\"framer-194p2fh\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"The homepage was designed to make the flight booking process as intuitive and seamless as possible from the very first interaction.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"The homepage was designed to make the flight booking process as intuitive and seamless as possible from the very first interaction.\"})}),className:\"framer-1cg1q0y\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qwk78i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Flight search placed front and center for immediate user engagement\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Prominent, easy-to-use input fields for destination, departure, dates and passengers\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Toggle option for round-trip and one-way to offer booking flexibility\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"City search, calendar, and passenger selection implemented as bottom sheets for better focus and smoother interaction\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Bottom sheet components reduce screen clutter and keep the user in context\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clean, minimal layout to reduce cognitive load and guide users effortlessly\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Designed to streamline the first step of booking and eliminate friction early in the flow\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Flight search placed front and center for immediate user engagement\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Prominent, easy-to-use input fields for destination, departure, dates and passengers\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Toggle option for round-trip and one-way to offer booking flexibility\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"City search, calendar, and passenger selection implemented as bottom sheets for better focus and smoother interaction\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Bottom sheet components reduce screen clutter and keep the user in context\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clean, minimal layout to reduce cognitive load and guide users effortlessly\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Designed to streamline the first step of booking and eliminate friction early in the flow\"})})]})]}),className:\"framer-m58vn6\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+3039+0+1775+168),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/2KXiK2jVU7sIYI8HDsWyObTK8.gif\",srcSet:\"https://framerusercontent.com/images/2KXiK2jVU7sIYI8HDsWyObTK8.gif 424w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+2823+0+1963+60+1032),pixelHeight:840,pixelWidth:424,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/2KXiK2jVU7sIYI8HDsWyObTK8.gif\",srcSet:\"https://framerusercontent.com/images/2KXiK2jVU7sIYI8HDsWyObTK8.gif 424w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+3039+0+1775+168),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/2KXiK2jVU7sIYI8HDsWyObTK8.gif\",srcSet:\"https://framerusercontent.com/images/2KXiK2jVU7sIYI8HDsWyObTK8.gif 424w\"},className:\"framer-1slqzmb\",\"data-framer-name\":\"HomescreenGif\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tq3wkc\",\"data-framer-name\":\"Results\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+3039+0+2971+108),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/dWFRBE0k4k5ckezSD7HcOsT268.gif\",srcSet:\"https://framerusercontent.com/images/dWFRBE0k4k5ckezSD7HcOsT268.gif 424w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+2823+0+3955+20+1032),pixelHeight:840,pixelWidth:424,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/dWFRBE0k4k5ckezSD7HcOsT268.gif\",srcSet:\"https://framerusercontent.com/images/dWFRBE0k4k5ckezSD7HcOsT268.gif 424w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+3039+0+2951+108),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/dWFRBE0k4k5ckezSD7HcOsT268.gif\",srcSet:\"https://framerusercontent.com/images/dWFRBE0k4k5ckezSD7HcOsT268.gif 424w\"},className:\"framer-1pbxbk8\",\"data-framer-name\":\"ResultsGif\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ax94tp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Explore & Choose Flights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Explore & Choose Flights\"})}),className:\"framer-zmpy3q\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"To improve the experience of browsing and comparing flight options, I designed the results screen to provide users with clarity, flexibility, and control during a critical decision-making phase.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"To improve the experience of browsing and comparing flight options, I designed the results screen to provide users with clarity, flexibility, and control during a critical decision-making phase.\"})}),className:\"framer-1icdam5\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kw2em5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear flight cards with key info at a glance\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Expandable cards for detailed flight breakdown\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sticky progress bar to show booking stage\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sort and filter options for personalized results\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Currency changer for transparent pricing\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Editable date and flight input directly from results\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clean, minimal UI with friendly visual touches\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear flight cards with key info at a glance\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Expandable cards for detailed flight breakdown\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sticky progress bar to show booking stage\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sort and filter options for personalized results\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Currency changer for transparent pricing\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Editable date and flight input directly from results\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clean, minimal UI with friendly visual touches\"})})]})]}),className:\"framer-pg92n\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cy78an\",\"data-framer-name\":\"FaresAndSummary\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v2oqkt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Fare Selection & Booking Overview\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Fare Selection & Booking Overview\"})}),className:\"framer-1ryijuu\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"To reduce user confusion and improve clarity around fare selection and pricing, I designed a streamlined interface that makes comparing and selecting fares intuitive, while ensuring the booking summary is transparent and editable.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"To reduce user confusion and improve clarity around fare selection and pricing, I designed a streamlined interface that makes comparing and selecting fares intuitive, while ensuring the booking summary is transparent and editable.\"})}),className:\"framer-16fy9ky\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12qjnha\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Bottom sheet for fare selection to maintain context\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear category switch (between Economy, Business, First) for quick comparison\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Cards with key benefits, large price display for clarity\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'Prominent \"Select this Fare\" CTA for decisive action'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Expandable cards for detailed fare breakdown\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Editable outbound and return info in booking summary\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear, concise display of total price and number of passengers\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Compact bottom sheet for price recap without overwhelming UI that opens up for detailed information\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Bottom sheet for fare selection to maintain context\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear category switch (between Economy, Business, First) for quick comparison\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Cards with key benefits, large price display for clarity\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'Prominent \"Select this Fare\" CTA for decisive action'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Expandable cards for detailed fare breakdown\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Editable outbound and return info in booking summary\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear, concise display of total price and number of passengers\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Compact bottom sheet for price recap without overwhelming UI that opens up for detailed information\"})})]})}),className:\"framer-1flt0dk\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+3039+0+4107+171),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/xSpjUpcT9aHb781K4yNjlh2mNs.gif\",srcSet:\"https://framerusercontent.com/images/xSpjUpcT9aHb781K4yNjlh2mNs.gif 424w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+2823+0+5907+20+1136),pixelHeight:840,pixelWidth:424,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/xSpjUpcT9aHb781K4yNjlh2mNs.gif\",srcSet:\"https://framerusercontent.com/images/xSpjUpcT9aHb781K4yNjlh2mNs.gif 424w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+3039+0+4067+171),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/xSpjUpcT9aHb781K4yNjlh2mNs.gif\",srcSet:\"https://framerusercontent.com/images/xSpjUpcT9aHb781K4yNjlh2mNs.gif 424w\"},className:\"framer-1p5urrj\",\"data-framer-name\":\"FareGif\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mb0g1k\",\"data-framer-name\":\"PassengerInfo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+3039+0+5369+0),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/ZQtXno9G5s3FVgoxluSkY3fSw.gif\",srcSet:\"https://framerusercontent.com/images/ZQtXno9G5s3FVgoxluSkY3fSw.gif 424w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+2823+0+7963+20+824),pixelHeight:840,pixelWidth:424,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/ZQtXno9G5s3FVgoxluSkY3fSw.gif\",srcSet:\"https://framerusercontent.com/images/ZQtXno9G5s3FVgoxluSkY3fSw.gif 424w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+3039+0+5309+0),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/ZQtXno9G5s3FVgoxluSkY3fSw.gif\",srcSet:\"https://framerusercontent.com/images/ZQtXno9G5s3FVgoxluSkY3fSw.gif 424w\"},className:\"framer-14bo6z3\",\"data-framer-name\":\"ResultsGif\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6gp40\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Passenger Information Step\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Passenger Information Step\"})})}),className:\"framer-vfoief\",fonts:[\"FS;Satoshi-medium\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"This part of the journey focuses on simplifying the input of passenger details, aiming to reduce friction and cognitive load for a smoother, more intuitive experience.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"This part of the journey focuses on simplifying the input of passenger details, aiming to reduce friction and cognitive load for a smoother, more intuitive experience.\"})}),className:\"framer-1yb6wlg\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oua5sh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Structured passenger cards with grouped input fields\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Consistent field design for clarity and ease of use\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Minimal UI to avoid distractions and keep focus on the task\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Clear all\" button to quickly reset mistakes'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Dedicated booking contact section to separate key info\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Structured passenger cards with grouped input fields\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Consistent field design for clarity and ease of use\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Minimal UI to avoid distractions and keep focus on the task\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Clear all\" button to quickly reset mistakes'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Dedicated booking contact section to separate key info\"})})]})]}),className:\"framer-1fcmmku\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fcgvx6\",\"data-framer-name\":\"AddOns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wd3z49\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Add-On Features\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Add-On Features\"})}),className:\"framer-3puhfm\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"I designed the add-ons section to feel optional yet inviting - encouraging users to explore extra services without adding complexity to the booking flow.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"I designed the add-ons section to feel optional yet inviting - encouraging users to explore extra services without adding complexity to the booking flow.\"})}),className:\"framer-83g94d\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16qg0uk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Visual Add-on Cards with Image, Title, and Short Description\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Large Arrow CTA for Quick Interaction\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Playful Seat Selection Experience\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear Layout Avoids Overwhelm and Supports Quick Decisions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Consistent Design for All Add-on Options (Bags, Insurance, etc.)\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Visual Add-on Cards with Image, Title, and Short Description\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Large Arrow CTA for Quick Interaction\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Playful Seat Selection Experience\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear Layout Avoids Overwhelm and Supports Quick Decisions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Consistent Design for All Add-on Options (Bags, Insurance, etc.)\"})})]})]}),className:\"framer-11uq2bx\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+3039+0+6289+0),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/BDZtSqhXt3JRQHKxLkQRprBCc.gif\",srcSet:\"https://framerusercontent.com/images/BDZtSqhXt3JRQHKxLkQRprBCc.gif 424w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+2823+0+9707+20+824),pixelHeight:840,pixelWidth:424,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/BDZtSqhXt3JRQHKxLkQRprBCc.gif\",srcSet:\"https://framerusercontent.com/images/BDZtSqhXt3JRQHKxLkQRprBCc.gif 424w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+3039+0+6209+0),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/BDZtSqhXt3JRQHKxLkQRprBCc.gif\",srcSet:\"https://framerusercontent.com/images/BDZtSqhXt3JRQHKxLkQRprBCc.gif 424w\"},className:\"framer-1z7agy\",\"data-framer-name\":\"FareGif\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hi4lbj\",\"data-framer-name\":\"PaymentAndConfirmation\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15490.4+0+3039+0+7209+45),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/s2rgyU2bvtOBbYZIojNDT8CymKM.gif\",srcSet:\"https://framerusercontent.com/images/s2rgyU2bvtOBbYZIojNDT8CymKM.gif 424w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+21144.4+0+2823+0+11451+20+928),pixelHeight:840,pixelWidth:424,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/s2rgyU2bvtOBbYZIojNDT8CymKM.gif\",srcSet:\"https://framerusercontent.com/images/s2rgyU2bvtOBbYZIojNDT8CymKM.gif 424w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:424,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14607.2+0+3039+0+7109+45),pixelHeight:840,pixelWidth:424,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 120px) * 0.3 - 10px, 1px)`,src:\"https://framerusercontent.com/images/s2rgyU2bvtOBbYZIojNDT8CymKM.gif\",srcSet:\"https://framerusercontent.com/images/s2rgyU2bvtOBbYZIojNDT8CymKM.gif 424w\"},className:\"framer-tyuem6\",\"data-framer-name\":\"ResultsGif\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l8afyr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Final Step: Payment & Confirmation\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Final Step: Payment & Confirmation\"})})}),className:\"framer-zqovx9\",fonts:[\"FS;Satoshi-medium\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"A smooth, trustworthy checkout experience is crucial, as this is where many users abandon the process if it feels unclear or insecure. This stage was designed to reduce hesitation, build trust, and ensure clarity during the final step.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"A smooth, trustworthy checkout experience is crucial, as this is where many users abandon the process if it feels unclear or insecure. This stage was designed to reduce hesitation, build trust, and ensure clarity during the final step.\"})}),className:\"framer-10tdw02\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn5ab5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear currency dropdown for price transparency\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Payment methods with familiar logos for quick recognition\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Security icons to build user trust and credibility\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clean, minimal layout to reduce distraction\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear call-to-action for final confirmation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Confirmation screen with booking summary, payment info, and clear success feedback\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear currency dropdown for price transparency\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Payment methods with familiar logos for quick recognition\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Security icons to build user trust and credibility\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clean, minimal layout to reduce distraction\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Clear call-to-action for final confirmation\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Confirmation screen with booking summary, payment info, and clear success feedback\"})})]})]}),className:\"framer-1508pkm\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9dz7d6\",\"data-framer-name\":\"FinalSteps\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref11,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5ykng5\",\"data-framer-name\":\"Handoff\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e7okau\",\"data-framer-name\":\"ChapterDefine\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"FINAL STEPS\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"FINAL STEPS\"})}),className:\"framer-fk3wks\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tpn81t\",\"data-framer-name\":\"ChapterTitle\",id:elementId10,ref:ref11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Handoff\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Handoff\"})}),className:\"framer-5mr63r\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vy36d\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t5jgta\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-as5epa\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"Coming from a software engineering background, I understand how \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"valuable clear annotations\"}),\" are during the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"handoff stage\"}),\". Providing \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"detailed guidance\"}),\" - like how error messages should appear, what input fields are for, and the exact function of each button - not only speeds up development but also reduces unnecessary back-and-forth. That\u2019s why I included thorough annotations in my final prototype, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"ensuring a smoother transition from design to implementation\"}),\".\"]})}),className:\"framer-m9c7en\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Here\u2019s a glimpse at some of the design annotations I created:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"Here\u2019s a glimpse at some of the design annotations I created:\"})}),className:\"framer-8ca6h6\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1836,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26778.4+0+0+0+399),pixelHeight:1836,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png\",srcSet:\"https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png 1960w\"}},qgFnMzCLe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1836,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+37296.4+0+0+0+573),pixelHeight:1836,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png\",srcSet:\"https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1836,intrinsicWidth:1960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25835.2+0+0+0+399),pixelHeight:1836,pixelWidth:1960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1040px) - 60px)`,src:\"https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png\",srcSet:\"https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q4f3kFJrpdhvUbtnOIubAuwk.png 1960w\"},className:\"framer-yjhczn\",\"data-framer-name\":\"Handoff\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l2w450\",\"data-framer-name\":\"FinalThoughts\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1has4ey\",\"data-framer-name\":\"ChapterDefine\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"FINAL STEPS\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6cz079\",\"data-styles-preset\":\"CXMAkGlFo\",style:{\"--framer-text-alignment\":\"left\"},children:\"FINAL STEPS\"})}),className:\"framer-tyyl6h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gfcbbx\",\"data-framer-name\":\"ChapterTitle\",id:elementId11,ref:ref12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Final Thoughts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Final Thoughts\"})}),className:\"framer-amc5ao\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fp4n3s\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6knzmn\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rdf1q9\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qgFnMzCLe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"Designing and creating this app was a\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\" journey filled with valuable lessons at every step\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\". From research and affinity mapping to prototyping and handoff, I realized that \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"UX\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\" is a constantly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"evolving process\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\", with \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"each phase building on the last\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\". This project really highlighted the importance of a user-centered approach - paying attention to the small details is what ultimately creates a seamless, enjoyable experience. By \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"focusing on the users needs\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\", I was able to create a flight booking app that doesn\u2019t just work, but works \"}),/*#__PURE__*/_jsx(\"em\",{children:\"better\"}),\". It\u2019s a reminder that \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"each phase of the design process\"}),\", no matter how small, plays a\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\" big role\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"in\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"making something users actually want to use\"}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:[\"Designing and creating this app was a\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\" journey filled with valuable lessons at every step\"}),\". From research and affinity mapping to prototyping and handoff, I realized that \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"UX\"}),\" is a constantly \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"evolving process\"}),\", with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"each phase building on the last\"}),\". This project really highlighted the importance of a user-centered approach - paying attention to the small details is what ultimately creates a seamless, enjoyable experience. By \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"focusing on the users needs\"}),\", I was able to create a flight booking app that doesn\u2019t just work, but works \",/*#__PURE__*/_jsx(\"em\",{children:\"better\"}),\". It\u2019s a reminder that \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"each phase of the design process\"}),\", no matter how small, plays a\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\" big role\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"in\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"making something users actually want to use\"}),\".\"]})}),className:\"framer-19wy1jw\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1ipbu\",\"data-border\":true,\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2gw304\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vq11yf\",\"data-framer-name\":\"AllFooterContent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Appreciate the scroll  \uD83D\uDCAB\"})}),className:\"framer-zaqh6a\",fonts:[\"FS;Manrope-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17iwg9z\",\"data-framer-name\":\"AllContent\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ntufjv\",\"data-framer-name\":\"Contact\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t5kvdc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(117, 117, 117)\"},children:\"Contact me\"})}),className:\"framer-1cnsbxo\",fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K3GYY0tP9:{y:(componentViewport?.y||0)+0+29446.4+0+0+0+40+51.6+0+0+0+0+29.2},qgFnMzCLe:{y:(componentViewport?.y||0)+0+40296.4+0+0+0+40+51.6+0+0+0+0+0+27.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+28503.2+0+0+0+40+51.6+0+0+0+0+29.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-163fu42-container\",nodeId:\"xFenRYbqE\",scopeId:\"PAPqm0Dxg\",children:/*#__PURE__*/_jsx(Copymail,{height:\"100%\",id:\"xFenRYbqE\",layoutId:\"xFenRYbqE\",style:{height:\"100%\"},variant:\"wS216JkwH\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/alexander-pureza-4ab429332/\",motionChild:true,nodeId:\"PymmhCS2i\",scopeId:\"PAPqm0Dxg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5qhpeg framer-m22f7r\",\"data-framer-name\":\"LinkedIn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-n7n0te\",\"data-framer-name\":\"Linkedin-app-white-icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 22.262 0 L 1.809 0 C 0.831 0 0 0.774 0 1.727 L 0 22.272 C 0 23.226 0.545 24 1.523 24 L 21.976 24 C 22.956 24 24 23.226 24 22.272 L 24 1.727 C 24 0.774 23.241 0 22.262 0 Z\" fill=\"rgb(184, 184, 184)\"></path><path d=\"M 3.428 20.572 L 6.857 20.572 L 6.857 9.143 L 3.428 9.143 Z M 9.143 9.143 L 12.374 9.143 L 12.374 10.79 L 12.409 10.79 C 12.901 9.902 14.356 9 16.155 9 C 19.608 9 20.572 10.833 20.572 14.228 L 20.572 20.572 L 17.143 20.572 L 17.143 14.854 C 17.143 13.334 16.536 12 15.117 12 C 13.393 12 12.571 13.167 12.571 15.082 L 12.571 20.572 L 9.143 20.572 Z M 7.286 5.143 C 7.286 6.327 6.327 7.286 5.143 7.286 C 3.959 7.286 3 6.327 3 5.143 C 3 3.959 3.959 3 5.143 3 C 6.327 3 7.286 3.959 7.286 5.143 Z\" fill=\"rgb(10, 10, 10)\"></path></svg>',svgContentId:12460805449,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xi5jlm\",\"data-framer-name\":\"Pages\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jy3a1h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(117, 117, 117)\"},children:\"Pages\"})}),className:\"framer-1ugd8d4\",fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-avqmk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"NQbXey2do\",openInNewTab:false,scopeId:\"PAPqm0Dxg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11l4jw4\",\"data-styles-preset\":\"F4WbHM5h5\",children:\"Home\"})})})}),className:\"framer-1nf5xu3\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"c_SRCOLFv\"},motionChild:true,nodeId:\"R0jZ2N4hf\",openInNewTab:false,scopeId:\"PAPqm0Dxg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11l4jw4\",\"data-styles-preset\":\"F4WbHM5h5\",children:\"About\"})})})}),className:\"framer-1hdsy9c\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VtljCtt3Q\"},motionChild:true,nodeId:\"nKUw2A4o9\",openInNewTab:false,scopeId:\"PAPqm0Dxg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11l4jw4\",\"data-styles-preset\":\"F4WbHM5h5\",children:\"Play\"})})})}),className:\"framer-5m98sw\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17j2boo\",\"data-framer-name\":\"Craft\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-evf6oj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(117, 117, 117)\"},children:\"Craft\"})}),className:\"framer-q1icm\",fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xc5wax\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PAPqm0Dxg\"},motionChild:true,nodeId:\"KmU9uGqA1\",openInNewTab:false,scopeId:\"PAPqm0Dxg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11l4jw4\",\"data-styles-preset\":\"F4WbHM5h5\",children:\"Flight Booking App\"})})})}),className:\"framer-18nu0cc\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MClmbpsl9\"},motionChild:true,nodeId:\"HNzIDTBaN\",openInNewTab:false,scopeId:\"PAPqm0Dxg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11l4jw4\",\"data-styles-preset\":\"F4WbHM5h5\",children:\"Library Web Experience\"})})})}),className:\"framer-1lmyc6g\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Z69m8_lxf\"},motionChild:true,nodeId:\"Bal8JXZmG\",openInNewTab:false,scopeId:\"PAPqm0Dxg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11l4jw4\",\"data-styles-preset\":\"F4WbHM5h5\",children:\"Design Explorations\"})})})}),className:\"framer-19m4tas\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qEAE9.framer-m22f7r, .framer-qEAE9 .framer-m22f7r { display: block; }\",\".framer-qEAE9.framer-p1r0nh { align-content: center; align-items: center; background-color: #121212; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-qEAE9 .framer-2v9gp6 { align-content: center; align-items: center; background-color: rgba(250, 249, 245, 0); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; max-width: 1040px; overflow: visible; padding: 30px 30px 0px 30px; position: fixed; top: 0px; transform: translateX(-50%); width: 87%; z-index: 2; }\",\".framer-qEAE9 .framer-1u2ylbg-container { flex: none; height: 70px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-1lzv5fs { 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: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-julcd2 { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qEAE9 .framer-199n87a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 718px; }\",\".framer-qEAE9 .framer-mfehfc, .framer-qEAE9 .framer-ebyyw4, .framer-qEAE9 .framer-898vk8, .framer-qEAE9 .framer-osb7rx, .framer-qEAE9 .framer-1qv125u, .framer-qEAE9 .framer-19qc8oi, .framer-qEAE9 .framer-h6lkdt, .framer-qEAE9 .framer-18apwd0, .framer-qEAE9 .framer-1xs8ztx, .framer-qEAE9 .framer-7fyk0n, .framer-qEAE9 .framer-j3zf5s, .framer-qEAE9 .framer-1mkzjgw, .framer-qEAE9 .framer-1fnvqo2, .framer-qEAE9 .framer-rm5ynh, .framer-qEAE9 .framer-icbam8, .framer-qEAE9 .framer-hwvevy, .framer-qEAE9 .framer-11pnf8m, .framer-qEAE9 .framer-g2lduw, .framer-qEAE9 .framer-1cov8jo, .framer-qEAE9 .framer-57knio, .framer-qEAE9 .framer-1ukzy8t, .framer-qEAE9 .framer-hwkabr, .framer-qEAE9 .framer-zuwaqd, .framer-qEAE9 .framer-1v4hb2p, .framer-qEAE9 .framer-dpots2, .framer-qEAE9 .framer-1ghml21, .framer-qEAE9 .framer-1d9pvgv, .framer-qEAE9 .framer-1dfk4u1, .framer-qEAE9 .framer-1alt7u7, .framer-qEAE9 .framer-c06zlt, .framer-qEAE9 .framer-9u4i8d, .framer-qEAE9 .framer-h8mui2, .framer-qEAE9 .framer-1pqkoua, .framer-qEAE9 .framer-111qeag, .framer-qEAE9 .framer-4v8lqd, .framer-qEAE9 .framer-17si17u, .framer-qEAE9 .framer-1mvx4jx, .framer-qEAE9 .framer-1q2nxfa, .framer-qEAE9 .framer-hcgo5o, .framer-qEAE9 .framer-1vtdm2y, .framer-qEAE9 .framer-194p2fh, .framer-qEAE9 .framer-zmpy3q, .framer-qEAE9 .framer-1ryijuu, .framer-qEAE9 .framer-vfoief, .framer-qEAE9 .framer-3puhfm, .framer-qEAE9 .framer-zqovx9, .framer-qEAE9 .framer-fk3wks, .framer-qEAE9 .framer-5mr63r, .framer-qEAE9 .framer-tyyl6h, .framer-qEAE9 .framer-amc5ao, .framer-qEAE9 .framer-zaqh6a, .framer-qEAE9 .framer-1cnsbxo, .framer-qEAE9 .framer-1ugd8d4, .framer-qEAE9 .framer-q1icm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qEAE9 .framer-bxn7sx { aspect-ratio: 1.4988758431176616 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 574px); overflow: visible; position: relative; width: 860px; }\",\".framer-qEAE9 .framer-falrbx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: visible; padding: 0px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-xptvso, .framer-qEAE9 .framer-1ucwy3a, .framer-qEAE9 .framer-1w2t2zd, .framer-qEAE9 .framer-1j1r254, .framer-qEAE9 .framer-1d0mrjo, .framer-qEAE9 .framer-170a96v, .framer-qEAE9 .framer-1awcu6h, .framer-qEAE9 .framer-m09v54, .framer-qEAE9 .framer-1rbp43i, .framer-qEAE9 .framer-wz9kpz, .framer-qEAE9 .framer-1tza3ay, .framer-qEAE9 .framer-314l66, .framer-qEAE9 .framer-6aapo3, .framer-qEAE9 .framer-1t1njda, .framer-qEAE9 .framer-vezjtd, .framer-qEAE9 .framer-qe5ij3, .framer-qEAE9 .framer-1xukq21, .framer-qEAE9 .framer-fokgjy, .framer-qEAE9 .framer-1e7okau, .framer-qEAE9 .framer-1tpn81t, .framer-qEAE9 .framer-1has4ey, .framer-qEAE9 .framer-1gfcbbx { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1bzs3p8, .framer-qEAE9 .framer-87wlk0, .framer-qEAE9 .framer-11xc51m, .framer-qEAE9 .framer-sis1uk, .framer-qEAE9 .framer-16qmnlx, .framer-qEAE9 .framer-c1dr1z, .framer-qEAE9 .framer-1h1ji3w, .framer-qEAE9 .framer-ee75cv, .framer-qEAE9 .framer-1s32kki, .framer-qEAE9 .framer-c54h3b, .framer-qEAE9 .framer-1vy36d, .framer-qEAE9 .framer-1fp4n3s { 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: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-7nf3xi, .framer-qEAE9 .framer-1uzsp8d, .framer-qEAE9 .framer-e6zikm, .framer-qEAE9 .framer-ee9wu6, .framer-qEAE9 .framer-gsjo1x, .framer-qEAE9 .framer-1gg67ex, .framer-qEAE9 .framer-1m8w51z, .framer-qEAE9 .framer-1y5jdrz, .framer-qEAE9 .framer-fkipp8, .framer-qEAE9 .framer-99mt3r, .framer-qEAE9 .framer-t5jgta, .framer-qEAE9 .framer-6knzmn { align-content: center; align-items: center; background-color: #4f4f4f; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-19oucjp, .framer-qEAE9 .framer-1p0ava6, .framer-qEAE9 .framer-js4er7, .framer-qEAE9 .framer-qu0a10, .framer-qEAE9 .framer-4qyoi9 { 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: visible; padding: 20px 0px 30px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1kj3omt, .framer-qEAE9 .framer-1akwtyt, .framer-qEAE9 .framer-yftv4o, .framer-qEAE9 .framer-ai9w4n, .framer-qEAE9 .framer-1z10io3, .framer-qEAE9 .framer-1ywcz9q, .framer-qEAE9 .framer-d580ry, .framer-qEAE9 .framer-1cqk3u5, .framer-qEAE9 .framer-1dopc0m, .framer-qEAE9 .framer-v88v7v, .framer-qEAE9 .framer-1mpwj17, .framer-qEAE9 .framer-8n7boh, .framer-qEAE9 .framer-1bwqk3, .framer-qEAE9 .framer-m58vn6, .framer-qEAE9 .framer-pg92n, .framer-qEAE9 .framer-1flt0dk, .framer-qEAE9 .framer-1fcmmku, .framer-qEAE9 .framer-11uq2bx, .framer-qEAE9 .framer-1508pkm { --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-qEAE9 .framer-m2lez2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-z1l5x1 { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #1c1c1c; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 18px; position: relative; width: 1px; z-index: 1; }\",\".framer-qEAE9 .framer-122l333, .framer-qEAE9 .framer-1a10vdn, .framer-qEAE9 .framer-6d8i9c, .framer-qEAE9 .framer-1ilus8x, .framer-qEAE9 .framer-t73htq, .framer-qEAE9 .framer-1tu9s5t, .framer-qEAE9 .framer-1xi5jlm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qEAE9 .framer-1m0q2nb, .framer-qEAE9 .framer-1b50iko { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-324rgq, .framer-qEAE9 .framer-1gfvlt0, .framer-qEAE9 .framer-n7n0te { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-qEAE9 .framer-t8267o, .framer-qEAE9 .framer-13usvqu, .framer-qEAE9 .framer-12am77e, .framer-qEAE9 .framer-ikzvc0, .framer-qEAE9 .framer-cbfrd1, .framer-qEAE9 .framer-vtjgm3, .framer-qEAE9 .framer-1s402l4, .framer-qEAE9 .framer-15i67j7, .framer-qEAE9 .framer-ayissr, .framer-qEAE9 .framer-1lgtagc, .framer-qEAE9 .framer-1ksft89, .framer-qEAE9 .framer-1d0wihy, .framer-qEAE9 .framer-hkcp3n, .framer-qEAE9 .framer-1cg1q0y, .framer-qEAE9 .framer-1icdam5, .framer-qEAE9 .framer-16fy9ky, .framer-qEAE9 .framer-1yb6wlg, .framer-qEAE9 .framer-83g94d, .framer-qEAE9 .framer-10tdw02, .framer-qEAE9 .framer-m9c7en, .framer-qEAE9 .framer-8ca6h6, .framer-qEAE9 .framer-19wy1jw { --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-qEAE9 .framer-8tq85w { align-content: flex-start; align-items: flex-start; background-color: #1c1c1c; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 18px; position: relative; width: 1px; z-index: 1; }\",\".framer-qEAE9 .framer-n19neu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 40px 60px 30px 10px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-g5plm7, .framer-qEAE9 .framer-195jupi, .framer-qEAE9 .framer-502e2r, .framer-qEAE9 .framer-kkinld, .framer-qEAE9 .framer-1yq5mkf, .framer-qEAE9 .framer-yge4c4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qEAE9 .framer-10udbwm, .framer-qEAE9 .framer-1l3d30s, .framer-qEAE9 .framer-gya0yf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qEAE9 .framer-wa9e9g, .framer-qEAE9 .framer-nujmes, .framer-qEAE9 .framer-1wc2ap8 { align-self: stretch; background-color: #8f8f8f; flex: none; height: auto; overflow: hidden; position: relative; width: 2px; }\",\".framer-qEAE9 .framer-38o4i1 { 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: visible; padding: 60px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-12l3s2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 18px 0px 18px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1wkpn6b, .framer-qEAE9 .framer-1k7oiz4, .framer-qEAE9 .framer-1i63ru1, .framer-qEAE9 .framer-10dhswr { aspect-ratio: 1 / 1; background-color: rgba(35, 70, 120, 0.4); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qEAE9 .framer-1f5w4su, .framer-qEAE9 .framer-poagk8, .framer-qEAE9 .framer-1u73n8f, .framer-qEAE9 .framer-14tnrdu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-qEAE9 .framer-ennxfx, .framer-qEAE9 .framer-13k81up { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: visible; padding: 0px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-jxhsta, .framer-qEAE9 .framer-lkzs24, .framer-qEAE9 .framer-1ttwj3d { 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: 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-tinohs { aspect-ratio: 1.1821471652593487 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 829px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-u0a727 { 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: visible; padding: 50px 200px 20px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-p09pfb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 90px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-r50sse { aspect-ratio: 0.8884859474161378 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 1103px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-4br5ki { 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: visible; padding: 50px 0px 20px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-y6dne6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 90px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-12lhnvz { aspect-ratio: 1.538888888888889 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 637px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-lp2msq { 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: visible; padding: 30px 0px 20px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-ez0rmv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 90px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-qpq12d, .framer-qEAE9 .framer-rls08l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qEAE9 .framer-1e320mf, .framer-qEAE9 .framer-1dnq1p4, .framer-qEAE9 .framer-y2qkv, .framer-qEAE9 .framer-3pabyk, .framer-qEAE9 .framer-evc84w, .framer-qEAE9 .framer-5ykng5, .framer-qEAE9 .framer-1l2w450 { 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: 0px 0px 90px 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-11lgxul, .framer-qEAE9 .framer-1butw1h { aspect-ratio: 0.8726625111308994 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 1123px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-1sd5h4p, .framer-qEAE9 .framer-fpphhs { 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: visible; padding: 20px 0px 30px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1m8zvfr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-1swouxk { aspect-ratio: 0.8820882088208821 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 1111px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-1qajq1r, .framer-qEAE9 .framer-9dz7d6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-wewrs9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 18px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1sf6wm9 { 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: 18px 30px 18px 30px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-jq8bgy-container, .framer-qEAE9 .framer-v64d78-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-bvswrf { 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: visible; padding: 30px 0px 30px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1fn9em0 { aspect-ratio: 1.0337552742616034 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 948px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-lgqyqz { 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: visible; padding: 20px 0px 40px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1mp9b9j { aspect-ratio: 1.5 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 653px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-9ruc83 { 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: visible; padding: 60px 30px 60px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-6r0e4o, .framer-qEAE9 .framer-1v2oqkt, .framer-qEAE9 .framer-1wd3z49 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-qEAE9 .framer-1qwk78i, .framer-qEAE9 .framer-12qjnha, .framer-qEAE9 .framer-16qg0uk { 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 60px 0px 30px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-1slqzmb, .framer-qEAE9 .framer-1pbxbk8, .framer-qEAE9 .framer-1p5urrj, .framer-qEAE9 .framer-14bo6z3, .framer-qEAE9 .framer-1z7agy, .framer-qEAE9 .framer-tyuem6 { aspect-ratio: 0.5047619047619047 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 527px); overflow: visible; position: relative; width: 1px; }\",\".framer-qEAE9 .framer-tq3wkc, .framer-qEAE9 .framer-1cy78an, .framer-qEAE9 .framer-1mb0g1k, .framer-qEAE9 .framer-1fcgvx6, .framer-qEAE9 .framer-hi4lbj { 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: visible; padding: 0px 30px 60px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-1ax94tp, .framer-qEAE9 .framer-d6gp40, .framer-qEAE9 .framer-1l8afyr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 30px; position: relative; width: 70%; }\",\".framer-qEAE9 .framer-kw2em5, .framer-qEAE9 .framer-oua5sh, .framer-qEAE9 .framer-yn5ab5 { 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 30px 0px 30px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-as5epa, .framer-qEAE9 .framer-1rdf1q9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 18px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qEAE9 .framer-yjhczn { aspect-ratio: 1.0675381263616557 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 918px); overflow: visible; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-1p1ipbu { --border-bottom-width: 0px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background-color: #121212; 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-qEAE9 .framer-2gw304 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-qEAE9 .framer-vq11yf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 60px 0px; position: relative; width: 1px; }\",\".framer-qEAE9 .framer-17iwg9z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-1ntufjv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qEAE9 .framer-t5kvdc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qEAE9 .framer-163fu42-container { flex: none; height: 20px; position: relative; width: auto; }\",\".framer-qEAE9 .framer-5qhpeg { 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: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qEAE9 .framer-1jy3a1h, .framer-qEAE9 .framer-evf6oj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qEAE9 .framer-avqmk, .framer-qEAE9 .framer-1xc5wax { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-qEAE9 .framer-1nf5xu3, .framer-qEAE9 .framer-1hdsy9c, .framer-qEAE9 .framer-5m98sw, .framer-qEAE9 .framer-18nu0cc, .framer-qEAE9 .framer-1lmyc6g, .framer-qEAE9 .framer-19m4tas { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qEAE9 .framer-17j2boo { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qEAE9.framer-p1r0nh, .framer-qEAE9 .framer-2v9gp6, .framer-qEAE9 .framer-1lzv5fs, .framer-qEAE9 .framer-julcd2, .framer-qEAE9 .framer-199n87a, .framer-qEAE9 .framer-falrbx, .framer-qEAE9 .framer-xptvso, .framer-qEAE9 .framer-1ucwy3a, .framer-qEAE9 .framer-1bzs3p8, .framer-qEAE9 .framer-7nf3xi, .framer-qEAE9 .framer-19oucjp, .framer-qEAE9 .framer-m2lez2, .framer-qEAE9 .framer-z1l5x1, .framer-qEAE9 .framer-122l333, .framer-qEAE9 .framer-1m0q2nb, .framer-qEAE9 .framer-8tq85w, .framer-qEAE9 .framer-1a10vdn, .framer-qEAE9 .framer-1b50iko, .framer-qEAE9 .framer-g5plm7, .framer-qEAE9 .framer-10udbwm, .framer-qEAE9 .framer-195jupi, .framer-qEAE9 .framer-1l3d30s, .framer-qEAE9 .framer-502e2r, .framer-qEAE9 .framer-gya0yf, .framer-qEAE9 .framer-38o4i1, .framer-qEAE9 .framer-87wlk0, .framer-qEAE9 .framer-1uzsp8d, .framer-qEAE9 .framer-12l3s2, .framer-qEAE9 .framer-6d8i9c, .framer-qEAE9 .framer-1ilus8x, .framer-qEAE9 .framer-t73htq, .framer-qEAE9 .framer-1tu9s5t, .framer-qEAE9 .framer-ennxfx, .framer-qEAE9 .framer-jxhsta, .framer-qEAE9 .framer-1w2t2zd, .framer-qEAE9 .framer-1j1r254, .framer-qEAE9 .framer-11xc51m, .framer-qEAE9 .framer-e6zikm, .framer-qEAE9 .framer-1p0ava6, .framer-qEAE9 .framer-u0a727, .framer-qEAE9 .framer-kkinld, .framer-qEAE9 .framer-1yq5mkf, .framer-qEAE9 .framer-lkzs24, .framer-qEAE9 .framer-1d0mrjo, .framer-qEAE9 .framer-170a96v, .framer-qEAE9 .framer-sis1uk, .framer-qEAE9 .framer-ee9wu6, .framer-qEAE9 .framer-js4er7, .framer-qEAE9 .framer-4br5ki, .framer-qEAE9 .framer-yge4c4, .framer-qEAE9 .framer-1ttwj3d, .framer-qEAE9 .framer-1awcu6h, .framer-qEAE9 .framer-m09v54, .framer-qEAE9 .framer-16qmnlx, .framer-qEAE9 .framer-gsjo1x, .framer-qEAE9 .framer-qu0a10, .framer-qEAE9 .framer-lp2msq, .framer-qEAE9 .framer-ez0rmv, .framer-qEAE9 .framer-qpq12d, .framer-qEAE9 .framer-rls08l, .framer-qEAE9 .framer-13k81up, .framer-qEAE9 .framer-1e320mf, .framer-qEAE9 .framer-1rbp43i, .framer-qEAE9 .framer-wz9kpz, .framer-qEAE9 .framer-c1dr1z, .framer-qEAE9 .framer-1gg67ex, .framer-qEAE9 .framer-4qyoi9, .framer-qEAE9 .framer-1dnq1p4, .framer-qEAE9 .framer-1tza3ay, .framer-qEAE9 .framer-314l66, .framer-qEAE9 .framer-1h1ji3w, .framer-qEAE9 .framer-1m8w51z, .framer-qEAE9 .framer-1sd5h4p, .framer-qEAE9 .framer-1m8zvfr, .framer-qEAE9 .framer-y2qkv, .framer-qEAE9 .framer-6aapo3, .framer-qEAE9 .framer-1t1njda, .framer-qEAE9 .framer-ee75cv, .framer-qEAE9 .framer-1y5jdrz, .framer-qEAE9 .framer-fpphhs, .framer-qEAE9 .framer-1qajq1r, .framer-qEAE9 .framer-3pabyk, .framer-qEAE9 .framer-vezjtd, .framer-qEAE9 .framer-qe5ij3, .framer-qEAE9 .framer-1s32kki, .framer-qEAE9 .framer-fkipp8, .framer-qEAE9 .framer-wewrs9, .framer-qEAE9 .framer-1sf6wm9, .framer-qEAE9 .framer-bvswrf, .framer-qEAE9 .framer-evc84w, .framer-qEAE9 .framer-1xukq21, .framer-qEAE9 .framer-fokgjy, .framer-qEAE9 .framer-c54h3b, .framer-qEAE9 .framer-99mt3r, .framer-qEAE9 .framer-lgqyqz, .framer-qEAE9 .framer-9ruc83, .framer-qEAE9 .framer-6r0e4o, .framer-qEAE9 .framer-1qwk78i, .framer-qEAE9 .framer-tq3wkc, .framer-qEAE9 .framer-1ax94tp, .framer-qEAE9 .framer-kw2em5, .framer-qEAE9 .framer-1cy78an, .framer-qEAE9 .framer-1v2oqkt, .framer-qEAE9 .framer-12qjnha, .framer-qEAE9 .framer-1mb0g1k, .framer-qEAE9 .framer-d6gp40, .framer-qEAE9 .framer-oua5sh, .framer-qEAE9 .framer-1fcgvx6, .framer-qEAE9 .framer-1wd3z49, .framer-qEAE9 .framer-16qg0uk, .framer-qEAE9 .framer-hi4lbj, .framer-qEAE9 .framer-1l8afyr, .framer-qEAE9 .framer-yn5ab5, .framer-qEAE9 .framer-9dz7d6, .framer-qEAE9 .framer-5ykng5, .framer-qEAE9 .framer-1e7okau, .framer-qEAE9 .framer-1tpn81t, .framer-qEAE9 .framer-1vy36d, .framer-qEAE9 .framer-t5jgta, .framer-qEAE9 .framer-as5epa, .framer-qEAE9 .framer-1l2w450, .framer-qEAE9 .framer-1has4ey, .framer-qEAE9 .framer-1gfcbbx, .framer-qEAE9 .framer-1fp4n3s, .framer-qEAE9 .framer-6knzmn, .framer-qEAE9 .framer-1rdf1q9, .framer-qEAE9 .framer-1p1ipbu, .framer-qEAE9 .framer-2gw304, .framer-qEAE9 .framer-vq11yf, .framer-qEAE9 .framer-17iwg9z, .framer-qEAE9 .framer-1ntufjv, .framer-qEAE9 .framer-t5kvdc, .framer-qEAE9 .framer-5qhpeg, .framer-qEAE9 .framer-1xi5jlm, .framer-qEAE9 .framer-1jy3a1h, .framer-qEAE9 .framer-avqmk, .framer-qEAE9 .framer-17j2boo, .framer-qEAE9 .framer-evf6oj, .framer-qEAE9 .framer-1xc5wax { gap: 0px; } .framer-qEAE9.framer-p1r0nh > *, .framer-qEAE9 .framer-2v9gp6 > *, .framer-qEAE9 .framer-falrbx > *, .framer-qEAE9 .framer-ennxfx > *, .framer-qEAE9 .framer-jxhsta > *, .framer-qEAE9 .framer-lkzs24 > *, .framer-qEAE9 .framer-1ttwj3d > *, .framer-qEAE9 .framer-13k81up > *, .framer-qEAE9 .framer-1e320mf > *, .framer-qEAE9 .framer-1dnq1p4 > *, .framer-qEAE9 .framer-y2qkv > *, .framer-qEAE9 .framer-1qajq1r > *, .framer-qEAE9 .framer-3pabyk > *, .framer-qEAE9 .framer-wewrs9 > *, .framer-qEAE9 .framer-evc84w > *, .framer-qEAE9 .framer-9dz7d6 > *, .framer-qEAE9 .framer-5ykng5 > *, .framer-qEAE9 .framer-1l2w450 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qEAE9.framer-p1r0nh > :first-child, .framer-qEAE9 .framer-2v9gp6 > :first-child, .framer-qEAE9 .framer-julcd2 > :first-child, .framer-qEAE9 .framer-199n87a > :first-child, .framer-qEAE9 .framer-falrbx > :first-child, .framer-qEAE9 .framer-1bzs3p8 > :first-child, .framer-qEAE9 .framer-122l333 > :first-child, .framer-qEAE9 .framer-1a10vdn > :first-child, .framer-qEAE9 .framer-g5plm7 > :first-child, .framer-qEAE9 .framer-195jupi > :first-child, .framer-qEAE9 .framer-502e2r > :first-child, .framer-qEAE9 .framer-87wlk0 > :first-child, .framer-qEAE9 .framer-6d8i9c > :first-child, .framer-qEAE9 .framer-1ilus8x > :first-child, .framer-qEAE9 .framer-t73htq > :first-child, .framer-qEAE9 .framer-1tu9s5t > :first-child, .framer-qEAE9 .framer-ennxfx > :first-child, .framer-qEAE9 .framer-jxhsta > :first-child, .framer-qEAE9 .framer-11xc51m > :first-child, .framer-qEAE9 .framer-kkinld > :first-child, .framer-qEAE9 .framer-1yq5mkf > :first-child, .framer-qEAE9 .framer-lkzs24 > :first-child, .framer-qEAE9 .framer-sis1uk > :first-child, .framer-qEAE9 .framer-yge4c4 > :first-child, .framer-qEAE9 .framer-1ttwj3d > :first-child, .framer-qEAE9 .framer-16qmnlx > :first-child, .framer-qEAE9 .framer-qpq12d > :first-child, .framer-qEAE9 .framer-rls08l > :first-child, .framer-qEAE9 .framer-13k81up > :first-child, .framer-qEAE9 .framer-1e320mf > :first-child, .framer-qEAE9 .framer-c1dr1z > :first-child, .framer-qEAE9 .framer-1dnq1p4 > :first-child, .framer-qEAE9 .framer-1h1ji3w > :first-child, .framer-qEAE9 .framer-1sd5h4p > :first-child, .framer-qEAE9 .framer-1m8zvfr > :first-child, .framer-qEAE9 .framer-y2qkv > :first-child, .framer-qEAE9 .framer-ee75cv > :first-child, .framer-qEAE9 .framer-fpphhs > :first-child, .framer-qEAE9 .framer-1qajq1r > :first-child, .framer-qEAE9 .framer-3pabyk > :first-child, .framer-qEAE9 .framer-1s32kki > :first-child, .framer-qEAE9 .framer-wewrs9 > :first-child, .framer-qEAE9 .framer-evc84w > :first-child, .framer-qEAE9 .framer-c54h3b > :first-child, .framer-qEAE9 .framer-6r0e4o > :first-child, .framer-qEAE9 .framer-1ax94tp > :first-child, .framer-qEAE9 .framer-1v2oqkt > :first-child, .framer-qEAE9 .framer-d6gp40 > :first-child, .framer-qEAE9 .framer-1wd3z49 > :first-child, .framer-qEAE9 .framer-1l8afyr > :first-child, .framer-qEAE9 .framer-9dz7d6 > :first-child, .framer-qEAE9 .framer-5ykng5 > :first-child, .framer-qEAE9 .framer-1vy36d > :first-child, .framer-qEAE9 .framer-as5epa > :first-child, .framer-qEAE9 .framer-1l2w450 > :first-child, .framer-qEAE9 .framer-1fp4n3s > :first-child, .framer-qEAE9 .framer-1rdf1q9 > :first-child, .framer-qEAE9 .framer-vq11yf > :first-child, .framer-qEAE9 .framer-1ntufjv > :first-child, .framer-qEAE9 .framer-t5kvdc > :first-child, .framer-qEAE9 .framer-1xi5jlm > :first-child, .framer-qEAE9 .framer-1jy3a1h > :first-child, .framer-qEAE9 .framer-avqmk > :first-child, .framer-qEAE9 .framer-17j2boo > :first-child, .framer-qEAE9 .framer-evf6oj > :first-child, .framer-qEAE9 .framer-1xc5wax > :first-child { margin-top: 0px; } .framer-qEAE9.framer-p1r0nh > :last-child, .framer-qEAE9 .framer-2v9gp6 > :last-child, .framer-qEAE9 .framer-julcd2 > :last-child, .framer-qEAE9 .framer-199n87a > :last-child, .framer-qEAE9 .framer-falrbx > :last-child, .framer-qEAE9 .framer-1bzs3p8 > :last-child, .framer-qEAE9 .framer-122l333 > :last-child, .framer-qEAE9 .framer-1a10vdn > :last-child, .framer-qEAE9 .framer-g5plm7 > :last-child, .framer-qEAE9 .framer-195jupi > :last-child, .framer-qEAE9 .framer-502e2r > :last-child, .framer-qEAE9 .framer-87wlk0 > :last-child, .framer-qEAE9 .framer-6d8i9c > :last-child, .framer-qEAE9 .framer-1ilus8x > :last-child, .framer-qEAE9 .framer-t73htq > :last-child, .framer-qEAE9 .framer-1tu9s5t > :last-child, .framer-qEAE9 .framer-ennxfx > :last-child, .framer-qEAE9 .framer-jxhsta > :last-child, .framer-qEAE9 .framer-11xc51m > :last-child, .framer-qEAE9 .framer-kkinld > :last-child, .framer-qEAE9 .framer-1yq5mkf > :last-child, .framer-qEAE9 .framer-lkzs24 > :last-child, .framer-qEAE9 .framer-sis1uk > :last-child, .framer-qEAE9 .framer-yge4c4 > :last-child, .framer-qEAE9 .framer-1ttwj3d > :last-child, .framer-qEAE9 .framer-16qmnlx > :last-child, .framer-qEAE9 .framer-qpq12d > :last-child, .framer-qEAE9 .framer-rls08l > :last-child, .framer-qEAE9 .framer-13k81up > :last-child, .framer-qEAE9 .framer-1e320mf > :last-child, .framer-qEAE9 .framer-c1dr1z > :last-child, .framer-qEAE9 .framer-1dnq1p4 > :last-child, .framer-qEAE9 .framer-1h1ji3w > :last-child, .framer-qEAE9 .framer-1sd5h4p > :last-child, .framer-qEAE9 .framer-1m8zvfr > :last-child, .framer-qEAE9 .framer-y2qkv > :last-child, .framer-qEAE9 .framer-ee75cv > :last-child, .framer-qEAE9 .framer-fpphhs > :last-child, .framer-qEAE9 .framer-1qajq1r > :last-child, .framer-qEAE9 .framer-3pabyk > :last-child, .framer-qEAE9 .framer-1s32kki > :last-child, .framer-qEAE9 .framer-wewrs9 > :last-child, .framer-qEAE9 .framer-evc84w > :last-child, .framer-qEAE9 .framer-c54h3b > :last-child, .framer-qEAE9 .framer-6r0e4o > :last-child, .framer-qEAE9 .framer-1ax94tp > :last-child, .framer-qEAE9 .framer-1v2oqkt > :last-child, .framer-qEAE9 .framer-d6gp40 > :last-child, .framer-qEAE9 .framer-1wd3z49 > :last-child, .framer-qEAE9 .framer-1l8afyr > :last-child, .framer-qEAE9 .framer-9dz7d6 > :last-child, .framer-qEAE9 .framer-5ykng5 > :last-child, .framer-qEAE9 .framer-1vy36d > :last-child, .framer-qEAE9 .framer-as5epa > :last-child, .framer-qEAE9 .framer-1l2w450 > :last-child, .framer-qEAE9 .framer-1fp4n3s > :last-child, .framer-qEAE9 .framer-1rdf1q9 > :last-child, .framer-qEAE9 .framer-vq11yf > :last-child, .framer-qEAE9 .framer-1ntufjv > :last-child, .framer-qEAE9 .framer-t5kvdc > :last-child, .framer-qEAE9 .framer-1xi5jlm > :last-child, .framer-qEAE9 .framer-1jy3a1h > :last-child, .framer-qEAE9 .framer-avqmk > :last-child, .framer-qEAE9 .framer-17j2boo > :last-child, .framer-qEAE9 .framer-evf6oj > :last-child, .framer-qEAE9 .framer-1xc5wax > :last-child { margin-bottom: 0px; } .framer-qEAE9 .framer-1lzv5fs > *, .framer-qEAE9 .framer-xptvso > *, .framer-qEAE9 .framer-1ucwy3a > *, .framer-qEAE9 .framer-19oucjp > *, .framer-qEAE9 .framer-z1l5x1 > *, .framer-qEAE9 .framer-8tq85w > *, .framer-qEAE9 .framer-38o4i1 > *, .framer-qEAE9 .framer-12l3s2 > *, .framer-qEAE9 .framer-1w2t2zd > *, .framer-qEAE9 .framer-1j1r254 > *, .framer-qEAE9 .framer-1p0ava6 > *, .framer-qEAE9 .framer-u0a727 > *, .framer-qEAE9 .framer-1d0mrjo > *, .framer-qEAE9 .framer-170a96v > *, .framer-qEAE9 .framer-js4er7 > *, .framer-qEAE9 .framer-4br5ki > *, .framer-qEAE9 .framer-1awcu6h > *, .framer-qEAE9 .framer-m09v54 > *, .framer-qEAE9 .framer-qu0a10 > *, .framer-qEAE9 .framer-lp2msq > *, .framer-qEAE9 .framer-1rbp43i > *, .framer-qEAE9 .framer-wz9kpz > *, .framer-qEAE9 .framer-4qyoi9 > *, .framer-qEAE9 .framer-1tza3ay > *, .framer-qEAE9 .framer-314l66 > *, .framer-qEAE9 .framer-6aapo3 > *, .framer-qEAE9 .framer-1t1njda > *, .framer-qEAE9 .framer-vezjtd > *, .framer-qEAE9 .framer-qe5ij3 > *, .framer-qEAE9 .framer-1sf6wm9 > *, .framer-qEAE9 .framer-bvswrf > *, .framer-qEAE9 .framer-1xukq21 > *, .framer-qEAE9 .framer-fokgjy > *, .framer-qEAE9 .framer-lgqyqz > *, .framer-qEAE9 .framer-9ruc83 > *, .framer-qEAE9 .framer-1qwk78i > *, .framer-qEAE9 .framer-tq3wkc > *, .framer-qEAE9 .framer-kw2em5 > *, .framer-qEAE9 .framer-1cy78an > *, .framer-qEAE9 .framer-12qjnha > *, .framer-qEAE9 .framer-1mb0g1k > *, .framer-qEAE9 .framer-oua5sh > *, .framer-qEAE9 .framer-1fcgvx6 > *, .framer-qEAE9 .framer-16qg0uk > *, .framer-qEAE9 .framer-hi4lbj > *, .framer-qEAE9 .framer-yn5ab5 > *, .framer-qEAE9 .framer-1e7okau > *, .framer-qEAE9 .framer-1tpn81t > *, .framer-qEAE9 .framer-1has4ey > *, .framer-qEAE9 .framer-1gfcbbx > *, .framer-qEAE9 .framer-1p1ipbu > *, .framer-qEAE9 .framer-2gw304 > *, .framer-qEAE9 .framer-5qhpeg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qEAE9 .framer-1lzv5fs > :first-child, .framer-qEAE9 .framer-xptvso > :first-child, .framer-qEAE9 .framer-1ucwy3a > :first-child, .framer-qEAE9 .framer-7nf3xi > :first-child, .framer-qEAE9 .framer-19oucjp > :first-child, .framer-qEAE9 .framer-m2lez2 > :first-child, .framer-qEAE9 .framer-z1l5x1 > :first-child, .framer-qEAE9 .framer-1m0q2nb > :first-child, .framer-qEAE9 .framer-8tq85w > :first-child, .framer-qEAE9 .framer-1b50iko > :first-child, .framer-qEAE9 .framer-10udbwm > :first-child, .framer-qEAE9 .framer-1l3d30s > :first-child, .framer-qEAE9 .framer-gya0yf > :first-child, .framer-qEAE9 .framer-38o4i1 > :first-child, .framer-qEAE9 .framer-1uzsp8d > :first-child, .framer-qEAE9 .framer-12l3s2 > :first-child, .framer-qEAE9 .framer-1w2t2zd > :first-child, .framer-qEAE9 .framer-1j1r254 > :first-child, .framer-qEAE9 .framer-e6zikm > :first-child, .framer-qEAE9 .framer-1p0ava6 > :first-child, .framer-qEAE9 .framer-u0a727 > :first-child, .framer-qEAE9 .framer-1d0mrjo > :first-child, .framer-qEAE9 .framer-170a96v > :first-child, .framer-qEAE9 .framer-ee9wu6 > :first-child, .framer-qEAE9 .framer-js4er7 > :first-child, .framer-qEAE9 .framer-4br5ki > :first-child, .framer-qEAE9 .framer-1awcu6h > :first-child, .framer-qEAE9 .framer-m09v54 > :first-child, .framer-qEAE9 .framer-gsjo1x > :first-child, .framer-qEAE9 .framer-qu0a10 > :first-child, .framer-qEAE9 .framer-lp2msq > :first-child, .framer-qEAE9 .framer-ez0rmv > :first-child, .framer-qEAE9 .framer-1rbp43i > :first-child, .framer-qEAE9 .framer-wz9kpz > :first-child, .framer-qEAE9 .framer-1gg67ex > :first-child, .framer-qEAE9 .framer-4qyoi9 > :first-child, .framer-qEAE9 .framer-1tza3ay > :first-child, .framer-qEAE9 .framer-314l66 > :first-child, .framer-qEAE9 .framer-1m8w51z > :first-child, .framer-qEAE9 .framer-6aapo3 > :first-child, .framer-qEAE9 .framer-1t1njda > :first-child, .framer-qEAE9 .framer-1y5jdrz > :first-child, .framer-qEAE9 .framer-vezjtd > :first-child, .framer-qEAE9 .framer-qe5ij3 > :first-child, .framer-qEAE9 .framer-fkipp8 > :first-child, .framer-qEAE9 .framer-1sf6wm9 > :first-child, .framer-qEAE9 .framer-bvswrf > :first-child, .framer-qEAE9 .framer-1xukq21 > :first-child, .framer-qEAE9 .framer-fokgjy > :first-child, .framer-qEAE9 .framer-99mt3r > :first-child, .framer-qEAE9 .framer-lgqyqz > :first-child, .framer-qEAE9 .framer-9ruc83 > :first-child, .framer-qEAE9 .framer-1qwk78i > :first-child, .framer-qEAE9 .framer-tq3wkc > :first-child, .framer-qEAE9 .framer-kw2em5 > :first-child, .framer-qEAE9 .framer-1cy78an > :first-child, .framer-qEAE9 .framer-12qjnha > :first-child, .framer-qEAE9 .framer-1mb0g1k > :first-child, .framer-qEAE9 .framer-oua5sh > :first-child, .framer-qEAE9 .framer-1fcgvx6 > :first-child, .framer-qEAE9 .framer-16qg0uk > :first-child, .framer-qEAE9 .framer-hi4lbj > :first-child, .framer-qEAE9 .framer-yn5ab5 > :first-child, .framer-qEAE9 .framer-1e7okau > :first-child, .framer-qEAE9 .framer-1tpn81t > :first-child, .framer-qEAE9 .framer-t5jgta > :first-child, .framer-qEAE9 .framer-1has4ey > :first-child, .framer-qEAE9 .framer-1gfcbbx > :first-child, .framer-qEAE9 .framer-6knzmn > :first-child, .framer-qEAE9 .framer-1p1ipbu > :first-child, .framer-qEAE9 .framer-2gw304 > :first-child, .framer-qEAE9 .framer-17iwg9z > :first-child, .framer-qEAE9 .framer-5qhpeg > :first-child { margin-left: 0px; } .framer-qEAE9 .framer-1lzv5fs > :last-child, .framer-qEAE9 .framer-xptvso > :last-child, .framer-qEAE9 .framer-1ucwy3a > :last-child, .framer-qEAE9 .framer-7nf3xi > :last-child, .framer-qEAE9 .framer-19oucjp > :last-child, .framer-qEAE9 .framer-m2lez2 > :last-child, .framer-qEAE9 .framer-z1l5x1 > :last-child, .framer-qEAE9 .framer-1m0q2nb > :last-child, .framer-qEAE9 .framer-8tq85w > :last-child, .framer-qEAE9 .framer-1b50iko > :last-child, .framer-qEAE9 .framer-10udbwm > :last-child, .framer-qEAE9 .framer-1l3d30s > :last-child, .framer-qEAE9 .framer-gya0yf > :last-child, .framer-qEAE9 .framer-38o4i1 > :last-child, .framer-qEAE9 .framer-1uzsp8d > :last-child, .framer-qEAE9 .framer-12l3s2 > :last-child, .framer-qEAE9 .framer-1w2t2zd > :last-child, .framer-qEAE9 .framer-1j1r254 > :last-child, .framer-qEAE9 .framer-e6zikm > :last-child, .framer-qEAE9 .framer-1p0ava6 > :last-child, .framer-qEAE9 .framer-u0a727 > :last-child, .framer-qEAE9 .framer-1d0mrjo > :last-child, .framer-qEAE9 .framer-170a96v > :last-child, .framer-qEAE9 .framer-ee9wu6 > :last-child, .framer-qEAE9 .framer-js4er7 > :last-child, .framer-qEAE9 .framer-4br5ki > :last-child, .framer-qEAE9 .framer-1awcu6h > :last-child, .framer-qEAE9 .framer-m09v54 > :last-child, .framer-qEAE9 .framer-gsjo1x > :last-child, .framer-qEAE9 .framer-qu0a10 > :last-child, .framer-qEAE9 .framer-lp2msq > :last-child, .framer-qEAE9 .framer-ez0rmv > :last-child, .framer-qEAE9 .framer-1rbp43i > :last-child, .framer-qEAE9 .framer-wz9kpz > :last-child, .framer-qEAE9 .framer-1gg67ex > :last-child, .framer-qEAE9 .framer-4qyoi9 > :last-child, .framer-qEAE9 .framer-1tza3ay > :last-child, .framer-qEAE9 .framer-314l66 > :last-child, .framer-qEAE9 .framer-1m8w51z > :last-child, .framer-qEAE9 .framer-6aapo3 > :last-child, .framer-qEAE9 .framer-1t1njda > :last-child, .framer-qEAE9 .framer-1y5jdrz > :last-child, .framer-qEAE9 .framer-vezjtd > :last-child, .framer-qEAE9 .framer-qe5ij3 > :last-child, .framer-qEAE9 .framer-fkipp8 > :last-child, .framer-qEAE9 .framer-1sf6wm9 > :last-child, .framer-qEAE9 .framer-bvswrf > :last-child, .framer-qEAE9 .framer-1xukq21 > :last-child, .framer-qEAE9 .framer-fokgjy > :last-child, .framer-qEAE9 .framer-99mt3r > :last-child, .framer-qEAE9 .framer-lgqyqz > :last-child, .framer-qEAE9 .framer-9ruc83 > :last-child, .framer-qEAE9 .framer-1qwk78i > :last-child, .framer-qEAE9 .framer-tq3wkc > :last-child, .framer-qEAE9 .framer-kw2em5 > :last-child, .framer-qEAE9 .framer-1cy78an > :last-child, .framer-qEAE9 .framer-12qjnha > :last-child, .framer-qEAE9 .framer-1mb0g1k > :last-child, .framer-qEAE9 .framer-oua5sh > :last-child, .framer-qEAE9 .framer-1fcgvx6 > :last-child, .framer-qEAE9 .framer-16qg0uk > :last-child, .framer-qEAE9 .framer-hi4lbj > :last-child, .framer-qEAE9 .framer-yn5ab5 > :last-child, .framer-qEAE9 .framer-1e7okau > :last-child, .framer-qEAE9 .framer-1tpn81t > :last-child, .framer-qEAE9 .framer-t5jgta > :last-child, .framer-qEAE9 .framer-1has4ey > :last-child, .framer-qEAE9 .framer-1gfcbbx > :last-child, .framer-qEAE9 .framer-6knzmn > :last-child, .framer-qEAE9 .framer-1p1ipbu > :last-child, .framer-qEAE9 .framer-2gw304 > :last-child, .framer-qEAE9 .framer-17iwg9z > :last-child, .framer-qEAE9 .framer-5qhpeg > :last-child { margin-right: 0px; } .framer-qEAE9 .framer-julcd2 > *, .framer-qEAE9 .framer-1bzs3p8 > *, .framer-qEAE9 .framer-122l333 > *, .framer-qEAE9 .framer-1a10vdn > *, .framer-qEAE9 .framer-g5plm7 > *, .framer-qEAE9 .framer-195jupi > *, .framer-qEAE9 .framer-502e2r > *, .framer-qEAE9 .framer-87wlk0 > *, .framer-qEAE9 .framer-6d8i9c > *, .framer-qEAE9 .framer-1ilus8x > *, .framer-qEAE9 .framer-t73htq > *, .framer-qEAE9 .framer-1tu9s5t > *, .framer-qEAE9 .framer-11xc51m > *, .framer-qEAE9 .framer-kkinld > *, .framer-qEAE9 .framer-1yq5mkf > *, .framer-qEAE9 .framer-sis1uk > *, .framer-qEAE9 .framer-yge4c4 > *, .framer-qEAE9 .framer-16qmnlx > *, .framer-qEAE9 .framer-qpq12d > *, .framer-qEAE9 .framer-rls08l > *, .framer-qEAE9 .framer-c1dr1z > *, .framer-qEAE9 .framer-1h1ji3w > *, .framer-qEAE9 .framer-1sd5h4p > *, .framer-qEAE9 .framer-1m8zvfr > *, .framer-qEAE9 .framer-ee75cv > *, .framer-qEAE9 .framer-fpphhs > *, .framer-qEAE9 .framer-1s32kki > *, .framer-qEAE9 .framer-c54h3b > *, .framer-qEAE9 .framer-6r0e4o > *, .framer-qEAE9 .framer-1ax94tp > *, .framer-qEAE9 .framer-1v2oqkt > *, .framer-qEAE9 .framer-d6gp40 > *, .framer-qEAE9 .framer-1wd3z49 > *, .framer-qEAE9 .framer-1l8afyr > *, .framer-qEAE9 .framer-1vy36d > *, .framer-qEAE9 .framer-1fp4n3s > *, .framer-qEAE9 .framer-t5kvdc > *, .framer-qEAE9 .framer-1xi5jlm > *, .framer-qEAE9 .framer-17j2boo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qEAE9 .framer-199n87a > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-qEAE9 .framer-7nf3xi > *, .framer-qEAE9 .framer-1uzsp8d > *, .framer-qEAE9 .framer-e6zikm > *, .framer-qEAE9 .framer-ee9wu6 > *, .framer-qEAE9 .framer-gsjo1x > *, .framer-qEAE9 .framer-1gg67ex > *, .framer-qEAE9 .framer-1m8w51z > *, .framer-qEAE9 .framer-1y5jdrz > *, .framer-qEAE9 .framer-fkipp8 > *, .framer-qEAE9 .framer-99mt3r > *, .framer-qEAE9 .framer-t5jgta > *, .framer-qEAE9 .framer-6knzmn > *, .framer-qEAE9 .framer-17iwg9z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-qEAE9 .framer-m2lez2 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-qEAE9 .framer-1m0q2nb > *, .framer-qEAE9 .framer-1b50iko > *, .framer-qEAE9 .framer-10udbwm > *, .framer-qEAE9 .framer-1l3d30s > *, .framer-qEAE9 .framer-gya0yf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-qEAE9 .framer-ez0rmv > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-qEAE9 .framer-as5epa > *, .framer-qEAE9 .framer-1rdf1q9 > *, .framer-qEAE9 .framer-1ntufjv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-qEAE9 .framer-vq11yf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-qEAE9 .framer-1jy3a1h > *, .framer-qEAE9 .framer-evf6oj > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-qEAE9 .framer-avqmk > *, .framer-qEAE9 .framer-1xc5wax > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-qEAE9[data-border=\"true\"]::after, .framer-qEAE9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-qEAE9.framer-p1r0nh { width: 810px; } .framer-qEAE9 .framer-2v9gp6 { width: 100%; } .framer-qEAE9 .framer-julcd2 { flex: 1 0 0px; width: 1px; } .framer-qEAE9 .framer-38o4i1 { padding: 30px 0px 0px 0px; } .framer-qEAE9 .framer-tinohs { height: var(--framer-aspect-ratio-supported, 634px); } .framer-qEAE9 .framer-u0a727 { padding: 40px 200px 20px 20px; } .framer-qEAE9 .framer-p09pfb { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px 0px 60px 30px; } .framer-qEAE9 .framer-r50sse { height: var(--framer-aspect-ratio-supported, 844px); } .framer-qEAE9 .framer-y6dne6 { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px 0px 60px 20px; } .framer-qEAE9 .framer-12lhnvz { height: var(--framer-aspect-ratio-supported, 487px); } .framer-qEAE9 .framer-ez0rmv { flex-direction: column; gap: 30px; padding: 0px 0px 60px 0px; } .framer-qEAE9 .framer-qpq12d, .framer-qEAE9 .framer-rls08l { flex: none; width: 100%; } .framer-qEAE9 .framer-11lgxul, .framer-qEAE9 .framer-1butw1h { height: var(--framer-aspect-ratio-supported, 859px); } .framer-qEAE9 .framer-y2qkv { padding: 0px 0px 60px 0px; } .framer-qEAE9 .framer-1swouxk { height: var(--framer-aspect-ratio-supported, 850px); } .framer-qEAE9 .framer-1fn9em0 { height: var(--framer-aspect-ratio-supported, 725px); } .framer-qEAE9 .framer-evc84w { padding: 0px 0px 30px 0px; } .framer-qEAE9 .framer-1mp9b9j { height: var(--framer-aspect-ratio-supported, 500px); } .framer-qEAE9 .framer-9ruc83 { padding: 60px 30px 80px 30px; } .framer-qEAE9 .framer-1qwk78i, .framer-qEAE9 .framer-12qjnha, .framer-qEAE9 .framer-16qg0uk { padding: 0px 30px 0px 30px; } .framer-qEAE9 .framer-1slqzmb, .framer-qEAE9 .framer-1pbxbk8 { height: var(--framer-aspect-ratio-supported, 391px); } .framer-qEAE9 .framer-tq3wkc, .framer-qEAE9 .framer-1cy78an, .framer-qEAE9 .framer-1mb0g1k, .framer-qEAE9 .framer-1fcgvx6, .framer-qEAE9 .framer-hi4lbj { padding: 0px 30px 80px 30px; } .framer-qEAE9 .framer-1p5urrj, .framer-qEAE9 .framer-14bo6z3, .framer-qEAE9 .framer-1z7agy, .framer-qEAE9 .framer-tyuem6 { height: var(--framer-aspect-ratio-supported, 390px); } .framer-qEAE9 .framer-yjhczn { height: var(--framer-aspect-ratio-supported, 702px); } .framer-qEAE9 .framer-avqmk, .framer-qEAE9 .framer-1xc5wax { gap: 10px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qEAE9 .framer-p09pfb, .framer-qEAE9 .framer-y6dne6, .framer-qEAE9 .framer-ez0rmv, .framer-qEAE9 .framer-avqmk, .framer-qEAE9 .framer-1xc5wax { gap: 0px; } .framer-qEAE9 .framer-p09pfb > *, .framer-qEAE9 .framer-y6dne6 > *, .framer-qEAE9 .framer-ez0rmv > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-qEAE9 .framer-p09pfb > :first-child, .framer-qEAE9 .framer-y6dne6 > :first-child, .framer-qEAE9 .framer-ez0rmv > :first-child, .framer-qEAE9 .framer-avqmk > :first-child, .framer-qEAE9 .framer-1xc5wax > :first-child { margin-top: 0px; } .framer-qEAE9 .framer-p09pfb > :last-child, .framer-qEAE9 .framer-y6dne6 > :last-child, .framer-qEAE9 .framer-ez0rmv > :last-child, .framer-qEAE9 .framer-avqmk > :last-child, .framer-qEAE9 .framer-1xc5wax > :last-child { margin-bottom: 0px; } .framer-qEAE9 .framer-avqmk > *, .framer-qEAE9 .framer-1xc5wax > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-qEAE9.framer-p1r0nh { width: 390px; } .framer-qEAE9 .framer-2v9gp6 { max-width: unset; padding: 30px 20px 0px 20px; width: 100%; } .framer-qEAE9 .framer-1u2ylbg-container { height: auto; } .framer-qEAE9 .framer-1lzv5fs, .framer-qEAE9 .framer-m2lez2 { flex-direction: column; } .framer-qEAE9 .framer-julcd2, .framer-qEAE9 .framer-kkinld, .framer-qEAE9 .framer-1yq5mkf, .framer-qEAE9 .framer-yge4c4, .framer-qEAE9 .framer-1s402l4, .framer-qEAE9 .framer-6r0e4o, .framer-qEAE9 .framer-1v2oqkt, .framer-qEAE9 .framer-1wd3z49 { width: 100%; } .framer-qEAE9 .framer-199n87a { padding: 0px 18px 0px 18px; width: 100%; } .framer-qEAE9 .framer-ebyyw4, .framer-qEAE9 .framer-g2lduw, .framer-qEAE9 .framer-1cov8jo, .framer-qEAE9 .framer-57knio, .framer-qEAE9 .framer-1ukzy8t, .framer-qEAE9 .framer-1v4hb2p, .framer-qEAE9 .framer-dpots2, .framer-qEAE9 .framer-1dfk4u1, .framer-qEAE9 .framer-1alt7u7, .framer-qEAE9 .framer-111qeag, .framer-qEAE9 .framer-194p2fh, .framer-qEAE9 .framer-zmpy3q, .framer-qEAE9 .framer-1ryijuu, .framer-qEAE9 .framer-vfoief, .framer-qEAE9 .framer-3puhfm, .framer-qEAE9 .framer-zqovx9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-qEAE9 .framer-bxn7sx { height: var(--framer-aspect-ratio-supported, 260px); width: 100%; } .framer-qEAE9 .framer-falrbx { padding: 0px 30px 80px 30px; } .framer-qEAE9 .framer-898vk8, .framer-qEAE9 .framer-osb7rx, .framer-qEAE9 .framer-hwvevy, .framer-qEAE9 .framer-11pnf8m, .framer-qEAE9 .framer-hwkabr, .framer-qEAE9 .framer-zuwaqd, .framer-qEAE9 .framer-1ghml21, .framer-qEAE9 .framer-1d9pvgv, .framer-qEAE9 .framer-c06zlt, .framer-qEAE9 .framer-9u4i8d, .framer-qEAE9 .framer-h8mui2, .framer-qEAE9 .framer-1pqkoua, .framer-qEAE9 .framer-4v8lqd, .framer-qEAE9 .framer-17si17u, .framer-qEAE9 .framer-1mvx4jx, .framer-qEAE9 .framer-1q2nxfa, .framer-qEAE9 .framer-hcgo5o, .framer-qEAE9 .framer-1vtdm2y, .framer-qEAE9 .framer-fk3wks, .framer-qEAE9 .framer-5mr63r, .framer-qEAE9 .framer-tyyl6h, .framer-qEAE9 .framer-amc5ao { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-qEAE9 .framer-1bzs3p8, .framer-qEAE9 .framer-87wlk0, .framer-qEAE9 .framer-11xc51m, .framer-qEAE9 .framer-sis1uk, .framer-qEAE9 .framer-16qmnlx, .framer-qEAE9 .framer-c1dr1z, .framer-qEAE9 .framer-1h1ji3w, .framer-qEAE9 .framer-ee75cv, .framer-qEAE9 .framer-1s32kki, .framer-qEAE9 .framer-c54h3b, .framer-qEAE9 .framer-1vy36d, .framer-qEAE9 .framer-1fp4n3s { padding: 10px 0px 0px 0px; } .framer-qEAE9 .framer-z1l5x1 { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-qEAE9 .framer-324rgq, .framer-qEAE9 .framer-1gfvlt0 { height: 20px; width: 20px; } .framer-qEAE9 .framer-8tq85w, .framer-qEAE9 .framer-6d8i9c, .framer-qEAE9 .framer-1ilus8x, .framer-qEAE9 .framer-t73htq, .framer-qEAE9 .framer-1tu9s5t, .framer-qEAE9 .framer-qpq12d, .framer-qEAE9 .framer-rls08l { flex: none; width: 100%; } .framer-qEAE9 .framer-n19neu { flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-qEAE9 .framer-38o4i1 { padding: 30px 0px 0px 0px; } .framer-qEAE9 .framer-12l3s2 { flex-direction: column; gap: 30px; } .framer-qEAE9 .framer-1wkpn6b, .framer-qEAE9 .framer-1k7oiz4, .framer-qEAE9 .framer-1i63ru1, .framer-qEAE9 .framer-10dhswr { height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-qEAE9 .framer-tinohs { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 279px); } .framer-qEAE9 .framer-u0a727, .framer-qEAE9 .framer-4br5ki { padding: 30px 0px 20px 0px; } .framer-qEAE9 .framer-p09pfb, .framer-qEAE9 .framer-y6dne6 { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px 0px 60px 0px; } .framer-qEAE9 .framer-r50sse { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 372px); } .framer-qEAE9 .framer-12lhnvz { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 214px); } .framer-qEAE9 .framer-ez0rmv { flex-direction: column; gap: 30px; padding: 0px 0px 60px 0px; } .framer-qEAE9 .framer-1e320mf, .framer-qEAE9 .framer-1dnq1p4, .framer-qEAE9 .framer-y2qkv, .framer-qEAE9 .framer-3pabyk, .framer-qEAE9 .framer-5ykng5 { padding: 0px 0px 60px 0px; } .framer-qEAE9 .framer-11lgxul, .framer-qEAE9 .framer-1butw1h { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 378px); } .framer-qEAE9 .framer-1swouxk { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 374px); } .framer-qEAE9 .framer-1sf6wm9, .framer-qEAE9 .framer-1qwk78i, .framer-qEAE9 .framer-kw2em5, .framer-qEAE9 .framer-12qjnha, .framer-qEAE9 .framer-oua5sh, .framer-qEAE9 .framer-16qg0uk, .framer-qEAE9 .framer-yn5ab5 { padding: 18px 0px 18px 0px; } .framer-qEAE9 .framer-1fn9em0 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 320px); } .framer-qEAE9 .framer-evc84w { padding: 0px 0px 30px 0px; } .framer-qEAE9 .framer-1mp9b9j { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 220px); } .framer-qEAE9 .framer-9ruc83 { flex-direction: column; padding: 60px 0px 60px 0px; } .framer-qEAE9 .framer-1slqzmb, .framer-qEAE9 .framer-1p5urrj, .framer-qEAE9 .framer-1z7agy { flex: none; height: var(--framer-aspect-ratio-supported, 392px); width: 60%; } .framer-qEAE9 .framer-tq3wkc, .framer-qEAE9 .framer-1cy78an, .framer-qEAE9 .framer-1mb0g1k, .framer-qEAE9 .framer-1fcgvx6, .framer-qEAE9 .framer-hi4lbj { flex-direction: column; padding: 20px 0px 60px 0px; } .framer-qEAE9 .framer-1pbxbk8, .framer-qEAE9 .framer-14bo6z3, .framer-qEAE9 .framer-tyuem6 { flex: none; height: var(--framer-aspect-ratio-supported, 392px); order: 1; width: 60%; } .framer-qEAE9 .framer-1ax94tp, .framer-qEAE9 .framer-d6gp40, .framer-qEAE9 .framer-1l8afyr { order: 0; padding: 0px; width: 100%; } .framer-qEAE9 .framer-yjhczn { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 309px); } .framer-qEAE9 .framer-17iwg9z { flex-direction: column; gap: 40px; } .framer-qEAE9 .framer-1ntufjv { flex: none; gap: 14px; width: 100%; } .framer-qEAE9 .framer-t5kvdc { gap: 8px; } .framer-qEAE9 .framer-1xi5jlm { align-content: flex-start; align-items: flex-start; flex: none; gap: 8px; width: 100%; } .framer-qEAE9 .framer-1jy3a1h, .framer-qEAE9 .framer-evf6oj { gap: 12px; } .framer-qEAE9 .framer-17j2boo { align-content: flex-start; align-items: flex-start; flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qEAE9 .framer-1lzv5fs, .framer-qEAE9 .framer-m2lez2, .framer-qEAE9 .framer-n19neu, .framer-qEAE9 .framer-12l3s2, .framer-qEAE9 .framer-p09pfb, .framer-qEAE9 .framer-y6dne6, .framer-qEAE9 .framer-ez0rmv, .framer-qEAE9 .framer-9ruc83, .framer-qEAE9 .framer-tq3wkc, .framer-qEAE9 .framer-1cy78an, .framer-qEAE9 .framer-1mb0g1k, .framer-qEAE9 .framer-1fcgvx6, .framer-qEAE9 .framer-hi4lbj, .framer-qEAE9 .framer-17iwg9z, .framer-qEAE9 .framer-1ntufjv, .framer-qEAE9 .framer-t5kvdc, .framer-qEAE9 .framer-1xi5jlm, .framer-qEAE9 .framer-1jy3a1h, .framer-qEAE9 .framer-evf6oj { gap: 0px; } .framer-qEAE9 .framer-1lzv5fs > *, .framer-qEAE9 .framer-9ruc83 > *, .framer-qEAE9 .framer-tq3wkc > *, .framer-qEAE9 .framer-1cy78an > *, .framer-qEAE9 .framer-1mb0g1k > *, .framer-qEAE9 .framer-1fcgvx6 > *, .framer-qEAE9 .framer-hi4lbj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qEAE9 .framer-1lzv5fs > :first-child, .framer-qEAE9 .framer-m2lez2 > :first-child, .framer-qEAE9 .framer-n19neu > :first-child, .framer-qEAE9 .framer-12l3s2 > :first-child, .framer-qEAE9 .framer-p09pfb > :first-child, .framer-qEAE9 .framer-y6dne6 > :first-child, .framer-qEAE9 .framer-ez0rmv > :first-child, .framer-qEAE9 .framer-9ruc83 > :first-child, .framer-qEAE9 .framer-tq3wkc > :first-child, .framer-qEAE9 .framer-1cy78an > :first-child, .framer-qEAE9 .framer-1mb0g1k > :first-child, .framer-qEAE9 .framer-1fcgvx6 > :first-child, .framer-qEAE9 .framer-hi4lbj > :first-child, .framer-qEAE9 .framer-17iwg9z > :first-child, .framer-qEAE9 .framer-1ntufjv > :first-child, .framer-qEAE9 .framer-t5kvdc > :first-child, .framer-qEAE9 .framer-1xi5jlm > :first-child, .framer-qEAE9 .framer-1jy3a1h > :first-child, .framer-qEAE9 .framer-evf6oj > :first-child { margin-top: 0px; } .framer-qEAE9 .framer-1lzv5fs > :last-child, .framer-qEAE9 .framer-m2lez2 > :last-child, .framer-qEAE9 .framer-n19neu > :last-child, .framer-qEAE9 .framer-12l3s2 > :last-child, .framer-qEAE9 .framer-p09pfb > :last-child, .framer-qEAE9 .framer-y6dne6 > :last-child, .framer-qEAE9 .framer-ez0rmv > :last-child, .framer-qEAE9 .framer-9ruc83 > :last-child, .framer-qEAE9 .framer-tq3wkc > :last-child, .framer-qEAE9 .framer-1cy78an > :last-child, .framer-qEAE9 .framer-1mb0g1k > :last-child, .framer-qEAE9 .framer-1fcgvx6 > :last-child, .framer-qEAE9 .framer-hi4lbj > :last-child, .framer-qEAE9 .framer-17iwg9z > :last-child, .framer-qEAE9 .framer-1ntufjv > :last-child, .framer-qEAE9 .framer-t5kvdc > :last-child, .framer-qEAE9 .framer-1xi5jlm > :last-child, .framer-qEAE9 .framer-1jy3a1h > :last-child, .framer-qEAE9 .framer-evf6oj > :last-child { margin-bottom: 0px; } .framer-qEAE9 .framer-m2lez2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-qEAE9 .framer-n19neu > *, .framer-qEAE9 .framer-12l3s2 > *, .framer-qEAE9 .framer-p09pfb > *, .framer-qEAE9 .framer-y6dne6 > *, .framer-qEAE9 .framer-ez0rmv > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-qEAE9 .framer-17iwg9z > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-qEAE9 .framer-1ntufjv > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-qEAE9 .framer-t5kvdc > *, .framer-qEAE9 .framer-1xi5jlm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-qEAE9 .framer-1jy3a1h > *, .framer-qEAE9 .framer-evf6oj > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20281\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"K3GYY0tP9\":{\"layout\":[\"fixed\",\"auto\"]},\"qgFnMzCLe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"txYbVZkWW\":{\"pattern\":\":txYbVZkWW\",\"name\":\"overview\"},\"XYNKRqLOU\":{\"pattern\":\":XYNKRqLOU\",\"name\":\"projectoverview\"},\"lTI5XbKLX\":{\"pattern\":\":lTI5XbKLX\",\"name\":\"cb\"},\"z2bqK51Ku\":{\"pattern\":\":z2bqK51Ku\",\"name\":\"os\"},\"XRM08rc1T\":{\"pattern\":\":XRM08rc1T\",\"name\":\"ut\"},\"chzUbcbOo\":{\"pattern\":\":chzUbcbOo\",\"name\":\"ad\"},\"ttCxjjhig\":{\"pattern\":\":ttCxjjhig\",\"name\":\"cjm\"},\"AA1_yd4Xo\":{\"pattern\":\":AA1_yd4Xo\",\"name\":\"fd\"},\"ZZPs77BOU\":{\"pattern\":\":ZZPs77BOU\",\"name\":\"lf\"},\"Le7lONU8a\":{\"pattern\":\":Le7lONU8a\",\"name\":\"hf\"},\"HUxGv_QZa\":{\"pattern\":\":HUxGv_QZa\",\"name\":\"ho\"},\"FxRH7Znuo\":{\"pattern\":\":FxRH7Znuo\",\"name\":\"ft\"}}\n * @framerResponsiveScreen\n */const FramerPAPqm0Dxg=withCSS(Component,css,\"framer-qEAE9\");export default FramerPAPqm0Dxg;FramerPAPqm0Dxg.displayName=\"Page\";FramerPAPqm0Dxg.defaultProps={height:20281,width:1200};addFonts(FramerPAPqm0Dxg,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"}]},...NavbarFonts,...CarouselLowFidFonts,...CarouselLowFidMobileFonts,...CopymailFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPAPqm0Dxg\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"20281\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"txYbVZkWW\\\":{\\\"pattern\\\":\\\":txYbVZkWW\\\",\\\"name\\\":\\\"overview\\\"},\\\"XYNKRqLOU\\\":{\\\"pattern\\\":\\\":XYNKRqLOU\\\",\\\"name\\\":\\\"projectoverview\\\"},\\\"lTI5XbKLX\\\":{\\\"pattern\\\":\\\":lTI5XbKLX\\\",\\\"name\\\":\\\"cb\\\"},\\\"z2bqK51Ku\\\":{\\\"pattern\\\":\\\":z2bqK51Ku\\\",\\\"name\\\":\\\"os\\\"},\\\"XRM08rc1T\\\":{\\\"pattern\\\":\\\":XRM08rc1T\\\",\\\"name\\\":\\\"ut\\\"},\\\"chzUbcbOo\\\":{\\\"pattern\\\":\\\":chzUbcbOo\\\",\\\"name\\\":\\\"ad\\\"},\\\"ttCxjjhig\\\":{\\\"pattern\\\":\\\":ttCxjjhig\\\",\\\"name\\\":\\\"cjm\\\"},\\\"AA1_yd4Xo\\\":{\\\"pattern\\\":\\\":AA1_yd4Xo\\\",\\\"name\\\":\\\"fd\\\"},\\\"ZZPs77BOU\\\":{\\\"pattern\\\":\\\":ZZPs77BOU\\\",\\\"name\\\":\\\"lf\\\"},\\\"Le7lONU8a\\\":{\\\"pattern\\\":\\\":Le7lONU8a\\\",\\\"name\\\":\\\"hf\\\"},\\\"HUxGv_QZa\\\":{\\\"pattern\\\":\\\":HUxGv_QZa\\\",\\\"name\\\":\\\"ho\\\"},\\\"FxRH7Znuo\\\":{\\\"pattern\\\":\\\":FxRH7Znuo\\\",\\\"name\\\":\\\"ft\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K3GYY0tP9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qgFnMzCLe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "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", "filteredSlots", "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", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "css", "FramerCxEljz9yU", "withCSS", "CxEljz9yU_default", "addPropertyControls", "ControlType", "addFonts", "CarouselFonts", "getFonts", "Carousel", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Carousel", "Image2", "css", "FramerzVlT9lFJb", "withCSS", "zVlT9lFJb_default", "addFonts", "CarouselFonts", "NavbarFonts", "getFonts", "escVIaPj3_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "CarouselLowFidFonts", "CxEljz9yU_default", "CarouselLowFidMobileFonts", "zVlT9lFJb_default", "CopymailFonts", "NblXFrbMn_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transformTemplate1", "_", "t", "transition2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "isDisplayed", "isDisplayed1", "ref10", "elementId9", "ref11", "elementId10", "ref12", "elementId11", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "SVG", "Link", "css", "FramerPAPqm0Dxg", "withCSS", "PAPqm0Dxg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
