{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/eZx9QADedSUCXVkBjl7a/uSMI9EHv4bsAP1cDF4rA/M_c629dAC.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import NavMenu from\"#framer/local/canvasComponent/cK97kjhES/cK97kjhES.js\";import Footer from\"#framer/local/canvasComponent/HnNT3kH38/HnNT3kH38.js\";import CheckOutOtherProjects from\"#framer/local/canvasComponent/UeVtunFhJ/UeVtunFhJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/M_c629dAC/M_c629dAC.js\";const NavMenuFonts=getFonts(NavMenu);const VideoFonts=getFonts(Video);const CheckOutOtherProjectsFonts=getFonts(CheckOutOtherProjects);const FooterFonts=getFonts(Footer);const breakpoints={tkiCKfrx3:\"(min-width: 1440px)\",ymAQbi61A:\"(max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZrEVK\";const variantClassNames={tkiCKfrx3:\"framer-v-kens7m\",ymAQbi61A:\"framer-v-x81i0t\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"tkiCKfrx3\",Tablet:\"ymAQbi61A\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tkiCKfrx3\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tkiCKfrx3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-kens7m\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ymAQbi61A:{width:\"1200px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:114,width:\"1440px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bto4k5-container\",layoutScroll:true,nodeId:\"TysWoDUKe\",scopeId:\"M_c629dAC\",children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"TysWoDUKe\",layoutId:\"TysWoDUKe\",style:{width:\"100%\"},variant:\"LLpjPTa78\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1rtuo0t\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vmp0mz\",\"data-framer-name\":\"Hero section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-62ox3u\",\"data-framer-name\":\"section 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16m9s1y\",\"data-framer-name\":\"Frame 42274\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v8unag\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1li3xsg\",\"data-framer-name\":\"Frame 20\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1in6jr9\",\"data-framer-name\":\"Achievers_Logo_CMYK 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:92,svg:'<svg width=\"92\" height=\"23\" viewBox=\"0 0 92 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1333_362)\">\\n<path d=\"M30.7317 9.87418C31.8619 8.58296 33.6195 8.34698 35.2236 8.81434C36.3036 9.12929 37.0481 9.78693 37.4569 10.7873C37.7425 11.4869 37.7973 12.2234 37.7986 13.044C37.8017 14.9865 37.802 16.929 37.7996 18.8718C37.7996 18.8868 37.7919 18.8943 37.7766 18.8943H35.4195C35.4135 18.8943 35.4078 18.8919 35.4036 18.8876C35.3994 18.8833 35.397 18.8774 35.397 18.8713C35.3973 16.9994 35.397 15.1249 35.3961 13.2478C35.3956 12.061 34.9701 11.0315 33.6844 10.7992C32.355 10.5591 31.0587 11.3301 30.7772 12.6802C30.7386 12.8642 30.7189 13.1696 30.7183 13.5965C30.7159 15.3543 30.7154 17.1123 30.7169 18.8704C30.7169 18.8863 30.709 18.8943 30.693 18.8943H28.336C28.3299 18.8943 28.324 18.8919 28.3197 18.8876C28.3154 18.8833 28.313 18.8774 28.313 18.8713V3.86382C28.313 3.85772 28.3154 3.85187 28.3197 3.84756C28.324 3.84324 28.3299 3.84082 28.336 3.84082H30.6935C30.6996 3.84082 30.7054 3.84324 30.7098 3.84756C30.7141 3.85187 30.7165 3.85772 30.7165 3.86382V9.8682C30.7165 9.86997 30.717 9.8717 30.718 9.87316C30.719 9.87463 30.7204 9.87576 30.722 9.8764C30.7237 9.87705 30.7255 9.87719 30.7272 9.87679C30.7289 9.87639 30.7305 9.87548 30.7317 9.87418Z\" fill=\"#4F2C86\"/>\\n<path d=\"M40.3539 6.96311C41.195 6.96311 41.8769 6.28121 41.8769 5.44005C41.8769 4.59889 41.195 3.91699 40.3539 3.91699C39.5127 3.91699 38.8308 4.59889 38.8308 5.44005C38.8308 6.28121 39.5127 6.96311 40.3539 6.96311Z\" fill=\"#4F2C86\"/>\\n<path d=\"M8.08722 4.09375H12.5281C12.5329 4.09376 12.5376 4.09527 12.5416 4.09807C12.5455 4.10087 12.5485 4.10482 12.5501 4.10939L17.8857 18.863C17.8869 18.8665 17.8873 18.8703 17.8868 18.874C17.8863 18.8777 17.8849 18.8813 17.8827 18.8843C17.8806 18.8874 17.8777 18.8899 17.8744 18.8916C17.871 18.8933 17.8673 18.8942 17.8636 18.8942H15.2453C15.2404 18.8942 15.2357 18.8927 15.2318 18.8899C15.2278 18.8871 15.2248 18.8832 15.2232 18.8786L14.0405 15.4714C14.0389 15.4668 14.0359 15.4629 14.032 15.4601C14.028 15.4573 14.0233 15.4558 14.0185 15.4558H8.42946C8.42461 15.4558 8.41989 15.4573 8.41593 15.4601C8.41198 15.4629 8.40899 15.4668 8.40738 15.4714L7.2054 18.8786C7.20378 18.8832 7.20079 18.8871 7.19684 18.8899C7.19288 18.8927 7.18816 18.8942 7.18332 18.8942H4.62572C4.62197 18.8942 4.61827 18.8933 4.61494 18.8916C4.61162 18.8899 4.60875 18.8874 4.60659 18.8843C4.60443 18.8813 4.60303 18.8777 4.60252 18.874C4.602 18.8703 4.60239 18.8665 4.60364 18.863L9.54496 5.20005C9.54668 5.19519 9.54676 5.18991 9.54518 5.185C9.5436 5.18009 9.54045 5.17585 9.53622 5.17291L8.07388 4.13653C8.06975 4.13369 8.06665 4.1296 8.06501 4.12487C8.06338 4.12014 8.0633 4.11501 8.06479 4.11023C8.06628 4.10545 8.06926 4.10127 8.0733 4.0983C8.07733 4.09534 8.08221 4.09374 8.08722 4.09375ZM12.6628 11.4514C12.6617 11.448 12.6617 11.4442 12.6628 11.4407C12.664 11.4372 12.6663 11.4342 12.6693 11.4321L14.6252 10.0471C14.6281 10.045 14.6303 10.042 14.6314 10.0386C14.6325 10.0352 14.6325 10.0316 14.6315 10.0282C14.6304 10.0248 14.6283 10.0218 14.6254 10.0196C14.6226 10.0175 14.6191 10.0163 14.6155 10.0163H12.1716C12.168 10.0163 12.1646 10.0151 12.1617 10.0131C12.1588 10.011 12.1566 10.0081 12.1555 10.0047L11.2598 7.45451C11.2586 7.45117 11.2564 7.44829 11.2535 7.44627C11.2506 7.44425 11.2471 7.44319 11.2436 7.44324C11.24 7.44329 11.2366 7.44445 11.2337 7.44655C11.2309 7.44865 11.2287 7.4516 11.2276 7.45497L8.91706 14.0482C8.91584 14.0516 8.91576 14.0553 8.91683 14.0588C8.9179 14.0623 8.92007 14.0654 8.92301 14.0675C8.92594 14.0697 8.9295 14.0709 8.93315 14.0708C8.9368 14.0708 8.94035 14.0697 8.94328 14.0675L11.2396 12.4427C11.2424 12.4408 11.2458 12.4397 11.2493 12.4397C11.2527 12.4397 11.2561 12.4408 11.2589 12.4427L13.5433 14.0656C13.5462 14.0679 13.5499 14.0692 13.5536 14.0692C13.5573 14.0692 13.561 14.068 13.5639 14.0658C13.5669 14.0635 13.5691 14.0603 13.5701 14.0567C13.5711 14.0531 13.5709 14.0493 13.5695 14.0459L12.6628 11.4514Z\" fill=\"#4F2C86\"/>\\n<path d=\"M19.9203 13.7379C19.843 15.6147 20.8776 17.0831 22.902 16.9543C23.9724 16.8866 24.8014 16.3406 25.1896 15.3047C25.1919 15.2985 25.196 15.2931 25.2014 15.2893C25.2069 15.2855 25.2133 15.2835 25.22 15.2835H27.4399C27.4608 15.2835 27.4692 15.2937 27.4652 15.3139C27.0089 17.7422 25.1266 19.0505 22.7498 19.1508C20.5924 19.2418 18.7068 18.1213 17.9133 16.0913C17.4956 15.0227 17.4243 13.8198 17.6175 12.696C18.1318 9.69913 20.7603 8.22345 23.6468 8.67747C25.6565 8.99395 27.1713 10.4365 27.4643 12.4706C27.4671 12.4906 27.4585 12.5005 27.4385 12.5005H25.2085C25.199 12.5006 25.1898 12.4976 25.1821 12.4921C25.1743 12.4866 25.1684 12.4788 25.1652 12.4697C24.7236 11.2121 23.6192 10.6431 22.321 10.7686C20.7156 10.9237 19.9806 12.2724 19.9203 13.7379Z\" fill=\"#4F2C86\"/>\\n<path d=\"M44.8477 14.7953C44.9876 15.9989 45.6442 16.7365 46.8175 17.0079C47.2032 17.0971 47.6088 17.1118 48.0342 17.052C48.9588 16.9219 49.6782 16.4347 50.0931 15.581C50.1002 15.5665 50.1118 15.5593 50.1281 15.5593H52.3715C52.3902 15.5593 52.3977 15.5685 52.394 15.5869C52.0362 17.3055 50.6005 18.6266 48.9247 19.0135C48.1734 19.1871 47.4104 19.2113 46.6358 19.0862C43.4714 18.5751 42.1356 15.5897 42.683 12.6535C43.1931 9.91468 45.431 8.37184 48.1731 8.62576C50.7339 8.86266 52.3674 10.9143 52.4837 13.3983C52.5021 13.7923 52.5052 14.2493 52.4929 14.7691C52.4926 14.7822 52.486 14.7888 52.4732 14.7888H44.8537C44.8528 14.7888 44.852 14.789 44.8512 14.7894C44.8504 14.7897 44.8497 14.7902 44.8491 14.7908C44.8486 14.7914 44.8481 14.7921 44.8479 14.7929C44.8477 14.7937 44.8476 14.7945 44.8477 14.7953ZM47.8704 10.6291C46.1992 10.4602 45.0948 11.4175 44.8891 13.0537C44.8873 13.0681 44.8936 13.0753 44.908 13.0753H50.0356C50.0494 13.0753 50.0559 13.0684 50.0549 13.0546C49.9689 11.6995 49.2476 10.768 47.8704 10.6291Z\" fill=\"#4F2C86\"/>\\n<path d=\"M64.3811 14.8103C64.5825 16.5436 66.0242 17.2897 67.6498 17.0303C68.5634 16.8843 69.222 16.4004 69.6255 15.5785C69.632 15.5656 69.6422 15.5592 69.6563 15.5592H71.8869C71.9209 15.5592 71.9341 15.5758 71.9264 15.6089C71.4927 17.4608 69.965 18.7728 68.1149 19.0796C65.1626 19.5686 62.6165 17.9498 62.1712 14.9152C61.852 12.7408 62.5434 10.3249 64.5959 9.21305C65.7735 8.57503 67.2275 8.43335 68.5165 8.77605C70.552 9.31655 71.794 11.0452 71.9872 13.0876C72.0368 13.6105 72.051 14.1715 72.0295 14.7708C72.0292 14.7827 72.023 14.7887 72.0111 14.7887H64.4004C64.3977 14.7887 64.395 14.7892 64.3925 14.7904C64.3901 14.7915 64.3878 14.7931 64.386 14.7951C64.3842 14.7972 64.3828 14.7996 64.382 14.8022C64.3811 14.8048 64.3808 14.8076 64.3811 14.8103ZM67.3214 10.6197C65.6585 10.5056 64.6414 11.4404 64.4165 13.0559C64.4162 13.0583 64.4164 13.0608 64.4171 13.0631C64.4178 13.0654 64.419 13.0676 64.4206 13.0694C64.4222 13.0713 64.4242 13.0727 64.4264 13.0737C64.4286 13.0747 64.4311 13.0752 64.4335 13.0752H69.5625C69.5772 13.0752 69.5841 13.068 69.5832 13.0536C69.5013 11.68 68.7405 10.7172 67.3214 10.6197Z\" fill=\"#4F2C86\"/>\\n<path d=\"M82.1748 12.1081C82.4361 12.5892 82.9922 12.7337 83.4821 12.8611C84.8318 13.2125 86.4951 13.5143 87.1621 14.9348C87.4809 15.6137 87.4722 16.4845 87.227 17.1809C86.8268 18.3162 85.5264 18.9979 84.3957 19.1198C82.1895 19.3577 79.7658 18.635 79.5763 16.0153C79.5759 16.0099 79.5766 16.0045 79.5784 15.9995C79.5801 15.9944 79.5829 15.9898 79.5866 15.9858C79.5902 15.9819 79.5946 15.9788 79.5995 15.9766C79.6043 15.9745 79.6096 15.9734 79.6149 15.9734H81.7994C81.8154 15.9734 81.8243 15.9813 81.8261 15.9969C81.966 17.0494 83.11 17.353 84.0074 17.1842C84.5797 17.0765 85.0328 16.6386 84.9997 16.0392C84.9707 15.5194 84.5608 15.2048 84.0737 15.0626C82.477 14.5967 80.1384 14.3041 79.7644 12.2585C79.6526 11.6485 79.7373 10.9801 79.9985 10.4171C80.7033 8.89863 82.4411 8.49015 83.9729 8.62033C85.7237 8.76983 87.1612 9.81817 87.2698 11.6853C87.2704 11.6997 87.2636 11.7069 87.2495 11.7069H85.0779C85.0604 11.7069 85.0498 11.6985 85.0461 11.6816C84.9097 11.0754 84.5363 10.7077 83.926 10.5786C83.2967 10.4456 82.477 10.5832 82.1619 11.2281C82.0153 11.5286 82.0196 11.8219 82.1748 12.1081Z\" fill=\"#4F2C86\"/>\\n<path d=\"M75.3015 10.0178C76.0273 8.73206 77.8315 8.59222 79.1162 8.89122C79.134 8.89521 79.1429 8.90625 79.1429 8.92434V11.0873C79.1429 11.1063 79.1336 11.1139 79.1149 11.1103C78.096 10.9056 76.9915 10.8669 76.181 11.6393C75.5098 12.2791 75.3548 13.177 75.3534 14.0648C75.3504 15.6672 75.3481 17.2697 75.3465 18.8723C75.3465 18.8873 75.339 18.8948 75.324 18.8948H72.9329C72.9176 18.8948 72.9099 18.8872 72.9099 18.8718V8.93584C72.9099 8.92669 72.9135 8.91791 72.92 8.91144C72.9265 8.90497 72.9353 8.90134 72.9444 8.90134H75.129C75.144 8.90134 75.1524 8.90885 75.1543 8.92388L75.284 10.0141C75.284 10.0161 75.2848 10.0181 75.2861 10.0197C75.2874 10.0213 75.2893 10.0223 75.2913 10.0228C75.2933 10.0232 75.2954 10.0229 75.2972 10.022C75.2991 10.0211 75.3006 10.0196 75.3015 10.0178Z\" fill=\"#4F2C86\"/>\\n<path d=\"M41.5412 8.90137H39.1777C39.1668 8.90137 39.158 8.91022 39.158 8.92115V18.8746C39.158 18.8856 39.1668 18.8944 39.1777 18.8944H41.5412C41.5521 18.8944 41.561 18.8856 41.561 18.8746V8.92115C41.561 8.91022 41.5521 8.90137 41.5412 8.90137Z\" fill=\"#4F2C86\"/>\\n<path d=\"M60.1391 8.90137H62.6134C62.6158 8.90142 62.6181 8.90205 62.6202 8.9032C62.6223 8.90435 62.6241 8.90599 62.6254 8.90798C62.6267 8.90998 62.6275 8.91226 62.6277 8.91463C62.628 8.917 62.6276 8.9194 62.6267 8.92161L58.4637 18.8857C58.4626 18.8883 58.4608 18.8906 58.4584 18.8923C58.4561 18.8939 58.4533 18.8948 58.4504 18.8949H56.0869C56.084 18.8949 56.0811 18.894 56.0786 18.8924C56.0761 18.8908 56.0742 18.8884 56.0731 18.8857L52.0904 8.92161C52.0895 8.9194 52.0892 8.917 52.0894 8.91463C52.0897 8.91226 52.0905 8.90998 52.0918 8.90798C52.0931 8.90599 52.0949 8.90435 52.097 8.9032C52.0991 8.90205 52.1014 8.90142 52.1038 8.90137H54.6807C54.6837 8.90137 54.6866 8.9023 54.6891 8.90403C54.6916 8.90576 54.6935 8.9082 54.6945 8.91103L57.3059 16.001C57.3069 16.0038 57.3088 16.0063 57.3112 16.0081C57.3136 16.0098 57.3165 16.0108 57.3196 16.0108C57.3226 16.0109 57.3255 16.01 57.328 16.0083C57.3305 16.0067 57.3324 16.0043 57.3335 16.0015L60.1252 8.91057C60.1264 8.90783 60.1283 8.90548 60.1307 8.90384C60.1332 8.9022 60.1361 8.90134 60.1391 8.90137Z\" fill=\"#4F2C86\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1333_362\">\\n<path d=\"M0 0H92V15C92 19.4183 88.4183 23 84 23H8C3.58172 23 0 19.4183 0 15V0Z\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5bhj14\",\"data-framer-name\":\"Group 42268\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"75px\"},children:\"Redesigning Product Page UI to build trust\"})}),className:\"framer-mjbyq0\",\"data-framer-name\":\"Optimizing product pages to build trust & increase leads.\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:[\"I re-designed 5 consistent product pages to build trust. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"Results were\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"20% increase in qualified leads.\"})]})}),className:\"framer-1h9j8g4\",\"data-framer-name\":\"I re-designed 5 consistent product pages to build trust. Results were 20% increase in qualified leads.\",fonts:[\"GF;Poppins-500\",\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17agms0\",\"data-framer-name\":\"Frame 1000011039\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:[\"The business wanted to increase qualified leads through direct website traffic. However, there was no consistency in the way they communicated their product offerings on their website.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-z4h8ap\",\"data-framer-name\":\"The business wanted to increase qualified leads through direct website traffic. However, there was no consistency in the way they communicated their product offerings on their website.\\u2028\\u2028\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15.5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"* Achievers is an employee engagement software that helps companies improve employee satisfaction, resulting in higher productivity and retention.\"})}),className:\"framer-b43f0f\",\"data-framer-name\":\"* Achievers is an employee engagement software that helps companies improve employee satisfaction, resulting in higher productivity and retention.\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v3bbld\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:870,svg:'<svg width=\"870\" height=\"41\" viewBox=\"-6 -6 870 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.00922 21.0207C1.00922 21.0207 249.288 12.881 403.125 9.24341C583.475 4.97884 857.347 12.3424 857.347 12.3424\" stroke=\"#FFEDAD\" stroke-width=\"12\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f0osjq\",\"data-framer-name\":\"Team\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwdmpm\",\"data-framer-name\":\"1st column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4xid\",\"data-framer-name\":\"Group 42269\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\",\"--framer-text-color\":\"rgb(74, 84, 104)\",\"--framer-text-transform\":\"uppercase\"},children:\"Role\"})}),className:\"framer-151tkua\",\"data-framer-name\":\"Role\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"CRO UX/UI Designer\"})}),className:\"framer-4qefct\",\"data-framer-name\":\"CRO UX/UI Designer\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jbvnt7\",\"data-framer-name\":\"Group 42270\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\",\"--framer-text-color\":\"rgb(74, 84, 104)\",\"--framer-text-transform\":\"uppercase\"},children:\"Year\"})}),className:\"framer-360s9a\",\"data-framer-name\":\"Year\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"2023\"})}),className:\"framer-1j4vhxj\",\"data-framer-name\":\"2023\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-195q12v\",\"data-framer-name\":\"Group 42271\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\",\"--framer-text-color\":\"rgb(74, 84, 104)\",\"--framer-text-transform\":\"uppercase\"},children:\"Duration\"})}),className:\"framer-3trz00\",\"data-framer-name\":\"Duration\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"3 months\"})}),className:\"framer-3izg0r\",\"data-framer-name\":\"3 months\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1us2fo2\",\"data-framer-name\":\"2nd column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\",\"--framer-text-color\":\"rgb(74, 84, 104)\",\"--framer-text-transform\":\"uppercase\"},children:\"Team\"})}),className:\"framer-11bvbzy\",\"data-framer-name\":\"Team\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"UX/UI Designer (me) \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"3 Engineers\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Product Owner\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Product Manager\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Copywriter\"})]}),className:\"framer-n9s9zz\",\"data-framer-name\":\"UX/UI Designer (me) 3 Engineers Product Owner Product Manager Copywriter\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sa2x5\",\"data-framer-name\":\"3rd column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\",\"--framer-text-color\":\"rgb(74, 84, 104)\",\"--framer-text-transform\":\"uppercase\"},children:\"Deliverables\"})}),className:\"framer-1mdqzel\",\"data-framer-name\":\"Deliverables\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Heuristic evaluation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Competitive research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Data analysis\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"User research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"User journey map\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Mockups\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Prototypes\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Hi-Fi Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"User testing\"})]}),className:\"framer-1vz08ie\",\"data-framer-name\":\"Heuristic evaluation Competitive research Data analysis User research User journey map Mockups Prototypes Hi-Fi Design User testing\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ojjnk9\",\"data-framer-name\":\"Product Over view\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"This is the Final Product\"})}),className:\"framer-td9z7m\",\"data-framer-name\":\"This is the Final Product\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eo7stz\",\"data-framer-name\":\"Image + Subtext\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lvkpsu\",\"data-framer-name\":\"Frame 42305\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Here are the 5 consistent product pages to build trust. \"})}),className:\"framer-tjsva0\",\"data-framer-name\":\"I re-designed 5 consistent product pages to build trust. Results were 20% increase in qualified leads.\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ymAQbi61A:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+1466.851+0+390+0+60),positionX:\"center\",positionY:\"center\",sizes:\"1052px\",src:\"https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png\",srcSet:\"https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png?scale-down-to=512 512w,https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png 3687w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+1466.851+0+390+0+60),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png\",srcSet:\"https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png?scale-down-to=512 512w,https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NhLFFQqMsn70yicGQBNhhQs6d4.png 3687w\"},className:\"framer-824v40\",\"data-framer-name\":\"Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iu2zjm\",\"data-framer-name\":\"section 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hzah7v\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"To understand the current state, I ran a UX audit and conducted a Heuristic evaluation of the website\"})}),className:\"framer-egc9ro\",\"data-framer-name\":\"To understand the current state, I ran a UX audit and conducted a Heuristic evaluation of the website\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ldhp1l\",\"data-framer-name\":\"Frame 42273\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"I needed to uncover the root cause of this underperformance. The biggest redflag was the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"violation of the \u201CConsistency & Standard\u201D \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\"principle\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\". \"})]})}),className:\"framer-1c63rxs\",\"data-framer-name\":\"I needed to uncover the root cause of this underperformance. The biggest redflag was the violation of the \u201CConsistency & Standard\u201D principle.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\",\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e3y33\",\"data-framer-name\":\"Frame 625863\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpypb8\",\"data-framer-name\":\"Frame 42304\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i9q1u7\",\"data-framer-name\":\"Frame 42305\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Here\u2019s what I learned\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"While \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"Achievers offered 5 products\"}),\", they \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"only had 2 product pages\"}),\" to communicate their offerings. The other 3 products led the user to a form landing page, instructing them to connect with our sales staff to learn more.\"]})]}),className:\"framer-d6s1d7\",\"data-framer-name\":\"Here\u2019s what I learned While Achievers offered 5 products, they only had 2 product pages to communicate their offerings. The other 3 products led the user to a form landing page, instructing them to connect with our sales staff to learn more.\",fonts:[\"GF;Poppins-700italic\",\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-afc9kr\",\"data-framer-name\":\"Frame 1000011030\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\",\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"Violating Consistency & Standards principle.\"})}),className:\"framer-1jja2dq\",\"data-framer-name\":\"Violating Consistency & Standards principle.\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18s4b11\",\"data-framer-name\":\"Ellipse 13\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m5hxvv\",\"data-framer-name\":\"Line 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:39,svg:'<svg width=\"39\" height=\"39\" viewBox=\"-2 -2 39 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.26074 1.72168L33.2607 32.7217\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tsg9b1\",\"data-framer-name\":\"Line 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:39,svg:'<svg width=\"39\" height=\"39\" viewBox=\"-2 -2 39 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.3999 32.5215L33.3999 1.52148\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gi7e0g\",\"data-framer-name\":\"Group 42232\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+2076.851+0+633.6895+0+0+561.379+0),positionX:\"center\",positionY:\"center\",sizes:\"1069px\",src:\"https://framerusercontent.com/images/o8eQuMHjtKQuHG9jCRB5DKa9rDo.png\",srcSet:\"https://framerusercontent.com/images/o8eQuMHjtKQuHG9jCRB5DKa9rDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/o8eQuMHjtKQuHG9jCRB5DKa9rDo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o8eQuMHjtKQuHG9jCRB5DKa9rDo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o8eQuMHjtKQuHG9jCRB5DKa9rDo.png 3207w\"},className:\"framer-1nd0tli\",\"data-framer-name\":\"image 66\"})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1crstdp\",\"data-framer-name\":\"section 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pydcyb\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"3 constraints I Identified with my team\"})}),className:\"framer-lxwia4\",\"data-framer-name\":\"3 constraints I Identified with my team\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rbjwfb\",\"data-framer-name\":\"Frame 625866\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"From the start we knew that changes had to roll out in phases considering technical limitations: \"})}),className:\"framer-1ic2f6a\",\"data-framer-name\":\"From the start we knew that changes had to roll out in phases considering technical limitations:\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eq1nyr\",\"data-framer-name\":\"Frame 625865\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4wsysk\",\"data-framer-name\":\"Frame 42304\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gcxm62\",\"data-framer-name\":\"Frame 42305\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+4161.3931+0+633.6895+0+0+0+0),src:\"https://framerusercontent.com/images/QRyG85lbWgKUvw8N7dmCPEeELOU.png\"},className:\"framer-qmk5zl\",\"data-framer-name\":\"image 670\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"3 month\"}),\" timeline\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"Limited Dev\"}),\" time and resources \"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"Any animation or \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"complex interactions \"}),\"would be implemented \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"in future sprints\"})]})]}),className:\"framer-am04xk\",\"data-framer-name\":\"3 month timeline Limited Dev time and resources Any animation or complex interactions would be implemented in future sprints\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qy6jcg\",\"data-framer-name\":\"section 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1moah3h\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Hypothesis & Success metrics we set\"})}),className:\"framer-1gpwusl\",\"data-framer-name\":\"Hypothesis & Success metrics we set\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lupmkn\",\"data-framer-name\":\"Frame 625867\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"Based on the findings from the heuristic evaluation, drop-off rates, and other evidence-based data, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"I worked with my PM to formulate a hypothesis to set a clear goal\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(79, 44, 134)\"},children:\".\"}),\" \"]})}),className:\"framer-12iuhkn\",\"data-framer-name\":\"Based on the findings from the heuristic evaluation, drop-off rates, and other evidence-based data, I worked with my PM to formulate a hypothesis to set a clear goal.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-467sbl\",\"data-framer-name\":\"Frame 625864\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pjatg\",\"data-framer-name\":\"Frame 42304\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fgvwi2\",\"data-framer-name\":\"Frame 42305\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Hypothesis\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"By \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"clarifying our products\"}),\" and their benefits, we will reduce ambiguity and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"increase trust\"}),\".\"]})]}),className:\"framer-fn2pnq\",\"data-framer-name\":\"Hypothesis By clarifying our products and their benefits, we will reduce ambiguity and increase trust.\",fonts:[\"GF;Poppins-700\",\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+5090.0826+0+633.6895+0+0+0+0),src:\"https://framerusercontent.com/images/hn2rYwYKCsTjEPTqmAIRugx1q64.png\"},className:\"framer-1eb6wm2\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Success metrics/Goals\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"30% higher engagement \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-weight\":\"300\"},children:\"with Product pages. \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"15% Increase in qualified leads.\"})]}),className:\"framer-12f7om9\",\"data-framer-name\":\"Success metrics/Goals 30% higher engagement with Product pages. 15% Increase in qualified leads.\",fonts:[\"GF;Poppins-700\",\"GF;Poppins-500\",\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jjrl6\",\"data-framer-name\":\"Group 42236\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ml6wpk\",\"data-framer-name\":\"Frame 42276\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Activities and outputs\"})}),className:\"framer-1wg4d8k\",\"data-framer-name\":\"Activities and outputs\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8u9xaf\",\"data-framer-name\":\"Frame 42273\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-esfy96\",\"data-framer-name\":\"Group 42233\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dseoe2\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"137.02%\"},children:\"Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Website audit discoveries \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Competitive Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"User Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Jobs-to-be-done applied\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Pain points across the user journey\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Internal Product Research\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1t59gx4\",\"data-framer-name\":\"Research Website audit discoveries Competitive Research User Research Jobs-to-be-done applied Pain points across the user journey Internal Product Research\",fonts:[\"Inter-SemiBold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s19lcp\",\"data-framer-name\":\"Group 42234\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cwwn6h\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"137.02%\"},children:\"Idea evaluation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Exploring ideas\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Checkpoints with Devs\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Ideation & evaluation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-11je4l1\",\"data-framer-name\":\"Idea evaluation Exploring ideas Checkpoints with Devs Ideation & evaluation\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dl0mx\",\"data-framer-name\":\"Group 42235\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-obug6a\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"137.02%\"},children:\"Implementation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Collab with PM, Dev, Copy\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Implementation plan\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Hypothesis/success metrics\"})]}),className:\"framer-uiv6rn\",\"data-framer-name\":\"Implementation Collab with PM, Dev, Copy Implementation plan Hypothesis/success metrics\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q96wbo\",\"data-framer-name\":\"section 5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10xsl03\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Project timeline (birds-eye view)\"})}),className:\"framer-1ef7s61\",\"data-framer-name\":\"Project timeline (birds-eye view)\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9pu9c\",\"data-framer-name\":\"Frame 625868\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-weight\":\"300\"},children:\"I created a \"}),\"source of truth in Figma to communicate my process with multiple stakeholders\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-weight\":\"300\"},children:\". \"})]})}),className:\"framer-1w1y54g\",\"data-framer-name\":\"I created a source of truth in Figma to communicate my process with multiple stakeholders.\",fonts:[\"GF;Poppins-600\",\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hipy3p\",\"data-framer-name\":\"Frame 1000011044\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Project timeline\"})}),className:\"framer-yxx9zb\",\"data-framer-name\":\"Project timeline\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+6566.7721+0+703.6895+0+190.057),sizes:\"1278px\",src:\"https://framerusercontent.com/images/zxshoaLvxjWovlcDxFwZ68n6V0.png\",srcSet:\"https://framerusercontent.com/images/zxshoaLvxjWovlcDxFwZ68n6V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zxshoaLvxjWovlcDxFwZ68n6V0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zxshoaLvxjWovlcDxFwZ68n6V0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zxshoaLvxjWovlcDxFwZ68n6V0.png 3714w\"},className:\"framer-wi8oe7\",\"data-framer-name\":\"image\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oh9byq\",\"data-framer-name\":\"section 6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-up1hky\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"6 must-haves from my competitive analysis\"})}),className:\"framer-1nsci2x\",\"data-framer-name\":\"6 must-haves from my competitive analysis\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fl4bt1\",\"data-framer-name\":\"Frame 625868\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"To bring impactful change to our product pages, I conducted competitive research that revealed six key elements our competitors were effectively implementing.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"The top three competitors were O.C Tanner, Reward Gateway and Work Human. \"})]}),className:\"framer-1uc11os\",\"data-framer-name\":\"To bring impactful change to our product pages, I conducted competitive research that revealed six key elements our competitors were effectively implementing. The top three competitors were O.C Tanner, Reward Gateway and Work Human.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pg5dy3\",\"data-framer-name\":\"Frame 1000011031\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Value prop\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Function \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Why it matters\"})]}),className:\"framer-cjtbr8\",\"data-framer-name\":\"Value prop Function Why it matters\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Impact\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Analytics\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Integration\"})]}),className:\"framer-v2bexc\",\"data-framer-name\":\"Impact Analytics Integration\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2sjni9\",\"data-framer-name\":\"section 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2jms45\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:[\"I discovered \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"2 key insights\"}),\" from user research\"]})}),className:\"framer-1fir0rr\",\"data-framer-name\":\"I discovered 2 key insights from user research\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"A \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"need for transparency and comprehensive information upfront\"}),\", enabling users to make informed decisions before engaging further with the platform.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"They look for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"user-friendly platforms to ensure\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"quick onboarding\"}),\" and an enjoyable experience for their employees that encourages usage.\"]})]}),className:\"framer-xbiedi\",\"data-framer-name\":\"A need for transparency and comprehensive information upfront, enabling users to make informed decisions before engaging further with the platform. They look for user-friendly platforms to ensure quick onboarding and an enjoyable experience for their employees that encourages usage.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gz845g\",\"data-framer-name\":\"Frame 42304\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"User quotes driven from user interviews\"})}),className:\"framer-1a6rks3\",\"data-framer-name\":\"User quotes driven from user interviews\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+9563.8976+0+813+0+190.057),sizes:\"1069px\",src:\"https://framerusercontent.com/images/8BrIMFOwoN3P4h7WZX26ynj52JQ.png\",srcSet:\"https://framerusercontent.com/images/8BrIMFOwoN3P4h7WZX26ynj52JQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8BrIMFOwoN3P4h7WZX26ynj52JQ.png 931w\"},className:\"framer-vf29nv\",\"data-framer-name\":\"image 672\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fke7la\",\"data-framer-name\":\"Group 42236\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g592fx\",\"data-framer-name\":\"Frame 42276\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Activities and outputs\"})}),className:\"framer-139wl71\",\"data-framer-name\":\"Activities and outputs\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jeok9w\",\"data-framer-name\":\"Frame 42273\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xl6cja\",\"data-framer-name\":\"Group 42233\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vzxypi\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"User Persona\"})}),className:\"framer-dy25vp\",\"data-framer-name\":\"User Persona\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eks55a\",\"data-framer-name\":\"Group 42234\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13q8l4m\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"User journey map\"})}),className:\"framer-1iwzyyk\",\"data-framer-name\":\"User journey map\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19mbh9s\",\"data-framer-name\":\"Group 42235\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10uepf3\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Impact Vs. Effort diagram\"})}),className:\"framer-9obxde\",\"data-framer-name\":\"Impact Vs. Effort diagram\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12rdpaa\",\"data-framer-name\":\"section 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1siarht\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:[\"Here are \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"3 Pain points\"}),\" I identified across the user journey\"]})}),className:\"framer-z44yjp\",\"data-framer-name\":\"Here are 3 Pain points I identified across the user journey\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11kt3qo\",\"data-framer-name\":\"Frame 42273\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"Product \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"look, feel & benefits\"}),\" were unclear.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"Differentiating factors\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-weight\":\"300\"},children:\" were missing.\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"Analytics and how they showed results\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-weight\":\"300\"},children:\" were not communicated properly.\"})]})]}),className:\"framer-1qz7xb2\",\"data-framer-name\":\"Product look, feel & benefits were unclear. Differentiating factors were missing. Analytics and how they showed results were not communicated properly.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13k1d1u\",\"data-framer-name\":\"Frame 1000011032\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"I created a user journey map. Then, through testing and user interviews, I identified gaps in the customer journey that aligned with our focus.\"})}),className:\"framer-1n91qle\",\"data-framer-name\":\"I created a user journey map. Then, through testing and user interviews, I identified gaps in the customer journey that aligned with our focus.\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ncl0k6\",\"data-framer-name\":\"Frame 1000011040\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\",\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"21px\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"User journey map \"}),\"(an artifact that provides ongoing visibility into our ideal customers' experiences)\"]})}),className:\"framer-thg41z\",\"data-framer-name\":\"User journey map (an artifact that provides ongoing visibility into our ideal customers' experiences)\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+11472.4602+0+884.6895+0+60),positionX:\"center\",positionY:\"center\",sizes:\"1069px\",src:\"https://framerusercontent.com/images/G6amOU6ltY5AZqQcEP7ewvZgoo.png\",srcSet:\"https://framerusercontent.com/images/G6amOU6ltY5AZqQcEP7ewvZgoo.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6amOU6ltY5AZqQcEP7ewvZgoo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6amOU6ltY5AZqQcEP7ewvZgoo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G6amOU6ltY5AZqQcEP7ewvZgoo.png 3207w\"},className:\"framer-dezcl1\",\"data-framer-name\":\"image 66\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b04grd\",\"data-framer-name\":\"section 9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u78tcs\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Reflecting on all my research, it was time to define the Problem statement\"})}),className:\"framer-14e3pg9\",\"data-framer-name\":\"Reflecting on all my research, it was time to define the Problem statement\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+13018.6761+0+460),sizes:\"1280px\",src:\"https://framerusercontent.com/images/TgqM38RBzpZ4f5PQCuBHY6Q4A4.png\",srcSet:\"https://framerusercontent.com/images/TgqM38RBzpZ4f5PQCuBHY6Q4A4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TgqM38RBzpZ4f5PQCuBHY6Q4A4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgqM38RBzpZ4f5PQCuBHY6Q4A4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TgqM38RBzpZ4f5PQCuBHY6Q4A4.png 2206w\"},className:\"framer-rrtawi\",\"data-framer-name\":\"image 682\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m36yqq\",\"data-framer-name\":\"Group 42236\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otlkun\",\"data-framer-name\":\"Frame 42276\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Activities and outputs\"})}),className:\"framer-fhzpbj\",\"data-framer-name\":\"Activities and outputs\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q4qxs9\",\"data-framer-name\":\"Frame 42273\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2bcjok\",\"data-framer-name\":\"Group 42233\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11tf8tp\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Synthesizing User interviews\"})}),className:\"framer-rke3hv\",\"data-framer-name\":\"Synthesizing User interviews\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y5bd1o\",\"data-framer-name\":\"Group 42234\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cz3mbn\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Ideation of possible solutions\"})}),className:\"framer-16gog0u\",\"data-framer-name\":\"Ideation of possible solutions\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3no5qq\",\"data-framer-name\":\"Group 42235\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c78h9h\",\"data-framer-name\":\"Rectangle 802\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.02%\"},children:\"Lo-Fi wireframes\"})}),className:\"framer-y1zyra\",\"data-framer-name\":\"Lo-Fi wireframes\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1067i86\",\"data-framer-name\":\"section 10\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rz20b9\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Solution evaluation with Devs, Product manager, & Copywriter\"})}),className:\"framer-b9iphb\",\"data-framer-name\":\"Solution evaluation (with Devs, Product manager, & Copywriter)\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"I went over \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"solutions\"}),\" that I had come up with using the Crazy 8 method for ideation. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"I evaluated them with my PM and Devs, \"}),\"we narrowed them \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"down to\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"3 \"}),\"and picked the best one based on Effort vs. Impact criteria. \"]})}),className:\"framer-i02cp5\",\"data-framer-name\":\"I went over solutions that I had come up with using the Crazy 8 method for ideation. I evaluated them with my PM and Devs, we narrowed them down to 3 and picked the best one based on Effort vs. Impact criteria.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ck3k9s\",\"data-framer-name\":\"Frame 1000011042\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\",\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"21px\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Ideas generated through Crazy 8s technique \"}),\"(Reducing time to push past initial ideas and get creative)\"]})}),className:\"framer-1dxxxal\",\"data-framer-name\":\"Ideas generated through Crazy 8s technique (Reducing time to push past initial ideas and get creative)\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+14374.6761+0+703.6895+0+60),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/3jSOrkMhumkvKG1NbRZS0SAPk.png\",srcSet:\"https://framerusercontent.com/images/3jSOrkMhumkvKG1NbRZS0SAPk.png?scale-down-to=512 512w,https://framerusercontent.com/images/3jSOrkMhumkvKG1NbRZS0SAPk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3jSOrkMhumkvKG1NbRZS0SAPk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3jSOrkMhumkvKG1NbRZS0SAPk.png 3207w\"},className:\"framer-7qba6w\",\"data-framer-name\":\"image 675\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19o3c5a\",\"data-framer-name\":\"Frame 1000011043\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"Top 3 ideas\"}),\" picked to evaluate with my team\"]})}),className:\"framer-hje059\",\"data-framer-name\":\"Top 3 ideas picked to evaluate with my team\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+14374.6761+0+1307.1836+0+60),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/03wlHtN92m0SC5T6zeljgq5sr4.png\",srcSet:\"https://framerusercontent.com/images/03wlHtN92m0SC5T6zeljgq5sr4.png?scale-down-to=512 512w,https://framerusercontent.com/images/03wlHtN92m0SC5T6zeljgq5sr4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/03wlHtN92m0SC5T6zeljgq5sr4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/03wlHtN92m0SC5T6zeljgq5sr4.png 3207w\"},className:\"framer-1l82vey\",\"data-framer-name\":\"image 676\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ojwlc\",\"data-framer-name\":\"section 11\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-czkg1q\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"And now ... Implementation Plan\"})}),className:\"framer-104x7io\",\"data-framer-name\":\"And now ... Implementation Plan\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5xuj9b\",\"data-framer-name\":\"Frame 42239\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"I sat with my PM\"}),\", and we mapped out all the required sections for each product in Miro. I then \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"built lo-Fi wireframes inside Figma\"}),\".\"]})}),className:\"framer-1hxqtzr\",\"data-framer-name\":\"I sat with my PM, and we mapped out all the required sections for each product in Miro. I then built lo-Fi wireframes inside Figma.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hb96bb\",\"data-framer-name\":\"Frame 1000011035\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151p91k\",\"data-framer-name\":\"Frame 1000011032\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1696whm\",\"data-framer-name\":\"Frame 1000011034\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Product Requirement map in Miro \"})}),className:\"framer-1qa1giy\",\"data-framer-name\":\"Product Requirement map in Miro\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+16339.8597+0+703.6895+0+0+0+0+138.5285),positionX:\"center\",positionY:\"center\",sizes:\"599px\",src:\"https://framerusercontent.com/images/GwtIpQoSxoqYJMdi9UOYueJxX4.png\",srcSet:\"https://framerusercontent.com/images/GwtIpQoSxoqYJMdi9UOYueJxX4.png?scale-down-to=1024 972w,https://framerusercontent.com/images/GwtIpQoSxoqYJMdi9UOYueJxX4.png?scale-down-to=2048 1944w,https://framerusercontent.com/images/GwtIpQoSxoqYJMdi9UOYueJxX4.png 2396w\"},className:\"framer-byldfe\",\"data-framer-name\":\"image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vscfja\",\"data-framer-name\":\"Frame 1000011033\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uf2siw\",\"data-framer-name\":\"Frame 1000011041\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pioh8b\",\"data-framer-name\":\"Frame 1000011035\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Lo-Fi Wireframe in Figma\"})}),className:\"framer-100v8vn\",\"data-framer-name\":\"Lo-Fi Wireframe in Figma\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+16339.8597+0+703.6895+0+0+0+0+0+202.057),positionX:\"center\",positionY:\"center\",sizes:\"392px\",src:\"https://framerusercontent.com/images/f2oRX1XZFHWUF1EtnQE6AQ71tAE.png\",srcSet:\"https://framerusercontent.com/images/f2oRX1XZFHWUF1EtnQE6AQ71tAE.png?scale-down-to=1024 622w,https://framerusercontent.com/images/f2oRX1XZFHWUF1EtnQE6AQ71tAE.png?scale-down-to=2048 1244w,https://framerusercontent.com/images/f2oRX1XZFHWUF1EtnQE6AQ71tAE.png 1568w\"},className:\"framer-359um5\",\"data-framer-name\":\"image\"})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q6mhhi\",\"data-framer-name\":\"section 12\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mnmblx\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:[\"To gain \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"cross-functional alignment\"}),\", I reached out to other departments \"]})}),className:\"framer-con2x0\",\"data-framer-name\":\"To gain cross-functional alignment, I reached out to other departments\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"I wanted to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"make sure the way we communicated our product aligned with\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"how our sales reps talked about it \"}),\"with prospects, how we showcased ourselves through our marketing materials, and how the product team built them. \"]})}),className:\"framer-1fwnr2y\",\"data-framer-name\":\"I wanted to make sure the way we communicated our product aligned with how our sales reps talked about it with prospects, how we showcased ourselves through our marketing materials, and how the product team built them.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+18050.6062+0+703.6895),sizes:\"1280px\",src:\"https://framerusercontent.com/images/jUYidndr5JzLN65B9ihA5elRgQ.png\",srcSet:\"https://framerusercontent.com/images/jUYidndr5JzLN65B9ihA5elRgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jUYidndr5JzLN65B9ihA5elRgQ.png 818w\"},className:\"framer-1cx8dp1\",\"data-framer-name\":\"image 676\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ypcock\",\"data-framer-name\":\"section 13\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nw72t9\",\"data-framer-name\":\"section 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13cabd3\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:731,svg:'<svg width=\"731\" height=\"40\" viewBox=\"-6 -6 731 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.685607 17.7989C0.685607 17.7989 194.481 11.6153 323.46 7.99686C474.669 3.75482 718.76 14.4093 718.76 14.4093\" stroke=\"#FFEDAD\" stroke-width=\"12\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mezfh2\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:[\"When \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"stakeholders pushback\"}),\", transparency clears the air\"]})}),className:\"framer-1rdr69h\",\"data-framer-name\":\"When stakeholders pushback, transparency clears the air\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"Several stakeholders resisted the multi-department input process, concerned it would slow down our product launch. I addressed their worries by presenting key insights from our Sales and Product leaders that\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\" demonstrated why taking time for thoughtful design was essential. \"}),\"This is how I gained their approval and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"created overall alignment across departments. \"})]})}),className:\"framer-102vk22\",\"data-framer-name\":\"Several stakeholders resisted the multi-department input process, concerned it would slow down our product launch. I addressed their worries by presenting key insights from our Sales and Product leaders that demonstrated why taking time for thoughtful design was essential. This is how I gained their approval and created overall alignment across departments.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6u1e2\",\"data-framer-name\":\"section 14\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yrp9c5\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"I used our style guide and design system to prototype\"})}),className:\"framer-xgfprm\",\"data-framer-name\":\"I used our style guide and design system to prototype\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c74jhh\",\"data-framer-name\":\"Frame 1000011037\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t4fzpt\",\"data-framer-name\":\"Frame 1000011036\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"Achievers style guide and design system\"})}),className:\"framer-vcbld0\",\"data-framer-name\":\"Achievers style guide and design system\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+20039.9852+0+460+0+52),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/mJygRExgEc4Mdv31Ss47AeEtg.png\",srcSet:\"https://framerusercontent.com/images/mJygRExgEc4Mdv31Ss47AeEtg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mJygRExgEc4Mdv31Ss47AeEtg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mJygRExgEc4Mdv31Ss47AeEtg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mJygRExgEc4Mdv31Ss47AeEtg.png 3207w\"},className:\"framer-234fli\",\"data-framer-name\":\"image 676\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xf0y3v\",\"data-framer-name\":\"section 15\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r9gf03\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Final Product video\"})}),className:\"framer-1dzm9kx\",\"data-framer-name\":\"Final Product video\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"This is the detailed view of my redesign for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"one of\"}),\" Achievers\u2019 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"main products, \"}),\"called\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\" \u2018Recognize\u2019.\"})]})}),className:\"framer-1ckla4b\",\"data-framer-name\":\"This is the detailed view of my redesign for one of Achievers\u2019 main products, called \u2018Recognize\u2019.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yx46fn\",\"data-framer-name\":\"Frame 42305\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-ttds1c\",\"data-framer-name\":\"Frame 42237\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yzcgij-container\",isModuleExternal:true,nodeId:\"mhiE3rUVt\",scopeId:\"M_c629dAC\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"mhiE3rUVt\",isMixedBorderRadius:false,layoutId:\"mhiE3rUVt\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/DDxtDLjbGWpm7aHjjnUOpWSY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12isymb\",\"data-framer-name\":\"section 16\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gnpfqx\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Here\u2019s the redesign of all product pages while keeping consistency in mind.\"})}),className:\"framer-u28g1q\",\"data-framer-name\":\"Here\u2019s the redesign of all product pages while keeping consistency in mind.\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ka04bp\",\"data-framer-name\":\"Frame 42305\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:[\"Final 5 product pages redesigned - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"Desktop\"})]})}),className:\"framer-1xsn5y4\",\"data-framer-name\":\"Final 5 product pages redesigned - Desktop\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yrs0ry\",\"data-framer-name\":\"Frame 42237\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+22922.1806+0+390+0+190.057+0),sizes:\"1044px\",src:\"https://framerusercontent.com/images/7qQYfWvOKX2Q1qbQgaDCoUnmKk.png\",srcSet:\"https://framerusercontent.com/images/7qQYfWvOKX2Q1qbQgaDCoUnmKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/7qQYfWvOKX2Q1qbQgaDCoUnmKk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7qQYfWvOKX2Q1qbQgaDCoUnmKk.png 1866w\"},className:\"framer-1lkysd0\",\"data-framer-name\":\"All 5 product pgs 1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t03b3o\",\"data-framer-name\":\"Frame 42306\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:[\"Final 5 Product pages redesigned - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 1, 1)\"},children:\"Mobile\"})]})}),className:\"framer-7roud\",\"data-framer-name\":\"Final 5 Product pages redesigned - Mobile\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bv6boc\",\"data-framer-name\":\"Frame 42237\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+22922.1806+0+1116.057+0+190.057+.4941),sizes:\"916px\",src:\"https://framerusercontent.com/images/IPqR7sHtpeANYB8y4ppGP1380w.png\",srcSet:\"https://framerusercontent.com/images/IPqR7sHtpeANYB8y4ppGP1380w.png?scale-down-to=1024 800w,https://framerusercontent.com/images/IPqR7sHtpeANYB8y4ppGP1380w.png 818w\"},className:\"framer-17de9b2\",\"data-framer-name\":\"image 680\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zuswrd\",\"data-framer-name\":\"section 17\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3q8qr\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Eye-opening discoveries from usability testing after launch\"})}),className:\"framer-zhx2hh\",\"data-framer-name\":\"Eye-opening discoveries from usability testing after launch\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"I conducted usability testing with 7 users and I shared the results with my team.\"})}),className:\"framer-1g9lj9g\",\"data-framer-name\":\"I conducted usability testing with 7 users and I shared the results with my team.\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z76nn9\",\"data-framer-name\":\"Frame 42305\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"User feedback from testing the new product pages\"})}),className:\"framer-1tcc2i4\",\"data-framer-name\":\"User feedback from testing the new product pages\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-87w6et\",\"data-framer-name\":\"Frame 42237\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+25555.2946+0+633.6895+0+190.057+-5.3066),sizes:\"1068px\",src:\"https://framerusercontent.com/images/VRw13Mthv2EKJHWrSf5hWK4ZMwk.png\",srcSet:\"https://framerusercontent.com/images/VRw13Mthv2EKJHWrSf5hWK4ZMwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/VRw13Mthv2EKJHWrSf5hWK4ZMwk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VRw13Mthv2EKJHWrSf5hWK4ZMwk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VRw13Mthv2EKJHWrSf5hWK4ZMwk.png 2400w\"},className:\"framer-1d2krgy\",\"data-framer-name\":\"image 683\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vpmm5d\",\"data-framer-name\":\"section 18\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jg7raf\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"I made these iterations after reflecting on user feedback\"})}),className:\"framer-5vn4be\",\"data-framer-name\":\"I made these iterations after reflecting on user feedback\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"I collaborated with my PM and developers to plan our next steps. With their approval, I implemented targeted improvements to enhance the product's usability.\"})}),className:\"framer-cjzbi2\",\"data-framer-name\":\"I collaborated with my PM and developers to plan our next steps. With their approval, I implemented targeted improvements to enhance the product's usability.\",fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1abqa9v\",\"data-framer-name\":\"Frame 42305\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"154.34%\"},children:\"List of iterations applied after reflecting on user feedback\"})}),className:\"framer-u4r3fj\",\"data-framer-name\":\"List of iterations applied after reflecting on user feedback\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dlyouh\",\"data-framer-name\":\"Frame 42237\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+26969.0411+0+633.6895+0+190.057+.0938),sizes:\"1067px\",src:\"https://framerusercontent.com/images/MOSKPVdjvEpDkHhdSws6G61gw.png\",srcSet:\"https://framerusercontent.com/images/MOSKPVdjvEpDkHhdSws6G61gw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MOSKPVdjvEpDkHhdSws6G61gw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MOSKPVdjvEpDkHhdSws6G61gw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MOSKPVdjvEpDkHhdSws6G61gw.png 2400w\"},className:\"framer-4o4vrm\",\"data-framer-name\":\"image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xm66k1\",\"data-framer-name\":\"section 19\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v9r10o\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Impact and results\"})}),className:\"framer-1x44tuz\",\"data-framer-name\":\"Impact and results\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ti1e09\",\"data-framer-name\":\"section 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9n8xqm\",\"data-framer-name\":\"Frame 42274\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fybbuo\",\"data-framer-name\":\"Group 42268\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:[\"Our sales department reported a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"20% increase in qualified leads\"}),\" in the next 3 months.  \"]})}),className:\"framer-yzzmm0\",\"data-framer-name\":\"Our sales department reported a 20% increase in qualified leads in the next 3 months.\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lxzn41\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:353,svg:'<svg width=\"353\" height=\"33\" viewBox=\"-6 -6 353 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.0145 10.7525C1.0145 10.7525 92.5652 6.44583 153.5 4.07655C224.937 1.29892 340.392 14.3147 340.392 14.3147\" stroke=\"#FFEDAD\" stroke-width=\"12\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-81zj8z\",\"data-framer-name\":\"Frame 626078\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+49+0+100+28390.7876+0+506+0+0),sizes:\"1069px\",src:\"https://framerusercontent.com/images/PygJaMkSLVSjxBIw7xMXTokCXgI.png\",srcSet:\"https://framerusercontent.com/images/PygJaMkSLVSjxBIw7xMXTokCXgI.png?scale-down-to=512 512w,https://framerusercontent.com/images/PygJaMkSLVSjxBIw7xMXTokCXgI.png 861w\"},className:\"framer-zcmuzo\",\"data-framer-name\":\"image 679\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfwi4s\",\"data-framer-name\":\"section 20\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mvhdqv\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\"},children:\"Final thoughts\"})}),className:\"framer-c94g3z\",\"data-framer-name\":\"Final thoughts\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m2tpap\",\"data-framer-name\":\"section 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fd1i61\",\"data-framer-name\":\"Frame 42274\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zoz16c\",\"data-framer-name\":\"Group 42268\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"Our audience needed more reassurance before deciding to connect with us\u2014once we addressed their doubts clearly, they were eager to speak with our representatives.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:'Cross-functional collaboration and our unified goal of \"designing to raise trust and increase qualified leads\" helped us overcome disagreements and competing priorities.'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"193.99%\"},children:\"The Trifecta model provided invaluable insights and saved us time in eliminating design solutions that didn't fit our constraints quickly.\"})]}),className:\"framer-15eks8s\",\"data-framer-name\":'Our audience needed more reassurance before deciding to connect with us\u2014once we addressed their doubts clearly, they were eager to speak with our representatives. Cross-functional collaboration and our unified goal of \"designing to raise trust and increase qualified leads\" helped us overcome disagreements and competing priorities. The Trifecta model provided invaluable insights and saved us time in eliminating design solutions that didn\\'t fit our constraints quickly.',fonts:[\"GF;Poppins-300\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ymAQbi61A:{width:\"1034px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:3170,width:\"1280px\",y:(componentViewport?.y||0)+49+30258.7876,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l3vupw-container\",nodeId:\"CgLI7CWh7\",scopeId:\"M_c629dAC\",children:/*#__PURE__*/_jsx(CheckOutOtherProjects,{height:\"100%\",id:\"CgLI7CWh7\",layoutId:\"CgLI7CWh7\",style:{height:\"100%\",width:\"100%\"},variant:\"zuNScM4vz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:\"769px\",y:(componentViewport?.y||0)+49+33428.7876,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12qialu-container\",nodeId:\"ntLSWqEjq\",scopeId:\"M_c629dAC\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ntLSWqEjq\",layoutId:\"ntLSWqEjq\",style:{height:\"100%\",width:\"100%\"},variant:\"AOGFhqCtH\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZrEVK.framer-sven9v, .framer-ZrEVK .framer-sven9v { display: block; }\",\".framer-ZrEVK.framer-kens7m { 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: 49px 0px 49px 0px; position: relative; width: 1440px; }\",\".framer-ZrEVK .framer-1bto4k5-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 1440px; z-index: 1; }\",\".framer-ZrEVK .framer-1rtuo0t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1vmp0mz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-ZrEVK .framer-62ox3u { flex: none; height: 516px; overflow: visible; position: relative; width: 1280px; }\",\".framer-ZrEVK .framer-16m9s1y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: 516px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 1280px; }\",\".framer-ZrEVK .framer-1v8unag { flex: none; height: 516px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1li3xsg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 516px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 1280px; }\",\".framer-ZrEVK .framer-1in6jr9 { flex: none; height: 23px; position: relative; width: 92px; }\",\".framer-ZrEVK .framer-5bhj14 { flex: none; height: 150px; overflow: visible; position: relative; width: 910px; }\",\".framer-ZrEVK .framer-mjbyq0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 662px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1h9j8g4, .framer-ZrEVK .framer-tjsva0 { --framer-paragraph-spacing: 0px; flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 1209px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-17agms0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-z4h8ap { --framer-paragraph-spacing: 0px; flex: none; height: 107px; position: relative; white-space: pre-wrap; width: 899px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-b43f0f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 632px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1v3bbld { flex: none; height: 41px; left: 239px; position: absolute; top: calc(45.73643410852715% - 41px / 2); width: 434px; }\",\".framer-ZrEVK .framer-f0osjq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 360px; height: min-content; justify-content: center; overflow: visible; padding: 76px 0px 76px 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-nwdmpm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 240px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 124px; }\",\".framer-ZrEVK .framer-1p4xid { flex: none; height: 52px; overflow: visible; position: relative; width: 178px; }\",\".framer-ZrEVK .framer-151tkua, .framer-ZrEVK .framer-360s9a, .framer-ZrEVK .framer-3trz00 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-4qefct, .framer-ZrEVK .framer-1j4vhxj, .framer-ZrEVK .framer-3izg0r { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 24px; white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-1jbvnt7 { flex: none; height: 52px; overflow: visible; position: relative; width: 44px; }\",\".framer-ZrEVK .framer-195q12v { flex: none; height: 52px; overflow: visible; position: relative; width: 86px; }\",\".framer-ZrEVK .framer-1us2fo2 { 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: 189px; }\",\".framer-ZrEVK .framer-11bvbzy, .framer-ZrEVK .framer-n9s9zz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 189px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-5sa2x5 { 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: 248px; }\",\".framer-ZrEVK .framer-1mdqzel, .framer-ZrEVK .framer-1vz08ie { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-1ojjnk9, .framer-ZrEVK .framer-1iu2zjm, .framer-ZrEVK .framer-qy6jcg, .framer-ZrEVK .framer-q96wbo, .framer-ZrEVK .framer-2sjni9, .framer-ZrEVK .framer-12rdpaa, .framer-ZrEVK .framer-1b04grd, .framer-ZrEVK .framer-1067i86, .framer-ZrEVK .framer-12ojwlc, .framer-ZrEVK .framer-1q6mhhi, .framer-ZrEVK .framer-ypcock, .framer-ZrEVK .framer-s6u1e2, .framer-ZrEVK .framer-1xf0y3v, .framer-ZrEVK .framer-12isymb, .framer-ZrEVK .framer-zuswrd, .framer-ZrEVK .framer-1vpmm5d, .framer-ZrEVK .framer-1xm66k1 { 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: flex-start; overflow: visible; padding: 0px 0px 160px 0px; position: relative; width: 1280px; }\",\".framer-ZrEVK .framer-td9z7m { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1209px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-eo7stz, .framer-ZrEVK .framer-1hipy3p, .framer-ZrEVK .framer-gz845g, .framer-ZrEVK .framer-ncl0k6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-lvkpsu, .framer-ZrEVK .framer-1ldhp1l, .framer-ZrEVK .framer-1i9q1u7, .framer-ZrEVK .framer-1rbjwfb, .framer-ZrEVK .framer-1lupmkn, .framer-ZrEVK .framer-v9pu9c, .framer-ZrEVK .framer-1fl4bt1, .framer-ZrEVK .framer-13k1d1u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-824v40 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 652px; min-width: 1229px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-1hzah7v, .framer-ZrEVK .framer-10xsl03, .framer-ZrEVK .framer-up1hky, .framer-ZrEVK .framer-2jms45, .framer-ZrEVK .framer-1siarht, .framer-ZrEVK .framer-1u78tcs, .framer-ZrEVK .framer-rz20b9, .framer-ZrEVK .framer-mnmblx, .framer-ZrEVK .framer-yrp9c5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-egc9ro { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 998px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1c63rxs, .framer-ZrEVK .framer-1qz7xb2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 960px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-e3y33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-dpypb8, .framer-ZrEVK .framer-4wsysk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-d6s1d7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 839px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-afc9kr { background-color: #ffffff; flex: none; height: 98px; overflow: hidden; position: relative; width: 952px; }\",\".framer-ZrEVK .framer-1jja2dq { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 77px; position: absolute; right: -60px; top: 14px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-18s4b11 { aspect-ratio: 1 / 1; background-color: #ff0101; 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, 65px); left: 0px; position: absolute; top: 19px; width: 65px; }\",\".framer-ZrEVK .framer-m5hxvv { flex: none; height: 39px; left: 13px; position: absolute; top: 32px; width: 39px; }\",\".framer-ZrEVK .framer-1tsg9b1 { flex: none; height: 39px; left: 12px; position: absolute; top: 32px; width: 39px; }\",\".framer-ZrEVK .framer-gi7e0g { flex: none; height: 729px; overflow: visible; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-1nd0tli { aspect-ratio: 1.4654402186936482 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 730px); left: 0px; position: absolute; top: 0px; width: 1069px; }\",\".framer-ZrEVK .framer-1crstdp, .framer-ZrEVK .framer-oh9byq { 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: flex-start; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 1280px; }\",\".framer-ZrEVK .framer-1pydcyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-lxwia4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1280px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1ic2f6a, .framer-ZrEVK .framer-12iuhkn, .framer-ZrEVK .framer-1w1y54g, .framer-ZrEVK .framer-1uc11os, .framer-ZrEVK .framer-1n91qle { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1023px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1eq1nyr, .framer-ZrEVK .framer-467sbl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1gcxm62, .framer-ZrEVK .framer-fgvwi2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-qmk5zl { aspect-ratio: 0.9257142857142857 / 1; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 175px); position: relative; width: 162px; }\",\".framer-ZrEVK .framer-am04xk { --framer-paragraph-spacing: 0px; flex: none; height: 195px; position: relative; white-space: pre-wrap; width: 486px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1moah3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1002px; }\",\".framer-ZrEVK .framer-1gpwusl, .framer-ZrEVK .framer-1wg4d8k, .framer-ZrEVK .framer-139wl71, .framer-ZrEVK .framer-fhzpbj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1002px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-pjatg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 221px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-fn2pnq { --framer-paragraph-spacing: 0px; flex: none; height: 195px; position: relative; white-space: pre-wrap; width: 349px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1eb6wm2 { aspect-ratio: 0.9179487179487179 / 1; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 195px); position: relative; width: 179px; }\",\".framer-ZrEVK .framer-12f7om9 { --framer-paragraph-spacing: 0px; flex: none; height: 195px; position: relative; white-space: pre-wrap; width: 395px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-13jjrl6 { flex: none; height: 422px; overflow: visible; position: relative; width: 1043px; }\",\".framer-ZrEVK .framer-1ml6wpk, .framer-ZrEVK .framer-1g592fx, .framer-ZrEVK .framer-1otlkun { 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: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-ZrEVK .framer-8u9xaf, .framer-ZrEVK .framer-1jeok9w, .framer-ZrEVK .framer-1q4qxs9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-esfy96 { flex: none; height: 320px; overflow: visible; position: relative; width: 321px; }\",\".framer-ZrEVK .framer-1dseoe2 { background-color: #ffedad; flex: none; height: 320px; left: calc(50% - 321px / 2); position: absolute; top: 0px; width: 321px; }\",\".framer-ZrEVK .framer-1t59gx4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 52%; position: absolute; top: 23px; transform: translateX(-50%); white-space: pre-wrap; width: 279px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1s19lcp, .framer-ZrEVK .framer-12dl0mx { flex: none; height: 319px; overflow: visible; position: relative; width: 321px; }\",\".framer-ZrEVK .framer-cwwn6h, .framer-ZrEVK .framer-obug6a { background-color: #ffedad; flex: none; height: 319px; left: 0px; position: absolute; top: 0px; width: 321px; }\",\".framer-ZrEVK .framer-11je4l1 { --framer-paragraph-spacing: 0px; flex: none; height: 262px; left: calc(50.546488063729065% - 291.1803283691406px / 2); position: absolute; top: 25px; white-space: pre-wrap; width: 291px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-uiv6rn { --framer-paragraph-spacing: 0px; flex: none; height: 197px; left: calc(52.27269918376412% - 306.4090881347656px / 2); position: absolute; top: 25px; white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1ef7s61, .framer-ZrEVK .framer-1nsci2x, .framer-ZrEVK .framer-z44yjp, .framer-ZrEVK .framer-1rdr69h { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1069px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-yxx9zb, .framer-ZrEVK .framer-1a6rks3, .framer-ZrEVK .framer-1xsn5y4, .framer-ZrEVK .framer-7roud, .framer-ZrEVK .framer-1tcc2i4, .framer-ZrEVK .framer-u4r3fj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1039px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-wi8oe7 { aspect-ratio: 1.7241935483870967 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 742px); position: relative; width: 1278px; }\",\".framer-ZrEVK .framer-1pg5dy3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-cjtbr8, .framer-ZrEVK .framer-v2bexc { --framer-paragraph-spacing: 0px; flex: none; height: 195px; position: relative; white-space: pre-wrap; width: 369px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1fir0rr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 920px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-xbiedi { --framer-paragraph-spacing: 0px; flex: none; height: 313px; position: relative; white-space: pre-wrap; width: 913px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-vf29nv { aspect-ratio: 1.9925234138192613 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 537px); position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-fke7la { flex: none; height: 169px; overflow: visible; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-xl6cja { flex: none; height: 67px; overflow: visible; position: relative; width: 299px; }\",\".framer-ZrEVK .framer-vzxypi { background-color: #ffedad; flex: none; height: 67px; left: 0px; position: absolute; top: 0px; width: 299px; }\",\".framer-ZrEVK .framer-dy25vp { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 32%; position: absolute; top: 20px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-eks55a { flex: none; height: 67px; overflow: visible; position: relative; width: 338px; }\",\".framer-ZrEVK .framer-13q8l4m { background-color: #ffedad; flex: none; height: 67px; left: 0px; position: absolute; top: 0px; width: 338px; }\",\".framer-ZrEVK .framer-1iwzyyk { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 21px; transform: translateX(-50%); white-space: pre-wrap; width: 262px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-19mbh9s, .framer-ZrEVK .framer-y5bd1o { flex: none; height: 67px; overflow: visible; position: relative; width: 352px; }\",\".framer-ZrEVK .framer-10uepf3, .framer-ZrEVK .framer-cz3mbn { background-color: #ffedad; flex: none; height: 67px; left: 0px; position: absolute; top: 0px; width: 352px; }\",\".framer-ZrEVK .framer-9obxde { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 45%; position: absolute; top: 21px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-11kt3qo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 141px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-thg41z, .framer-ZrEVK .framer-hje059, .framer-ZrEVK .framer-vcbld0 { --framer-paragraph-spacing: 0px; flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 1039px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-dezcl1 { aspect-ratio: 2.421146457932908 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 442px); position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-14e3pg9, .framer-ZrEVK .framer-con2x0, .framer-ZrEVK .framer-xgfprm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 984px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-rrtawi { aspect-ratio: 2.0284629981024667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 631px); position: relative; width: 100%; }\",\".framer-ZrEVK .framer-m36yqq { flex: none; height: 169px; overflow: visible; position: relative; width: 1002px; }\",\".framer-ZrEVK .framer-2bcjok { flex: none; height: 67px; overflow: visible; position: relative; width: 332px; }\",\".framer-ZrEVK .framer-11tf8tp { background-color: #ffedad; flex: none; height: 67px; left: 0px; position: absolute; top: 0px; width: 332px; }\",\".framer-ZrEVK .framer-rke3hv { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 35px; position: absolute; top: 20px; white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-16gog0u { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 46%; position: absolute; top: 21px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-3no5qq { flex: none; height: 67px; overflow: visible; position: relative; width: 213px; }\",\".framer-ZrEVK .framer-1c78h9h { background-color: #ffedad; flex: none; height: 67px; left: 0px; position: absolute; top: 0px; width: 213px; }\",\".framer-ZrEVK .framer-y1zyra { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 53%; position: absolute; top: 21px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ZrEVK .framer-b9iphb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1030px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-i02cp5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 909px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-ck3k9s, .framer-ZrEVK .framer-19o3c5a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1dxxxal { --framer-paragraph-spacing: 0px; flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 1069px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-7qba6w { aspect-ratio: 2.123162741622024 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 603px); position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1l82vey { aspect-ratio: 2.4406392694063928 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 525px); position: relative; width: 100%; }\",\".framer-ZrEVK .framer-czkg1q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 946px; }\",\".framer-ZrEVK .framer-104x7io { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1059px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-5xuj9b, .framer-ZrEVK .framer-hb96bb, .framer-ZrEVK .framer-1uf2siw { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZrEVK .framer-1hxqtzr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 853px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-151p91k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-1696whm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 706px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 599px; }\",\".framer-ZrEVK .framer-1qa1giy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 599px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-byldfe { aspect-ratio: 0.9492868462757528 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 631px); position: relative; width: 100%; }\",\".framer-ZrEVK .framer-vscfja { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 472px; }\",\".framer-ZrEVK .framer-1pioh8b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-ZrEVK .framer-100v8vn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 383px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-359um5 { aspect-ratio: 0.6077519379844961 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 645px); position: relative; width: 392px; }\",\".framer-ZrEVK .framer-1fwnr2y, .framer-ZrEVK .framer-102vk22 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 894px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1cx8dp1 { aspect-ratio: 2.104330708661417 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 608px); position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1nw72t9 { flex: none; height: 214px; overflow: visible; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-13cabd3 { flex: none; height: 40px; left: 1px; position: absolute; top: 161px; width: 731px; }\",\".framer-ZrEVK .framer-mezfh2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 214px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-ZrEVK .framer-1c74jhh { 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-ZrEVK .framer-1t4fzpt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1039px; }\",\".framer-ZrEVK .framer-234fli { aspect-ratio: 1.745289426440436 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 734px); position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1r9gf03, .framer-ZrEVK .framer-x3q8qr, .framer-ZrEVK .framer-jg7raf, .framer-ZrEVK .framer-1v9r10o, .framer-ZrEVK .framer-1mvhdqv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1039px; }\",\".framer-ZrEVK .framer-1dzm9kx, .framer-ZrEVK .framer-1x44tuz, .framer-ZrEVK .framer-c94g3z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 691px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1ckla4b { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 871px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-yx46fn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 57px 0px 57px 0px; position: relative; width: 1280px; }\",\".framer-ZrEVK .framer-ttds1c { flex: none; height: 690px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1yzcgij-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ZrEVK .framer-gnpfqx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 916px; }\",\".framer-ZrEVK .framer-u28g1q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 916px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-ka04bp, .framer-ZrEVK .framer-t03b3o, .framer-ZrEVK .framer-z76nn9, .framer-ZrEVK .framer-1abqa9v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1035px; }\",\".framer-ZrEVK .framer-yrs0ry { flex: none; height: 496px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1lkysd0 { aspect-ratio: 2.0632411067193677 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 506px); left: 0px; position: absolute; top: 0px; width: 1044px; }\",\".framer-ZrEVK .framer-1bv6boc { flex: none; height: 1167px; overflow: visible; position: relative; width: 916px; }\",\".framer-ZrEVK .framer-17de9b2 { aspect-ratio: 0.7822374039282665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1171px); left: 0px; position: absolute; top: 0px; width: 916px; }\",\".framer-ZrEVK .framer-zhx2hh, .framer-ZrEVK .framer-5vn4be { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 859px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1g9lj9g { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 850px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-87w6et { flex: none; height: 430px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-1d2krgy { aspect-ratio: 2.555023923444976 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 418px); left: -1px; position: absolute; top: -5px; width: 1068px; }\",\".framer-ZrEVK .framer-cjzbi2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 911px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-dlyouh { flex: none; height: 438px; overflow: visible; position: relative; width: 1067px; }\",\".framer-ZrEVK .framer-4o4vrm { aspect-ratio: 2.4360730593607305 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 438px); left: 0px; position: absolute; top: 0px; width: 1067px; }\",\".framer-ZrEVK .framer-1ti1e09, .framer-ZrEVK .framer-1m2tpap { flex: none; height: 76px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZrEVK .framer-9n8xqm, .framer-ZrEVK .framer-fd1i61 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: 76px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 1039px; }\",\".framer-ZrEVK .framer-1fybbuo { flex: none; height: 41px; overflow: visible; position: relative; width: 1209px; }\",\".framer-ZrEVK .framer-yzzmm0, .framer-ZrEVK .framer-15eks8s { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 1209px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZrEVK .framer-1lxzn41 { flex: none; height: 33px; left: 359px; position: absolute; top: 36px; width: 353px; }\",\".framer-ZrEVK .framer-81zj8z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 538px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-zcmuzo { aspect-ratio: 1.961467889908257 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 545px); position: relative; width: 1069px; }\",\".framer-ZrEVK .framer-qfwi4s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 484px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-ZrEVK .framer-zoz16c { flex: none; height: 328px; overflow: visible; position: relative; width: 1209px; }\",\".framer-ZrEVK .framer-l3vupw-container { flex: none; height: 3170px; position: relative; width: 1280px; }\",\".framer-ZrEVK .framer-12qialu-container { flex: none; height: 104px; position: relative; width: 769px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZrEVK.framer-kens7m, .framer-ZrEVK .framer-1rtuo0t, .framer-ZrEVK .framer-1vmp0mz, .framer-ZrEVK .framer-16m9s1y, .framer-ZrEVK .framer-1li3xsg, .framer-ZrEVK .framer-17agms0, .framer-ZrEVK .framer-f0osjq, .framer-ZrEVK .framer-nwdmpm, .framer-ZrEVK .framer-1us2fo2, .framer-ZrEVK .framer-5sa2x5, .framer-ZrEVK .framer-1ojjnk9, .framer-ZrEVK .framer-eo7stz, .framer-ZrEVK .framer-lvkpsu, .framer-ZrEVK .framer-824v40, .framer-ZrEVK .framer-1iu2zjm, .framer-ZrEVK .framer-1hzah7v, .framer-ZrEVK .framer-1ldhp1l, .framer-ZrEVK .framer-e3y33, .framer-ZrEVK .framer-dpypb8, .framer-ZrEVK .framer-1i9q1u7, .framer-ZrEVK .framer-1crstdp, .framer-ZrEVK .framer-1pydcyb, .framer-ZrEVK .framer-1rbjwfb, .framer-ZrEVK .framer-1eq1nyr, .framer-ZrEVK .framer-4wsysk, .framer-ZrEVK .framer-1gcxm62, .framer-ZrEVK .framer-qy6jcg, .framer-ZrEVK .framer-1moah3h, .framer-ZrEVK .framer-1lupmkn, .framer-ZrEVK .framer-467sbl, .framer-ZrEVK .framer-pjatg, .framer-ZrEVK .framer-fgvwi2, .framer-ZrEVK .framer-1ml6wpk, .framer-ZrEVK .framer-8u9xaf, .framer-ZrEVK .framer-q96wbo, .framer-ZrEVK .framer-10xsl03, .framer-ZrEVK .framer-v9pu9c, .framer-ZrEVK .framer-1hipy3p, .framer-ZrEVK .framer-oh9byq, .framer-ZrEVK .framer-up1hky, .framer-ZrEVK .framer-1fl4bt1, .framer-ZrEVK .framer-1pg5dy3, .framer-ZrEVK .framer-2sjni9, .framer-ZrEVK .framer-2jms45, .framer-ZrEVK .framer-gz845g, .framer-ZrEVK .framer-1g592fx, .framer-ZrEVK .framer-1jeok9w, .framer-ZrEVK .framer-12rdpaa, .framer-ZrEVK .framer-1siarht, .framer-ZrEVK .framer-11kt3qo, .framer-ZrEVK .framer-13k1d1u, .framer-ZrEVK .framer-ncl0k6, .framer-ZrEVK .framer-1b04grd, .framer-ZrEVK .framer-1u78tcs, .framer-ZrEVK .framer-1otlkun, .framer-ZrEVK .framer-1q4qxs9, .framer-ZrEVK .framer-1067i86, .framer-ZrEVK .framer-rz20b9, .framer-ZrEVK .framer-ck3k9s, .framer-ZrEVK .framer-19o3c5a, .framer-ZrEVK .framer-12ojwlc, .framer-ZrEVK .framer-czkg1q, .framer-ZrEVK .framer-5xuj9b, .framer-ZrEVK .framer-hb96bb, .framer-ZrEVK .framer-151p91k, .framer-ZrEVK .framer-1696whm, .framer-ZrEVK .framer-vscfja, .framer-ZrEVK .framer-1uf2siw, .framer-ZrEVK .framer-1pioh8b, .framer-ZrEVK .framer-1q6mhhi, .framer-ZrEVK .framer-mnmblx, .framer-ZrEVK .framer-ypcock, .framer-ZrEVK .framer-mezfh2, .framer-ZrEVK .framer-s6u1e2, .framer-ZrEVK .framer-yrp9c5, .framer-ZrEVK .framer-1c74jhh, .framer-ZrEVK .framer-1t4fzpt, .framer-ZrEVK .framer-1xf0y3v, .framer-ZrEVK .framer-1r9gf03, .framer-ZrEVK .framer-yx46fn, .framer-ZrEVK .framer-12isymb, .framer-ZrEVK .framer-gnpfqx, .framer-ZrEVK .framer-ka04bp, .framer-ZrEVK .framer-t03b3o, .framer-ZrEVK .framer-zuswrd, .framer-ZrEVK .framer-x3q8qr, .framer-ZrEVK .framer-z76nn9, .framer-ZrEVK .framer-1vpmm5d, .framer-ZrEVK .framer-jg7raf, .framer-ZrEVK .framer-1abqa9v, .framer-ZrEVK .framer-1xm66k1, .framer-ZrEVK .framer-1v9r10o, .framer-ZrEVK .framer-9n8xqm, .framer-ZrEVK .framer-81zj8z, .framer-ZrEVK .framer-qfwi4s, .framer-ZrEVK .framer-1mvhdqv, .framer-ZrEVK .framer-fd1i61 { gap: 0px; } .framer-ZrEVK.framer-kens7m > *, .framer-ZrEVK .framer-1rtuo0t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZrEVK.framer-kens7m > :first-child, .framer-ZrEVK .framer-1rtuo0t > :first-child, .framer-ZrEVK .framer-16m9s1y > :first-child, .framer-ZrEVK .framer-1li3xsg > :first-child, .framer-ZrEVK .framer-17agms0 > :first-child, .framer-ZrEVK .framer-nwdmpm > :first-child, .framer-ZrEVK .framer-1us2fo2 > :first-child, .framer-ZrEVK .framer-5sa2x5 > :first-child, .framer-ZrEVK .framer-1ojjnk9 > :first-child, .framer-ZrEVK .framer-eo7stz > :first-child, .framer-ZrEVK .framer-1iu2zjm > :first-child, .framer-ZrEVK .framer-1hzah7v > :first-child, .framer-ZrEVK .framer-dpypb8 > :first-child, .framer-ZrEVK .framer-1crstdp > :first-child, .framer-ZrEVK .framer-4wsysk > :first-child, .framer-ZrEVK .framer-qy6jcg > :first-child, .framer-ZrEVK .framer-pjatg > :first-child, .framer-ZrEVK .framer-1ml6wpk > :first-child, .framer-ZrEVK .framer-q96wbo > :first-child, .framer-ZrEVK .framer-10xsl03 > :first-child, .framer-ZrEVK .framer-1hipy3p > :first-child, .framer-ZrEVK .framer-oh9byq > :first-child, .framer-ZrEVK .framer-up1hky > :first-child, .framer-ZrEVK .framer-2sjni9 > :first-child, .framer-ZrEVK .framer-2jms45 > :first-child, .framer-ZrEVK .framer-gz845g > :first-child, .framer-ZrEVK .framer-1g592fx > :first-child, .framer-ZrEVK .framer-12rdpaa > :first-child, .framer-ZrEVK .framer-1siarht > :first-child, .framer-ZrEVK .framer-11kt3qo > :first-child, .framer-ZrEVK .framer-ncl0k6 > :first-child, .framer-ZrEVK .framer-1b04grd > :first-child, .framer-ZrEVK .framer-1u78tcs > :first-child, .framer-ZrEVK .framer-1otlkun > :first-child, .framer-ZrEVK .framer-1067i86 > :first-child, .framer-ZrEVK .framer-rz20b9 > :first-child, .framer-ZrEVK .framer-ck3k9s > :first-child, .framer-ZrEVK .framer-19o3c5a > :first-child, .framer-ZrEVK .framer-12ojwlc > :first-child, .framer-ZrEVK .framer-czkg1q > :first-child, .framer-ZrEVK .framer-5xuj9b > :first-child, .framer-ZrEVK .framer-hb96bb > :first-child, .framer-ZrEVK .framer-1696whm > :first-child, .framer-ZrEVK .framer-1uf2siw > :first-child, .framer-ZrEVK .framer-1q6mhhi > :first-child, .framer-ZrEVK .framer-mnmblx > :first-child, .framer-ZrEVK .framer-ypcock > :first-child, .framer-ZrEVK .framer-mezfh2 > :first-child, .framer-ZrEVK .framer-s6u1e2 > :first-child, .framer-ZrEVK .framer-yrp9c5 > :first-child, .framer-ZrEVK .framer-1c74jhh > :first-child, .framer-ZrEVK .framer-1xf0y3v > :first-child, .framer-ZrEVK .framer-1r9gf03 > :first-child, .framer-ZrEVK .framer-yx46fn > :first-child, .framer-ZrEVK .framer-12isymb > :first-child, .framer-ZrEVK .framer-gnpfqx > :first-child, .framer-ZrEVK .framer-ka04bp > :first-child, .framer-ZrEVK .framer-t03b3o > :first-child, .framer-ZrEVK .framer-zuswrd > :first-child, .framer-ZrEVK .framer-x3q8qr > :first-child, .framer-ZrEVK .framer-z76nn9 > :first-child, .framer-ZrEVK .framer-1vpmm5d > :first-child, .framer-ZrEVK .framer-jg7raf > :first-child, .framer-ZrEVK .framer-1abqa9v > :first-child, .framer-ZrEVK .framer-1xm66k1 > :first-child, .framer-ZrEVK .framer-1v9r10o > :first-child, .framer-ZrEVK .framer-9n8xqm > :first-child, .framer-ZrEVK .framer-81zj8z > :first-child, .framer-ZrEVK .framer-qfwi4s > :first-child, .framer-ZrEVK .framer-1mvhdqv > :first-child, .framer-ZrEVK .framer-fd1i61 > :first-child { margin-top: 0px; } .framer-ZrEVK.framer-kens7m > :last-child, .framer-ZrEVK .framer-1rtuo0t > :last-child, .framer-ZrEVK .framer-16m9s1y > :last-child, .framer-ZrEVK .framer-1li3xsg > :last-child, .framer-ZrEVK .framer-17agms0 > :last-child, .framer-ZrEVK .framer-nwdmpm > :last-child, .framer-ZrEVK .framer-1us2fo2 > :last-child, .framer-ZrEVK .framer-5sa2x5 > :last-child, .framer-ZrEVK .framer-1ojjnk9 > :last-child, .framer-ZrEVK .framer-eo7stz > :last-child, .framer-ZrEVK .framer-1iu2zjm > :last-child, .framer-ZrEVK .framer-1hzah7v > :last-child, .framer-ZrEVK .framer-dpypb8 > :last-child, .framer-ZrEVK .framer-1crstdp > :last-child, .framer-ZrEVK .framer-4wsysk > :last-child, .framer-ZrEVK .framer-qy6jcg > :last-child, .framer-ZrEVK .framer-pjatg > :last-child, .framer-ZrEVK .framer-1ml6wpk > :last-child, .framer-ZrEVK .framer-q96wbo > :last-child, .framer-ZrEVK .framer-10xsl03 > :last-child, .framer-ZrEVK .framer-1hipy3p > :last-child, .framer-ZrEVK .framer-oh9byq > :last-child, .framer-ZrEVK .framer-up1hky > :last-child, .framer-ZrEVK .framer-2sjni9 > :last-child, .framer-ZrEVK .framer-2jms45 > :last-child, .framer-ZrEVK .framer-gz845g > :last-child, .framer-ZrEVK .framer-1g592fx > :last-child, .framer-ZrEVK .framer-12rdpaa > :last-child, .framer-ZrEVK .framer-1siarht > :last-child, .framer-ZrEVK .framer-11kt3qo > :last-child, .framer-ZrEVK .framer-ncl0k6 > :last-child, .framer-ZrEVK .framer-1b04grd > :last-child, .framer-ZrEVK .framer-1u78tcs > :last-child, .framer-ZrEVK .framer-1otlkun > :last-child, .framer-ZrEVK .framer-1067i86 > :last-child, .framer-ZrEVK .framer-rz20b9 > :last-child, .framer-ZrEVK .framer-ck3k9s > :last-child, .framer-ZrEVK .framer-19o3c5a > :last-child, .framer-ZrEVK .framer-12ojwlc > :last-child, .framer-ZrEVK .framer-czkg1q > :last-child, .framer-ZrEVK .framer-5xuj9b > :last-child, .framer-ZrEVK .framer-hb96bb > :last-child, .framer-ZrEVK .framer-1696whm > :last-child, .framer-ZrEVK .framer-1uf2siw > :last-child, .framer-ZrEVK .framer-1q6mhhi > :last-child, .framer-ZrEVK .framer-mnmblx > :last-child, .framer-ZrEVK .framer-ypcock > :last-child, .framer-ZrEVK .framer-mezfh2 > :last-child, .framer-ZrEVK .framer-s6u1e2 > :last-child, .framer-ZrEVK .framer-yrp9c5 > :last-child, .framer-ZrEVK .framer-1c74jhh > :last-child, .framer-ZrEVK .framer-1xf0y3v > :last-child, .framer-ZrEVK .framer-1r9gf03 > :last-child, .framer-ZrEVK .framer-yx46fn > :last-child, .framer-ZrEVK .framer-12isymb > :last-child, .framer-ZrEVK .framer-gnpfqx > :last-child, .framer-ZrEVK .framer-ka04bp > :last-child, .framer-ZrEVK .framer-t03b3o > :last-child, .framer-ZrEVK .framer-zuswrd > :last-child, .framer-ZrEVK .framer-x3q8qr > :last-child, .framer-ZrEVK .framer-z76nn9 > :last-child, .framer-ZrEVK .framer-1vpmm5d > :last-child, .framer-ZrEVK .framer-jg7raf > :last-child, .framer-ZrEVK .framer-1abqa9v > :last-child, .framer-ZrEVK .framer-1xm66k1 > :last-child, .framer-ZrEVK .framer-1v9r10o > :last-child, .framer-ZrEVK .framer-9n8xqm > :last-child, .framer-ZrEVK .framer-81zj8z > :last-child, .framer-ZrEVK .framer-qfwi4s > :last-child, .framer-ZrEVK .framer-1mvhdqv > :last-child, .framer-ZrEVK .framer-fd1i61 > :last-child { margin-bottom: 0px; } .framer-ZrEVK .framer-1vmp0mz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZrEVK .framer-1vmp0mz > :first-child, .framer-ZrEVK .framer-f0osjq > :first-child, .framer-ZrEVK .framer-lvkpsu > :first-child, .framer-ZrEVK .framer-824v40 > :first-child, .framer-ZrEVK .framer-1ldhp1l > :first-child, .framer-ZrEVK .framer-e3y33 > :first-child, .framer-ZrEVK .framer-1i9q1u7 > :first-child, .framer-ZrEVK .framer-1pydcyb > :first-child, .framer-ZrEVK .framer-1rbjwfb > :first-child, .framer-ZrEVK .framer-1eq1nyr > :first-child, .framer-ZrEVK .framer-1gcxm62 > :first-child, .framer-ZrEVK .framer-1moah3h > :first-child, .framer-ZrEVK .framer-1lupmkn > :first-child, .framer-ZrEVK .framer-467sbl > :first-child, .framer-ZrEVK .framer-fgvwi2 > :first-child, .framer-ZrEVK .framer-8u9xaf > :first-child, .framer-ZrEVK .framer-v9pu9c > :first-child, .framer-ZrEVK .framer-1fl4bt1 > :first-child, .framer-ZrEVK .framer-1pg5dy3 > :first-child, .framer-ZrEVK .framer-1jeok9w > :first-child, .framer-ZrEVK .framer-13k1d1u > :first-child, .framer-ZrEVK .framer-1q4qxs9 > :first-child, .framer-ZrEVK .framer-151p91k > :first-child, .framer-ZrEVK .framer-vscfja > :first-child, .framer-ZrEVK .framer-1pioh8b > :first-child, .framer-ZrEVK .framer-1t4fzpt > :first-child { margin-left: 0px; } .framer-ZrEVK .framer-1vmp0mz > :last-child, .framer-ZrEVK .framer-f0osjq > :last-child, .framer-ZrEVK .framer-lvkpsu > :last-child, .framer-ZrEVK .framer-824v40 > :last-child, .framer-ZrEVK .framer-1ldhp1l > :last-child, .framer-ZrEVK .framer-e3y33 > :last-child, .framer-ZrEVK .framer-1i9q1u7 > :last-child, .framer-ZrEVK .framer-1pydcyb > :last-child, .framer-ZrEVK .framer-1rbjwfb > :last-child, .framer-ZrEVK .framer-1eq1nyr > :last-child, .framer-ZrEVK .framer-1gcxm62 > :last-child, .framer-ZrEVK .framer-1moah3h > :last-child, .framer-ZrEVK .framer-1lupmkn > :last-child, .framer-ZrEVK .framer-467sbl > :last-child, .framer-ZrEVK .framer-fgvwi2 > :last-child, .framer-ZrEVK .framer-8u9xaf > :last-child, .framer-ZrEVK .framer-v9pu9c > :last-child, .framer-ZrEVK .framer-1fl4bt1 > :last-child, .framer-ZrEVK .framer-1pg5dy3 > :last-child, .framer-ZrEVK .framer-1jeok9w > :last-child, .framer-ZrEVK .framer-13k1d1u > :last-child, .framer-ZrEVK .framer-1q4qxs9 > :last-child, .framer-ZrEVK .framer-151p91k > :last-child, .framer-ZrEVK .framer-vscfja > :last-child, .framer-ZrEVK .framer-1pioh8b > :last-child, .framer-ZrEVK .framer-1t4fzpt > :last-child { margin-right: 0px; } .framer-ZrEVK .framer-16m9s1y > *, .framer-ZrEVK .framer-9n8xqm > *, .framer-ZrEVK .framer-fd1i61 > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-ZrEVK .framer-1li3xsg > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-ZrEVK .framer-17agms0 > *, .framer-ZrEVK .framer-nwdmpm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ZrEVK .framer-f0osjq > * { margin: 0px; margin-left: calc(360px / 2); margin-right: calc(360px / 2); } .framer-ZrEVK .framer-1us2fo2 > *, .framer-ZrEVK .framer-5sa2x5 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-ZrEVK .framer-1ojjnk9 > *, .framer-ZrEVK .framer-1iu2zjm > *, .framer-ZrEVK .framer-1crstdp > *, .framer-ZrEVK .framer-qy6jcg > *, .framer-ZrEVK .framer-1ml6wpk > *, .framer-ZrEVK .framer-q96wbo > *, .framer-ZrEVK .framer-oh9byq > *, .framer-ZrEVK .framer-2sjni9 > *, .framer-ZrEVK .framer-1g592fx > *, .framer-ZrEVK .framer-12rdpaa > *, .framer-ZrEVK .framer-1b04grd > *, .framer-ZrEVK .framer-1otlkun > *, .framer-ZrEVK .framer-1067i86 > *, .framer-ZrEVK .framer-12ojwlc > *, .framer-ZrEVK .framer-5xuj9b > *, .framer-ZrEVK .framer-hb96bb > *, .framer-ZrEVK .framer-1696whm > *, .framer-ZrEVK .framer-1uf2siw > *, .framer-ZrEVK .framer-1q6mhhi > *, .framer-ZrEVK .framer-ypcock > *, .framer-ZrEVK .framer-s6u1e2 > *, .framer-ZrEVK .framer-1xf0y3v > *, .framer-ZrEVK .framer-12isymb > *, .framer-ZrEVK .framer-zuswrd > *, .framer-ZrEVK .framer-1vpmm5d > *, .framer-ZrEVK .framer-1xm66k1 > *, .framer-ZrEVK .framer-qfwi4s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZrEVK .framer-eo7stz > *, .framer-ZrEVK .framer-dpypb8 > *, .framer-ZrEVK .framer-4wsysk > *, .framer-ZrEVK .framer-pjatg > *, .framer-ZrEVK .framer-1hipy3p > *, .framer-ZrEVK .framer-gz845g > *, .framer-ZrEVK .framer-ncl0k6 > *, .framer-ZrEVK .framer-ck3k9s > *, .framer-ZrEVK .framer-19o3c5a > *, .framer-ZrEVK .framer-yx46fn > *, .framer-ZrEVK .framer-ka04bp > *, .framer-ZrEVK .framer-t03b3o > *, .framer-ZrEVK .framer-z76nn9 > *, .framer-ZrEVK .framer-1abqa9v > *, .framer-ZrEVK .framer-81zj8z > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ZrEVK .framer-lvkpsu > *, .framer-ZrEVK .framer-824v40 > *, .framer-ZrEVK .framer-1ldhp1l > *, .framer-ZrEVK .framer-1i9q1u7 > *, .framer-ZrEVK .framer-1rbjwfb > *, .framer-ZrEVK .framer-1lupmkn > *, .framer-ZrEVK .framer-v9pu9c > *, .framer-ZrEVK .framer-1fl4bt1 > *, .framer-ZrEVK .framer-13k1d1u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZrEVK .framer-1hzah7v > *, .framer-ZrEVK .framer-10xsl03 > *, .framer-ZrEVK .framer-up1hky > *, .framer-ZrEVK .framer-2jms45 > *, .framer-ZrEVK .framer-1siarht > *, .framer-ZrEVK .framer-11kt3qo > *, .framer-ZrEVK .framer-1u78tcs > *, .framer-ZrEVK .framer-rz20b9 > *, .framer-ZrEVK .framer-czkg1q > *, .framer-ZrEVK .framer-mnmblx > *, .framer-ZrEVK .framer-mezfh2 > *, .framer-ZrEVK .framer-yrp9c5 > *, .framer-ZrEVK .framer-1r9gf03 > *, .framer-ZrEVK .framer-gnpfqx > *, .framer-ZrEVK .framer-x3q8qr > *, .framer-ZrEVK .framer-jg7raf > *, .framer-ZrEVK .framer-1v9r10o > *, .framer-ZrEVK .framer-1mvhdqv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZrEVK .framer-e3y33 > *, .framer-ZrEVK .framer-1eq1nyr > *, .framer-ZrEVK .framer-467sbl > * { margin: 0px; margin-left: calc(-836px / 2); margin-right: calc(-836px / 2); } .framer-ZrEVK .framer-1pydcyb > *, .framer-ZrEVK .framer-1moah3h > *, .framer-ZrEVK .framer-vscfja > *, .framer-ZrEVK .framer-1pioh8b > *, .framer-ZrEVK .framer-1t4fzpt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ZrEVK .framer-1gcxm62 > *, .framer-ZrEVK .framer-fgvwi2 > * { margin: 0px; margin-left: calc(61px / 2); margin-right: calc(61px / 2); } .framer-ZrEVK .framer-8u9xaf > *, .framer-ZrEVK .framer-1jeok9w > *, .framer-ZrEVK .framer-1q4qxs9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ZrEVK .framer-1pg5dy3 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ZrEVK .framer-151p91k > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-ZrEVK .framer-1c74jhh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@media (max-width: 1439px) { .framer-ZrEVK.framer-kens7m, .framer-ZrEVK .framer-1bto4k5-container { width: 1200px; } .framer-ZrEVK .framer-1rtuo0t { padding: 100px 80px 80px 320px; } .framer-ZrEVK .framer-1vmp0mz { order: 0; } .framer-ZrEVK .framer-f0osjq { gap: 200px; justify-content: flex-start; order: 1; width: 160%; } .framer-ZrEVK .framer-1ojjnk9 { order: 3; width: 160%; } .framer-ZrEVK .framer-eo7stz { width: 1229px; } .framer-ZrEVK .framer-tjsva0 { width: 931px; } .framer-ZrEVK .framer-824v40 { min-width: unset; width: 86%; } .framer-ZrEVK .framer-1iu2zjm { order: 4; } .framer-ZrEVK .framer-1crstdp { order: 5; } .framer-ZrEVK .framer-qy6jcg { order: 6; } .framer-ZrEVK .framer-q96wbo { order: 7; } .framer-ZrEVK .framer-oh9byq { order: 8; } .framer-ZrEVK .framer-2sjni9 { order: 9; } .framer-ZrEVK .framer-12rdpaa { order: 10; } .framer-ZrEVK .framer-1b04grd { order: 11; } .framer-ZrEVK .framer-1067i86 { order: 12; } .framer-ZrEVK .framer-12ojwlc { order: 13; } .framer-ZrEVK .framer-1q6mhhi { order: 14; } .framer-ZrEVK .framer-ypcock { order: 15; } .framer-ZrEVK .framer-s6u1e2 { order: 16; } .framer-ZrEVK .framer-1xf0y3v { order: 17; } .framer-ZrEVK .framer-12isymb { order: 18; } .framer-ZrEVK .framer-zuswrd { order: 19; } .framer-ZrEVK .framer-1vpmm5d { order: 20; } .framer-ZrEVK .framer-1xm66k1 { order: 21; } .framer-ZrEVK .framer-qfwi4s { order: 22; } .framer-ZrEVK .framer-l3vupw-container { width: 1034px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZrEVK .framer-f0osjq { gap: 0px; } .framer-ZrEVK .framer-f0osjq > * { margin: 0px; margin-left: calc(200px / 2); margin-right: calc(200px / 2); } .framer-ZrEVK .framer-f0osjq > :first-child { margin-left: 0px; } .framer-ZrEVK .framer-f0osjq > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27151.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ymAQbi61A\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerM_c629dAC=withCSS(Component,css,\"framer-ZrEVK\");export default FramerM_c629dAC;FramerM_c629dAC.displayName=\"Page\";FramerM_c629dAC.defaultProps={height:27151.5,width:1440};addFonts(FramerM_c629dAC,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLDz8V15vFP-KUEg.woff2\",weight:\"300\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavMenuFonts,...VideoFonts,...CheckOutOtherProjectsFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM_c629dAC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ymAQbi61A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"27151.5\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavMenuFonts", "getFonts", "cK97kjhES_default", "VideoFonts", "Video", "CheckOutOtherProjectsFonts", "UeVtunFhJ_default", "FooterFonts", "HnNT3kH38_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "cK97kjhES_default", "SVG", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "Video", "UeVtunFhJ_default", "HnNT3kH38_default", "css", "FramerM_c629dAC", "withCSS", "M_c629dAC_default", "addFonts", "NavMenuFonts", "VideoFonts", "CheckOutOtherProjectsFonts", "FooterFonts", "__FramerMetadata__"]
}
