{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/SQYPIJG0oWtaZyLS44yw/KVwGt98VY5HwmKkyKhbU/oamYQd52R.js", "ssg:https://framerusercontent.com/modules/uSwrYznDe0xcQ9ZGpwYx/166ltB1mlwSy3zGQoI6U/yMfIZjaiL.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"NWUROqVlH\",\"LazUywr3B\",\"F30JODFQy\",\"f9NDWs5KX\",\"HIuqcDo8k\",\"a_aSVBdjx\",\"Qb9vgRMic\",\"eq4_sBhAh\",\"LY2NE0zdE\",\"sGIElkFKd\"];const serializationHash=\"framer-Kv3p0\";const variantClassNames={a_aSVBdjx:\"framer-v-nrbkfe\",eq4_sBhAh:\"framer-v-d5xr90\",F30JODFQy:\"framer-v-1j00gur\",f9NDWs5KX:\"framer-v-1ue0ib8\",HIuqcDo8k:\"framer-v-1vt65o\",LazUywr3B:\"framer-v-2nkm5f\",LY2NE0zdE:\"framer-v-d6736\",NWUROqVlH:\"framer-v-1t5igun\",Qb9vgRMic:\"framer-v-z4tpyn\",sGIElkFKd:\"framer-v-y13ebd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"final design\":\"eq4_sBhAh\",\"Variant 1\":\"NWUROqVlH\",achievements:\"LY2NE0zdE\",challenges:\"Qb9vgRMic\",conceptualize:\"a_aSVBdjx\",context:\"LazUywr3B\",goal:\"F30JODFQy\",redefine:\"HIuqcDo8k\",reflections:\"sGIElkFKd\",research:\"f9NDWs5KX\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"NWUROqVlH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NWUROqVlH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapxs3d6b=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"F30JODFQy\");});const onTapb0glxe=activeVariantCallback(async(...args)=>{setVariant(\"LazUywr3B\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1t5igun\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NWUROqVlH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({a_aSVBdjx:{\"data-framer-name\":\"conceptualize\"},eq4_sBhAh:{\"data-framer-name\":\"final design\"},F30JODFQy:{\"data-framer-name\":\"goal\"},f9NDWs5KX:{\"data-framer-name\":\"research\"},HIuqcDo8k:{\"data-framer-name\":\"redefine\"},LazUywr3B:{\"data-framer-name\":\"context\",\"data-highlight\":true,onTap:onTapxs3d6b},LY2NE0zdE:{\"data-framer-name\":\"achievements\"},Qb9vgRMic:{\"data-framer-name\":\"challenges\"},sGIElkFKd:{\"data-framer-name\":\"reflections\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":he9CnITdR\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tnnliq framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"zKVJQ0v9y\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Overview.\"})}),className:\"framer-10743ut\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"GiOSG6NMH\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Sk3nLdzPh\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6uaj4d framer-uik77e\",\"data-framer-name\":\"sidebar component\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yXMWv63cL\",onTap:onTapb0glxe,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Context.\"})}),className:\"framer-5erldq\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"SCn4VZxy3\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LazUywr3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Context.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":W44niEb1x\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qj89qv framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"t3JB2eBS4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Goal breakdown.\"})}),className:\"framer-p57ul4\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"sONttRUtQ\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({F30JODFQy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Goal breakdown.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":YEH9P848o\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-shxga framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"txw67HefE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Research.\"})}),className:\"framer-13cyt15\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"EuchE0ADp\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f9NDWs5KX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Research.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":KZ7X0__y1\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fpk7fg framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"soM9Eh7XK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Redefine the goal.\"})}),className:\"framer-ztpcup\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"BsjYkp98j\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HIuqcDo8k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Redefine the goal.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":trbBxTUSd\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ymaypi framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"z781bPp_B\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Conceptualize.\"})}),className:\"framer-guzfe0\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"SgMVvtA6U\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a_aSVBdjx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Conceptualize.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":S_aM0py3s\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-133x5x0 framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"UasH2lQHW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Challenges.\"})}),className:\"framer-1szqr84\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"JUpbyN5CT\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qb9vgRMic:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Challenges.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":kLNgzu9EA\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bwo6ln framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"b5Gravblj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Final design.\"})}),className:\"framer-1sah3gw\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"IB6JuXsEP\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eq4_sBhAh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Final design.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":m2jnZupSc\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8347wa framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"sISqKN2L2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Achievements.\"})}),className:\"framer-1spt26b\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"kPo6qu7zd\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LY2NE0zdE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Achievements.\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":qb18JDNH6\",webPageId:\"yMfIZjaiL\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1n5rq20 framer-uik77e\",\"data-framer-name\":\"sidebar component\",layoutDependency:layoutDependency,layoutId:\"b_Lceo4kl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.35))\"},children:\"\\xb7 Reflections.\"})}),className:\"framer-oasisl\",\"data-framer-name\":\"My Role\",fonts:[\"GF;Hammersmith One-regular\"],layoutDependency:layoutDependency,layoutId:\"KqnRkgqY6\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.35)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sGIElkFKd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFtbWVyc21pdGggT25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Hammersmith One\", \"Hammersmith One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"\\xb7 Reflections.\"})})}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Kv3p0.framer-uik77e, .framer-Kv3p0 .framer-uik77e { display: block; }\",\".framer-Kv3p0.framer-1t5igun { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-Kv3p0 .framer-tnnliq, .framer-Kv3p0 .framer-1qj89qv, .framer-Kv3p0 .framer-shxga, .framer-Kv3p0 .framer-fpk7fg, .framer-Kv3p0 .framer-ymaypi, .framer-Kv3p0 .framer-133x5x0, .framer-Kv3p0 .framer-bwo6ln, .framer-Kv3p0 .framer-8347wa, .framer-Kv3p0 .framer-1n5rq20 { flex: none; height: 29px; overflow: hidden; position: relative; text-decoration: none; width: 100%; }\",\".framer-Kv3p0 .framer-10743ut, .framer-Kv3p0 .framer-5erldq, .framer-Kv3p0 .framer-p57ul4, .framer-Kv3p0 .framer-13cyt15, .framer-Kv3p0 .framer-ztpcup, .framer-Kv3p0 .framer-guzfe0, .framer-Kv3p0 .framer-1szqr84, .framer-Kv3p0 .framer-1sah3gw, .framer-Kv3p0 .framer-1spt26b, .framer-Kv3p0 .framer-oasisl { flex: none; height: auto; left: 50%; position: absolute; top: 48%; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-Kv3p0 .framer-6uaj4d { cursor: pointer; flex: none; height: 29px; overflow: hidden; position: relative; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kv3p0.framer-1t5igun { gap: 0px; } .framer-Kv3p0.framer-1t5igun > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Kv3p0.framer-1t5igun > :first-child { margin-top: 0px; } .framer-Kv3p0.framer-1t5igun > :last-child { margin-bottom: 0px; } }\",\".framer-Kv3p0.framer-v-2nkm5f.framer-1t5igun { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 362\n * @framerIntrinsicWidth 250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LazUywr3B\":{\"layout\":[\"fixed\",\"auto\"]},\"F30JODFQy\":{\"layout\":[\"fixed\",\"auto\"]},\"f9NDWs5KX\":{\"layout\":[\"fixed\",\"auto\"]},\"HIuqcDo8k\":{\"layout\":[\"fixed\",\"auto\"]},\"a_aSVBdjx\":{\"layout\":[\"fixed\",\"auto\"]},\"Qb9vgRMic\":{\"layout\":[\"fixed\",\"auto\"]},\"eq4_sBhAh\":{\"layout\":[\"fixed\",\"auto\"]},\"LY2NE0zdE\":{\"layout\":[\"fixed\",\"auto\"]},\"sGIElkFKd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroamYQd52R=withCSS(Component,css,\"framer-Kv3p0\");export default FrameroamYQd52R;FrameroamYQd52R.displayName=\"SW_sidebar\";FrameroamYQd52R.defaultProps={height:362,width:250};addPropertyControls(FrameroamYQd52R,{variant:{options:[\"NWUROqVlH\",\"LazUywr3B\",\"F30JODFQy\",\"f9NDWs5KX\",\"HIuqcDo8k\",\"a_aSVBdjx\",\"Qb9vgRMic\",\"eq4_sBhAh\",\"LY2NE0zdE\",\"sGIElkFKd\"],optionTitles:[\"Variant 1\",\"context\",\"goal\",\"research\",\"redefine\",\"conceptualize\",\"challenges\",\"final design\",\"achievements\",\"reflections\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroamYQd52R,[{explicitInter:true,fonts:[{family:\"Hammersmith One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbtxsks4MRXw.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroamYQd52R\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"250\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LazUywr3B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F30JODFQy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f9NDWs5KX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HIuqcDo8k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a_aSVBdjx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qb9vgRMic\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eq4_sBhAh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LY2NE0zdE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sGIElkFKd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"362\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oamYQd52R.map", "// Generated by Framer (5053712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Footernew from\"#framer/local/canvasComponent/eWCs04VGp/eWCs04VGp.js\";import SW_sidebar from\"#framer/local/canvasComponent/oamYQd52R/oamYQd52R.js\";import Navigation from\"#framer/local/canvasComponent/ozWzVkGqg/ozWzVkGqg.js\";import metadataProvider from\"#framer/local/webPageMetadata/yMfIZjaiL/yMfIZjaiL.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const SW_sidebarFonts=getFonts(SW_sidebar);const SW_sidebarWithVariantAppearEffect=withVariantAppearEffect(SW_sidebar);const MotionDivWithFX=withFX(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const YouTubeFonts=getFonts(YouTube);const FooternewFonts=getFonts(Footernew);const cycleOrder=[\"ny2A3NkVU\",\"yUDhZKOW3\",\"RYpbVje4e\",\"sam2Kcwpn\",\"NDQBntc7R\"];const breakpoints={NDQBntc7R:\"(min-width: 2560px)\",ny2A3NkVU:\"(min-width: 1440px) and (max-width: 2559px)\",RYpbVje4e:\"(min-width: 744px) and (max-width: 1023px)\",sam2Kcwpn:\"(max-width: 743px)\",yUDhZKOW3:\"(min-width: 1024px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NAGCV\";const variantClassNames={NDQBntc7R:\"framer-v-aosqs9\",ny2A3NkVU:\"framer-v-2ucnkj\",RYpbVje4e:\"framer-v-1cahbmd\",sam2Kcwpn:\"framer-v-1nto1rw\",yUDhZKOW3:\"framer-v-pw7dha\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition3={damping:30,delay:.4,mass:1,stiffness:158,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={\"big tablet\":\"yUDhZKOW3\",bigger:\"NDQBntc7R\",Desktop:\"ny2A3NkVU\",Phone:\"sam2Kcwpn\",Tablet:\"RYpbVje4e\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ny2A3NkVU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-NAGCV`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-NAGCV`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"RYpbVje4e\",\"sam2Kcwpn\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const id=useRouteElementId(\"he9CnITdR\");const id1=useRouteElementId(\"Sk3nLdzPh\");const id2=useRouteElementId(\"W44niEb1x\");const id3=useRouteElementId(\"YEH9P848o\");const id4=useRouteElementId(\"KZ7X0__y1\");const id5=useRouteElementId(\"trbBxTUSd\");const id6=useRouteElementId(\"S_aM0py3s\");const id7=useRouteElementId(\"EHTShG5Sq\");const ref12=React.useRef(null);const id8=useRouteElementId(\"QRtTlykpn\");const ref13=React.useRef(null);const id9=useRouteElementId(\"kLNgzu9EA\");const id10=useRouteElementId(\"m2jnZupSc\");const id11=useRouteElementId(\"qb18JDNH6\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"sam2Kcwpn\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ny2A3NkVU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2ucnkj\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dx8umf-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{variant:\"c1iazi1hh\"}},children:/*#__PURE__*/_jsx(Navigation,{EaaDReNFD:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",height:\"100%\",id:\"enKM9HHfi\",layoutId:\"enKM9HHfi\",style:{height:\"100%\",width:\"100%\"},variant:\"tmOoAOSqN\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:120,ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pc743f hidden-1cahbmd hidden-1nto1rw\",\"data-framer-name\":\"left column/brief\",name:\"left column/brief\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14vp3bd\",\"data-framer-name\":\"Frame 391\",name:\"Frame 391\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"250px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fb42na-container\",children:/*#__PURE__*/_jsx(SW_sidebarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:120,ref:ref3,target:\"NWUROqVlH\"},{offset:120,ref:ref2,target:\"LazUywr3B\"},{ref:ref4,target:\"F30JODFQy\"},{offset:120,ref:ref5,target:\"f9NDWs5KX\"},{offset:120,ref:ref6,target:\"HIuqcDo8k\"},{offset:120,ref:ref7,target:\"a_aSVBdjx\"},{offset:120,ref:ref8,target:\"Qb9vgRMic\"},{offset:120,ref:ref9,target:\"eq4_sBhAh\"},{offset:120,ref:ref10,target:\"LY2NE0zdE\"},{offset:120,ref:ref11,target:\"sGIElkFKd\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"vccarZ8Gl\",layoutId:\"vccarZ8Gl\",style:{width:\"100%\"},variant:\"NWUROqVlH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpmet\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4v7t4b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wmh03\",\"data-framer-name\":\"Frame 390\",name:\"Frame 390\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yi8ohq\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"SpendWise\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"60px\"},children:\"SpendWise\"})}),className:\"framer-1knhenu\",\"data-framer-appear-id\":\"1knhenu\",\"data-framer-name\":\"RebelBase Internship\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],initial:animation2,name:\"RebelBase Internship\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13iyfez\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Lead the design of the first privacy-centric personal expense data management service for Prifina.\"})}),className:\"framer-d8c9j0\",\"data-framer-appear-id\":\"d8c9j0\",\"data-framer-name\":\"Design the new customization feature from research, IA, and user flow, to prototypes.\",fonts:[\"CUSTOM;Segoe UI Regular\"],initial:animation2,name:\"Design the new customization feature from research, IA, and user flow, to prototypes.\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1980,sizes:\"1280px\",src:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png\",srcSet:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png 1980w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1980,positionX:\"50.4%\",positionY:\"38.8%\",sizes:\"calc(max(100vw, 1px) - 120px)\",src:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png\",srcSet:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png 1980w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1980,positionX:\"66.8%\",positionY:\"32.7%\",sizes:\"calc(max(100vw, 1px) - 40px)\",src:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png\",srcSet:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png 1980w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1980,sizes:\"calc(max(100vw, 1px) - 120px)\",src:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png\",srcSet:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png 1980w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1980,sizes:\"calc(max(100vw, 1px) - 160px)\",src:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png\",srcSet:\"https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEV59yDRdKrsPdorILAy2WX9E.png 1980w\"},className:\"framer-9zag1g\",\"data-framer-appear-id\":\"9zag1g\",initial:animation2,optimized:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pkm95p\",\"data-framer-name\":\"Frame 397\",name:\"Frame 397\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1psjau1\",\"data-framer-name\":\"left column/brief\",name:\"left column/brief\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1egwri8\",\"data-framer-name\":\"Frame 391\",name:\"Frame 391\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e0bm8p\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"My Role\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:\"My Role\"})}),className:\"framer-pv5cep\",\"data-framer-name\":\"My Role\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"My Role\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gr8unp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ko242\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\"},children:\"UX designer lead\"})}),className:\"framer-1gb0xcm\",\"data-framer-name\":\"UX designer intern\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"UX designer intern\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-axz6dn\",\"data-framer-name\":\"Frame 390\",name:\"Frame 390\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Lead the design of the expense data management desktop application\\xa0for Prifina with a team of 5, from 0 to an MVP.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Lead the design of the expense data management desktop application\\xa0for Prifina with a team of 5, from 0 to an MVP.\"})}),className:\"framer-1sqekih\",\"data-framer-name\":\"I spearheaded the design of a course customization feature, collaborated with other teams and supervised by the lead designer and product manager.\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"I spearheaded the design of a course customization feature, collaborated with other teams and supervised by the lead designer and product manager.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tfskvr\",\"data-framer-name\":\"Frame 392\",name:\"Frame 392\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4cfh3h\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Timeline\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:\"Timeline\"})}),className:\"framer-m3gyuf\",\"data-framer-name\":\"Time\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Time\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xx7g4o\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"09/2023 - Current\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"09/2023 - Current\"})}),className:\"framer-1g9v4ld\",\"data-framer-name\":\"05/2022 - 09/2022\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"05/2022 - 09/2022\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yyic73\",\"data-framer-name\":\"Frame 393\",name:\"Frame 393\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xd1ugl\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Scope\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:\"Scope\"})}),className:\"framer-3dzbru\",\"data-framer-name\":\"Scope\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Scope\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kzrmok\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RYpbVje4e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"UX Design | UX Research | Desktop design | Data visualization | Information architecture\"})})},sam2Kcwpn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"UX Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"UX Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Desktop design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Data visualization\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Personal financing\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"UX Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"UX Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Desktop design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Data visualization\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Personal financing\"})]}),className:\"framer-mtxq3a\",\"data-framer-name\":\"UX Design Information architecture Desktop design Online learning\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"UX Design Information architecture Desktop design Online learning\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iapow0\",\"data-framer-name\":\"right column\",name:\"right column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17c3ezd\",\"data-framer-name\":\"Overview\",id:id,name:\"Overview\",ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ro4yf\",\"data-framer-name\":\"Frame 391\",name:\"Frame 391\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ujsd2l\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"The Challenge.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:\"The Challenge.\"})}),className:\"framer-1tyzwwq\",\"data-framer-name\":\"The Challenge.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"The Challenge.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nbs58i\",\"data-framer-name\":\"Frame 396\",name:\"Frame 396\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0h169\",\"data-framer-name\":\"Frame 390\",name:\"Frame 390\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Prifina offers a secure platform enabling users to upload their personal data and access a suite of services for valuable insights. As part of Prifina's roadmap, integrating expense data analysis is underway, necessitating a expense tracking service to enrich the service ecosystem for existing users.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Prifina offers a secure platform enabling users to upload their personal data and access a suite of services for valuable insights. As part of Prifina's roadmap, integrating expense data analysis is underway, necessitating a expense tracking service to enrich the service ecosystem for existing users.\"})}),className:\"framer-1tnye44\",\"data-framer-name\":\"RebelBase's platform provides embedded modular courses and workshops for new entrepreneurs, businesses, and students to learn how to launch their projects step by step.\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"RebelBase's platform provides embedded modular courses and workshops for new entrepreneurs, businesses, and students to learn how to launch their projects step by step.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-te2npr\",\"data-framer-name\":\"Frame 391\",name:\"Frame 391\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"How might we design an expense data tracking service that:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"1. aligns with Prifina's values of data security and privacy,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"2. provides current Prifina users a service to analyze purchase data.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"How might we design an expense data tracking service that:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"1. aligns with Prifina's values of data security and privacy,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"2. provides current Prifina users a service to analyze purchase data.\"})]}),className:\"framer-ohiam4\",\"data-framer-name\":\"Users want to have more control over the course content. How might we allow users to modify the modular courses, so that they can learn with materials that fit their needs?\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Users want to have more control over the course content. How might we allow users to modify the modular courses, so that they can learn with materials that fit their needs?\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6gpe6\",\"data-framer-name\":\"Frame 392\",name:\"Frame 392\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jutvg0\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"The Outcome. \u2728\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:\"The Outcome. \u2728\"})}),className:\"framer-1mwxccs\",\"data-framer-name\":\"The Outcome.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"The Outcome.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ncvqgy\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Our team \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"developed an MVP\"}),\" for an expense management desktop app that enhances users' control over their data efficiently, accompanied by \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"a landing page\"}),\" designed to promote it within the user community.\"]})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Our team \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"developed an MVP\"}),\" for an expense management desktop app that enhances users' control over their data efficiently, accompanied by \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"a landing page\"}),\" designed to promote it within the user community.\"]})})})}),className:\"framer-vi1vd5\",\"data-framer-name\":\"Designed 7 tailored user flows for diverse user roles to customize and allocate course contents. My design of the user flow successfully transitioned to the implementation stage in October 2022, boosting instructor satisfaction by about 30% post-launch in 2023 Q2.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Designed 7 tailored user flows for diverse user roles to customize and allocate course contents. My design of the user flow successfully transitioned to the implementation stage in October 2022, boosting instructor satisfaction by about 30% post-launch in 2023 Q2.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"SpendWise service actively addresses a void of current services provided on Prifina's marketplace,\\xa0attracting \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"100+\"}),\" stakeholders actively testing the new MVP.\"]})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"SpendWise service actively addresses a void of current services provided on Prifina's marketplace,\\xa0attracting \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(42, 121, 217)\"},children:\"100+\"}),\" stakeholders actively testing the new MVP.\"]})})})}),className:\"framer-a0mx8f\",\"data-framer-name\":\"Designed 7 tailored user flows for diverse user roles to customize and allocate course contents. My design of the user flow successfully transitioned to the implementation stage in October 2022, boosting instructor satisfaction by about 30% post-launch in 2023 Q2.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Designed 7 tailored user flows for diverse user roles to customize and allocate course contents. My design of the user flow successfully transitioned to the implementation stage in October 2022, boosting instructor satisfaction by about 30% post-launch in 2023 Q2.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15xqdk2\",\"data-framer-name\":\"Context\",id:id1,name:\"Context\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ylbbg\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdarmn\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14oopb2\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"CONTEXT\"})}),className:\"framer-1tsmi81\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1apts8g\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mom8pm\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v25khk\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Prifina is looking for more opportunities in expense data analyzing market.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"Prifina is looking for more opportunities in expense data analyzing market.\"})}),className:\"framer-1os88np\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19h9ggd\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"Prifina offers a personal data platform to collect, combine and utilize data with full privacy on personal clouds, and open marketplace to utilize data with different apps. It now offers many health data analyzing services...but Prifina is looking for more \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:\"opportunities\"}),\" in providing expense data analyzing services to users.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"Prifina offers a personal data platform to collect, combine and utilize data with full privacy on personal clouds, and open marketplace to utilize data with different apps. It now offers many health data analyzing services...but Prifina is looking for more \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:\"opportunities\"}),\" in providing expense data analyzing services to users.\"]})}),className:\"framer-fsnuth\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:701,pixelWidth:1142,positionX:\"center\",positionY:\"top\",sizes:\"870px\",src:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png\",srcSet:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png 1142w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:701,pixelWidth:1142,positionX:\"center\",positionY:\"top\",sizes:\"calc(max(100vw, 1px) - 160px)\",src:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png\",srcSet:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png 1142w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:701,pixelWidth:1142,positionX:\"center\",positionY:\"top\",sizes:\"calc(max(100vw, 1px) - 80px)\",src:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png\",srcSet:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png 1142w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:701,pixelWidth:1142,positionX:\"center\",positionY:\"top\",sizes:\"calc(max(max(100vw, 1px) - 450px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png\",srcSet:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png 1142w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:701,pixelWidth:1142,positionX:\"center\",positionY:\"top\",sizes:\"calc(max(max(100vw, 1px) - 530px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png\",srcSet:\"https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zU30SRE0GqtqyVXr4rEQIRd2xc.png 1142w\"},className:\"framer-1171ih6\",\"data-framer-name\":\"image 8 1\",name:\"image 8 1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17xerwk\",\"data-framer-name\":\"opportunity\",id:id2,name:\"opportunity\",ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12arbl4\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oi68rf\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vrv68i\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"BUSINESS GOALS\"})}),className:\"framer-1it85v2\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hpj2kp\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ugxxw\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k05jae\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\"},children:\"How might we design an expense data tracking service that:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.3em\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"aligns with Prifina's values of data security and privacy,\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"provides current Prifina users a service to analyze purchase data.\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\"},children:\"How might we design an expense data tracking service that:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.3em\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.3em\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"aligns with Prifina's values of data security and privacy,\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"provides current Prifina users a service to analyze purchase data.\"})})]})]}),className:\"framer-1t5mqyf\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6l10k\",\"data-framer-name\":\"constraints\",name:\"constraints\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kx4t2l\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yxluk0\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ybrped\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"PROJECT KICKOFF\"})}),className:\"framer-x21rqj\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ldw9k2\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jzv9uc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7hu83\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUDhZKOW3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWJyaWwgRmF0ZmFjZS1yZWd1bGFy\",\"--framer-font-family\":'\"Abril Fatface\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"01\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWJyaWwgRmF0ZmFjZS1yZWd1bGFy\",\"--framer-font-family\":'\"Abril Fatface\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"01\"})}),className:\"framer-v76h8a\",fonts:[\"GF;Abril Fatface-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8qqmx\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"What constitutes a safe and private experience?\"})}),className:\"framer-1ymah1d\",fonts:[\"CUSTOM;Segoe UI Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"I conducted secondary research on academic papers to understand the psychological factors contributing to a sense of safety in an environment, noticing that creating a digital environment where\uFF1A\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"1) users clearly understand their actions\"}),\" and \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2) can anticipate the outcomes\"}),\" of each interaction fosters a sense of security and trust.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"I conducted secondary research on academic papers to understand the psychological factors contributing to a sense of safety in an environment, noticing that creating a digital environment where\uFF1A\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"1) users clearly understand their actions\"}),\" and \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2) can anticipate the outcomes\"}),\" of each interaction fosters a sense of security and trust.\"]})}),className:\"framer-1ux3rss\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kchudl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUDhZKOW3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWJyaWwgRmF0ZmFjZS1yZWd1bGFy\",\"--framer-font-family\":'\"Abril Fatface\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"02\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWJyaWwgRmF0ZmFjZS1yZWd1bGFy\",\"--framer-font-family\":'\"Abril Fatface\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"02\"})}),className:\"framer-r7g5pf\",fonts:[\"GF;Abril Fatface-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nadau6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"What are potential users' tracking habits?\"})}),className:\"framer-7kkynr\",fonts:[\"CUSTOM;Segoe UI Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"li\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"67%\"}),\" of participants engage in only \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"sporadic spending tracking\"}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:\"Individuals with a stronger motivation to manage their finances are more willing to make extra effort for accuracy.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"h3\",{children:[\"About half participants \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:'favor a \"complete\" product'}),\" with a wide range of features listed on the survey, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"regardless of how often they'll use them.\"})]})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"li\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"67%\"}),\" of participants engage in only \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"sporadic spending tracking\"}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:\"Individuals with a stronger motivation to manage their finances are more willing to make extra effort for accuracy.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"h3\",{children:[\"About half participants \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:'favor a \"complete\" product'}),\" with a wide range of features listed on the survey, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"regardless of how often they'll use them.\"})]})})]})}),className:\"framer-xjq09x\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1073,pixelWidth:989,src:\"https://framerusercontent.com/images/qFayYj847BH6YMI7SwYUZTh4z88.png\",srcSet:\"https://framerusercontent.com/images/qFayYj847BH6YMI7SwYUZTh4z88.png?scale-down-to=1024 943w,https://framerusercontent.com/images/qFayYj847BH6YMI7SwYUZTh4z88.png 989w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1073,pixelWidth:989,sizes:\"333px\",src:\"https://framerusercontent.com/images/qFayYj847BH6YMI7SwYUZTh4z88.png\",srcSet:\"https://framerusercontent.com/images/qFayYj847BH6YMI7SwYUZTh4z88.png?scale-down-to=1024 943w,https://framerusercontent.com/images/qFayYj847BH6YMI7SwYUZTh4z88.png 989w\"},className:\"framer-yhrr4y\"})})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jv2kjo\",\"data-framer-name\":\"Research-users\",id:id3,name:\"Research-users\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6hc4h\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u5qf8m\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ilfk92\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"RESEARCH - users\"})}),className:\"framer-zhyrjd\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2gwiaa\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w2kr77\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c5axk6\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Diligent tracker vs. Casual tracker\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"Diligent tracker vs. Casual tracker\"})}),className:\"framer-abrba7\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rzzjyf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwjopu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RYpbVje4e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"260px\",src:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024 575w,https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png 656w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"313px\",src:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024 575w,https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png 656w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"260px\",src:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024 575w,https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png 656w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"450px\",src:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png?scale-down-to=1024 575w,https://framerusercontent.com/images/2i79AiWURRp3hE3PL3wIGlJM0s.png 656w\"},className:\"framer-f2uiwb\",\"data-framer-name\":\"Group_3_min\",name:\"Group_3_min\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RYpbVje4e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"260px\",src:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024 575w,https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png 656w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"313px\",src:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024 575w,https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png 656w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"260px\",src:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024 575w,https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png 656w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:584,intrinsicWidth:328,loading:\"lazy\",pixelHeight:1168,pixelWidth:656,sizes:\"450px\",src:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png?scale-down-to=1024 575w,https://framerusercontent.com/images/IGKlQqhmKF5gZ9V6RWu0LG98.png 656w\"},className:\"framer-1rrft5t\",\"data-framer-name\":\"Group_4_min\",name:\"Group_4_min\"})})]})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a741j9\",\"data-framer-name\":\"Frame 402\",id:id4,name:\"Frame 402\",ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p07mgl\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qai276\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"OPPORTUNITY\"})}),className:\"framer-ye1g08\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lvar3o\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sgty8d\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v77erv\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\"},children:[\"How might we design an expense tracking service that provides casual trackers a\\xa0\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"FAST\"}),\"\\xa0and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"CONTROLLABLE\"}),\" way to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"upload\"}),\", \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"track, and manage\"}),\" data while leaves room for updates that satisfy diligent trackers?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.3em\"},children:[\"How might we design an expense tracking service that provides casual trackers a\\xa0\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"FAST\"}),\"\\xa0and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"CONTROLLABLE\"}),\" way to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"upload\"}),\", \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"track, and manage\"}),\" data while leaves room for updates that satisfy diligent trackers?\"]})}),className:\"framer-ditzco\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Segoe UI Bold\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ew9qk8\",\"data-framer-name\":\"Testing\",id:id5,name:\"Testing\",ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pyca1h\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e3grym\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m66wcm\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"CONCEPTUALIZE\"})}),className:\"framer-1nchqc1\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17f1tlc\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4nynz\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1crhxyr\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"How will users upload, track, and manage?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"How will users upload, track, and manage?\"})}),className:\"framer-j2d4uo\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kuzg6o\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"In the initial design sprint, we began by conducting competitive research and surveying potential users. This approach helped us profile personas, identify and prioritize features, enabling us to delineate the primary user flow for our casual trackers' needs into a three-step process: UPLOAD, TRACK, and MANAGE. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"However, validating the user flow presented several new challenges for us.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"In the initial design sprint, we began by conducting competitive research and surveying potential users. This approach helped us profile personas, identify and prioritize features, enabling us to delineate the primary user flow for our casual trackers' needs into a three-step process: UPLOAD, TRACK, and MANAGE. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"However, validating the user flow presented several new challenges for us.\"})]}),className:\"framer-1bemfhx\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vm6a3o\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1080,pixelWidth:1980,positionX:\"left\",positionY:\"top\",sizes:\"870px\",src:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png\",srcSet:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png 1980w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1080,pixelWidth:1980,positionX:\"left\",positionY:\"top\",sizes:\"calc(max(100vw, 1px) - 160px)\",src:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png\",srcSet:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png 1980w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1080,pixelWidth:1980,positionX:\"left\",positionY:\"top\",sizes:\"calc(max(100vw, 1px) - 80px)\",src:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png\",srcSet:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png 1980w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1080,pixelWidth:1980,positionX:\"left\",positionY:\"top\",sizes:\"calc(max(max(100vw, 1px) - 450px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png\",srcSet:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png 1980w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1080,pixelWidth:1980,positionX:\"left\",positionY:\"top\",sizes:\"calc(max(max(100vw, 1px) - 530px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png\",srcSet:\"https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VhpsyaBo2Fzr0IgZSjtsStJVLbY.png 1980w\"},className:\"framer-18tza46\",\"data-framer-name\":\"image 8 1\",name:\"image 8 1\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-muo387\",\"data-framer-name\":\"Testing\",id:id6,name:\"Testing\",ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ft5583\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdc0e7\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dapkat\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"DESIGN - Key challenge 01\"})}),className:\"framer-wkjg5y\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rtzezr\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y3uoa4\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sw88wf\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"What if a top-priority feature is currently unfeasible?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"What if a top-priority feature is currently unfeasible?\"})}),className:\"framer-8i4pl6\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m395y5\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Something out of our expectation happened. When we were analyzing the data from the survey, we found that some high-priority features, such as real-time balance and income, require integration of bank accounts and cards data. However, legal and technical constraints may delay this integration.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"To address this, I proposed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"designing modularized data cards \"}),\"with the flexibility to accommodate future features, so that we could validate the MVP's value proposition first.\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Something out of our expectation happened. When we were analyzing the data from the survey, we found that some high-priority features, such as real-time balance and income, require integration of bank accounts and cards data. However, legal and technical constraints may delay this integration.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"To address this, I proposed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"designing modularized data cards \"}),\"with the flexibility to accommodate future features, so that we could validate the MVP's value proposition first.\"]})]}),className:\"framer-1kz4pw2\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-us9af1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkd95w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:831,pixelWidth:1202,positionX:\"center\",positionY:\"top\",sizes:\"435px\",src:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg\",srcSet:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg 1202w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:831,pixelWidth:1202,positionX:\"center\",positionY:\"top\",sizes:\"calc((max(100vw, 1px) - 160px) / 2)\",src:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg\",srcSet:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg 1202w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:831,pixelWidth:1202,positionX:\"center\",positionY:\"top\",sizes:\"calc(max(100vw, 1px) - 80px)\",src:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg\",srcSet:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg 1202w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:831,pixelWidth:1202,positionX:\"center\",positionY:\"top\",sizes:\"calc((max(max(100vw, 1px) - 450px, 1px) - 40px) / 2)\",src:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg\",srcSet:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:831,pixelWidth:1202,positionX:\"center\",positionY:\"top\",sizes:\"calc((max(max(100vw, 1px) - 530px, 1px) - 40px) / 2)\",src:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg\",srcSet:\"https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rqUZ5fm8uTMUf4nGELwRN2EE4.jpg 1202w\"},className:\"framer-761vm9\",\"data-framer-name\":\"image 8 1\",name:\"image 8 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1415,pixelWidth:1898,positionX:\"center\",positionY:\"center\",sizes:\"438px\",src:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png\",srcSet:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png 1898w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1415,pixelWidth:1898,positionX:\"center\",positionY:\"center\",sizes:\"calc((max(100vw, 1px) - 160px) * 0.5034)\",src:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png\",srcSet:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png 1898w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1415,pixelWidth:1898,positionX:\"center\",positionY:\"center\",sizes:\"calc(max(100vw, 1px) - 80px)\",src:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png\",srcSet:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png 1898w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1415,pixelWidth:1898,positionX:\"center\",positionY:\"center\",sizes:\"calc((max(max(100vw, 1px) - 450px, 1px) - 40px) * 0.5034)\",src:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png\",srcSet:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png 1898w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1415,pixelWidth:1898,positionX:\"center\",positionY:\"center\",sizes:\"calc((max(max(100vw, 1px) - 530px, 1px) - 40px) * 0.5034)\",src:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png\",srcSet:\"https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBNe3rYk8kDk4psStMPkKiLfZDI.png 1898w\"},className:\"framer-1kuo1r9\",\"data-framer-name\":\"image 8 1\",name:\"image 8 1\"})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z47kpo\",\"data-framer-name\":\"Testing\",id:id7,name:\"Testing\",ref:ref12,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19a4a5c\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k5si1b\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q29dda\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"DESIGN - Key challenge 02\"})}),className:\"framer-140chec\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xbpkwe\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ui5dd9\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-66jg77\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"How do users upload their first data file?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"How do users upload their first data file?\"})}),className:\"framer-hn90xz\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qtp6n8\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\"1st iteration: \"}),\"Sticky cards displaying the process can be useful but are not essential. During testing with stakeholders, I discovered that the guidance provided by the cards was hindering users from quickly uploading their first data file and was overly detailed for such a simple and intuitive interface.\"]})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2nd iteration:\"}),\" I created a welcoming page that users will encounter when they have no data or accounts linked to the service. This page offers a clear and efficient way for them to explore options.\"]})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\"1st iteration: \"}),\"Sticky cards displaying the process can be useful but are not essential. During testing with stakeholders, I discovered that the guidance provided by the cards was hindering users from quickly uploading their first data file and was overly detailed for such a simple and intuitive interface.\"]})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2nd iteration:\"}),\" I created a welcoming page that users will encounter when they have no data or accounts linked to the service. This page offers a clear and efficient way for them to explore options.\"]})})})]}),className:\"framer-lsta9v\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Bold\",\"CUSTOM;Segoe UI Regular\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-phzdjl\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jr7fjq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"center\",positionY:\"center\",sizes:\"870px\",src:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png\",srcSet:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png 3254w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"center\",positionY:\"center\",sizes:\"calc(max(100vw, 1px) - 160px)\",src:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png\",srcSet:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png 3254w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"center\",positionY:\"center\",sizes:\"calc(max(100vw, 1px) - 80px)\",src:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png\",srcSet:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png 3254w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"center\",positionY:\"center\",sizes:\"calc(max(max(100vw, 1px) - 450px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png\",srcSet:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png 3254w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"center\",positionY:\"center\",sizes:\"calc(max(max(100vw, 1px) - 530px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png\",srcSet:\"https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V6ldasXObnrA3u3SS4CHVhKwJxk.png 3254w\"},className:\"framer-1drcb5b\",\"data-framer-name\":\"image 8 1\",name:\"image 8 1\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqr9gg\",\"data-framer-name\":\"Testing\",id:id8,name:\"Testing\",ref:ref13,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ewlrzi\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d63xtx\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6mzktn\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"DESIGN - Key challenge 03\"})}),className:\"framer-1lp228a\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xius5z\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r82ecs\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-awuq5i\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"How do users manage data sources after onboarding?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"How do users manage data sources after onboarding?\"})}),className:\"framer-15pcl33\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-69ke91\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"Controllable:\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:[/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\"1st iteration:\"}),\" Data uploading button only on the home dashboard was not easily discoverable.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2nd iteration:\"}),\" Make data uploading a Global Design. With this global design, users consistently completed uploading tasks promptly and with minimal hesitation whenever prompted.\"]})})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"Clean and organized:\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\"1st iteration: \"}),\"As users frequently upload a bunch of\\xa0 data to the platform at once, the data control panel may become cumbersome to navigate due to its length.\"]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2nd iteration:\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\" \"}),\"Clean up data sources into expandable cards. Users can now swiftly locate their desired data, eliminating the need for scrolling a long list.\"]})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"Controllable:\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:[/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\"1st iteration:\"}),\" Data uploading button only on the home dashboard was not easily discoverable.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2nd iteration:\"}),\" Make data uploading a Global Design. With this global design, users consistently completed uploading tasks promptly and with minimal hesitation whenever prompted.\"]})})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"Clean and organized:\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\"1st iteration: \"}),\"As users frequently upload a bunch of\\xa0 data to the platform at once, the data control panel may become cumbersome to navigate due to its length.\"]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5b5e062-3f73-4848-abbc-a3330653e829, rgb(105, 105, 105))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"2nd iteration:\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif'},children:\" \"}),\"Clean up data sources into expandable cards. Users can now swiftly locate their desired data, eliminating the need for scrolling a long list.\"]})})]})]}),className:\"framer-sivwy6\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Bold\",\"CUSTOM;Segoe UI Regular\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r69l93\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mnmm9s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"79.2%\",positionY:\"49.3%\",sizes:\"870px\",src:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png\",srcSet:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png 3254w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"79.2%\",positionY:\"49.3%\",sizes:\"calc(max(100vw, 1px) - 160px)\",src:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png\",srcSet:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png 3254w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"79.2%\",positionY:\"49.3%\",sizes:\"calc(max(100vw, 1px) - 80px)\",src:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png\",srcSet:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png 3254w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"79.2%\",positionY:\"49.3%\",sizes:\"calc(max(max(100vw, 1px) - 450px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png\",srcSet:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png 3254w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1189,pixelWidth:3254,positionX:\"79.2%\",positionY:\"49.3%\",sizes:\"calc(max(max(100vw, 1px) - 530px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png\",srcSet:\"https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jRFumh0FjOaSMMJpDefKvZimjk.png 3254w\"},className:\"framer-drxwng\",\"data-framer-name\":\"image 8 1\",name:\"image 8 1\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ppsvvm\",\"data-framer-name\":\"Research-competitors\",id:id9,name:\"Research-competitors\",ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wa8rwh\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kytntp\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17o3gmk\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"FINAL DESIGN - Landing page\"})}),className:\"framer-11qm9ws\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-et80hr\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b2gemy\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-24xr6l\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Landing page design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"Landing page design\"})}),className:\"framer-dmt1uz\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l45qok-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"hCD48HEx2\",isMixedBorderRadius:false,isRed:true,layoutId:\"hCD48HEx2\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"https://youtu.be/4gDT413aFe0\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6jtwx9\",\"data-framer-name\":\"Research-competitors\",name:\"Research-competitors\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-166i3fr\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dgk07a\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kpkqps\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"FINAL DESIGN - Onboarding\"})}),className:\"framer-lo3hwp\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hc2egt\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q0e9xj\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cyzlku\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:[\"Onboarding design: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"upload and manage\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:[\"Onboarding design: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"upload and manage\"})]})}),className:\"framer-1qfku9s\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pok1r7-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"xEuoIxAXY\",isMixedBorderRadius:false,isRed:true,layoutId:\"xEuoIxAXY\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"https://youtu.be/8o0D8Lj6zeQ\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybfrnr\",\"data-framer-name\":\"Research-competitors\",name:\"Research-competitors\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y938v6\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dl9bgg\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-117ukir\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"FINAL DESIGN - Onboarding\"})}),className:\"framer-1nqjcgg\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ydvk96\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yjibb7\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q29iuc\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:[\"Budget design: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"plan and track\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:[\"Budget design: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"plan and track\"})]})}),className:\"framer-1rwoxxn\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9dlqa4-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"gwd1g0IAz\",isMixedBorderRadius:false,isRed:true,layoutId:\"gwd1g0IAz\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"https://youtu.be/idamKbsneS8\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ec7trh\",\"data-framer-name\":\"design-user flow\",name:\"design-user flow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9zpd6\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-75e3p8\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wlwmb5\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"FINAL DESIGN - Others\"})}),className:\"framer-a6pgoj\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16towq5\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r8itea\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hst88j\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Something more\u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\"},children:\"Something more\u2026\"})}),className:\"framer-1bub8lg\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ihfqkc\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"To meet our goals of being \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"FAST\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"CONTROLLABLE\"}),\", we implemented interactive data visualization reports for clear results, customizable budgeting methods for quick entry, an error prevention system for accurate budgeting, and a data management section for efficient data source management through batch processing.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"To meet our goals of being \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"FAST\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"CONTROLLABLE\"}),\", we implemented interactive data visualization reports for clear results, customizable budgeting methods for quick entry, an error prevention system for accurate budgeting, and a data management section for efficient data source management through batch processing.\"]})}),className:\"framer-qs94xn\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NDQBntc7R:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:3763,pixelWidth:3300,positionX:\"75.5%\",positionY:\"49.7%\",sizes:\"870px\",src:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png\",srcSet:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=1024 898w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=2048 1796w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png 3300w\"}},RYpbVje4e:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:3763,pixelWidth:3300,positionX:\"75.5%\",positionY:\"49.7%\",sizes:\"calc(max(100vw, 1px) - 160px)\",src:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png\",srcSet:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=1024 898w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=2048 1796w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png 3300w\"}},sam2Kcwpn:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:3763,pixelWidth:3300,positionX:\"75.5%\",positionY:\"49.7%\",sizes:\"calc(max(100vw, 1px) - 80px)\",src:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png\",srcSet:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=1024 898w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=2048 1796w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png 3300w\"}},yUDhZKOW3:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:3763,pixelWidth:3300,positionX:\"75.5%\",positionY:\"49.7%\",sizes:\"calc(max(max(100vw, 1px) - 450px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png\",srcSet:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=1024 898w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=2048 1796w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png 3300w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:3763,pixelWidth:3300,positionX:\"75.5%\",positionY:\"49.7%\",sizes:\"calc(max(max(100vw, 1px) - 530px, 1px) - 40px)\",src:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png\",srcSet:\"https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=1024 898w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png?scale-down-to=2048 1796w,https://framerusercontent.com/images/qPEscidAMjrCuO5m75vI5Y8ps70.png 3300w\"},className:\"framer-ce4xd7\",\"data-framer-name\":\"image 8 1\",name:\"image 8 1\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iezmts\",\"data-framer-name\":\"Achievements\",id:id10,name:\"Achievements\",ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q82zpe\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbev97\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ry5bwf\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"ACHIEVEMENTS\"})}),className:\"framer-85o0c4\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p63tco\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bg37dm\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eukrmd\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Director recommendation\"})}),className:\"framer-13m8mb4\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ulya9e\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"The director of Prifina praised SpendWise as exceptionally promising, highlighting its innovative features and potential for further development. He emphasized its strategic importance and remarked on its ability to revolutionize the services of Prifina.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"The director of Prifina praised SpendWise as exceptionally promising, highlighting its innovative features and potential for further development. He emphasized its strategic importance and remarked on its ability to revolutionize the services of Prifina.\"})}),className:\"framer-e7hr9y\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27hak3\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1snqxz6\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Users quickly get what they need\"})}),className:\"framer-1lg6ixe\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ug0mj\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"In our testing, we received \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"very positive feedback\"}),\" from users who appreciated the ease and speed of uploading their data sources and receiving analysis reports within seconds. They also valued the ability to selectively check and uncheck specific sources to track changes in the expense report.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"In our testing, we received \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"very positive feedback\"}),\" from users who appreciated the ease and speed of uploading their data sources and receiving analysis reports within seconds. They also valued the ability to selectively check and uncheck specific sources to track changes in the expense report.\"]})}),className:\"framer-6bnih4\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-spgw2g\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yo3lvn\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"More testing and iterations\"})}),className:\"framer-cmzy10\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oh3wh2\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"Through rigorous testing and iterations, we're continually refining SpendWise, ensuring each update meets our high standards. The growing interest from the Prifina community, with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"over 100 current users actively testing SpendWise\"}),\", underscores the validity and impact of our efforts.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:[\"Through rigorous testing and iterations, we're continually refining SpendWise, ensuring each update meets our high standards. The growing interest from the Prifina community, with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIEJvbGQ=\",\"--framer-font-family\":'\"Segoe UI Bold\", \"Segoe UI Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, rgb(42, 121, 217))\"},children:\"over 100 current users actively testing SpendWise\"}),\", underscores the validity and impact of our efforts.\"]})}),className:\"framer-lypshw\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\",\"CUSTOM;Segoe UI Bold\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p2vj2y\",\"data-framer-name\":\"Reflections\",id:id11,name:\"Reflections\",ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oesf0u\",\"data-framer-name\":\"Frame 402\",name:\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4thi7o\",\"data-framer-name\":\"Frame 400\",name:\"Frame 400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1auku3a\",\"data-framer-name\":\"Frame 389\",name:\"Frame 389\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(164, 164, 164)\"},children:\"REFLECTIONS\"})}),className:\"framer-14aosm\",\"data-framer-name\":\"CONTEXT\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"CONTEXT\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rx3f1v\",\"data-framer-name\":\"Rectangle 155\",name:\"Rectangle 155\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g6iidv\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15c1q4r\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Users' feedback is important, but be careful!\"})}),className:\"framer-svb64m\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f5wl2a\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"User feedback and testing are invaluable for guiding design decisions, yet it's important to recognize that users may not always know what they need. Careful examination and analysis of research findings are essential, often requiring a deeper exploration to uncover the patterns and reasons behind user behaviors.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"User feedback and testing are invaluable for guiding design decisions, yet it's important to recognize that users may not always know what they need. Careful examination and analysis of research findings are essential, often requiring a deeper exploration to uncover the patterns and reasons behind user behaviors.\"})}),className:\"framer-1tg31wt\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tt0bo\",\"data-framer-name\":\"Frame 398\",name:\"Frame 398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5hkhkq\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgOTUgQmxhY2s=\",\"--framer-font-family\":'\"Avenir LT Std 95 Black\", \"Avenir LT Std 95 Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"Work with ambiguity: be ready to make adjustments at anytime.\\xa0\"})}),className:\"framer-kcr1qs\",\"data-framer-name\":\"Admin users want to have more control over the course content.\",fonts:[\"CUSTOM;Avenir LT Std 95 Black\"],name:\"Admin users want to have more control over the course content.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17061wo\",\"data-framer-name\":\"Frame 399\",name:\"Frame 399\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"This project began with vague goals and undefined target user groups, necessitating significant time to refine objectives and adjust based on fresh insights from research and testing. Maintaining an open mind and embracing efficient iteration are crucial for steering the project in the right direction.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"This project began with vague goals and undefined target user groups, necessitating significant time to refine objectives and adjust based on fresh insights from research and testing. Maintaining an open mind and embracing efficient iteration are crucial for steering the project in the right direction.\"})}),className:\"framer-1tg732e\",\"data-framer-name\":\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"Prior to my intervention, the modular courses were all consisted of predetermined content. Admin users were unable to modify the content within a course, limited to following the courses covered by their membership subscription, and complained about modules that do not meet their specific needs.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qnidxy\",\"data-framer-name\":\"Desktop - 1\",name:\"Desktop - 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cwxjcl\",\"data-framer-name\":\"Frame 385\",name:\"Frame 385\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rcjbk4\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgODUgSGVhdnk=\",\"--framer-font-family\":'\"Avenir LT Std 85 Heavy\", \"Avenir LT Std 85 Heavy Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"Let\u2019s connect\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0F2ZW5pciBMVCBTdGQgODUgSGVhdnk=\",\"--framer-font-family\":'\"Avenir LT Std 85 Heavy\", \"Avenir LT Std 85 Heavy Placeholder\", sans-serif',\"--framer-font-size\":\"48px\"},children:\"Let\u2019s connect\"})}),className:\"framer-1j5xmes\",\"data-framer-name\":\"Let\u2019s connect\",fonts:[\"CUSTOM;Avenir LT Std 85 Heavy\"],name:\"Let\u2019s connect\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y3g8f2\",\"data-framer-name\":\"Ellipse 29\",name:\"Ellipse 29\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ccw68a\",\"data-framer-name\":\"Frame 376\",name:\"Frame 376\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Get in touch for opportunities or just say hi!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NlZ29lIFVJIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Segoe UI Regular\", \"Segoe UI Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Get in touch for opportunities or just say hi!\"})}),className:\"framer-1u31z9o\",\"data-framer-name\":\"Get in touch for opportunities or just say hi!\",fonts:[\"CUSTOM;Segoe UI Regular\"],name:\"Get in touch for opportunities or just say hi!\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12mrkum hidden-1nto1rw\",\"data-framer-name\":\"Rectangle 153\",name:\"Rectangle 153\"})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r30wvb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sam2Kcwpn:{variant:\"W2cJl7B6X\"}},children:/*#__PURE__*/_jsx(Footernew,{height:\"100%\",id:\"f3sLtufN9\",layoutId:\"f3sLtufN9\",style:{height:\"100%\",width:\"100%\"},variant:\"edC3k1RxW\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-NAGCV { background: white; }`,\".framer-NAGCV.framer-11phkna, .framer-NAGCV .framer-11phkna { display: block; }\",\".framer-NAGCV.framer-2ucnkj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-NAGCV .framer-dx8umf-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-NAGCV .framer-pc743f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 80px; overflow: visible; padding: 20px; position: fixed; top: 100px; width: 290px; z-index: 1; }\",\".framer-NAGCV .framer-14vp3bd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1fb42na-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NAGCV .framer-lpmet { 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: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-4v7t4b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 80px 0px 80px; position: relative; width: 1px; }\",\".framer-NAGCV .framer-5wmh03, .framer-NAGCV .framer-e6gpe6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-yi8ohq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1knhenu, .framer-NAGCV .framer-pv5cep, .framer-NAGCV .framer-m3gyuf, .framer-NAGCV .framer-3dzbru, .framer-NAGCV .framer-1tyzwwq, .framer-NAGCV .framer-1mwxccs, .framer-NAGCV .framer-vi1vd5, .framer-NAGCV .framer-a0mx8f, .framer-NAGCV .framer-1os88np, .framer-NAGCV .framer-1t5mqyf, .framer-NAGCV .framer-abrba7, .framer-NAGCV .framer-ditzco, .framer-NAGCV .framer-j2d4uo, .framer-NAGCV .framer-8i4pl6, .framer-NAGCV .framer-hn90xz, .framer-NAGCV .framer-15pcl33, .framer-NAGCV .framer-dmt1uz, .framer-NAGCV .framer-1qfku9s, .framer-NAGCV .framer-1rwoxxn, .framer-NAGCV .framer-1bub8lg, .framer-NAGCV .framer-13m8mb4, .framer-NAGCV .framer-1lg6ixe, .framer-NAGCV .framer-cmzy10, .framer-NAGCV .framer-svb64m, .framer-NAGCV .framer-kcr1qs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NAGCV .framer-13iyfez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-d8c9j0, .framer-NAGCV .framer-1sqekih, .framer-NAGCV .framer-1g9v4ld, .framer-NAGCV .framer-mtxq3a, .framer-NAGCV .framer-1tnye44, .framer-NAGCV .framer-ohiam4, .framer-NAGCV .framer-fsnuth, .framer-NAGCV .framer-1bemfhx, .framer-NAGCV .framer-1kz4pw2, .framer-NAGCV .framer-lsta9v, .framer-NAGCV .framer-sivwy6, .framer-NAGCV .framer-qs94xn, .framer-NAGCV .framer-e7hr9y, .framer-NAGCV .framer-6bnih4, .framer-NAGCV .framer-lypshw, .framer-NAGCV .framer-1tg31wt, .framer-NAGCV .framer-1tg732e { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NAGCV .framer-9zag1g { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 650px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NAGCV .framer-pkm95p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1psjau1 { align-content: flex-start; align-items: flex-start; background-color: rgba(247, 247, 247, 0.5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 290px; }\",\".framer-NAGCV .framer-1egwri8, .framer-NAGCV .framer-tfskvr, .framer-NAGCV .framer-1yyic73, .framer-NAGCV .framer-17ro4yf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1e0bm8p, .framer-NAGCV .framer-4cfh3h, .framer-NAGCV .framer-1xd1ugl, .framer-NAGCV .framer-ujsd2l, .framer-NAGCV .framer-jutvg0, .framer-NAGCV .framer-v25khk, .framer-NAGCV .framer-1k05jae, .framer-NAGCV .framer-c5axk6, .framer-NAGCV .framer-1v77erv, .framer-NAGCV .framer-1crhxyr, .framer-NAGCV .framer-sw88wf, .framer-NAGCV .framer-66jg77, .framer-NAGCV .framer-awuq5i, .framer-NAGCV .framer-24xr6l, .framer-NAGCV .framer-1cyzlku, .framer-NAGCV .framer-1q29iuc, .framer-NAGCV .framer-1hst88j, .framer-NAGCV .framer-eukrmd, .framer-NAGCV .framer-1snqxz6, .framer-NAGCV .framer-1yo3lvn, .framer-NAGCV .framer-15c1q4r, .framer-NAGCV .framer-5hkhkq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1gr8unp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-2ko242, .framer-NAGCV .framer-axz6dn, .framer-NAGCV .framer-1xx7g4o, .framer-NAGCV .framer-1kzrmok, .framer-NAGCV .framer-1j0h169, .framer-NAGCV .framer-te2npr, .framer-NAGCV .framer-19h9ggd, .framer-NAGCV .framer-kuzg6o, .framer-NAGCV .framer-m395y5, .framer-NAGCV .framer-qtp6n8, .framer-NAGCV .framer-69ke91, .framer-NAGCV .framer-ihfqkc, .framer-NAGCV .framer-1ulya9e, .framer-NAGCV .framer-4ug0mj, .framer-NAGCV .framer-oh3wh2, .framer-NAGCV .framer-f5wl2a, .framer-NAGCV .framer-17061wo { 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%; }\",\".framer-NAGCV .framer-1gb0xcm, .framer-NAGCV .framer-1tsmi81, .framer-NAGCV .framer-1it85v2, .framer-NAGCV .framer-x21rqj, .framer-NAGCV .framer-zhyrjd, .framer-NAGCV .framer-ye1g08, .framer-NAGCV .framer-1nchqc1, .framer-NAGCV .framer-wkjg5y, .framer-NAGCV .framer-140chec, .framer-NAGCV .framer-1lp228a, .framer-NAGCV .framer-11qm9ws, .framer-NAGCV .framer-lo3hwp, .framer-NAGCV .framer-1nqjcgg, .framer-NAGCV .framer-a6pgoj, .framer-NAGCV .framer-85o0c4, .framer-NAGCV .framer-14aosm, .framer-NAGCV .framer-1j5xmes { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NAGCV .framer-1iapow0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-NAGCV .framer-17c3ezd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 120px; width: 100%; }\",\".framer-NAGCV .framer-nbs58i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1ncvqgy { 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: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-15xqdk2, .framer-NAGCV .framer-jv2kjo, .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-ppsvvm, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 120px; width: 100%; }\",\".framer-NAGCV .framer-15ylbbg, .framer-NAGCV .framer-1mom8pm, .framer-NAGCV .framer-12arbl4, .framer-NAGCV .framer-15ugxxw, .framer-NAGCV .framer-1kx4t2l, .framer-NAGCV .framer-1d6hc4h, .framer-NAGCV .framer-w2kr77, .framer-NAGCV .framer-1sgty8d, .framer-NAGCV .framer-1pyca1h, .framer-NAGCV .framer-t4nynz, .framer-NAGCV .framer-1ft5583, .framer-NAGCV .framer-y3uoa4, .framer-NAGCV .framer-19a4a5c, .framer-NAGCV .framer-1ui5dd9, .framer-NAGCV .framer-1ewlrzi, .framer-NAGCV .framer-1r82ecs, .framer-NAGCV .framer-1b2gemy, .framer-NAGCV .framer-q0e9xj, .framer-NAGCV .framer-yjibb7, .framer-NAGCV .framer-1v9zpd6, .framer-NAGCV .framer-r8itea, .framer-NAGCV .framer-q82zpe, .framer-NAGCV .framer-1bg37dm, .framer-NAGCV .framer-27hak3, .framer-NAGCV .framer-spgw2g, .framer-NAGCV .framer-1oesf0u, .framer-NAGCV .framer-g6iidv, .framer-NAGCV .framer-tt0bo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-rdarmn, .framer-NAGCV .framer-1oi68rf, .framer-NAGCV .framer-yxluk0, .framer-NAGCV .framer-1u5qf8m, .framer-NAGCV .framer-1p07mgl, .framer-NAGCV .framer-e3grym, .framer-NAGCV .framer-gdc0e7, .framer-NAGCV .framer-k5si1b, .framer-NAGCV .framer-d63xtx, .framer-NAGCV .framer-1kytntp, .framer-NAGCV .framer-dgk07a, .framer-NAGCV .framer-1dl9bgg, .framer-NAGCV .framer-75e3p8, .framer-NAGCV .framer-1qbev97, .framer-NAGCV .framer-4thi7o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NAGCV .framer-14oopb2, .framer-NAGCV .framer-1vrv68i, .framer-NAGCV .framer-1ybrped, .framer-NAGCV .framer-ilfk92, .framer-NAGCV .framer-qai276, .framer-NAGCV .framer-m66wcm, .framer-NAGCV .framer-dapkat, .framer-NAGCV .framer-1q29dda, .framer-NAGCV .framer-6mzktn, .framer-NAGCV .framer-17o3gmk, .framer-NAGCV .framer-1kpkqps, .framer-NAGCV .framer-117ukir, .framer-NAGCV .framer-1wlwmb5, .framer-NAGCV .framer-1ry5bwf, .framer-NAGCV .framer-1auku3a { 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: min-content; }\",\".framer-NAGCV .framer-1apts8g, .framer-NAGCV .framer-1hpj2kp, .framer-NAGCV .framer-1ldw9k2, .framer-NAGCV .framer-1lvar3o, .framer-NAGCV .framer-17f1tlc, .framer-NAGCV .framer-rtzezr, .framer-NAGCV .framer-1xbpkwe, .framer-NAGCV .framer-1xius5z, .framer-NAGCV .framer-et80hr, .framer-NAGCV .framer-hc2egt, .framer-NAGCV .framer-1ydvk96, .framer-NAGCV .framer-16towq5, .framer-NAGCV .framer-1p63tco, .framer-NAGCV .framer-rx3f1v { background-color: var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, #2a79d9); flex: none; height: 6px; position: relative; width: 38px; }\",\".framer-NAGCV .framer-1171ih6 { aspect-ratio: 1.8076923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 481px); mix-blend-mode: multiply; position: relative; width: 100%; }\",\".framer-NAGCV .framer-17xerwk, .framer-NAGCV .framer-6jtwx9, .framer-NAGCV .framer-ybfrnr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1y6l10k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-jzv9uc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1x7hu83 { background-color: rgba(223, 227, 237, 0.3); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 370px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NAGCV .framer-v76h8a, .framer-NAGCV .framer-r7g5pf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 30px; flex: none; height: auto; position: absolute; right: 40px; white-space: pre; width: auto; }\",\".framer-NAGCV .framer-1s8qqmx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: 35px; padding: 0px 40px 0px 0px; position: absolute; top: 28px; width: 1fr; }\",\".framer-NAGCV .framer-1ymah1d, .framer-NAGCV .framer-7kkynr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NAGCV .framer-1ux3rss, .framer-NAGCV .framer-xjq09x { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NAGCV .framer-kchudl { background-color: rgba(223, 227, 237, 0.3); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 522px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NAGCV .framer-nadau6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; left: 35px; padding: 0px 40px 0px 0px; position: absolute; top: 28px; width: 1fr; }\",\".framer-NAGCV .framer-yhrr4y { flex: none; height: 250px; position: relative; width: 333px; }\",\".framer-NAGCV .framer-2gwiaa { background-color: #19a0ac; flex: none; height: 6px; position: relative; width: 38px; }\",\".framer-NAGCV .framer-rzzjyf { flex: none; height: 814px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NAGCV .framer-iwjopu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 36px; width: 100%; }\",\".framer-NAGCV .framer-f2uiwb, .framer-NAGCV .framer-1rrft5t { aspect-ratio: 0.5616438356164384 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 801px); overflow: visible; position: relative; width: 450px; }\",\".framer-NAGCV .framer-1a741j9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 120px; width: 100%; }\",\".framer-NAGCV .framer-vm6a3o, .framer-NAGCV .framer-us9af1, .framer-NAGCV .framer-r69l93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-18tza46, .framer-NAGCV .framer-1drcb5b { aspect-ratio: 1.8076923076923077 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 481px); mix-blend-mode: multiply; position: relative; width: 100%; }\",\".framer-NAGCV .framer-lkd95w, .framer-NAGCV .framer-jr7fjq, .framer-NAGCV .framer-1mnmm9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-761vm9 { aspect-ratio: 1.8076923076923077 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 241px); mix-blend-mode: multiply; position: relative; width: 50%; }\",\".framer-NAGCV .framer-1kuo1r9 { aspect-ratio: 1.8076923076923077 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 243px); mix-blend-mode: multiply; position: relative; width: 50%; }\",\".framer-NAGCV .framer-phzdjl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 334px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-drxwng { aspect-ratio: 1.8076923076923077 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 482px); mix-blend-mode: multiply; position: relative; width: 100%; }\",\".framer-NAGCV .framer-wa8rwh, .framer-NAGCV .framer-166i3fr, .framer-NAGCV .framer-1y938v6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 610px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1l45qok-container, .framer-NAGCV .framer-pok1r7-container, .framer-NAGCV .framer-9dlqa4-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-1ec7trh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 615px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-ce4xd7 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: 1px; mix-blend-mode: multiply; position: relative; width: 100%; }\",\".framer-NAGCV .framer-qnidxy { background-color: #ffffff; flex: none; height: 520px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NAGCV .framer-cwxjcl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 40%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-NAGCV .framer-rcjbk4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NAGCV .framer-y3g8f2 { aspect-ratio: 1 / 1; background-color: #519332; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-NAGCV .framer-ccw68a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 455px; }\",\".framer-NAGCV .framer-1u31z9o { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 455px; word-break: break-word; word-wrap: break-word; }\",\".framer-NAGCV .framer-12mrkum { background-color: #e5f1df; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 2px; position: relative; width: 100%; }\",\".framer-NAGCV .framer-r30wvb-container { bottom: 0px; flex: none; height: 80px; left: 0px; position: absolute; right: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NAGCV.framer-2ucnkj, .framer-NAGCV .framer-pc743f, .framer-NAGCV .framer-14vp3bd, .framer-NAGCV .framer-lpmet, .framer-NAGCV .framer-4v7t4b, .framer-NAGCV .framer-5wmh03, .framer-NAGCV .framer-yi8ohq, .framer-NAGCV .framer-13iyfez, .framer-NAGCV .framer-pkm95p, .framer-NAGCV .framer-1psjau1, .framer-NAGCV .framer-1egwri8, .framer-NAGCV .framer-1e0bm8p, .framer-NAGCV .framer-1gr8unp, .framer-NAGCV .framer-2ko242, .framer-NAGCV .framer-axz6dn, .framer-NAGCV .framer-tfskvr, .framer-NAGCV .framer-4cfh3h, .framer-NAGCV .framer-1xx7g4o, .framer-NAGCV .framer-1yyic73, .framer-NAGCV .framer-1xd1ugl, .framer-NAGCV .framer-1kzrmok, .framer-NAGCV .framer-1iapow0, .framer-NAGCV .framer-17c3ezd, .framer-NAGCV .framer-17ro4yf, .framer-NAGCV .framer-ujsd2l, .framer-NAGCV .framer-nbs58i, .framer-NAGCV .framer-1j0h169, .framer-NAGCV .framer-te2npr, .framer-NAGCV .framer-e6gpe6, .framer-NAGCV .framer-jutvg0, .framer-NAGCV .framer-1ncvqgy, .framer-NAGCV .framer-15xqdk2, .framer-NAGCV .framer-15ylbbg, .framer-NAGCV .framer-rdarmn, .framer-NAGCV .framer-14oopb2, .framer-NAGCV .framer-1mom8pm, .framer-NAGCV .framer-v25khk, .framer-NAGCV .framer-19h9ggd, .framer-NAGCV .framer-17xerwk, .framer-NAGCV .framer-12arbl4, .framer-NAGCV .framer-1oi68rf, .framer-NAGCV .framer-1vrv68i, .framer-NAGCV .framer-15ugxxw, .framer-NAGCV .framer-1k05jae, .framer-NAGCV .framer-1y6l10k, .framer-NAGCV .framer-1kx4t2l, .framer-NAGCV .framer-yxluk0, .framer-NAGCV .framer-1ybrped, .framer-NAGCV .framer-jzv9uc, .framer-NAGCV .framer-1s8qqmx, .framer-NAGCV .framer-nadau6, .framer-NAGCV .framer-jv2kjo, .framer-NAGCV .framer-1d6hc4h, .framer-NAGCV .framer-1u5qf8m, .framer-NAGCV .framer-ilfk92, .framer-NAGCV .framer-w2kr77, .framer-NAGCV .framer-c5axk6, .framer-NAGCV .framer-iwjopu, .framer-NAGCV .framer-1a741j9, .framer-NAGCV .framer-1p07mgl, .framer-NAGCV .framer-qai276, .framer-NAGCV .framer-1sgty8d, .framer-NAGCV .framer-1v77erv, .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-1pyca1h, .framer-NAGCV .framer-e3grym, .framer-NAGCV .framer-m66wcm, .framer-NAGCV .framer-t4nynz, .framer-NAGCV .framer-1crhxyr, .framer-NAGCV .framer-kuzg6o, .framer-NAGCV .framer-vm6a3o, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-1ft5583, .framer-NAGCV .framer-gdc0e7, .framer-NAGCV .framer-dapkat, .framer-NAGCV .framer-y3uoa4, .framer-NAGCV .framer-sw88wf, .framer-NAGCV .framer-m395y5, .framer-NAGCV .framer-us9af1, .framer-NAGCV .framer-lkd95w, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-19a4a5c, .framer-NAGCV .framer-k5si1b, .framer-NAGCV .framer-1q29dda, .framer-NAGCV .framer-1ui5dd9, .framer-NAGCV .framer-66jg77, .framer-NAGCV .framer-qtp6n8, .framer-NAGCV .framer-phzdjl, .framer-NAGCV .framer-jr7fjq, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-1ewlrzi, .framer-NAGCV .framer-d63xtx, .framer-NAGCV .framer-6mzktn, .framer-NAGCV .framer-1r82ecs, .framer-NAGCV .framer-awuq5i, .framer-NAGCV .framer-69ke91, .framer-NAGCV .framer-r69l93, .framer-NAGCV .framer-1mnmm9s, .framer-NAGCV .framer-ppsvvm, .framer-NAGCV .framer-wa8rwh, .framer-NAGCV .framer-1kytntp, .framer-NAGCV .framer-17o3gmk, .framer-NAGCV .framer-1b2gemy, .framer-NAGCV .framer-24xr6l, .framer-NAGCV .framer-6jtwx9, .framer-NAGCV .framer-166i3fr, .framer-NAGCV .framer-dgk07a, .framer-NAGCV .framer-1kpkqps, .framer-NAGCV .framer-q0e9xj, .framer-NAGCV .framer-1cyzlku, .framer-NAGCV .framer-ybfrnr, .framer-NAGCV .framer-1y938v6, .framer-NAGCV .framer-1dl9bgg, .framer-NAGCV .framer-117ukir, .framer-NAGCV .framer-yjibb7, .framer-NAGCV .framer-1q29iuc, .framer-NAGCV .framer-1ec7trh, .framer-NAGCV .framer-1v9zpd6, .framer-NAGCV .framer-75e3p8, .framer-NAGCV .framer-1wlwmb5, .framer-NAGCV .framer-r8itea, .framer-NAGCV .framer-1hst88j, .framer-NAGCV .framer-ihfqkc, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-q82zpe, .framer-NAGCV .framer-1qbev97, .framer-NAGCV .framer-1ry5bwf, .framer-NAGCV .framer-1bg37dm, .framer-NAGCV .framer-eukrmd, .framer-NAGCV .framer-1ulya9e, .framer-NAGCV .framer-27hak3, .framer-NAGCV .framer-1snqxz6, .framer-NAGCV .framer-4ug0mj, .framer-NAGCV .framer-spgw2g, .framer-NAGCV .framer-1yo3lvn, .framer-NAGCV .framer-oh3wh2, .framer-NAGCV .framer-p2vj2y, .framer-NAGCV .framer-1oesf0u, .framer-NAGCV .framer-4thi7o, .framer-NAGCV .framer-1auku3a, .framer-NAGCV .framer-g6iidv, .framer-NAGCV .framer-15c1q4r, .framer-NAGCV .framer-f5wl2a, .framer-NAGCV .framer-tt0bo, .framer-NAGCV .framer-5hkhkq, .framer-NAGCV .framer-17061wo, .framer-NAGCV .framer-cwxjcl, .framer-NAGCV .framer-rcjbk4, .framer-NAGCV .framer-ccw68a { gap: 0px; } .framer-NAGCV.framer-2ucnkj > *, .framer-NAGCV .framer-yi8ohq > *, .framer-NAGCV .framer-1e0bm8p > *, .framer-NAGCV .framer-4cfh3h > *, .framer-NAGCV .framer-1xd1ugl > *, .framer-NAGCV .framer-ujsd2l > *, .framer-NAGCV .framer-jutvg0 > *, .framer-NAGCV .framer-v25khk > *, .framer-NAGCV .framer-1k05jae > *, .framer-NAGCV .framer-c5axk6 > *, .framer-NAGCV .framer-1v77erv > *, .framer-NAGCV .framer-1crhxyr > *, .framer-NAGCV .framer-sw88wf > *, .framer-NAGCV .framer-66jg77 > *, .framer-NAGCV .framer-awuq5i > *, .framer-NAGCV .framer-24xr6l > *, .framer-NAGCV .framer-1cyzlku > *, .framer-NAGCV .framer-1q29iuc > *, .framer-NAGCV .framer-1hst88j > *, .framer-NAGCV .framer-eukrmd > *, .framer-NAGCV .framer-1snqxz6 > *, .framer-NAGCV .framer-1yo3lvn > *, .framer-NAGCV .framer-15c1q4r > *, .framer-NAGCV .framer-5hkhkq > *, .framer-NAGCV .framer-rcjbk4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NAGCV.framer-2ucnkj > :first-child, .framer-NAGCV .framer-pc743f > :first-child, .framer-NAGCV .framer-14vp3bd > :first-child, .framer-NAGCV .framer-4v7t4b > :first-child, .framer-NAGCV .framer-5wmh03 > :first-child, .framer-NAGCV .framer-yi8ohq > :first-child, .framer-NAGCV .framer-1psjau1 > :first-child, .framer-NAGCV .framer-1egwri8 > :first-child, .framer-NAGCV .framer-1e0bm8p > :first-child, .framer-NAGCV .framer-1gr8unp > :first-child, .framer-NAGCV .framer-tfskvr > :first-child, .framer-NAGCV .framer-4cfh3h > :first-child, .framer-NAGCV .framer-1yyic73 > :first-child, .framer-NAGCV .framer-1xd1ugl > :first-child, .framer-NAGCV .framer-1iapow0 > :first-child, .framer-NAGCV .framer-17c3ezd > :first-child, .framer-NAGCV .framer-17ro4yf > :first-child, .framer-NAGCV .framer-ujsd2l > :first-child, .framer-NAGCV .framer-nbs58i > :first-child, .framer-NAGCV .framer-e6gpe6 > :first-child, .framer-NAGCV .framer-jutvg0 > :first-child, .framer-NAGCV .framer-1ncvqgy > :first-child, .framer-NAGCV .framer-15xqdk2 > :first-child, .framer-NAGCV .framer-15ylbbg > :first-child, .framer-NAGCV .framer-rdarmn > :first-child, .framer-NAGCV .framer-1mom8pm > :first-child, .framer-NAGCV .framer-v25khk > :first-child, .framer-NAGCV .framer-17xerwk > :first-child, .framer-NAGCV .framer-12arbl4 > :first-child, .framer-NAGCV .framer-1oi68rf > :first-child, .framer-NAGCV .framer-15ugxxw > :first-child, .framer-NAGCV .framer-1k05jae > :first-child, .framer-NAGCV .framer-1y6l10k > :first-child, .framer-NAGCV .framer-1kx4t2l > :first-child, .framer-NAGCV .framer-yxluk0 > :first-child, .framer-NAGCV .framer-jzv9uc > :first-child, .framer-NAGCV .framer-1s8qqmx > :first-child, .framer-NAGCV .framer-nadau6 > :first-child, .framer-NAGCV .framer-jv2kjo > :first-child, .framer-NAGCV .framer-1d6hc4h > :first-child, .framer-NAGCV .framer-1u5qf8m > :first-child, .framer-NAGCV .framer-w2kr77 > :first-child, .framer-NAGCV .framer-c5axk6 > :first-child, .framer-NAGCV .framer-1a741j9 > :first-child, .framer-NAGCV .framer-1p07mgl > :first-child, .framer-NAGCV .framer-1sgty8d > :first-child, .framer-NAGCV .framer-1v77erv > :first-child, .framer-NAGCV .framer-1ew9qk8 > :first-child, .framer-NAGCV .framer-1pyca1h > :first-child, .framer-NAGCV .framer-e3grym > :first-child, .framer-NAGCV .framer-t4nynz > :first-child, .framer-NAGCV .framer-1crhxyr > :first-child, .framer-NAGCV .framer-vm6a3o > :first-child, .framer-NAGCV .framer-muo387 > :first-child, .framer-NAGCV .framer-1ft5583 > :first-child, .framer-NAGCV .framer-gdc0e7 > :first-child, .framer-NAGCV .framer-y3uoa4 > :first-child, .framer-NAGCV .framer-sw88wf > :first-child, .framer-NAGCV .framer-us9af1 > :first-child, .framer-NAGCV .framer-z47kpo > :first-child, .framer-NAGCV .framer-19a4a5c > :first-child, .framer-NAGCV .framer-k5si1b > :first-child, .framer-NAGCV .framer-1ui5dd9 > :first-child, .framer-NAGCV .framer-66jg77 > :first-child, .framer-NAGCV .framer-phzdjl > :first-child, .framer-NAGCV .framer-wqr9gg > :first-child, .framer-NAGCV .framer-1ewlrzi > :first-child, .framer-NAGCV .framer-d63xtx > :first-child, .framer-NAGCV .framer-1r82ecs > :first-child, .framer-NAGCV .framer-awuq5i > :first-child, .framer-NAGCV .framer-r69l93 > :first-child, .framer-NAGCV .framer-ppsvvm > :first-child, .framer-NAGCV .framer-wa8rwh > :first-child, .framer-NAGCV .framer-1kytntp > :first-child, .framer-NAGCV .framer-1b2gemy > :first-child, .framer-NAGCV .framer-24xr6l > :first-child, .framer-NAGCV .framer-6jtwx9 > :first-child, .framer-NAGCV .framer-166i3fr > :first-child, .framer-NAGCV .framer-dgk07a > :first-child, .framer-NAGCV .framer-q0e9xj > :first-child, .framer-NAGCV .framer-1cyzlku > :first-child, .framer-NAGCV .framer-ybfrnr > :first-child, .framer-NAGCV .framer-1y938v6 > :first-child, .framer-NAGCV .framer-1dl9bgg > :first-child, .framer-NAGCV .framer-yjibb7 > :first-child, .framer-NAGCV .framer-1q29iuc > :first-child, .framer-NAGCV .framer-1ec7trh > :first-child, .framer-NAGCV .framer-1v9zpd6 > :first-child, .framer-NAGCV .framer-75e3p8 > :first-child, .framer-NAGCV .framer-r8itea > :first-child, .framer-NAGCV .framer-1hst88j > :first-child, .framer-NAGCV .framer-1iezmts > :first-child, .framer-NAGCV .framer-q82zpe > :first-child, .framer-NAGCV .framer-1qbev97 > :first-child, .framer-NAGCV .framer-1bg37dm > :first-child, .framer-NAGCV .framer-eukrmd > :first-child, .framer-NAGCV .framer-27hak3 > :first-child, .framer-NAGCV .framer-1snqxz6 > :first-child, .framer-NAGCV .framer-spgw2g > :first-child, .framer-NAGCV .framer-1yo3lvn > :first-child, .framer-NAGCV .framer-p2vj2y > :first-child, .framer-NAGCV .framer-1oesf0u > :first-child, .framer-NAGCV .framer-4thi7o > :first-child, .framer-NAGCV .framer-g6iidv > :first-child, .framer-NAGCV .framer-15c1q4r > :first-child, .framer-NAGCV .framer-tt0bo > :first-child, .framer-NAGCV .framer-5hkhkq > :first-child, .framer-NAGCV .framer-cwxjcl > :first-child, .framer-NAGCV .framer-rcjbk4 > :first-child, .framer-NAGCV .framer-ccw68a > :first-child { margin-top: 0px; } .framer-NAGCV.framer-2ucnkj > :last-child, .framer-NAGCV .framer-pc743f > :last-child, .framer-NAGCV .framer-14vp3bd > :last-child, .framer-NAGCV .framer-4v7t4b > :last-child, .framer-NAGCV .framer-5wmh03 > :last-child, .framer-NAGCV .framer-yi8ohq > :last-child, .framer-NAGCV .framer-1psjau1 > :last-child, .framer-NAGCV .framer-1egwri8 > :last-child, .framer-NAGCV .framer-1e0bm8p > :last-child, .framer-NAGCV .framer-1gr8unp > :last-child, .framer-NAGCV .framer-tfskvr > :last-child, .framer-NAGCV .framer-4cfh3h > :last-child, .framer-NAGCV .framer-1yyic73 > :last-child, .framer-NAGCV .framer-1xd1ugl > :last-child, .framer-NAGCV .framer-1iapow0 > :last-child, .framer-NAGCV .framer-17c3ezd > :last-child, .framer-NAGCV .framer-17ro4yf > :last-child, .framer-NAGCV .framer-ujsd2l > :last-child, .framer-NAGCV .framer-nbs58i > :last-child, .framer-NAGCV .framer-e6gpe6 > :last-child, .framer-NAGCV .framer-jutvg0 > :last-child, .framer-NAGCV .framer-1ncvqgy > :last-child, .framer-NAGCV .framer-15xqdk2 > :last-child, .framer-NAGCV .framer-15ylbbg > :last-child, .framer-NAGCV .framer-rdarmn > :last-child, .framer-NAGCV .framer-1mom8pm > :last-child, .framer-NAGCV .framer-v25khk > :last-child, .framer-NAGCV .framer-17xerwk > :last-child, .framer-NAGCV .framer-12arbl4 > :last-child, .framer-NAGCV .framer-1oi68rf > :last-child, .framer-NAGCV .framer-15ugxxw > :last-child, .framer-NAGCV .framer-1k05jae > :last-child, .framer-NAGCV .framer-1y6l10k > :last-child, .framer-NAGCV .framer-1kx4t2l > :last-child, .framer-NAGCV .framer-yxluk0 > :last-child, .framer-NAGCV .framer-jzv9uc > :last-child, .framer-NAGCV .framer-1s8qqmx > :last-child, .framer-NAGCV .framer-nadau6 > :last-child, .framer-NAGCV .framer-jv2kjo > :last-child, .framer-NAGCV .framer-1d6hc4h > :last-child, .framer-NAGCV .framer-1u5qf8m > :last-child, .framer-NAGCV .framer-w2kr77 > :last-child, .framer-NAGCV .framer-c5axk6 > :last-child, .framer-NAGCV .framer-1a741j9 > :last-child, .framer-NAGCV .framer-1p07mgl > :last-child, .framer-NAGCV .framer-1sgty8d > :last-child, .framer-NAGCV .framer-1v77erv > :last-child, .framer-NAGCV .framer-1ew9qk8 > :last-child, .framer-NAGCV .framer-1pyca1h > :last-child, .framer-NAGCV .framer-e3grym > :last-child, .framer-NAGCV .framer-t4nynz > :last-child, .framer-NAGCV .framer-1crhxyr > :last-child, .framer-NAGCV .framer-vm6a3o > :last-child, .framer-NAGCV .framer-muo387 > :last-child, .framer-NAGCV .framer-1ft5583 > :last-child, .framer-NAGCV .framer-gdc0e7 > :last-child, .framer-NAGCV .framer-y3uoa4 > :last-child, .framer-NAGCV .framer-sw88wf > :last-child, .framer-NAGCV .framer-us9af1 > :last-child, .framer-NAGCV .framer-z47kpo > :last-child, .framer-NAGCV .framer-19a4a5c > :last-child, .framer-NAGCV .framer-k5si1b > :last-child, .framer-NAGCV .framer-1ui5dd9 > :last-child, .framer-NAGCV .framer-66jg77 > :last-child, .framer-NAGCV .framer-phzdjl > :last-child, .framer-NAGCV .framer-wqr9gg > :last-child, .framer-NAGCV .framer-1ewlrzi > :last-child, .framer-NAGCV .framer-d63xtx > :last-child, .framer-NAGCV .framer-1r82ecs > :last-child, .framer-NAGCV .framer-awuq5i > :last-child, .framer-NAGCV .framer-r69l93 > :last-child, .framer-NAGCV .framer-ppsvvm > :last-child, .framer-NAGCV .framer-wa8rwh > :last-child, .framer-NAGCV .framer-1kytntp > :last-child, .framer-NAGCV .framer-1b2gemy > :last-child, .framer-NAGCV .framer-24xr6l > :last-child, .framer-NAGCV .framer-6jtwx9 > :last-child, .framer-NAGCV .framer-166i3fr > :last-child, .framer-NAGCV .framer-dgk07a > :last-child, .framer-NAGCV .framer-q0e9xj > :last-child, .framer-NAGCV .framer-1cyzlku > :last-child, .framer-NAGCV .framer-ybfrnr > :last-child, .framer-NAGCV .framer-1y938v6 > :last-child, .framer-NAGCV .framer-1dl9bgg > :last-child, .framer-NAGCV .framer-yjibb7 > :last-child, .framer-NAGCV .framer-1q29iuc > :last-child, .framer-NAGCV .framer-1ec7trh > :last-child, .framer-NAGCV .framer-1v9zpd6 > :last-child, .framer-NAGCV .framer-75e3p8 > :last-child, .framer-NAGCV .framer-r8itea > :last-child, .framer-NAGCV .framer-1hst88j > :last-child, .framer-NAGCV .framer-1iezmts > :last-child, .framer-NAGCV .framer-q82zpe > :last-child, .framer-NAGCV .framer-1qbev97 > :last-child, .framer-NAGCV .framer-1bg37dm > :last-child, .framer-NAGCV .framer-eukrmd > :last-child, .framer-NAGCV .framer-27hak3 > :last-child, .framer-NAGCV .framer-1snqxz6 > :last-child, .framer-NAGCV .framer-spgw2g > :last-child, .framer-NAGCV .framer-1yo3lvn > :last-child, .framer-NAGCV .framer-p2vj2y > :last-child, .framer-NAGCV .framer-1oesf0u > :last-child, .framer-NAGCV .framer-4thi7o > :last-child, .framer-NAGCV .framer-g6iidv > :last-child, .framer-NAGCV .framer-15c1q4r > :last-child, .framer-NAGCV .framer-tt0bo > :last-child, .framer-NAGCV .framer-5hkhkq > :last-child, .framer-NAGCV .framer-cwxjcl > :last-child, .framer-NAGCV .framer-rcjbk4 > :last-child, .framer-NAGCV .framer-ccw68a > :last-child { margin-bottom: 0px; } .framer-NAGCV .framer-pc743f > *, .framer-NAGCV .framer-15ylbbg > *, .framer-NAGCV .framer-1mom8pm > *, .framer-NAGCV .framer-12arbl4 > *, .framer-NAGCV .framer-15ugxxw > *, .framer-NAGCV .framer-1y6l10k > *, .framer-NAGCV .framer-1kx4t2l > *, .framer-NAGCV .framer-1d6hc4h > *, .framer-NAGCV .framer-w2kr77 > *, .framer-NAGCV .framer-1a741j9 > *, .framer-NAGCV .framer-1sgty8d > *, .framer-NAGCV .framer-1pyca1h > *, .framer-NAGCV .framer-t4nynz > *, .framer-NAGCV .framer-1ft5583 > *, .framer-NAGCV .framer-y3uoa4 > *, .framer-NAGCV .framer-19a4a5c > *, .framer-NAGCV .framer-1ui5dd9 > *, .framer-NAGCV .framer-1ewlrzi > *, .framer-NAGCV .framer-1r82ecs > *, .framer-NAGCV .framer-wa8rwh > *, .framer-NAGCV .framer-1b2gemy > *, .framer-NAGCV .framer-166i3fr > *, .framer-NAGCV .framer-q0e9xj > *, .framer-NAGCV .framer-1y938v6 > *, .framer-NAGCV .framer-yjibb7 > *, .framer-NAGCV .framer-1v9zpd6 > *, .framer-NAGCV .framer-r8itea > *, .framer-NAGCV .framer-q82zpe > *, .framer-NAGCV .framer-1bg37dm > *, .framer-NAGCV .framer-27hak3 > *, .framer-NAGCV .framer-spgw2g > *, .framer-NAGCV .framer-1oesf0u > *, .framer-NAGCV .framer-g6iidv > *, .framer-NAGCV .framer-tt0bo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NAGCV .framer-14vp3bd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NAGCV .framer-lpmet > *, .framer-NAGCV .framer-13iyfez > *, .framer-NAGCV .framer-2ko242 > *, .framer-NAGCV .framer-axz6dn > *, .framer-NAGCV .framer-1xx7g4o > *, .framer-NAGCV .framer-1kzrmok > *, .framer-NAGCV .framer-1j0h169 > *, .framer-NAGCV .framer-te2npr > *, .framer-NAGCV .framer-14oopb2 > *, .framer-NAGCV .framer-19h9ggd > *, .framer-NAGCV .framer-1vrv68i > *, .framer-NAGCV .framer-1ybrped > *, .framer-NAGCV .framer-ilfk92 > *, .framer-NAGCV .framer-iwjopu > *, .framer-NAGCV .framer-qai276 > *, .framer-NAGCV .framer-m66wcm > *, .framer-NAGCV .framer-kuzg6o > *, .framer-NAGCV .framer-dapkat > *, .framer-NAGCV .framer-m395y5 > *, .framer-NAGCV .framer-1q29dda > *, .framer-NAGCV .framer-qtp6n8 > *, .framer-NAGCV .framer-6mzktn > *, .framer-NAGCV .framer-69ke91 > *, .framer-NAGCV .framer-17o3gmk > *, .framer-NAGCV .framer-1kpkqps > *, .framer-NAGCV .framer-117ukir > *, .framer-NAGCV .framer-1wlwmb5 > *, .framer-NAGCV .framer-ihfqkc > *, .framer-NAGCV .framer-1ry5bwf > *, .framer-NAGCV .framer-1ulya9e > *, .framer-NAGCV .framer-4ug0mj > *, .framer-NAGCV .framer-oh3wh2 > *, .framer-NAGCV .framer-1auku3a > *, .framer-NAGCV .framer-f5wl2a > *, .framer-NAGCV .framer-17061wo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NAGCV .framer-lpmet > :first-child, .framer-NAGCV .framer-13iyfez > :first-child, .framer-NAGCV .framer-pkm95p > :first-child, .framer-NAGCV .framer-2ko242 > :first-child, .framer-NAGCV .framer-axz6dn > :first-child, .framer-NAGCV .framer-1xx7g4o > :first-child, .framer-NAGCV .framer-1kzrmok > :first-child, .framer-NAGCV .framer-1j0h169 > :first-child, .framer-NAGCV .framer-te2npr > :first-child, .framer-NAGCV .framer-14oopb2 > :first-child, .framer-NAGCV .framer-19h9ggd > :first-child, .framer-NAGCV .framer-1vrv68i > :first-child, .framer-NAGCV .framer-1ybrped > :first-child, .framer-NAGCV .framer-ilfk92 > :first-child, .framer-NAGCV .framer-iwjopu > :first-child, .framer-NAGCV .framer-qai276 > :first-child, .framer-NAGCV .framer-m66wcm > :first-child, .framer-NAGCV .framer-kuzg6o > :first-child, .framer-NAGCV .framer-dapkat > :first-child, .framer-NAGCV .framer-m395y5 > :first-child, .framer-NAGCV .framer-lkd95w > :first-child, .framer-NAGCV .framer-1q29dda > :first-child, .framer-NAGCV .framer-qtp6n8 > :first-child, .framer-NAGCV .framer-jr7fjq > :first-child, .framer-NAGCV .framer-6mzktn > :first-child, .framer-NAGCV .framer-69ke91 > :first-child, .framer-NAGCV .framer-1mnmm9s > :first-child, .framer-NAGCV .framer-17o3gmk > :first-child, .framer-NAGCV .framer-1kpkqps > :first-child, .framer-NAGCV .framer-117ukir > :first-child, .framer-NAGCV .framer-1wlwmb5 > :first-child, .framer-NAGCV .framer-ihfqkc > :first-child, .framer-NAGCV .framer-1ry5bwf > :first-child, .framer-NAGCV .framer-1ulya9e > :first-child, .framer-NAGCV .framer-4ug0mj > :first-child, .framer-NAGCV .framer-oh3wh2 > :first-child, .framer-NAGCV .framer-1auku3a > :first-child, .framer-NAGCV .framer-f5wl2a > :first-child, .framer-NAGCV .framer-17061wo > :first-child { margin-left: 0px; } .framer-NAGCV .framer-lpmet > :last-child, .framer-NAGCV .framer-13iyfez > :last-child, .framer-NAGCV .framer-pkm95p > :last-child, .framer-NAGCV .framer-2ko242 > :last-child, .framer-NAGCV .framer-axz6dn > :last-child, .framer-NAGCV .framer-1xx7g4o > :last-child, .framer-NAGCV .framer-1kzrmok > :last-child, .framer-NAGCV .framer-1j0h169 > :last-child, .framer-NAGCV .framer-te2npr > :last-child, .framer-NAGCV .framer-14oopb2 > :last-child, .framer-NAGCV .framer-19h9ggd > :last-child, .framer-NAGCV .framer-1vrv68i > :last-child, .framer-NAGCV .framer-1ybrped > :last-child, .framer-NAGCV .framer-ilfk92 > :last-child, .framer-NAGCV .framer-iwjopu > :last-child, .framer-NAGCV .framer-qai276 > :last-child, .framer-NAGCV .framer-m66wcm > :last-child, .framer-NAGCV .framer-kuzg6o > :last-child, .framer-NAGCV .framer-dapkat > :last-child, .framer-NAGCV .framer-m395y5 > :last-child, .framer-NAGCV .framer-lkd95w > :last-child, .framer-NAGCV .framer-1q29dda > :last-child, .framer-NAGCV .framer-qtp6n8 > :last-child, .framer-NAGCV .framer-jr7fjq > :last-child, .framer-NAGCV .framer-6mzktn > :last-child, .framer-NAGCV .framer-69ke91 > :last-child, .framer-NAGCV .framer-1mnmm9s > :last-child, .framer-NAGCV .framer-17o3gmk > :last-child, .framer-NAGCV .framer-1kpkqps > :last-child, .framer-NAGCV .framer-117ukir > :last-child, .framer-NAGCV .framer-1wlwmb5 > :last-child, .framer-NAGCV .framer-ihfqkc > :last-child, .framer-NAGCV .framer-1ry5bwf > :last-child, .framer-NAGCV .framer-1ulya9e > :last-child, .framer-NAGCV .framer-4ug0mj > :last-child, .framer-NAGCV .framer-oh3wh2 > :last-child, .framer-NAGCV .framer-1auku3a > :last-child, .framer-NAGCV .framer-f5wl2a > :last-child, .framer-NAGCV .framer-17061wo > :last-child { margin-right: 0px; } .framer-NAGCV .framer-4v7t4b > *, .framer-NAGCV .framer-jzv9uc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NAGCV .framer-5wmh03 > *, .framer-NAGCV .framer-e6gpe6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-NAGCV .framer-pkm95p > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-NAGCV .framer-1psjau1 > *, .framer-NAGCV .framer-1s8qqmx > *, .framer-NAGCV .framer-1ec7trh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NAGCV .framer-1egwri8 > *, .framer-NAGCV .framer-tfskvr > *, .framer-NAGCV .framer-1yyic73 > *, .framer-NAGCV .framer-17ro4yf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-NAGCV .framer-1gr8unp > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-NAGCV .framer-1iapow0 > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-NAGCV .framer-17c3ezd > *, .framer-NAGCV .framer-15xqdk2 > *, .framer-NAGCV .framer-17xerwk > *, .framer-NAGCV .framer-jv2kjo > *, .framer-NAGCV .framer-1ew9qk8 > *, .framer-NAGCV .framer-muo387 > *, .framer-NAGCV .framer-z47kpo > *, .framer-NAGCV .framer-wqr9gg > *, .framer-NAGCV .framer-ppsvvm > *, .framer-NAGCV .framer-6jtwx9 > *, .framer-NAGCV .framer-ybfrnr > *, .framer-NAGCV .framer-1iezmts > *, .framer-NAGCV .framer-p2vj2y > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NAGCV .framer-nbs58i > *, .framer-NAGCV .framer-cwxjcl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NAGCV .framer-1ncvqgy > *, .framer-NAGCV .framer-vm6a3o > *, .framer-NAGCV .framer-us9af1 > *, .framer-NAGCV .framer-phzdjl > *, .framer-NAGCV .framer-r69l93 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NAGCV .framer-rdarmn > *, .framer-NAGCV .framer-1oi68rf > *, .framer-NAGCV .framer-yxluk0 > *, .framer-NAGCV .framer-1u5qf8m > *, .framer-NAGCV .framer-1p07mgl > *, .framer-NAGCV .framer-e3grym > *, .framer-NAGCV .framer-gdc0e7 > *, .framer-NAGCV .framer-k5si1b > *, .framer-NAGCV .framer-d63xtx > *, .framer-NAGCV .framer-1kytntp > *, .framer-NAGCV .framer-dgk07a > *, .framer-NAGCV .framer-1dl9bgg > *, .framer-NAGCV .framer-75e3p8 > *, .framer-NAGCV .framer-1qbev97 > *, .framer-NAGCV .framer-4thi7o > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-NAGCV .framer-nadau6 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NAGCV .framer-lkd95w > *, .framer-NAGCV .framer-jr7fjq > *, .framer-NAGCV .framer-1mnmm9s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NAGCV .framer-ccw68a > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\"@media (min-width: 1440px) and (max-width: 2559px) { .framer-NAGCV .hidden-2ucnkj { display: none !important; } }\",`@media (min-width: 1024px) and (max-width: 1439px) { .framer-NAGCV .hidden-pw7dha { display: none !important; } .${metadata.bodyClassName}-framer-NAGCV { background: white; } .framer-NAGCV.framer-2ucnkj { width: 1024px; } .framer-NAGCV .framer-4v7t4b { padding: 60px 60px 0px 60px; } .framer-NAGCV .framer-9zag1g { height: 499px; } .framer-NAGCV .framer-pkm95p, .framer-NAGCV .framer-jzv9uc, .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-ppsvvm, .framer-NAGCV .framer-6jtwx9, .framer-NAGCV .framer-ybfrnr, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 40px; } .framer-NAGCV .framer-1171ih6, .framer-NAGCV .framer-1drcb5b, .framer-NAGCV .framer-drxwng { height: var(--framer-aspect-ratio-supported, 296px); } .framer-NAGCV .framer-kchudl { height: 581px; } .framer-NAGCV .framer-rzzjyf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-NAGCV .framer-iwjopu { left: unset; position: relative; top: unset; } .framer-NAGCV .framer-f2uiwb, .framer-NAGCV .framer-1rrft5t { height: var(--framer-aspect-ratio-supported, 463px); width: 260px; } .framer-NAGCV .framer-18tza46 { height: var(--framer-aspect-ratio-supported, 295px); } .framer-NAGCV .framer-761vm9 { height: var(--framer-aspect-ratio-supported, 148px); } .framer-NAGCV .framer-1kuo1r9 { height: var(--framer-aspect-ratio-supported, 149px); } .framer-NAGCV .framer-wa8rwh, .framer-NAGCV .framer-166i3fr, .framer-NAGCV .framer-1y938v6, .framer-NAGCV .framer-1ec7trh { height: min-content; } .framer-NAGCV .framer-1l45qok-container, .framer-NAGCV .framer-pok1r7-container, .framer-NAGCV .framer-9dlqa4-container { flex: none; height: 302px; } .framer-NAGCV .framer-ce4xd7 { flex: none; height: 313px; } .framer-NAGCV .framer-cwxjcl { left: 50%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NAGCV .framer-pkm95p, .framer-NAGCV .framer-jzv9uc, .framer-NAGCV .framer-rzzjyf, .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-ppsvvm, .framer-NAGCV .framer-6jtwx9, .framer-NAGCV .framer-ybfrnr, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 0px; } .framer-NAGCV .framer-pkm95p > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-NAGCV .framer-pkm95p > :first-child { margin-left: 0px; } .framer-NAGCV .framer-pkm95p > :last-child { margin-right: 0px; } .framer-NAGCV .framer-jzv9uc > *, .framer-NAGCV .framer-1ew9qk8 > *, .framer-NAGCV .framer-muo387 > *, .framer-NAGCV .framer-z47kpo > *, .framer-NAGCV .framer-wqr9gg > *, .framer-NAGCV .framer-ppsvvm > *, .framer-NAGCV .framer-6jtwx9 > *, .framer-NAGCV .framer-ybfrnr > *, .framer-NAGCV .framer-1iezmts > *, .framer-NAGCV .framer-p2vj2y > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NAGCV .framer-jzv9uc > :first-child, .framer-NAGCV .framer-rzzjyf > :first-child, .framer-NAGCV .framer-1ew9qk8 > :first-child, .framer-NAGCV .framer-muo387 > :first-child, .framer-NAGCV .framer-z47kpo > :first-child, .framer-NAGCV .framer-wqr9gg > :first-child, .framer-NAGCV .framer-ppsvvm > :first-child, .framer-NAGCV .framer-6jtwx9 > :first-child, .framer-NAGCV .framer-ybfrnr > :first-child, .framer-NAGCV .framer-1iezmts > :first-child, .framer-NAGCV .framer-p2vj2y > :first-child { margin-top: 0px; } .framer-NAGCV .framer-jzv9uc > :last-child, .framer-NAGCV .framer-rzzjyf > :last-child, .framer-NAGCV .framer-1ew9qk8 > :last-child, .framer-NAGCV .framer-muo387 > :last-child, .framer-NAGCV .framer-z47kpo > :last-child, .framer-NAGCV .framer-wqr9gg > :last-child, .framer-NAGCV .framer-ppsvvm > :last-child, .framer-NAGCV .framer-6jtwx9 > :last-child, .framer-NAGCV .framer-ybfrnr > :last-child, .framer-NAGCV .framer-1iezmts > :last-child, .framer-NAGCV .framer-p2vj2y > :last-child { margin-bottom: 0px; } .framer-NAGCV .framer-rzzjyf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (min-width: 744px) and (max-width: 1023px) { .framer-NAGCV .hidden-1cahbmd { display: none !important; } .${metadata.bodyClassName}-framer-NAGCV { background: white; } .framer-NAGCV.framer-2ucnkj { width: 744px; } .framer-NAGCV .framer-4v7t4b { padding: 60px 60px 0px 60px; } .framer-NAGCV .framer-9zag1g { height: 346px; } .framer-NAGCV .framer-pkm95p { flex-direction: column; padding: 0px; } .framer-NAGCV .framer-1psjau1 { width: 100%; } .framer-NAGCV .framer-1iapow0 { flex: none; gap: 120px; width: 100%; } .framer-NAGCV .framer-1171ih6, .framer-NAGCV .framer-18tza46, .framer-NAGCV .framer-drxwng { height: var(--framer-aspect-ratio-supported, 323px); } .framer-NAGCV .framer-jzv9uc { gap: 40px; } .framer-NAGCV .framer-kchudl { height: 563px; } .framer-NAGCV .framer-rzzjyf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-NAGCV .framer-iwjopu { left: unset; position: relative; top: unset; } .framer-NAGCV .framer-f2uiwb, .framer-NAGCV .framer-1rrft5t { height: var(--framer-aspect-ratio-supported, 463px); width: 260px; } .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 60px; } .framer-NAGCV .framer-761vm9 { height: var(--framer-aspect-ratio-supported, 162px); } .framer-NAGCV .framer-1kuo1r9 { height: var(--framer-aspect-ratio-supported, 163px); } .framer-NAGCV .framer-1drcb5b { height: var(--framer-aspect-ratio-supported, 324px); } .framer-NAGCV .framer-wa8rwh, .framer-NAGCV .framer-166i3fr, .framer-NAGCV .framer-1y938v6, .framer-NAGCV .framer-1ec7trh { height: min-content; } .framer-NAGCV .framer-1l45qok-container, .framer-NAGCV .framer-pok1r7-container, .framer-NAGCV .framer-9dlqa4-container { flex: none; height: 332px; } .framer-NAGCV .framer-ce4xd7 { flex: none; height: 342px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NAGCV .framer-pkm95p, .framer-NAGCV .framer-1iapow0, .framer-NAGCV .framer-jzv9uc, .framer-NAGCV .framer-rzzjyf, .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 0px; } .framer-NAGCV .framer-pkm95p > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NAGCV .framer-pkm95p > :first-child, .framer-NAGCV .framer-1iapow0 > :first-child, .framer-NAGCV .framer-jzv9uc > :first-child, .framer-NAGCV .framer-rzzjyf > :first-child, .framer-NAGCV .framer-1ew9qk8 > :first-child, .framer-NAGCV .framer-muo387 > :first-child, .framer-NAGCV .framer-z47kpo > :first-child, .framer-NAGCV .framer-wqr9gg > :first-child, .framer-NAGCV .framer-1iezmts > :first-child, .framer-NAGCV .framer-p2vj2y > :first-child { margin-top: 0px; } .framer-NAGCV .framer-pkm95p > :last-child, .framer-NAGCV .framer-1iapow0 > :last-child, .framer-NAGCV .framer-jzv9uc > :last-child, .framer-NAGCV .framer-rzzjyf > :last-child, .framer-NAGCV .framer-1ew9qk8 > :last-child, .framer-NAGCV .framer-muo387 > :last-child, .framer-NAGCV .framer-z47kpo > :last-child, .framer-NAGCV .framer-wqr9gg > :last-child, .framer-NAGCV .framer-1iezmts > :last-child, .framer-NAGCV .framer-p2vj2y > :last-child { margin-bottom: 0px; } .framer-NAGCV .framer-1iapow0 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-NAGCV .framer-jzv9uc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NAGCV .framer-rzzjyf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NAGCV .framer-1ew9qk8 > *, .framer-NAGCV .framer-muo387 > *, .framer-NAGCV .framer-z47kpo > *, .framer-NAGCV .framer-wqr9gg > *, .framer-NAGCV .framer-1iezmts > *, .framer-NAGCV .framer-p2vj2y > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (max-width: 743px) { .framer-NAGCV .hidden-1nto1rw { display: none !important; } .${metadata.bodyClassName}-framer-NAGCV { background: white; } .framer-NAGCV.framer-2ucnkj { width: 390px; } .framer-NAGCV .framer-4v7t4b { padding: 60px 20px 0px 20px; } .framer-NAGCV .framer-5wmh03 { gap: 12px; } .framer-NAGCV .framer-9zag1g { height: 199px; } .framer-NAGCV .framer-pkm95p { flex-direction: column; gap: 40px; padding: 0px; } .framer-NAGCV .framer-1psjau1 { width: 100%; } .framer-NAGCV .framer-1iapow0 { flex: none; gap: 120px; width: 100%; } .framer-NAGCV .framer-15xqdk2, .framer-NAGCV .framer-17xerwk, .framer-NAGCV .framer-jv2kjo, .framer-NAGCV .framer-ppsvvm, .framer-NAGCV .framer-6jtwx9, .framer-NAGCV .framer-ybfrnr { gap: 60px; } .framer-NAGCV .framer-1171ih6, .framer-NAGCV .framer-18tza46, .framer-NAGCV .framer-1drcb5b, .framer-NAGCV .framer-drxwng { height: var(--framer-aspect-ratio-supported, 172px); } .framer-NAGCV .framer-jzv9uc { gap: 80px; } .framer-NAGCV .framer-1x7hu83 { height: 477px; } .framer-NAGCV .framer-kchudl { height: 710px; } .framer-NAGCV .framer-yhrr4y { height: 180px; width: 100%; } .framer-NAGCV .framer-c5axk6 { gap: 28px; } .framer-NAGCV .framer-rzzjyf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-NAGCV .framer-iwjopu { flex-direction: column; left: unset; position: relative; top: unset; } .framer-NAGCV .framer-f2uiwb { height: var(--framer-aspect-ratio-supported, 558px); width: 313px; } .framer-NAGCV .framer-1rrft5t { height: var(--framer-aspect-ratio-supported, 557px); width: 313px; } .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 40px; } .framer-NAGCV .framer-lkd95w, .framer-NAGCV .framer-jr7fjq, .framer-NAGCV .framer-1mnmm9s { flex-direction: column; } .framer-NAGCV .framer-761vm9, .framer-NAGCV .framer-1kuo1r9 { height: var(--framer-aspect-ratio-supported, 172px); width: 100%; } .framer-NAGCV .framer-phzdjl { height: 131px; } .framer-NAGCV .framer-wa8rwh, .framer-NAGCV .framer-166i3fr, .framer-NAGCV .framer-1y938v6, .framer-NAGCV .framer-1ec7trh { height: min-content; } .framer-NAGCV .framer-1l45qok-container, .framer-NAGCV .framer-pok1r7-container, .framer-NAGCV .framer-9dlqa4-container { flex: none; height: 171px; } .framer-NAGCV .framer-ce4xd7 { flex: none; height: 182px; } .framer-NAGCV .framer-cwxjcl { top: 39%; } .framer-NAGCV .framer-ccw68a { height: 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NAGCV .framer-5wmh03, .framer-NAGCV .framer-pkm95p, .framer-NAGCV .framer-1iapow0, .framer-NAGCV .framer-15xqdk2, .framer-NAGCV .framer-17xerwk, .framer-NAGCV .framer-jzv9uc, .framer-NAGCV .framer-jv2kjo, .framer-NAGCV .framer-c5axk6, .framer-NAGCV .framer-rzzjyf, .framer-NAGCV .framer-iwjopu, .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-lkd95w, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-jr7fjq, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-1mnmm9s, .framer-NAGCV .framer-ppsvvm, .framer-NAGCV .framer-6jtwx9, .framer-NAGCV .framer-ybfrnr, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 0px; } .framer-NAGCV .framer-5wmh03 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-NAGCV .framer-5wmh03 > :first-child, .framer-NAGCV .framer-pkm95p > :first-child, .framer-NAGCV .framer-1iapow0 > :first-child, .framer-NAGCV .framer-15xqdk2 > :first-child, .framer-NAGCV .framer-17xerwk > :first-child, .framer-NAGCV .framer-jzv9uc > :first-child, .framer-NAGCV .framer-jv2kjo > :first-child, .framer-NAGCV .framer-c5axk6 > :first-child, .framer-NAGCV .framer-iwjopu > :first-child, .framer-NAGCV .framer-1ew9qk8 > :first-child, .framer-NAGCV .framer-muo387 > :first-child, .framer-NAGCV .framer-lkd95w > :first-child, .framer-NAGCV .framer-z47kpo > :first-child, .framer-NAGCV .framer-jr7fjq > :first-child, .framer-NAGCV .framer-wqr9gg > :first-child, .framer-NAGCV .framer-1mnmm9s > :first-child, .framer-NAGCV .framer-ppsvvm > :first-child, .framer-NAGCV .framer-6jtwx9 > :first-child, .framer-NAGCV .framer-ybfrnr > :first-child, .framer-NAGCV .framer-1iezmts > :first-child, .framer-NAGCV .framer-p2vj2y > :first-child { margin-top: 0px; } .framer-NAGCV .framer-5wmh03 > :last-child, .framer-NAGCV .framer-pkm95p > :last-child, .framer-NAGCV .framer-1iapow0 > :last-child, .framer-NAGCV .framer-15xqdk2 > :last-child, .framer-NAGCV .framer-17xerwk > :last-child, .framer-NAGCV .framer-jzv9uc > :last-child, .framer-NAGCV .framer-jv2kjo > :last-child, .framer-NAGCV .framer-c5axk6 > :last-child, .framer-NAGCV .framer-iwjopu > :last-child, .framer-NAGCV .framer-1ew9qk8 > :last-child, .framer-NAGCV .framer-muo387 > :last-child, .framer-NAGCV .framer-lkd95w > :last-child, .framer-NAGCV .framer-z47kpo > :last-child, .framer-NAGCV .framer-jr7fjq > :last-child, .framer-NAGCV .framer-wqr9gg > :last-child, .framer-NAGCV .framer-1mnmm9s > :last-child, .framer-NAGCV .framer-ppsvvm > :last-child, .framer-NAGCV .framer-6jtwx9 > :last-child, .framer-NAGCV .framer-ybfrnr > :last-child, .framer-NAGCV .framer-1iezmts > :last-child, .framer-NAGCV .framer-p2vj2y > :last-child { margin-bottom: 0px; } .framer-NAGCV .framer-pkm95p > *, .framer-NAGCV .framer-1ew9qk8 > *, .framer-NAGCV .framer-muo387 > *, .framer-NAGCV .framer-z47kpo > *, .framer-NAGCV .framer-wqr9gg > *, .framer-NAGCV .framer-1iezmts > *, .framer-NAGCV .framer-p2vj2y > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NAGCV .framer-1iapow0 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-NAGCV .framer-15xqdk2 > *, .framer-NAGCV .framer-17xerwk > *, .framer-NAGCV .framer-jv2kjo > *, .framer-NAGCV .framer-ppsvvm > *, .framer-NAGCV .framer-6jtwx9 > *, .framer-NAGCV .framer-ybfrnr > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NAGCV .framer-jzv9uc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NAGCV .framer-c5axk6 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-NAGCV .framer-rzzjyf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NAGCV .framer-rzzjyf > :first-child { margin-left: 0px; } .framer-NAGCV .framer-rzzjyf > :last-child { margin-right: 0px; } .framer-NAGCV .framer-iwjopu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NAGCV .framer-lkd95w > *, .framer-NAGCV .framer-jr7fjq > *, .framer-NAGCV .framer-1mnmm9s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (min-width: 2560px) { .framer-NAGCV .hidden-aosqs9 { display: none !important; } .${metadata.bodyClassName}-framer-NAGCV { background: white; } .framer-NAGCV.framer-2ucnkj { width: 2560px; } .framer-NAGCV .framer-pc743f { left: 720px; top: 120px; } .framer-NAGCV .framer-4v7t4b { flex: none; width: 1440px; } .framer-NAGCV .framer-2gwiaa { background-color: var(--token-e0d5f314-78cb-4f21-9243-c738e1885283, #2a79d9); } .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-1ec7trh, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 60px; } .framer-NAGCV .framer-ce4xd7 { flex: none; height: 416px; } .framer-NAGCV .framer-cwxjcl { left: 50%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NAGCV .framer-1ew9qk8, .framer-NAGCV .framer-muo387, .framer-NAGCV .framer-z47kpo, .framer-NAGCV .framer-wqr9gg, .framer-NAGCV .framer-1ec7trh, .framer-NAGCV .framer-1iezmts, .framer-NAGCV .framer-p2vj2y { gap: 0px; } .framer-NAGCV .framer-1ew9qk8 > *, .framer-NAGCV .framer-muo387 > *, .framer-NAGCV .framer-z47kpo > *, .framer-NAGCV .framer-wqr9gg > *, .framer-NAGCV .framer-1ec7trh > *, .framer-NAGCV .framer-1iezmts > *, .framer-NAGCV .framer-p2vj2y > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NAGCV .framer-1ew9qk8 > :first-child, .framer-NAGCV .framer-muo387 > :first-child, .framer-NAGCV .framer-z47kpo > :first-child, .framer-NAGCV .framer-wqr9gg > :first-child, .framer-NAGCV .framer-1ec7trh > :first-child, .framer-NAGCV .framer-1iezmts > :first-child, .framer-NAGCV .framer-p2vj2y > :first-child { margin-top: 0px; } .framer-NAGCV .framer-1ew9qk8 > :last-child, .framer-NAGCV .framer-muo387 > :last-child, .framer-NAGCV .framer-z47kpo > :last-child, .framer-NAGCV .framer-wqr9gg > :last-child, .framer-NAGCV .framer-1ec7trh > :last-child, .framer-NAGCV .framer-1iezmts > :last-child, .framer-NAGCV .framer-p2vj2y > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13744\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yUDhZKOW3\":{\"layout\":[\"fixed\",\"auto\"]},\"RYpbVje4e\":{\"layout\":[\"fixed\",\"auto\"]},\"sam2Kcwpn\":{\"layout\":[\"fixed\",\"auto\"]},\"NDQBntc7R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameryMfIZjaiL=withCSS(Component,css,\"framer-NAGCV\");export default FrameryMfIZjaiL;FrameryMfIZjaiL.displayName=\"Rebelbase\";FrameryMfIZjaiL.defaultProps={height:13744,width:1440};addFonts(FrameryMfIZjaiL,[{explicitInter:true,fonts:[{family:\"Avenir LT Std 95 Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZNuCRVeceL8wguQ4TE8zmBTSAX0.woff2\"},{family:\"Segoe UI Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/HEPW0Cdu5iH3WfESYPXFO0vdkTo.woff2\"},{family:\"Segoe UI Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/bUnkWaw1h7nrPUt4oAqcEm5VfU.woff2\"},{family:\"Abril Fatface\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/abrilfatface/v23/zOL64pLDlL1D99S8g8PtiKchm-VsjOLhZBY.woff2\",weight:\"400\"},{family:\"Avenir LT Std 85 Heavy\",source:\"custom\",url:\"https://framerusercontent.com/assets/BlL7XIFQrfcBKwWeX7Rd0lW7s.woff2\"}]},...NavigationFonts,...SW_sidebarFonts,...YouTubeFonts,...FooternewFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryMfIZjaiL\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yUDhZKOW3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RYpbVje4e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sam2Kcwpn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NDQBntc7R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"13744\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapxs3d6b", "args", "onTapb0glxe", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "RichText2", "css", "FrameroamYQd52R", "withCSS", "oamYQd52R_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "ozWzVkGqg_default", "ContainerWithFX", "withFX", "Container", "SW_sidebarFonts", "oamYQd52R_default", "SW_sidebarWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "motion", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "YouTubeFonts", "Youtube", "FooternewFonts", "eWCs04VGp_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "ref11", "useRouteElementId", "id1", "id2", "id3", "id4", "id5", "id6", "id7", "ref12", "id8", "ref13", "id9", "id10", "id11", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "ContainerWithFX", "PropertyOverrides2", "ozWzVkGqg_default", "MotionDivWithFX", "Container", "SW_sidebarWithVariantAppearEffect", "x", "RichTextWithOptimizedAppearEffect", "ImageWithOptimizedAppearEffect", "RichText2", "Image2", "Youtube", "eWCs04VGp_default", "css", "FrameryMfIZjaiL", "withCSS", "yMfIZjaiL_default", "addFonts", "NavigationFonts", "SW_sidebarFonts", "YouTubeFonts", "FooternewFonts", "__FramerMetadata__"]
}
