{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/QNZF1GDHCfQXRpZBce95/aOd2wqHfnSU7kM6gDOJx/byavK6YhO.js", "ssg:https://framerusercontent.com/modules/Wk8fItif0cWazDh5Yfw4/vKHF8xePox9HRBsZ4Qum/yjiNgBF7g.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 (1a71db7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={o7kfE3xlF:{hover:true},WTSHx0RA5:{hover:true}};const cycleOrder=[\"o7kfE3xlF\",\"WTSHx0RA5\"];const serializationHash=\"framer-GULD2\";const variantClassNames={o7kfE3xlF:\"framer-v-11995y6\",WTSHx0RA5:\"framer-v-1e5egie\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"o7kfE3xlF\",\"Variant 2\":\"WTSHx0RA5\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"o7kfE3xlF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o7kfE3xlF\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vBX5Q97aF\",webPageId:\"yjiNgBF7g\"},nodeId:\"o7kfE3xlF\",openInNewTab:false,smoothScroll:true,...addPropertyOverrides({WTSHx0RA5:{href:{hash:\":GC7IpmQXh\",webPageId:\"yjiNgBF7g\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11995y6\",className,classNames)} framer-1scj7mh`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"o7kfE3xlF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"o7kfE3xlF-hover\":{\"data-framer-name\":undefined},\"WTSHx0RA5-hover\":{\"data-framer-name\":undefined},WTSHx0RA5:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b5yvht\",\"data-framer-name\":\"Rectangle 1042\",layoutDependency:layoutDependency,layoutId:\"zW4z5bOjD\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 4px 16px 0px rgba(0, 0, 0, 0.03999999910593033), 0px 0px 1px 0px rgba(0, 0, 0, 0.10999999940395355)\"},variants:{\"o7kfE3xlF-hover\":{boxShadow:\"0px 4px 16px 0px rgba(240, 112, 0, 0.1), 0px 0px 1px 0px rgba(0, 0, 0, 0.10999999940395355)\"},\"WTSHx0RA5-hover\":{boxShadow:\"0px 4px 16px 0px rgba(23, 87, 165, 0.15), 0px 0px 1px 0px rgba(0, 0, 0, 0.10999999940395355)\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJldGVuZGFyZC01MDA=\",\"--framer-font-family\":'\"Pretendard\", \"Pretendard Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Voice Care 365 - AI Speaker, Kit, Manual\"})}),className:\"framer-sb5bu8\",\"data-framer-name\":\"365 Care Service\",fonts:[\"GF;Pretendard-500\"],layoutDependency:layoutDependency,layoutId:\"htmihwn4N\",style:{\"--framer-paragraph-spacing\":\"1px\"},variants:{\"o7kfE3xlF-hover\":{\"--extracted-r6o4lv\":\"rgb(66, 97, 238)\"},\"WTSHx0RA5-hover\":{\"--extracted-r6o4lv\":\"rgb(66, 97, 238)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"o7kfE3xlF-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJldGVuZGFyZC01MDA=\",\"--framer-font-family\":'\"Pretendard\", \"Pretendard Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(66, 97, 238))\"},children:\"Voice Care 365 - AI Speaker, Kit, Manual\"})})},\"WTSHx0RA5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJldGVuZGFyZC01MDA=\",\"--framer-font-family\":'\"Pretendard\", \"Pretendard Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(66, 97, 238))\"},children:\"Healthcare 365 - Care Management for Caregivers\"})})},WTSHx0RA5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJldGVuZGFyZC01MDA=\",\"--framer-font-family\":'\"Pretendard\", \"Pretendard Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Healthcare 365 - Care Management for Caregivers\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJldGVuZGFyZC01MDA=\",\"--framer-font-family\":'\"Pretendard\", \"Pretendard Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(174, 178, 191))\"},children:\"Service Design\"})}),className:\"framer-ha81gf\",\"data-framer-name\":\"365 Care Service\",fonts:[\"GF;Pretendard-500\"],layoutDependency:layoutDependency,layoutId:\"Czs5Gmo0j\",style:{\"--extracted-r6o4lv\":\"rgb(174, 178, 191)\",\"--framer-paragraph-spacing\":\"1px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WTSHx0RA5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJldGVuZGFyZC01MDA=\",\"--framer-font-family\":'\"Pretendard\", \"Pretendard Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(174, 178, 191))\"},children:\"UX UI Design\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1308,pixelWidth:1644,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 2px)`,src:\"https://framerusercontent.com/images/RK2UI08SGZ5O4e0A3cYb2M8OOvo.jpg\",srcSet:\"https://framerusercontent.com/images/RK2UI08SGZ5O4e0A3cYb2M8OOvo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RK2UI08SGZ5O4e0A3cYb2M8OOvo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RK2UI08SGZ5O4e0A3cYb2M8OOvo.jpg 1644w\"},className:\"framer-eedcrw\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1045\",layoutDependency:layoutDependency,layoutId:\"l1PXallZH\",style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",borderTopLeftRadius:12,borderTopRightRadius:12,filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},variants:{\"o7kfE3xlF-hover\":{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},\"WTSHx0RA5-hover\":{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}},...addPropertyOverrides({WTSHx0RA5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1312,pixelWidth:2200,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 2px)`,src:\"https://framerusercontent.com/images/BTpgBQvWFj5uEYc2nupuRcxPNYk.jpg\",srcSet:\"https://framerusercontent.com/images/BTpgBQvWFj5uEYc2nupuRcxPNYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BTpgBQvWFj5uEYc2nupuRcxPNYk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BTpgBQvWFj5uEYc2nupuRcxPNYk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BTpgBQvWFj5uEYc2nupuRcxPNYk.jpg 2200w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GULD2.framer-1scj7mh, .framer-GULD2 .framer-1scj7mh { display: block; }\",\".framer-GULD2.framer-11995y6 { cursor: pointer; height: 373px; overflow: visible; position: relative; text-decoration: none; width: 408px; }\",\".framer-GULD2 .framer-b5yvht { flex: none; height: 350px; left: 0px; position: absolute; right: -2px; top: 0px; }\",\".framer-GULD2 .framer-sb5bu8 { bottom: 40px; flex: none; height: auto; left: 20px; position: absolute; white-space: pre-wrap; width: 321px; word-break: break-word; word-wrap: break-word; }\",\".framer-GULD2 .framer-ha81gf { bottom: 20px; flex: none; height: auto; left: 20px; position: absolute; white-space: pre-wrap; width: 94%; word-break: break-word; word-wrap: break-word; }\",\".framer-GULD2 .framer-eedcrw { flex: none; height: 279px; left: 0px; position: absolute; right: -2px; top: 0px; }\",\".framer-GULD2.framer-v-1e5egie .framer-sb5bu8 { bottom: 39px; width: 362px; }\",'.framer-GULD2[data-border=\"true\"]::after, .framer-GULD2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 373\n * @framerIntrinsicWidth 408\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WTSHx0RA5\":{\"layout\":[\"fixed\",\"fixed\"]},\"MTqN6HkYD\":{\"layout\":[\"fixed\",\"fixed\"]},\"rWayiSpPV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbyavK6YhO=withCSS(Component,css,\"framer-GULD2\");export default FramerbyavK6YhO;FramerbyavK6YhO.displayName=\"Voice Care\";FramerbyavK6YhO.defaultProps={height:373,width:408};addPropertyControls(FramerbyavK6YhO,{variant:{options:[\"o7kfE3xlF\",\"WTSHx0RA5\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbyavK6YhO,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbyavK6YhO\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WTSHx0RA5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MTqN6HkYD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rWayiSpPV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"373\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"408\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./byavK6YhO.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import VoiceCare from\"#framer/local/canvasComponent/byavK6YhO/byavK6YhO.js\";import Sidebar from\"#framer/local/canvasComponent/H81lbNXt4/H81lbNXt4.js\";import metadataProvider from\"#framer/local/webPageMetadata/yjiNgBF7g/yjiNgBF7g.js\";const SidebarFonts=getFonts(Sidebar);const VideoFonts=getFonts(Video);const VoiceCareFonts=getFonts(VoiceCare);const YouTubeFonts=getFonts(YouTube);const breakpoints={};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hGK5T\";const variantClassNames={SAaXSkI_F:\"framer-v-1uo5d21\"};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-hGK5T`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-hGK5T`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"F5ZGmtBC2\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"IB1lPOO9r\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"vBX5Q97aF\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"QFCQOYl5x\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"GC7IpmQXh\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"SAaXSkI_F\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uo5d21\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpj20g\",\"data-framer-name\":\"Side Bar\",name:\"Side Bar\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"249px\",y:28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xm0bdp-container\",children:/*#__PURE__*/_jsx(Sidebar,{height:\"100%\",id:\"fzoocoMML\",layoutId:\"fzoocoMML\",style:{width:\"100%\"},variant:\"NmDpFFrP_\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kycbfk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-er4008\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kd87s8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cvlw5z-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(250, 250, 250)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"F5ZGmtBC2\",isMixedBorderRadius:false,layoutId:\"F5ZGmtBC2\",loop:false,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/pup3ygEKcHacGqePEJVmluSe6g.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-n05pv\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fghyre\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t09cjj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RnV0dXJh\",\"--framer-font-family\":'\"Futura\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(2, 2, 2)\"},children:\"Select a service\"})}),className:\"framer-1jo92h2\",\"data-framer-name\":\"Welcome aboard!\",fonts:[\"Futura\"],name:\"Welcome aboard!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\"},children:\"If you'd like to skip the background, please choose the service you'd like to check directly.\"})}),className:\"framer-1ol3113\",\"data-framer-name\":\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",fonts:[\"GF;Noto Sans-regular\"],name:\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-51qgnq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jbtp5o\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:358,width:\"max((70vw - 24px) / 2, 1px)\",y:702,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1owe08v-container\",children:/*#__PURE__*/_jsx(VoiceCare,{height:\"100%\",id:\"jSN0i4uUj\",layoutId:\"jSN0i4uUj\",style:{height:\"100%\",width:\"100%\"},variant:\"o7kfE3xlF\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:358,width:\"max((70vw - 24px) / 2, 1px)\",y:702,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sbua9m-container\",children:/*#__PURE__*/_jsx(VoiceCare,{height:\"100%\",id:\"Anhy7ZVNJ\",layoutId:\"Anhy7ZVNJ\",style:{height:\"100%\",width:\"100%\"},variant:\"WTSHx0RA5\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121467b\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c6usjx\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3eciyv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RnV0dXJh\",\"--framer-font-family\":'\"Futura\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(235, 102, 34)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(2, 2, 2)\"},children:\"What's \"}),\"Voice Care 365\"]})}),className:\"framer-ge6scn\",\"data-framer-name\":\"Welcome aboard!\",fonts:[\"Futura\"],name:\"Welcome aboard!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\"},children:\"Please watch the video to see how the service seamlessly connects the AI speaker to the app!\"})}),className:\"framer-1lax75s\",\"data-framer-name\":\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",fonts:[\"GF;Noto Sans-regular\"],name:\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13e2asn-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"yBB7kIslm\",isMixedBorderRadius:false,isRed:false,layoutId:\"yBB7kIslm\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/YJyiz7xARx0\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mc4s24\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16t6x05\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgghjn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nlp6sw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"rgb(2, 2, 2)\"},children:\"Role\"})}),className:\"framer-xz3067\",\"data-framer-name\":\"Welcome aboard!\",fonts:[\"FS;Urbanist-semibold\"],name:\"Welcome aboard!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\"},children:\"Sole Designer\"})}),className:\"framer-1p7tebb\",\"data-framer-name\":\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",fonts:[\"GF;Noto Sans-regular\"],name:\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7be6ah\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"rgb(2, 2, 2)\"},children:\"Impact\"})}),className:\"framer-rxl4y4\",\"data-framer-name\":\"Welcome aboard!\",fonts:[\"FS;Urbanist-semibold\"],name:\"Welcome aboard!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\"},children:\"Proposed to the Seoul Metropolitan Office\"})}),className:\"framer-10uxa1i\",\"data-framer-name\":\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",fonts:[\"GF;Noto Sans-regular\"],name:\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15x4mv1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xe8j7t\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eetpz9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2rsocv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"rgb(2, 2, 2)\"},children:\"Tools\"})}),className:\"framer-jq3ifd\",\"data-framer-name\":\"Welcome aboard!\",fonts:[\"FS;Urbanist-semibold\"],name:\"Welcome aboard!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\"},children:\"XD, Photoshop, After Effects, Illustrator\"})}),className:\"framer-1bk3w50\",\"data-framer-name\":\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",fonts:[\"GF;Noto Sans-regular\"],name:\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rbk0gg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"rgb(2, 2, 2)\"},children:\"Duration\"})}),className:\"framer-1yzcg0k\",\"data-framer-name\":\"Welcome aboard!\",fonts:[\"FS;Urbanist-semibold\"],name:\"Welcome aboard!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\"},children:\"April 2021 - May 2022\"})}),className:\"framer-12sei2s\",\"data-framer-name\":\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",fonts:[\"GF;Noto Sans-regular\"],name:\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a189uw\"})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1776),pixelHeight:1080,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/KgX52iPap4Wv3U1NlmF4UxEynBk.jpg\",srcSet:\"https://framerusercontent.com/images/KgX52iPap4Wv3U1NlmF4UxEynBk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KgX52iPap4Wv3U1NlmF4UxEynBk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgX52iPap4Wv3U1NlmF4UxEynBk.jpg 1400w\"},className:\"framer-zbz8ij\",id:elementId1,ref:ref3}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2424),pixelHeight:1900,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/CeVR0mQhZrA0IvJSvFlgaiNM.jpg\",srcSet:\"https://framerusercontent.com/images/CeVR0mQhZrA0IvJSvFlgaiNM.jpg?scale-down-to=1024 754w,https://framerusercontent.com/images/CeVR0mQhZrA0IvJSvFlgaiNM.jpg 1400w\"},className:\"framer-1ecexad\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3564),pixelHeight:1450,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/BJwrCzddSIHYFBfXtLzfFtFvCFw.jpg\",srcSet:\"https://framerusercontent.com/images/BJwrCzddSIHYFBfXtLzfFtFvCFw.jpg?scale-down-to=1024 988w,https://framerusercontent.com/images/BJwrCzddSIHYFBfXtLzfFtFvCFw.jpg 1400w\"},className:\"framer-1izoyrq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4434),pixelHeight:1660,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/SlkPHpcIwhnbmifDPayBNwAl2w.jpg\",srcSet:\"https://framerusercontent.com/images/SlkPHpcIwhnbmifDPayBNwAl2w.jpg?scale-down-to=1024 863w,https://framerusercontent.com/images/SlkPHpcIwhnbmifDPayBNwAl2w.jpg 1400w\"},className:\"framer-13swkt2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5432),pixelHeight:480,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/bLYGgeEwYP7X9dMXlo5eB3WAetU.jpg\",srcSet:\"https://framerusercontent.com/images/bLYGgeEwYP7X9dMXlo5eB3WAetU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bLYGgeEwYP7X9dMXlo5eB3WAetU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bLYGgeEwYP7X9dMXlo5eB3WAetU.jpg 1400w\"},className:\"framer-10cwd6c\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5721),pixelHeight:1200,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/s2YglpPp3chi9RBnzV1eUtfbKMQ.jpg\",srcSet:\"https://framerusercontent.com/images/s2YglpPp3chi9RBnzV1eUtfbKMQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s2YglpPp3chi9RBnzV1eUtfbKMQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s2YglpPp3chi9RBnzV1eUtfbKMQ.jpg 1400w\"},className:\"framer-30jfdt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6443),pixelHeight:750,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/3z8jeKQ57e1aZHIzLW9xlOapU.jpg\",srcSet:\"https://framerusercontent.com/images/3z8jeKQ57e1aZHIzLW9xlOapU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3z8jeKQ57e1aZHIzLW9xlOapU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3z8jeKQ57e1aZHIzLW9xlOapU.jpg 1400w\"},className:\"framer-xzhjyk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6893),pixelHeight:2100,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/NJu6bLSIakNATBXk3rOhvPUCNq0.jpg\",srcSet:\"https://framerusercontent.com/images/NJu6bLSIakNATBXk3rOhvPUCNq0.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/NJu6bLSIakNATBXk3rOhvPUCNq0.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/NJu6bLSIakNATBXk3rOhvPUCNq0.jpg 1400w\"},className:\"framer-qde689\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(8153),pixelHeight:1727,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/hxVnjg29ikb2Necvdl7kH64.jpg\",srcSet:\"https://framerusercontent.com/images/hxVnjg29ikb2Necvdl7kH64.jpg?scale-down-to=1024 830w,https://framerusercontent.com/images/hxVnjg29ikb2Necvdl7kH64.jpg 1400w\"},className:\"framer-g058yd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(9188),pixelHeight:750,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/66gzzk1gXnSklDjzcabbF3WKDHA.jpg\",srcSet:\"https://framerusercontent.com/images/66gzzk1gXnSklDjzcabbF3WKDHA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/66gzzk1gXnSklDjzcabbF3WKDHA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/66gzzk1gXnSklDjzcabbF3WKDHA.jpg 1400w\"},className:\"framer-199decs\",id:elementId2,ref:ref4}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(9640),pixelHeight:350,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/UdVDSgK0xYjUulCUjNCvuv8Bg.jpg\",srcSet:\"https://framerusercontent.com/images/UdVDSgK0xYjUulCUjNCvuv8Bg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UdVDSgK0xYjUulCUjNCvuv8Bg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UdVDSgK0xYjUulCUjNCvuv8Bg.jpg 1400w\"},className:\"framer-3oduo5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(9850),pixelHeight:950,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/0UfmQMjk7TOnSxQfCTz77m3bnRA.jpg\",srcSet:\"https://framerusercontent.com/images/0UfmQMjk7TOnSxQfCTz77m3bnRA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0UfmQMjk7TOnSxQfCTz77m3bnRA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0UfmQMjk7TOnSxQfCTz77m3bnRA.jpg 1400w\"},className:\"framer-a7bi8x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(10419),pixelHeight:1196,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/z8YnQcS8wK8P4vfxTEjrD8h2oKc.jpg\",srcSet:\"https://framerusercontent.com/images/z8YnQcS8wK8P4vfxTEjrD8h2oKc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z8YnQcS8wK8P4vfxTEjrD8h2oKc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z8YnQcS8wK8P4vfxTEjrD8h2oKc.jpg 1400w\"},className:\"framer-rwv9ub\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(11137),pixelHeight:1900,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/gj45e5vDcotpPy6NTrpN9Fe9m8.jpg\",srcSet:\"https://framerusercontent.com/images/gj45e5vDcotpPy6NTrpN9Fe9m8.jpg?scale-down-to=1024 754w,https://framerusercontent.com/images/gj45e5vDcotpPy6NTrpN9Fe9m8.jpg 1400w\"},className:\"framer-nh6ox3\",id:elementId3,ref:ref5}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rcn21m-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UcOPomYF9\",isMixedBorderRadius:false,layoutId:\"UcOPomYF9\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/wMZjTK16GjFThTarHxBvr39Cyg.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__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(12750),pixelHeight:1300,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/osDevv9MDmRSoDMOeO17HHXqpIE.jpg\",srcSet:\"https://framerusercontent.com/images/osDevv9MDmRSoDMOeO17HHXqpIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/osDevv9MDmRSoDMOeO17HHXqpIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/osDevv9MDmRSoDMOeO17HHXqpIE.jpg 1400w\"},className:\"framer-ivoujc\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1apu00g-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"E_AZ2ro9B\",isMixedBorderRadius:false,layoutId:\"E_AZ2ro9B\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ezP2u3iSlu8sxs4wSvUmENPSmMY.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__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(14094),pixelHeight:2e3,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/lCErU5DoO5iZvgQmHVdGBX1sNw.jpg\",srcSet:\"https://framerusercontent.com/images/lCErU5DoO5iZvgQmHVdGBX1sNw.jpg?scale-down-to=1024 716w,https://framerusercontent.com/images/lCErU5DoO5iZvgQmHVdGBX1sNw.jpg 1400w\"},className:\"framer-1ni0ttk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(15295),pixelHeight:1080,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/5OwatiMfsM2vNBTaZyBk9aOIpNQ.jpg\",srcSet:\"https://framerusercontent.com/images/5OwatiMfsM2vNBTaZyBk9aOIpNQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5OwatiMfsM2vNBTaZyBk9aOIpNQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5OwatiMfsM2vNBTaZyBk9aOIpNQ.jpg 1400w\"},className:\"framer-zx3kqk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(15943),pixelHeight:950,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/N6NKO1pAFpPtqHKb4ghfjGKUrU.jpg\",srcSet:\"https://framerusercontent.com/images/N6NKO1pAFpPtqHKb4ghfjGKUrU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N6NKO1pAFpPtqHKb4ghfjGKUrU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N6NKO1pAFpPtqHKb4ghfjGKUrU.jpg 1400w\"},className:\"framer-14kitl7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(16513),pixelHeight:274,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/q8WSEhqaTKj1lRRwPQZaWKi2og.jpg\",srcSet:\"https://framerusercontent.com/images/q8WSEhqaTKj1lRRwPQZaWKi2og.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q8WSEhqaTKj1lRRwPQZaWKi2og.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q8WSEhqaTKj1lRRwPQZaWKi2og.jpg 1400w\"},className:\"framer-2hm4mv\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewojdo-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"zOaNFXbIx\",isMixedBorderRadius:false,layoutId:\"zOaNFXbIx\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Wp54O5Y6TAOVVBjba90QTE0ZGAU.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-1gfadz2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpp0zo\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r55qo\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12u4lbn\",id:elementId4,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1njby58\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vzvxd0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RnV0dXJh\",\"--framer-font-family\":'\"Futura\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(235, 102, 34)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(2, 2, 2)\"},children:\"Introducing \"}),\"Healthcare 365\"]})}),className:\"framer-12fak4s\",\"data-framer-name\":\"Welcome aboard!\",fonts:[\"Futura\"],name:\"Welcome aboard!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\"},children:\"'365 Healthcare' is an app designed to streamline the workflow of visiting caregivers, making it easier to manage their patients.\"})}),className:\"framer-82nosw\",\"data-framer-name\":\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",fonts:[\"GF;Noto Sans-regular\"],name:\"I\u2019m Se Yeon (Mei), a product designer driven to create meaningful connections between people and technology, crafting colorful solutions that empower and inspire.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ocxn\"})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(17450),pixelHeight:1352,pixelWidth:2268,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/ZdM5UTgdz1NsKJzq57RKoFHmEGw.jpg\",srcSet:\"https://framerusercontent.com/images/ZdM5UTgdz1NsKJzq57RKoFHmEGw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZdM5UTgdz1NsKJzq57RKoFHmEGw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZdM5UTgdz1NsKJzq57RKoFHmEGw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZdM5UTgdz1NsKJzq57RKoFHmEGw.jpg 2268w\"},className:\"framer-1fn0e71\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(17951),pixelHeight:1080,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/4mvPwJV8UASr3hRGK4zLmwS8OY.jpg\",srcSet:\"https://framerusercontent.com/images/4mvPwJV8UASr3hRGK4zLmwS8OY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4mvPwJV8UASr3hRGK4zLmwS8OY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4mvPwJV8UASr3hRGK4zLmwS8OY.jpg 1400w\"},className:\"framer-1cv4yp6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(18600),pixelHeight:1450,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/XKNBN8w5dceWW8AYjhWOxKG8U.jpg\",srcSet:\"https://framerusercontent.com/images/XKNBN8w5dceWW8AYjhWOxKG8U.jpg?scale-down-to=1024 988w,https://framerusercontent.com/images/XKNBN8w5dceWW8AYjhWOxKG8U.jpg 1400w\"},className:\"framer-1wtvrwr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(19470),pixelHeight:840,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/hvZms8EDmsYgQIlFiui3UgExew.jpg\",srcSet:\"https://framerusercontent.com/images/hvZms8EDmsYgQIlFiui3UgExew.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hvZms8EDmsYgQIlFiui3UgExew.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hvZms8EDmsYgQIlFiui3UgExew.jpg 1400w\"},className:\"framer-m02vmq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(19975),pixelHeight:1250,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/YMzG3DGitsQIQk7M0WJUqEEWU.jpg\",srcSet:\"https://framerusercontent.com/images/YMzG3DGitsQIQk7M0WJUqEEWU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YMzG3DGitsQIQk7M0WJUqEEWU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YMzG3DGitsQIQk7M0WJUqEEWU.jpg 1400w\"},className:\"framer-1c9m0rj\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(20724),pixelHeight:1350,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/gGtPI1b7alOzgVjDnyCyFdpURII.jpg\",srcSet:\"https://framerusercontent.com/images/gGtPI1b7alOzgVjDnyCyFdpURII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gGtPI1b7alOzgVjDnyCyFdpURII.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gGtPI1b7alOzgVjDnyCyFdpURII.jpg 1400w\"},className:\"framer-c7w7qv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(21534),pixelHeight:1250,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/IHD9tz91GhWqpEkCbk3RGLXIfTg.jpg\",srcSet:\"https://framerusercontent.com/images/IHD9tz91GhWqpEkCbk3RGLXIfTg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IHD9tz91GhWqpEkCbk3RGLXIfTg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IHD9tz91GhWqpEkCbk3RGLXIfTg.jpg 1400w\"},className:\"framer-1dqwcw9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(22286),pixelHeight:1300,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/pG5KR7HHhViCLwV5j56fMLKEgic.jpg\",srcSet:\"https://framerusercontent.com/images/pG5KR7HHhViCLwV5j56fMLKEgic.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pG5KR7HHhViCLwV5j56fMLKEgic.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pG5KR7HHhViCLwV5j56fMLKEgic.jpg 1400w\"},className:\"framer-j53f9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(23065),pixelHeight:3250,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/4I5LwCbPRzxJBrLRFoWmUJUytQ.jpg\",srcSet:\"https://framerusercontent.com/images/4I5LwCbPRzxJBrLRFoWmUJUytQ.jpg?scale-down-to=2048 882w,https://framerusercontent.com/images/4I5LwCbPRzxJBrLRFoWmUJUytQ.jpg 1400w\"},className:\"framer-rbwon5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(25010),pixelHeight:1550,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/IfsjZIkkiZAeMiVbwS4fK19Wrc.jpg\",srcSet:\"https://framerusercontent.com/images/IfsjZIkkiZAeMiVbwS4fK19Wrc.jpg?scale-down-to=1024 924w,https://framerusercontent.com/images/IfsjZIkkiZAeMiVbwS4fK19Wrc.jpg 1400w\"},className:\"framer-1xa2sjf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(25940),pixelHeight:1420,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/6QeD5ABZmNHABRSWHECXw6sehT4.jpg\",srcSet:\"https://framerusercontent.com/images/6QeD5ABZmNHABRSWHECXw6sehT4.jpg?scale-down-to=1024 1009w,https://framerusercontent.com/images/6QeD5ABZmNHABRSWHECXw6sehT4.jpg 1400w\"},className:\"framer-dceiwg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(26793),pixelHeight:1470,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/t2DVwRQr5ixdt0BrZATcHrIh60.jpg\",srcSet:\"https://framerusercontent.com/images/t2DVwRQr5ixdt0BrZATcHrIh60.jpg?scale-down-to=1024 975w,https://framerusercontent.com/images/t2DVwRQr5ixdt0BrZATcHrIh60.jpg 1400w\"},className:\"framer-1j2ivrq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(27672),pixelHeight:1550,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/dGslIAveZyzeL1SId92jD5CEtJA.jpg\",srcSet:\"https://framerusercontent.com/images/dGslIAveZyzeL1SId92jD5CEtJA.jpg?scale-down-to=1024 924w,https://framerusercontent.com/images/dGslIAveZyzeL1SId92jD5CEtJA.jpg 1400w\"},className:\"framer-1rhdmit\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(28600),pixelHeight:880,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/gudLo1ofTPGqSv5Wt9CJKRrHUs8.jpg\",srcSet:\"https://framerusercontent.com/images/gudLo1ofTPGqSv5Wt9CJKRrHUs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gudLo1ofTPGqSv5Wt9CJKRrHUs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gudLo1ofTPGqSv5Wt9CJKRrHUs8.jpg 1400w\"},className:\"framer-3pfexq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(29130),pixelHeight:1377,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/C09FL4pSqMQyNOQq68NyQRhYmM.jpg\",srcSet:\"https://framerusercontent.com/images/C09FL4pSqMQyNOQq68NyQRhYmM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C09FL4pSqMQyNOQq68NyQRhYmM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C09FL4pSqMQyNOQq68NyQRhYmM.jpg 1600w\"},className:\"framer-1hectmc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(29856),pixelHeight:750,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/2ynXtOAWHgB5xKWveQB4xUicCA.jpg\",srcSet:\"https://framerusercontent.com/images/2ynXtOAWHgB5xKWveQB4xUicCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2ynXtOAWHgB5xKWveQB4xUicCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ynXtOAWHgB5xKWveQB4xUicCA.jpg 1400w\"},className:\"framer-17rjd73\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(30306),pixelHeight:1600,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/CaQ3A1jaVVOeDRQ7JDbbZH9ZAQ.jpg\",srcSet:\"https://framerusercontent.com/images/CaQ3A1jaVVOeDRQ7JDbbZH9ZAQ.jpg?scale-down-to=1024 896w,https://framerusercontent.com/images/CaQ3A1jaVVOeDRQ7JDbbZH9ZAQ.jpg 1400w\"},className:\"framer-18rlfl1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(31272),pixelHeight:740,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/K4iZvxdtDAD5UgViAOxFNdlUM.jpg\",srcSet:\"https://framerusercontent.com/images/K4iZvxdtDAD5UgViAOxFNdlUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K4iZvxdtDAD5UgViAOxFNdlUM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K4iZvxdtDAD5UgViAOxFNdlUM.jpg 1400w\"},className:\"framer-1nkfxrr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(31716),pixelHeight:1100,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/9ZithS8BGy5HJwbBL04oOQ9eV4.jpg\",srcSet:\"https://framerusercontent.com/images/9ZithS8BGy5HJwbBL04oOQ9eV4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9ZithS8BGy5HJwbBL04oOQ9eV4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9ZithS8BGy5HJwbBL04oOQ9eV4.jpg 1400w\"},className:\"framer-1gujsq2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(32375),pixelHeight:1370,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/uL2MDuw9RlDtgprPDSNI3puo4.jpg\",srcSet:\"https://framerusercontent.com/images/uL2MDuw9RlDtgprPDSNI3puo4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uL2MDuw9RlDtgprPDSNI3puo4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uL2MDuw9RlDtgprPDSNI3puo4.jpg 1400w\"},className:\"framer-vlkrat\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(33193),pixelHeight:900,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/skCwhgWBIjNPktxbBYpaaZJPJk.jpg\",srcSet:\"https://framerusercontent.com/images/skCwhgWBIjNPktxbBYpaaZJPJk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/skCwhgWBIjNPktxbBYpaaZJPJk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/skCwhgWBIjNPktxbBYpaaZJPJk.jpg 1400w\"},className:\"framer-1p0io9n\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-hGK5T { background: rgb(250, 250, 250); }`,\".framer-hGK5T.framer-1751wrh, .framer-hGK5T .framer-1751wrh { display: block; }\",\".framer-hGK5T.framer-1uo5d21 { background-color: #fafafa; height: 33786px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-hGK5T .framer-1wpj20g { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; left: 0px; overflow: hidden; padding: 28px 16px 28px 16px; position: fixed; top: 0px; width: 281px; z-index: 1; }\",\".framer-hGK5T .framer-1xm0bdp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1kycbfk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 319px; overflow: hidden; padding: 0px; position: absolute; top: 49px; width: 70%; }\",\".framer-hGK5T .framer-er4008 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 1727px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-kd87s8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1cvlw5z-container { flex: none; height: 405px; position: relative; width: 1200px; }\",\".framer-hGK5T .framer-n05pv, .framer-hGK5T .framer-121467b, .framer-hGK5T .framer-1mc4s24, .framer-hGK5T .framer-15x4mv1, .framer-hGK5T .framer-12u4lbn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1fghyre, .framer-hGK5T .framer-1c6usjx, .framer-hGK5T .framer-16t6x05, .framer-hGK5T .framer-xe8j7t, .framer-hGK5T .framer-a189uw, .framer-hGK5T .framer-1njby58 { flex: none; height: 34px; overflow: hidden; position: relative; width: 33px; }\",\".framer-hGK5T .framer-1t09cjj, .framer-hGK5T .framer-3eciyv, .framer-hGK5T .framer-vzvxd0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hGK5T .framer-1jo92h2, .framer-hGK5T .framer-ge6scn, .framer-hGK5T .framer-xz3067, .framer-hGK5T .framer-rxl4y4, .framer-hGK5T .framer-jq3ifd, .framer-hGK5T .framer-1yzcg0k, .framer-hGK5T .framer-12fak4s { --framer-paragraph-spacing: 1px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hGK5T .framer-1ol3113, .framer-hGK5T .framer-1lax75s, .framer-hGK5T .framer-1p7tebb, .framer-hGK5T .framer-10uxa1i, .framer-hGK5T .framer-1bk3w50, .framer-hGK5T .framer-12sei2s, .framer-hGK5T .framer-82nosw { --framer-paragraph-spacing: 1px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hGK5T .framer-51qgnq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-jbtp5o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1owe08v-container, .framer-hGK5T .framer-1sbua9m-container { flex: 1 0 0px; height: 358px; position: relative; width: 1px; }\",\".framer-hGK5T .framer-13e2asn-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-cgghjn, .framer-hGK5T .framer-1eetpz9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hGK5T .framer-1nlp6sw, .framer-hGK5T .framer-7be6ah, .framer-hGK5T .framer-2rsocv, .framer-hGK5T .framer-1rbk0gg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hGK5T .framer-zbz8ij, .framer-hGK5T .framer-zx3kqk { flex: none; height: 648px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1ecexad { flex: none; height: 1140px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1izoyrq, .framer-hGK5T .framer-1wtvrwr { flex: none; height: 870px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-13swkt2 { flex: none; height: 998px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-10cwd6c { flex: none; height: 289px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-30jfdt { flex: none; height: 722px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-xzhjyk, .framer-hGK5T .framer-17rjd73 { flex: none; height: 450px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-qde689 { flex: none; height: 1260px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-g058yd { flex: none; height: 1035px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-199decs { flex: none; height: 452px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-3oduo5 { flex: none; height: 210px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-a7bi8x { flex: none; height: 569px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-rwv9ub { flex: none; height: 718px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-nh6ox3 { flex: none; height: 1137px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1rcn21m-container { flex: none; height: 476px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-ivoujc { flex: none; height: 781px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1apu00g-container { flex: none; height: 563px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1ni0ttk { flex: none; height: 1201px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-14kitl7 { flex: none; height: 570px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-2hm4mv { flex: none; height: 165px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-ewojdo-container { flex: none; height: 472px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1gfadz2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-wpp0zo { flex: none; height: 20px; overflow: hidden; position: relative; width: 33px; }\",\".framer-hGK5T .framer-1r55qo, .framer-hGK5T .framer-8ocxn { flex: none; height: 32px; overflow: hidden; position: relative; width: 34px; }\",\".framer-hGK5T .framer-1fn0e71 { flex: none; height: 501px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1cv4yp6 { flex: none; height: 649px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-m02vmq { flex: none; height: 505px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1c9m0rj { flex: none; height: 749px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-c7w7qv { flex: none; height: 810px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1dqwcw9 { flex: none; height: 752px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-j53f9 { flex: none; height: 779px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-rbwon5 { flex: none; height: 1945px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1xa2sjf { flex: none; height: 930px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-dceiwg { flex: none; height: 853px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1j2ivrq { flex: none; height: 879px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1rhdmit { flex: none; height: 928px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-3pfexq { flex: none; height: 530px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1hectmc { flex: none; height: 726px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-18rlfl1 { flex: none; height: 966px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1nkfxrr { flex: none; height: 444px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1gujsq2 { flex: none; height: 659px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-vlkrat { flex: none; height: 818px; position: relative; width: 100%; }\",\".framer-hGK5T .framer-1p0io9n { flex: none; height: 541px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hGK5T .framer-1wpj20g, .framer-hGK5T .framer-1kycbfk, .framer-hGK5T .framer-er4008, .framer-hGK5T .framer-kd87s8, .framer-hGK5T .framer-n05pv, .framer-hGK5T .framer-1t09cjj, .framer-hGK5T .framer-51qgnq, .framer-hGK5T .framer-jbtp5o, .framer-hGK5T .framer-121467b, .framer-hGK5T .framer-3eciyv, .framer-hGK5T .framer-1mc4s24, .framer-hGK5T .framer-cgghjn, .framer-hGK5T .framer-1nlp6sw, .framer-hGK5T .framer-7be6ah, .framer-hGK5T .framer-15x4mv1, .framer-hGK5T .framer-1eetpz9, .framer-hGK5T .framer-2rsocv, .framer-hGK5T .framer-1rbk0gg, .framer-hGK5T .framer-1gfadz2, .framer-hGK5T .framer-12u4lbn, .framer-hGK5T .framer-vzvxd0 { gap: 0px; } .framer-hGK5T .framer-1wpj20g > *, .framer-hGK5T .framer-1kycbfk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hGK5T .framer-1wpj20g > :first-child, .framer-hGK5T .framer-1kycbfk > :first-child, .framer-hGK5T .framer-er4008 > :first-child, .framer-hGK5T .framer-kd87s8 > :first-child, .framer-hGK5T .framer-1t09cjj > :first-child, .framer-hGK5T .framer-51qgnq > :first-child, .framer-hGK5T .framer-3eciyv > :first-child, .framer-hGK5T .framer-1nlp6sw > :first-child, .framer-hGK5T .framer-7be6ah > :first-child, .framer-hGK5T .framer-2rsocv > :first-child, .framer-hGK5T .framer-1rbk0gg > :first-child, .framer-hGK5T .framer-1gfadz2 > :first-child, .framer-hGK5T .framer-vzvxd0 > :first-child { margin-top: 0px; } .framer-hGK5T .framer-1wpj20g > :last-child, .framer-hGK5T .framer-1kycbfk > :last-child, .framer-hGK5T .framer-er4008 > :last-child, .framer-hGK5T .framer-kd87s8 > :last-child, .framer-hGK5T .framer-1t09cjj > :last-child, .framer-hGK5T .framer-51qgnq > :last-child, .framer-hGK5T .framer-3eciyv > :last-child, .framer-hGK5T .framer-1nlp6sw > :last-child, .framer-hGK5T .framer-7be6ah > :last-child, .framer-hGK5T .framer-2rsocv > :last-child, .framer-hGK5T .framer-1rbk0gg > :last-child, .framer-hGK5T .framer-1gfadz2 > :last-child, .framer-hGK5T .framer-vzvxd0 > :last-child { margin-bottom: 0px; } .framer-hGK5T .framer-er4008 > *, .framer-hGK5T .framer-kd87s8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hGK5T .framer-n05pv > *, .framer-hGK5T .framer-121467b > *, .framer-hGK5T .framer-1mc4s24 > *, .framer-hGK5T .framer-15x4mv1 > *, .framer-hGK5T .framer-12u4lbn > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-hGK5T .framer-n05pv > :first-child, .framer-hGK5T .framer-jbtp5o > :first-child, .framer-hGK5T .framer-121467b > :first-child, .framer-hGK5T .framer-1mc4s24 > :first-child, .framer-hGK5T .framer-cgghjn > :first-child, .framer-hGK5T .framer-15x4mv1 > :first-child, .framer-hGK5T .framer-1eetpz9 > :first-child, .framer-hGK5T .framer-12u4lbn > :first-child { margin-left: 0px; } .framer-hGK5T .framer-n05pv > :last-child, .framer-hGK5T .framer-jbtp5o > :last-child, .framer-hGK5T .framer-121467b > :last-child, .framer-hGK5T .framer-1mc4s24 > :last-child, .framer-hGK5T .framer-cgghjn > :last-child, .framer-hGK5T .framer-15x4mv1 > :last-child, .framer-hGK5T .framer-1eetpz9 > :last-child, .framer-hGK5T .framer-12u4lbn > :last-child { margin-right: 0px; } .framer-hGK5T .framer-1t09cjj > *, .framer-hGK5T .framer-3eciyv > *, .framer-hGK5T .framer-1gfadz2 > *, .framer-hGK5T .framer-vzvxd0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hGK5T .framer-51qgnq > *, .framer-hGK5T .framer-1nlp6sw > *, .framer-hGK5T .framer-7be6ah > *, .framer-hGK5T .framer-2rsocv > *, .framer-hGK5T .framer-1rbk0gg > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-hGK5T .framer-jbtp5o > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hGK5T .framer-cgghjn > *, .framer-hGK5T .framer-1eetpz9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33786\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 FrameryjiNgBF7g=withCSS(Component,css,\"framer-hGK5T\");export default FrameryjiNgBF7g;FrameryjiNgBF7g.displayName=\"Page\";FrameryjiNgBF7g.defaultProps={height:33786,width:1200};addFonts(FrameryjiNgBF7g,[{explicitInter:true,fonts:[{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v38/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NWFQAWEPGN3FR4FYMX6PY5M2HVOQSZWU/IIWY67X24KIURE4HBNGWYFMHSEMIVC2G/QAJFELFQRETRXRXDQOALZZUXNPM2U5VX.woff2\",weight:\"600\"}]},...SidebarFonts,...VideoFonts,...VoiceCareFonts,...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryjiNgBF7g\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"33786\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"__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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerbyavK6YhO", "withCSS", "byavK6YhO_default", "addPropertyControls", "ControlType", "addFonts", "SidebarFonts", "getFonts", "H81lbNXt4_default", "VideoFonts", "Video", "VoiceCareFonts", "byavK6YhO_default", "YouTubeFonts", "Youtube", "breakpoints", "serializationHash", "variantClassNames", "metadata", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "H81lbNXt4_default", "Video", "RichText2", "x", "byavK6YhO_default", "Youtube", "Image2", "getLoadingLazyAtYPosition", "css", "FrameryjiNgBF7g", "withCSS", "yjiNgBF7g_default", "addFonts", "SidebarFonts", "VideoFonts", "VoiceCareFonts", "YouTubeFonts", "__FramerMetadata__"]
}
