{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/LhZuVMHr46jWNbcTrRAg/VSn8BRtb0fwZPVLLZJfU/Vt5f3AwoD.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://framer.com/m/framer/default-utils.js@^0.45.0\";import{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 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;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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=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}=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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=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: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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (90417e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import Navigation from\"#framer/local/canvasComponent/T9dIpV2C1/T9dIpV2C1.js\";import metadataProvider from\"#framer/local/webPageMetadata/Vt5f3AwoD/Vt5f3AwoD.js\";const VideoFonts=getFonts(Video);const NavigationFonts=getFonts(Navigation);const breakpoints={};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HTmyd\";const variantClassNames={tDUczy10t:\"framer-v-17r731t\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const metadata=metadataProvider();const getProps=({height,id,width,...props})=>{return{...props};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-HTmyd`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-HTmyd`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tDUczy10t\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-17r731t\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123jftj\",\"data-framer-name\":\"Step 5\",name:\"Step 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Step 5: Reports & Rank Tracking\"})}),className:\"framer-1f968gl\",\"data-framer-name\":\"Requirements\",fonts:[\"GF;Montserrat-600\"],name:\"Requirements\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"By integrating high-ranking keywords into engaging and detailed content, and incorporating authoritative backlinks, we optimized Spark + Pivot\u2019s website for improved visibility on Google. We also streamlined the user experience to better align with user needs and keyword research. As a result, within a month of implementing these SEO updates, website traffic increased by 11%.\"})}),className:\"framer-18y0p4z\",\"data-framer-name\":\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",fonts:[\"GF;Montserrat-regular\"],name:\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9864),pixelHeight:629,pixelWidth:585,sizes:\"421px\",src:\"https://framerusercontent.com/images/rvfDXnR9wdZ77na3IieIFr6BVk.jpg\",srcSet:\"https://framerusercontent.com/images/rvfDXnR9wdZ77na3IieIFr6BVk.jpg 585w\"},className:\"framer-b3xyfd\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t05eb\",\"data-framer-name\":\"Step 4\",name:\"Step 4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Step 4: Off Page Optimization\"})}),className:\"framer-15azkzd\",\"data-framer-name\":\"Requirements\",fonts:[\"GF;Montserrat-600\"],name:\"Requirements\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Backlinking\"})}),className:\"framer-8b6p0q\",\"data-framer-name\":\"Key Features\",fonts:[\"GF;Montserrat-600\"],name:\"Key Features\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Backlinking is a crucial element for enhancing SEO. By acquiring backlinks from authoritative pages and websites, a business's website gains more credibility and authority. I prioritized backlinking in the content for each page, focusing on high-ranking and highly authoritative sites to boost SEO for the Spark + Pivot website. This strategy aimed to increase the site's visibility and improve its search engine ranking.\"})}),className:\"framer-annfcl\",\"data-framer-name\":\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",fonts:[\"GF;Montserrat-regular\"],name:\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qedwur\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yhhd06-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ARBwvOp9Z\",isMixedBorderRadius:false,layoutId:\"ARBwvOp9Z\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/d5oA8KPJR1ZFCkkUuXlg5ce0m0M.mov\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vqygmm-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JzmoQOClN\",isMixedBorderRadius:false,layoutId:\"JzmoQOClN\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/XctiCPnazbdFoO6RbyQLwDk9iLE.mov\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xkIGl0YWxpYw==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-b53187d7-5b12-4dbd-87b8-e14b0b2734d1, rgb(0, 0, 0))\"},children:\"Perinatal Page backlinking multiple high ranking resource links related to perinatal grief & loss.\"})}),className:\"framer-8nryew\",fonts:[\"FS;Montserrat-bold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xkIGl0YWxpYw==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-b53187d7-5b12-4dbd-87b8-e14b0b2734d1, rgb(0, 0, 0))\"},children:\"EMDR Page backlinking multiple high ranking resource links related to EMDR Therapy.\"})}),className:\"framer-kr2uqj\",fonts:[\"FS;Montserrat-bold italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-136lecc\",\"data-framer-name\":\"Step 3\",name:\"Step 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Step 3: Page Optimization\"})}),className:\"framer-nalinr\",\"data-framer-name\":\"Requirements\",fonts:[\"GF;Montserrat-600\"],name:\"Requirements\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Site Mapping\"})}),className:\"framer-1ecrvz8\",\"data-framer-name\":\"Key Features\",fonts:[\"GF;Montserrat-600\"],name:\"Key Features\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Based on the goals and keyword research I conducted, I remapped the Spark + Pivot website to enhance navigation and make it easier for clients and users to find the information they need. During my initial review of the website, I examined each page and identified potential areas of confusion, particularly for users seeking specific information.\"})}),className:\"framer-122t4ie\",\"data-framer-name\":\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",fonts:[\"GF;Montserrat-regular\"],name:\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7339),pixelHeight:776,pixelWidth:1287,sizes:\"956px\",src:\"https://framerusercontent.com/images/xBuKMdvEyNfgzdgK7p3ZsWUiw.jpg\",srcSet:\"https://framerusercontent.com/images/xBuKMdvEyNfgzdgK7p3ZsWUiw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xBuKMdvEyNfgzdgK7p3ZsWUiw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xBuKMdvEyNfgzdgK7p3ZsWUiw.jpg 1287w\"},className:\"framer-1rsb9eg\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Optimization through Content\"})}),className:\"framer-152s99e\",\"data-framer-name\":\"Key Features\",fonts:[\"GF;Montserrat-600\"],name:\"Key Features\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Based on the keyword research I conducted, I focused on enhancing content across both new and existing pages to improve optimization. I aimed to be as detailed and informative as possible, incorporating the highest-ranking keywords from SEMrush to maximize effectiveness.\"})}),className:\"framer-7eh4gq\",\"data-framer-name\":\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",fonts:[\"GF;Montserrat-regular\"],name:\"Due to our incorporating a social aspect and gearing to be more inclusive within the rideshare industry. We had distinct features that achieve these goals for users to build community and for accessibility to be a priority\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqimn0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vsz4gr-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mN_aKsHVe\",isMixedBorderRadius:false,layoutId:\"mN_aKsHVe\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/s87GiRdUejveuOmOjqRSH7xNjM.mov\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10qcx8h-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"gHe9TOm5s\",isMixedBorderRadius:false,layoutId:\"gHe9TOm5s\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/88guCJw9XBwaAkKaPiKf7wVXNQM.mov\",srcType:\"Upload\",srcUrl:\"https://www.dropbox.com/scl/fi/zutndlk5ekh46ftw0qy1d/emdr-recording-for-portfolio.mov?rlkey=zwcv6diavpoweahbx7ub0nhwz&st=pt1l6rxv&dl=0\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xkIGl0YWxpYw==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-b53187d7-5b12-4dbd-87b8-e14b0b2734d1, rgb(0, 0, 0))\"},children:\"Perinatal Page Content\"})}),className:\"framer-12kk8xi\",fonts:[\"FS;Montserrat-bold italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xkIGl0YWxpYw==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-b53187d7-5b12-4dbd-87b8-e14b0b2734d1, rgb(0, 0, 0))\"},children:\"EMDR Page Content\"})}),className:\"framer-1r6r14e\",fonts:[\"FS;Montserrat-bold italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0yqxw\",\"data-framer-name\":\"Step 2\",name:\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bdstav\",\"data-framer-name\":\"Modeling Overview\",name:\"Modeling Overview\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Step 2: Keyword Research \"})}),className:\"framer-1to2ntm\",\"data-framer-name\":\"Modeling\",fonts:[\"GF;Montserrat-600\"],name:\"Modeling\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.5%\"},children:\"Keyword research involves identifying and analyzing the search terms people use in search engines, with the goal of leveraging that data to inform strategies for search engine optimization (SEO) or broader marketing efforts.\"})}),className:\"framer-1himuf1\",\"data-framer-name\":\"After our research was completed we moved on to the modeling phase. In this phase we bridged the gap between the data found to create user models through the use of personas to indentify our user. Personas are fictional characters created based on research that represents a group of users who share common goals, needs, and behaviors. Our team went on to create two personas based on our findings: William Sorrento, an elderly widower seeking community and convenient transportation within his hometown, and Maya Rodriguez a young teacher new to the area, in search of an effortless means of generating additional income, discovering the city, and socializing with new acquaintances.\",fonts:[\"GF;Montserrat-regular\"],name:\"After our research was completed we moved on to the modeling phase. In this phase we bridged the gap between the data found to create user models through the use of personas to indentify our user. Personas are fictional characters created based on research that represents a group of users who share common goals, needs, and behaviors. Our team went on to create two personas based on our findings: William Sorrento, an elderly widower seeking community and convenient transportation within his hometown, and Maya Rodriguez a young teacher new to the area, in search of an effortless means of generating additional income, discovering the city, and socializing with new acquaintances.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.5%\"},children:\"Next, I brainstormed seed words\u2014terms and phrases relevant to Spark + Pivot Counseling. I used this initial list to explore related keywords through Google search and leveraged SEMrush\u2019s Keyword Magic Tool to refine and expand the keyword set.\"})}),className:\"framer-tz0aql\",\"data-framer-name\":\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",fonts:[\"GF;Montserrat-regular\"],name:\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Develop Seed Keywords\"})}),className:\"framer-gvging\",\"data-framer-name\":\"Journey Mapping\",fonts:[\"GF;Montserrat-600\"],name:\"Journey Mapping\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2583),pixelHeight:768,pixelWidth:1024,sizes:\"1060px\",src:\"https://framerusercontent.com/images/ioqtEb7eCg9xGlCeDErajQoQ.png\",srcSet:\"https://framerusercontent.com/images/ioqtEb7eCg9xGlCeDErajQoQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ioqtEb7eCg9xGlCeDErajQoQ.png 1024w\"},className:\"framer-5aled8\",\"data-framer-name\":\"1 1\",name:\"1 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4600.000000000002),pixelHeight:1080,pixelWidth:1920,sizes:\"1019px\",src:\"https://framerusercontent.com/images/WuPoXqgXxPoWOfSfCTz9x3AmaM.png\",srcSet:\"https://framerusercontent.com/images/WuPoXqgXxPoWOfSfCTz9x3AmaM.png?scale-down-to=512 512w,https://framerusercontent.com/images/WuPoXqgXxPoWOfSfCTz9x3AmaM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WuPoXqgXxPoWOfSfCTz9x3AmaM.png 1920w\"},className:\"framer-131c2j5\",\"data-framer-name\":\"2 2\",name:\"2 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3505),pixelHeight:1080,pixelWidth:1080,sizes:\"757px\",src:\"https://framerusercontent.com/images/QKcvuWrSHIoOCipcrbo12YB5YMA.png\",srcSet:\"https://framerusercontent.com/images/QKcvuWrSHIoOCipcrbo12YB5YMA.png?scale-down-to=512 512w,https://framerusercontent.com/images/QKcvuWrSHIoOCipcrbo12YB5YMA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QKcvuWrSHIoOCipcrbo12YB5YMA.png 1080w\"},className:\"framer-1ve8adw\",\"data-framer-name\":\"1 2\",name:\"1 2\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Get Long Tail Keyword Ideas\"})}),className:\"framer-169nfbc\",\"data-framer-name\":\"Journey Mapping\",fonts:[\"GF;Montserrat-600\"],name:\"Journey Mapping\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Find High Ranking Content Topic Keywords\"})}),className:\"framer-q2t79d\",\"data-framer-name\":\"Journey Mapping\",fonts:[\"GF;Montserrat-600\"],name:\"Journey Mapping\",transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.5%\"},children:\"During this process, I took the brainstormed seed words and used Google search to discover related keywords. I also employed SEMrush\u2019s Keyword Magic Tool to generate long-tail keywords, which provided more specific and targeted search terms. This approach allowed us to refine our keyword strategy, focusing on terms that would drive more relevant traffic to the Spark + Pivot Counseling website. Additionally, I analyzed search volume and competition for these keywords to prioritize the most impactful ones for SEO optimization.\"})}),className:\"framer-13moud\",\"data-framer-name\":\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",fonts:[\"GF;Montserrat-regular\"],name:\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.5%\"},children:\"Once I had established my list of seed and long-tail keywords, I developed content topics incorporating these keywords. I then used SEMrush\u2019s Keyword Overview Tool to assess the ranking potential of each keyword within these topics. By evaluating which keywords were high-ranking and which were low-ranking, I eliminated the underperforming ones to focus on terms with greater visibility and impact.\"})}),className:\"framer-cpqahw\",\"data-framer-name\":\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",fonts:[\"GF;Montserrat-regular\"],name:\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yeh93z\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5823),pixelHeight:2e3,pixelWidth:1414,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/TKX0WQOrjCdFs2SSGwAK2THiWI.png\",srcSet:\"https://framerusercontent.com/images/TKX0WQOrjCdFs2SSGwAK2THiWI.png?scale-down-to=1024 723w,https://framerusercontent.com/images/TKX0WQOrjCdFs2SSGwAK2THiWI.png 1414w\"},className:\"framer-4upmpv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6406),pixelHeight:2e3,pixelWidth:1414,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/DzzKc0qt7jlh9pgqqdK3YMZhZtQ.png\",srcSet:\"https://framerusercontent.com/images/DzzKc0qt7jlh9pgqqdK3YMZhZtQ.png?scale-down-to=1024 723w,https://framerusercontent.com/images/DzzKc0qt7jlh9pgqqdK3YMZhZtQ.png 1414w\"},className:\"framer-k2oqyb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6406),pixelHeight:2e3,pixelWidth:1414,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/LZCwOIN9WhP43Vbo7DBMUjPCeY.png\",srcSet:\"https://framerusercontent.com/images/LZCwOIN9WhP43Vbo7DBMUjPCeY.png?scale-down-to=1024 723w,https://framerusercontent.com/images/LZCwOIN9WhP43Vbo7DBMUjPCeY.png 1414w\"},className:\"framer-1sfq0j1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5823),pixelHeight:2e3,pixelWidth:1414,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/VeAk63spfPjzodrdjLozb2LIOY.png\",srcSet:\"https://framerusercontent.com/images/VeAk63spfPjzodrdjLozb2LIOY.png?scale-down-to=1024 723w,https://framerusercontent.com/images/VeAk63spfPjzodrdjLozb2LIOY.png 1414w\"},className:\"framer-xin4km\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5823),pixelHeight:2e3,pixelWidth:1414,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/nH5zN3sG4k0lbBM6O0HJpjNFpw.png\",srcSet:\"https://framerusercontent.com/images/nH5zN3sG4k0lbBM6O0HJpjNFpw.png?scale-down-to=1024 723w,https://framerusercontent.com/images/nH5zN3sG4k0lbBM6O0HJpjNFpw.png 1414w\"},className:\"framer-114jcq2\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Understanding User Intent \"})}),className:\"framer-9yaru1\",\"data-framer-name\":\"Journey Mapping\",fonts:[\"GF;Montserrat-600\"],name:\"Journey Mapping\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.5%\"},children:\"Before conducting keyword research, the founder administered a questionnaire at the end of each private session, asking clients how they discovered her page, including the specific words they used in their searches and the resources they relied on.\"})}),className:\"framer-khogs3\",\"data-framer-name\":\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",fonts:[\"GF;Montserrat-regular\"],name:\"Once our personas were created to understand our user further and emphasize with them we decided to create journey maps for each persona. A journey map is a visualization of the process that an user goes through in order to achieve their goal.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16y3d1o\",\"data-framer-name\":\"Step 1\",name:\"Step 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1raga5b\",\"data-framer-name\":\"Research overview\",name:\"Research overview\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Step 1: Understanding the Goal and the Consumer\"})}),className:\"framer-1gud98z\",\"data-framer-name\":\"Research\",fonts:[\"FS;Montserrat-semibold\"],name:\"Research\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.5%\"},children:\"To optimize search engine results for the practice\u2019s website, I needed to understand the company\u2019s goals and target audience. During the initial meeting with the owner, I identified several key objectives to be accomplished during my apprenticeship.\"})}),className:\"framer-1jex1dk\",\"data-framer-name\":\"As designers the research phase is important to collect a wide range of research data to truly understand the user and their goals. The GDD Research phase consist of 7 steps; the kickoff meeting, literature review, competitive audit, stakeholder interviews, SME interviews, and user interviews. Due to this project being for a class project our team could not perform all of the steps of the research phase such as stakeholder, and SME interviews. However the RideX team made sure to go through most of the steps of the research phase in order to understand who the RideX user is and what their goals are.\",fonts:[\"GF;Montserrat-regular\"],name:\"As designers the research phase is important to collect a wide range of research data to truly understand the user and their goals. The GDD Research phase consist of 7 steps; the kickoff meeting, literature review, competitive audit, stakeholder interviews, SME interviews, and user interviews. Due to this project being for a class project our team could not perform all of the steps of the research phase such as stakeholder, and SME interviews. However the RideX team made sure to go through most of the steps of the research phase in order to understand who the RideX user is and what their goals are.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Business Goals:\"})}),className:\"framer-1ghtxx1\",\"data-framer-name\":\"Kickoff Meeting Alternative\",fonts:[\"GF;Montserrat-600\"],name:\"Kickoff Meeting Alternative\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y83yse\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z2aymf\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-odw5wj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b53187d7-5b12-4dbd-87b8-e14b0b2734d1, rgb(0, 0, 0))\"},children:\"Sharpen and make concise website content to increase SEO.\"})}),className:\"framer-pgccgc\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6t6p9y\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17fprwc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b53187d7-5b12-4dbd-87b8-e14b0b2734d1, rgb(0, 0, 0))\"},children:\"Update UI and UX elements for better SEO and user navigation.\"})}),className:\"framer-8wti6i\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g3l56m\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gm8gm8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b53187d7-5b12-4dbd-87b8-e14b0b2734d1, rgb(0, 0, 0))\"},children:\"Increase client demographic to be women specifically women dealing with perinatal loss & grief, and other traumas.\"})}),className:\"framer-1j43qzf\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c2gko\",\"data-framer-name\":\"The process\",name:\"The process\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wh81i9\",\"data-framer-name\":\"description\",name:\"description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"The Process\"})}),className:\"framer-1c3n3az\",\"data-framer-name\":\"Problem Statement\",fonts:[\"GF;Montserrat-600\"],name:\"Problem Statement\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(803.0000000000002),pixelHeight:1200,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:\"1060px\",src:\"https://framerusercontent.com/images/Ye6adfL1WAAZQBwTTOdwfmYw.png\",srcSet:\"https://framerusercontent.com/images/Ye6adfL1WAAZQBwTTOdwfmYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ye6adfL1WAAZQBwTTOdwfmYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ye6adfL1WAAZQBwTTOdwfmYw.png 1800w\"},className:\"framer-h9cxm2\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10fty4o\",\"data-framer-name\":\"Overview\",name:\"Overview\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aozjt9\",\"data-framer-name\":\"description\",name:\"description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"137.5%\"},children:\"I completed a three-month digital marketing apprenticeship with Spark + Pivot, a small therapy practice based in Dallas, Texas. During this apprenticeship, I collaborated with and reported directly to the owner and founder. Together, we achieved our goals through effective SEO strategies and UX/UI design principles.\"})}),className:\"framer-1vckw9g\",\"data-framer-name\":\"This project was done as a collaboration for the Senior Portfolio Capstone class at Kennesaw State University. I collaborated in a team with three other classmates to create an app that allows users to particpate in rideshare while building community and friendships. We completed this project using the 5 phases of Goal-Directed Design Method.\",fonts:[\"GF;Montserrat-regular\"],name:\"This project was done as a collaboration for the Senior Portfolio Capstone class at Kennesaw State University. I collaborated in a team with three other classmates to create an app that allows users to particpate in rideshare while building community and friendships. We completed this project using the 5 phases of Goal-Directed Design Method.\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Overview\"})}),className:\"framer-1vn6ho5\",\"data-framer-name\":\"Overview\",fonts:[\"GF;Montserrat-600\"],name:\"Overview\",verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wchjc4\",\"data-framer-name\":\"Case Study Description\",name:\"Case Study Description\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v7r0vw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ip8qce\",\"data-framer-name\":\"App description\",name:\"App description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Spark and Pivot SEO Strategy \"})}),className:\"framer-1sgun0s\",\"data-framer-name\":\"RideX\",fonts:[\"GF;Montserrat-600\"],name:\"RideX\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ejdbjn\",\"data-framer-name\":\"details\",name:\"details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Role:\"})}),className:\"framer-19ti2ui\",\"data-framer-name\":\"Role:\",fonts:[\"GF;Montserrat-600\"],name:\"Role:\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Digital Marketing Apprentice\"})}),className:\"framer-1il9jul\",\"data-framer-name\":\"UX/UI Designer, UXResearcher\",fonts:[\"GF;Montserrat-regular\"],name:\"UX/UI Designer, UXResearcher\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"SemRush, Canva, Google Analytics\"})}),className:\"framer-3sfp16\",\"data-framer-name\":\"Figma, Photoshop, Illustrator\",fonts:[\"GF;Montserrat-regular\"],name:\"Figma, Photoshop, Illustrator\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"3 months \"})}),className:\"framer-3abvb7\",\"data-framer-name\":\"5 months\",fonts:[\"GF;Montserrat-regular\"],name:\"5 months\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"SEO, Content Writing, UX Design\"})}),className:\"framer-wu9xpf\",\"data-framer-name\":\"Goal Directed Design\",fonts:[\"GF;Montserrat-regular\"],name:\"Goal Directed Design\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Tools:\"})}),className:\"framer-1akmxk8\",\"data-framer-name\":\"Tools:\",fonts:[\"GF;Montserrat-600\"],name:\"Tools:\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Duration:\"})}),className:\"framer-1i5pbdw\",\"data-framer-name\":\"Duration:\",fonts:[\"GF;Montserrat-600\"],name:\"Duration:\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-11af6235-9861-46b6-b879-6540e5f9d6b5, rgb(96, 120, 89))\"},children:\"Skills:\"})}),className:\"framer-4nm2k0\",\"data-framer-name\":\"Method:\",fonts:[\"GF;Montserrat-600\"],name:\"Method:\",verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cvmwyd-container\",children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"uwhuum2kq\",layoutId:\"uwhuum2kq\",style:{height:\"100%\",width:\"100%\"},variant:\"qZSkbIyb5\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-HTmyd { background: white; }`,\".framer-HTmyd.framer-1yx4zh5, .framer-HTmyd .framer-1yx4zh5 { display: block; }\",\".framer-HTmyd.framer-17r731t { background-color: #ffffff; height: 10314px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-HTmyd .framer-123jftj { flex: none; height: 593px; left: calc(50.00000000000002% - 1064px / 2); overflow: hidden; position: absolute; top: 9632px; width: 1064px; }\",\".framer-HTmyd .framer-1f968gl, .framer-HTmyd .framer-15azkzd, .framer-HTmyd .framer-nalinr { flex: none; height: auto; left: 2px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-HTmyd .framer-18y0p4z { flex: none; height: auto; left: 2px; position: absolute; top: 86px; white-space: pre-wrap; width: 1046px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-b3xyfd { bottom: 34px; flex: none; height: 327px; left: calc(49.90601503759401% - 421px / 2); position: absolute; width: 421px; }\",\".framer-HTmyd .framer-1t05eb { flex: none; height: 912px; left: calc(50.00000000000002% - 1064px / 2); overflow: hidden; position: absolute; top: 8684px; width: 1064px; }\",\".framer-HTmyd .framer-8b6p0q { flex: none; height: auto; left: 0px; position: absolute; top: 16%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-HTmyd .framer-annfcl { flex: none; height: auto; left: 2px; position: absolute; right: 2px; top: 26%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-qedwur { bottom: 100px; flex: none; height: 413px; left: calc(50.00000000000002% - 1026px / 2); overflow: hidden; position: absolute; width: 1026px; }\",\".framer-HTmyd .framer-yhhd06-container, .framer-HTmyd .framer-vsz4gr-container { flex: none; height: 303px; left: 0px; position: absolute; top: 0px; width: 461px; }\",\".framer-HTmyd .framer-vqygmm-container, .framer-HTmyd .framer-10qcx8h-container { flex: none; height: 303px; position: absolute; right: 0px; top: 0px; width: 461px; }\",\".framer-HTmyd .framer-8nryew, .framer-HTmyd .framer-12kk8xi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; height: 75px; left: 0px; position: absolute; white-space: pre-wrap; width: 461px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-kr2uqj, .framer-HTmyd .framer-1r6r14e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; height: 75px; position: absolute; right: 0px; white-space: pre-wrap; width: 461px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-136lecc { flex: none; height: 1617px; left: calc(50.00000000000002% - 1064px / 2); overflow: hidden; position: absolute; top: 7030px; width: 1064px; }\",\".framer-HTmyd .framer-1ecrvz8 { flex: none; height: auto; left: 2px; position: absolute; top: 96px; white-space: pre; width: auto; }\",\".framer-HTmyd .framer-122t4ie { flex: none; height: auto; left: 2px; position: absolute; top: 148px; white-space: pre-wrap; width: 1046px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1rsb9eg { flex: none; height: 533px; left: calc(50.00000000000002% - 956px / 2); position: absolute; top: 309px; width: 956px; }\",\".framer-HTmyd .framer-152s99e { flex: none; height: auto; left: 2px; position: absolute; top: 57%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-HTmyd .framer-7eh4gq { flex: none; height: auto; left: 2px; position: absolute; right: 2px; top: 62%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-cqimn0 { bottom: 108px; flex: none; height: 413px; left: calc(50.00000000000002% - 1026px / 2); overflow: hidden; position: absolute; width: 1026px; }\",\".framer-HTmyd .framer-1q0yqxw { flex: none; height: 4603px; left: calc(50.00000000000002% - 1062px / 2); overflow: hidden; position: absolute; top: 2391px; width: 1062px; }\",\".framer-HTmyd .framer-1bdstav { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 1056px; }\",\".framer-HTmyd .framer-1to2ntm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HTmyd .framer-1himuf1 { --framer-paragraph-spacing: 1.5px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1035px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-tz0aql { --framer-paragraph-spacing: 1.5px; flex: none; height: auto; left: 2px; position: absolute; top: 2079px; white-space: pre-wrap; width: 1035px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-gvging { aspect-ratio: 23.818181818181817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 2px; position: absolute; right: 0px; top: 2013px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-5aled8 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 666px; left: calc(50.00000000000002% - 1060px / 2); position: absolute; top: 192px; width: 1060px; }\",\".framer-HTmyd .framer-131c2j5 { border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: 600px; left: calc(49.90583804143128% - 1019px / 2); position: absolute; top: calc(54.50792961112321% - 600px / 2); width: 1019px; }\",\".framer-HTmyd .framer-1ve8adw { border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: 801px; left: calc(49.90583804143128% - 757px / 2); position: absolute; top: 1114px; width: 757px; }\",\".framer-HTmyd .framer-169nfbc { aspect-ratio: 23.818181818181817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 2px; position: absolute; top: 63%; transform: translateY(-50%); white-space: pre-wrap; width: 1048px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-q2t79d { aspect-ratio: 23.818181818181817 / 1; bottom: 1358px; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 1048px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-13moud { --framer-paragraph-spacing: 1.5px; bottom: 1483px; flex: none; height: auto; left: 2px; position: absolute; white-space: pre-wrap; width: 1035px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-cpqahw { --framer-paragraph-spacing: 1.5px; bottom: 1226px; flex: none; height: auto; left: 49%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 1035px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-yeh93z { aspect-ratio: 0.892399658411614 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 1171px); left: 50%; overflow: hidden; position: absolute; transform: translateX(-50%); width: 1045px; }\",\".framer-HTmyd .framer-4upmpv { flex: none; height: 583px; left: 0px; position: absolute; top: 0px; width: 335px; }\",\".framer-HTmyd .framer-k2oqyb { bottom: 5px; flex: none; height: 583px; left: 147px; position: absolute; width: 335px; }\",\".framer-HTmyd .framer-1sfq0j1 { bottom: 5px; flex: none; height: 583px; left: 559px; position: absolute; width: 335px; }\",\".framer-HTmyd .framer-xin4km { flex: none; height: 583px; left: calc(49.95215311004787% - 335px / 2); position: absolute; top: 0px; width: 335px; }\",\".framer-HTmyd .framer-114jcq2 { flex: none; height: 583px; position: absolute; right: 0px; top: 0px; width: 335px; }\",\".framer-HTmyd .framer-9yaru1 { aspect-ratio: 23.818181818181817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 2px; position: absolute; top: 911px; white-space: pre-wrap; width: 1048px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-khogs3 { --framer-paragraph-spacing: 1.5px; flex: none; height: auto; left: 2px; position: absolute; top: 969px; white-space: pre-wrap; width: 1035px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-16y3d1o { flex: none; height: 790px; left: calc(50.00000000000002% - 1064px / 2); overflow: hidden; position: absolute; top: 1565px; width: 1064px; }\",\".framer-HTmyd .framer-1raga5b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: min-content; }\",\".framer-HTmyd .framer-1gud98z { flex: none; height: 44px; position: relative; white-space: pre-wrap; width: 1055px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1jex1dk { --framer-paragraph-spacing: 1.5px; flex: none; height: 98px; position: relative; white-space: pre-wrap; width: 1048px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1ghtxx1 { flex: none; height: 44px; left: calc(49.90601503759401% - 1048px / 2); position: absolute; top: 248px; white-space: pre-wrap; width: 1048px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1y83yse { bottom: 98px; flex: none; height: 348px; left: calc(50.00000000000002% - 1062px / 2); overflow: hidden; position: absolute; width: 1062px; }\",\".framer-HTmyd .framer-z2aymf { align-content: center; align-items: center; background-color: #99b690; border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmyd .framer-odw5wj, .framer-HTmyd .framer-17fprwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 168px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 211px; }\",\".framer-HTmyd .framer-pgccgc, .framer-HTmyd .framer-8wti6i { flex: none; height: 95px; position: relative; white-space: pre-wrap; width: 198px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-6t6p9y { align-content: center; align-items: center; background-color: #99b690; border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmyd .framer-1g3l56m { align-content: center; align-items: center; background-color: #99b690; border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; left: calc(50.00000000000002% - 300px / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmyd .framer-gm8gm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 196px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 210px; }\",\".framer-HTmyd .framer-1j43qzf { flex: none; height: 160px; position: relative; white-space: pre-wrap; width: 198px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1c2gko { flex: none; height: 8%; left: -6px; overflow: visible; position: absolute; top: 698px; width: 100%; }\",\".framer-HTmyd .framer-1wh81i9 { bottom: 0px; flex: none; height: 824px; left: calc(50.04170141784823% - 1064px / 2); overflow: hidden; position: absolute; width: 1064px; }\",\".framer-HTmyd .framer-1c3n3az { flex: none; height: auto; left: 29px; position: absolute; top: 22px; white-space: pre; width: auto; }\",\".framer-HTmyd .framer-h9cxm2 { flex: none; height: 650px; left: calc(50.00000000000002% - 1060px / 2); position: absolute; top: calc(51.456310679611676% - 650px / 2); width: 1060px; }\",\".framer-HTmyd .framer-10fty4o { aspect-ratio: 3.9473684210526314 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 304px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 358px; z-index: 1; }\",\".framer-HTmyd .framer-aozjt9 { flex: none; height: 199px; left: calc(50.00000000000002% - 1064px / 2); overflow: hidden; position: absolute; top: calc(49.67105263157897% - 199px / 2); width: 1064px; }\",\".framer-HTmyd .framer-1vckw9g { --framer-paragraph-spacing: 1.5px; flex: none; height: 144px; left: 5px; position: absolute; top: 64px; white-space: pre-wrap; width: 1048px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1vn6ho5 { flex: none; height: 44px; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 297px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-wchjc4 { flex: none; height: 294px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 64px; z-index: 1; }\",\".framer-HTmyd .framer-1v7r0vw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 44px; width: 100%; }\",\".framer-HTmyd .framer-ip8qce { flex: none; height: 190px; overflow: hidden; position: relative; width: 567px; }\",\".framer-HTmyd .framer-1sgun0s { flex: none; height: auto; left: 0px; position: absolute; top: 9px; white-space: pre-wrap; width: 567px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1ejdbjn { flex: none; height: 206px; overflow: hidden; position: relative; width: 520px; }\",\".framer-HTmyd .framer-19ti2ui { flex: none; height: 49px; left: 36px; position: absolute; top: 0px; white-space: pre-wrap; width: 71px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1il9jul { flex: none; height: 49px; left: 114px; position: absolute; top: 0px; white-space: pre-wrap; width: 333px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-3sfp16 { flex: none; height: 49px; left: 125px; position: absolute; top: 49px; white-space: pre-wrap; width: 298px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-3abvb7 { flex: none; height: 49px; left: 183px; position: absolute; top: 98px; white-space: pre-wrap; width: 297px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-wu9xpf { bottom: 10px; flex: none; height: 49px; position: absolute; right: 9px; white-space: pre-wrap; width: 386px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1akmxk8 { flex: none; height: 49px; left: 36px; position: absolute; top: 49px; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1i5pbdw { flex: none; height: 49px; left: 36px; position: absolute; top: 98px; white-space: pre-wrap; width: 147px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-4nm2k0 { flex: none; height: 49px; left: 36px; position: absolute; top: 147px; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmyd .framer-1cvmwyd-container { flex: none; height: 64px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HTmyd .framer-1bdstav, .framer-HTmyd .framer-1raga5b, .framer-HTmyd .framer-z2aymf, .framer-HTmyd .framer-odw5wj, .framer-HTmyd .framer-6t6p9y, .framer-HTmyd .framer-17fprwc, .framer-HTmyd .framer-1g3l56m, .framer-HTmyd .framer-gm8gm8, .framer-HTmyd .framer-1v7r0vw { gap: 0px; } .framer-HTmyd .framer-1bdstav > *, .framer-HTmyd .framer-1raga5b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HTmyd .framer-1bdstav > :first-child, .framer-HTmyd .framer-1raga5b > :first-child, .framer-HTmyd .framer-z2aymf > :first-child, .framer-HTmyd .framer-6t6p9y > :first-child, .framer-HTmyd .framer-1g3l56m > :first-child { margin-top: 0px; } .framer-HTmyd .framer-1bdstav > :last-child, .framer-HTmyd .framer-1raga5b > :last-child, .framer-HTmyd .framer-z2aymf > :last-child, .framer-HTmyd .framer-6t6p9y > :last-child, .framer-HTmyd .framer-1g3l56m > :last-child { margin-bottom: 0px; } .framer-HTmyd .framer-z2aymf > *, .framer-HTmyd .framer-6t6p9y > *, .framer-HTmyd .framer-1g3l56m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HTmyd .framer-odw5wj > *, .framer-HTmyd .framer-17fprwc > *, .framer-HTmyd .framer-gm8gm8 > *, .framer-HTmyd .framer-1v7r0vw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HTmyd .framer-odw5wj > :first-child, .framer-HTmyd .framer-17fprwc > :first-child, .framer-HTmyd .framer-gm8gm8 > :first-child, .framer-HTmyd .framer-1v7r0vw > :first-child { margin-left: 0px; } .framer-HTmyd .framer-odw5wj > :last-child, .framer-HTmyd .framer-17fprwc > :last-child, .framer-HTmyd .framer-gm8gm8 > :last-child, .framer-HTmyd .framer-1v7r0vw > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10314\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerVt5f3AwoD=withCSS(Component,css,\"framer-HTmyd\");export default FramerVt5f3AwoD;FramerVt5f3AwoD.displayName=\"Ridex\";FramerVt5f3AwoD.defaultProps={height:10314,width:1200};addFonts(FramerVt5f3AwoD,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...VideoFonts,...NavigationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVt5f3AwoD\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"10314\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__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", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "NavigationFonts", "T9dIpV2C1_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "metadata", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "RichText2", "x", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "Video", "T9dIpV2C1_default", "css", "FramerVt5f3AwoD", "withCSS", "Vt5f3AwoD_default", "addFonts", "VideoFonts", "NavigationFonts", "__FramerMetadata__"]
}
