{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/dITsmZJjVfwP5Wu8ADuW/IbMsx6l8yS1qkcPWSYcV/wESbelTK_.js", "ssg:https://framerusercontent.com/modules/Q7CYcDlCKhwIm0aFbp4y/9qJqNmkd2MjEzPEGAdNj/CewXwQnfY.js", "ssg:https://framerusercontent.com/modules/uRgYaA3NaFrTHh2ewAPE/Mm6fLx19fkfgPiHOPLnL/Vpl3JSFdx.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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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);// 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=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)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\",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\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (99ae5b3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"MOyCCi3lE\"];const serializationHash=\"framer-nnEyY\";const variantClassNames={MOyCCi3lE:\"framer-v-12r50h2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,mouseEnter,occu,overlayTap,preview,quote,tap,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,aLoeIpSuy:(_ref=title!==null&&title!==void 0?title:props.aLoeIpSuy)!==null&&_ref!==void 0?_ref:\"Jiyoon Cha\",BpSiM2NCU:(_ref1=preview!==null&&preview!==void 0?preview:props.BpSiM2NCU)!==null&&_ref1!==void 0?_ref1:\"https://framerusercontent.com/assets/Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4\",d2QuR_VIK:mouseEnter!==null&&mouseEnter!==void 0?mouseEnter:props.d2QuR_VIK,DZCrc1k2m:tap!==null&&tap!==void 0?tap:props.DZCrc1k2m,Edz3ZRmHd:(_ref2=image!==null&&image!==void 0?image:props.Edz3ZRmHd)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp 2000w\"},iDAu7X4QV:(_ref3=occu!==null&&occu!==void 0?occu:props.iDAu7X4QV)!==null&&_ref3!==void 0?_ref3:\"Graphic Designer + Art Director\",Pk30RASEZ:overlayTap!==null&&overlayTap!==void 0?overlayTap:props.Pk30RASEZ,Ugy22DNeV:(_ref4=quote!==null&&quote!==void 0?quote:props.Ugy22DNeV)!==null&&_ref4!==void 0?_ref4:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'};};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,aLoeIpSuy,iDAu7X4QV,Ugy22DNeV,Edz3ZRmHd,BpSiM2NCU,d2QuR_VIK,Pk30RASEZ,DZCrc1k2m,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MOyCCi3lE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vug3g7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Pk30RASEZ){const res=await Pk30RASEZ(...args);if(res===false)return false;}if(DZCrc1k2m){const res=await DZCrc1k2m(...args);if(res===false)return false;}});const onMouseEnter8joars=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(d2QuR_VIK){const res=await d2QuR_VIK(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12r50h2\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MOyCCi3lE\",onMouseEnter:onMouseEnter8joars,onTap:onTap1vug3g7,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-avath8\",\"data-framer-name\":\"IDLE\",layoutDependency:layoutDependency,layoutId:\"yVwbMUwbx\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:0}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tz455u\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"JgtrN4Esb\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:375,intrinsicWidth:600,pixelHeight:750,pixelWidth:1200,sizes:\"730px\",...toResponsiveImage(Edz3ZRmHd),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-9rx6ll\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"l8d5slWWm\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qvdpr2\",\"data-framer-name\":\"Video Wrap\",layoutDependency:layoutDependency,layoutId:\"y5DKnSlRo\",style:{opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1skjcvj-container\",layoutDependency:layoutDependency,layoutId:\"YmIfuJKzg-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"YmIfuJKzg\",isMixedBorderRadius:false,layoutId:\"YmIfuJKzg\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:BpSiM2NCU,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(motion.div,{className:\"framer-1ggktq2\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"YzDIoCt0i\",style:{backgroundColor:\"rgba(0, 0, 0, 0.15)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1onyj74\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"r8mLZP87F\",style:{background:\"linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.3) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tsscij\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"geItObN6z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-27a7uu\",\"data-framer-name\":\"Name + Title\",layoutDependency:layoutDependency,layoutId:\"UooY2VJUa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Jiyoon Cha\"})}),className:\"framer-xl0i2u\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"cKOaN9Yy2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aLoeIpSuy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Graphic Designer + Art Director\"})}),className:\"framer-1mgxyzx\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"p_bcgRcY1\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:iDAu7X4QV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l87qyc\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"yWyyzuQsx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),className:\"framer-aa2vaj\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"ERkpfE43z\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ugy22DNeV,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nnEyY.framer-1mld5v7, .framer-nnEyY .framer-1mld5v7 { display: block; }\",\".framer-nnEyY.framer-12r50h2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-end; overflow: hidden; padding: 36px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nnEyY .framer-avath8 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-nnEyY .framer-tz455u, .framer-nnEyY .framer-qvdpr2, .framer-nnEyY .framer-1ggktq2, .framer-nnEyY .framer-1onyj74 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-nnEyY .framer-9rx6ll { flex: none; height: 788px; left: calc(50.00000000000002% - 730px / 2); overflow: visible; position: absolute; top: calc(50.065359477124204% - 788px / 2); width: 730px; }\",\".framer-nnEyY .framer-1skjcvj-container { flex: none; height: 839px; left: calc(50.00000000000002% - 666px / 2); position: absolute; top: calc(49.93464052287584% - 839px / 2); width: 666px; }\",\".framer-nnEyY .framer-tsscij { align-content: flex-start; align-items: flex-start; bottom: -267px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 360px; justify-content: flex-start; left: 36px; overflow: hidden; padding: 0px; position: absolute; width: 350px; z-index: 1; }\",\".framer-nnEyY .framer-27a7uu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nnEyY .framer-xl0i2u, .framer-nnEyY .framer-aa2vaj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-nnEyY .framer-1mgxyzx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 154px; word-break: break-word; word-wrap: break-word; }\",\".framer-nnEyY .framer-1l87qyc { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nnEyY.framer-12r50h2, .framer-nnEyY .framer-tsscij, .framer-nnEyY .framer-27a7uu, .framer-nnEyY .framer-1l87qyc { gap: 0px; } .framer-nnEyY.framer-12r50h2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nnEyY.framer-12r50h2 > :first-child, .framer-nnEyY .framer-tsscij > :first-child, .framer-nnEyY .framer-27a7uu > :first-child, .framer-nnEyY .framer-1l87qyc > :first-child { margin-top: 0px; } .framer-nnEyY.framer-12r50h2 > :last-child, .framer-nnEyY .framer-tsscij > :last-child, .framer-nnEyY .framer-27a7uu > :last-child, .framer-nnEyY .framer-1l87qyc > :last-child { margin-bottom: 0px; } .framer-nnEyY .framer-tsscij > *, .framer-nnEyY .framer-1l87qyc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-nnEyY .framer-27a7uu > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aLoeIpSuy\":\"title\",\"iDAu7X4QV\":\"occu\",\"Ugy22DNeV\":\"quote\",\"Edz3ZRmHd\":\"image\",\"BpSiM2NCU\":\"preview\",\"d2QuR_VIK\":\"mouseEnter\",\"Pk30RASEZ\":\"overlayTap\",\"DZCrc1k2m\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwESbelTK_=withCSS(Component,css,\"framer-nnEyY\");export default FramerwESbelTK_;FramerwESbelTK_.displayName=\"Testimonial Card Mob Base\";FramerwESbelTK_.defaultProps={height:400,width:360};addPropertyControls(FramerwESbelTK_,{aLoeIpSuy:{defaultValue:\"Jiyoon Cha\",displayTextArea:false,title:\"Title\",type:ControlType.String},iDAu7X4QV:{defaultValue:\"Graphic Designer + Art Director\",displayTextArea:false,title:\"Occu\",type:ControlType.String},Ugy22DNeV:{defaultValue:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',displayTextArea:false,title:\"Quote\",type:ControlType.String},Edz3ZRmHd:{__defaultAssetReference:\"data:framer/asset-reference,zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?originalFilename=image-1.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},BpSiM2NCU:(Video1Controls===null||Video1Controls===void 0?void 0:Video1Controls[\"srcFile\"])&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4?originalFilename=preview-1.mp4\",description:undefined,hidden:undefined,title:\"Preview\"},d2QuR_VIK:{title:\"Mouse Enter\",type:ControlType.EventHandler},Pk30RASEZ:{title:\"Overlay Tap\",type:ControlType.EventHandler},DZCrc1k2m:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerwESbelTK_,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwESbelTK_\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"360\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"aLoeIpSuy\\\":\\\"title\\\",\\\"iDAu7X4QV\\\":\\\"occu\\\",\\\"Ugy22DNeV\\\":\\\"quote\\\",\\\"Edz3ZRmHd\\\":\\\"image\\\",\\\"BpSiM2NCU\\\":\\\"preview\\\",\\\"d2QuR_VIK\\\":\\\"mouseEnter\\\",\\\"Pk30RASEZ\\\":\\\"overlayTap\\\",\\\"DZCrc1k2m\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wESbelTK_.map", "// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"qr9xBUeTK\",\"gVOjVmRtW\",\"cGIDkyYar\",\"D0jE5IOAq\"];const serializationHash=\"framer-9FVF0\";const variantClassNames={cGIDkyYar:\"framer-v-1s2viuo\",D0jE5IOAq:\"framer-v-17wv9qj\",gVOjVmRtW:\"framer-v-iontp0\",qr9xBUeTK:\"framer-v-1ko4nk3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"qr9xBUeTK\",Hover:\"gVOjVmRtW\",Idle:\"cGIDkyYar\",Mobile:\"D0jE5IOAq\"};const getProps=({height,id,image,mouseEnter,occu,overlayTap,preview,quote,tap,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,aLoeIpSuy:(_ref=title!==null&&title!==void 0?title:props.aLoeIpSuy)!==null&&_ref!==void 0?_ref:\"Jiyoon Cha\",BpSiM2NCU:(_ref1=preview!==null&&preview!==void 0?preview:props.BpSiM2NCU)!==null&&_ref1!==void 0?_ref1:\"https://framerusercontent.com/assets/Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4\",d2QuR_VIK:mouseEnter!==null&&mouseEnter!==void 0?mouseEnter:props.d2QuR_VIK,DZCrc1k2m:tap!==null&&tap!==void 0?tap:props.DZCrc1k2m,Edz3ZRmHd:(_ref2=image!==null&&image!==void 0?image:props.Edz3ZRmHd)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp 2000w\"},iDAu7X4QV:(_ref3=occu!==null&&occu!==void 0?occu:props.iDAu7X4QV)!==null&&_ref3!==void 0?_ref3:\"Graphic Designer + Art Director\",Pk30RASEZ:overlayTap!==null&&overlayTap!==void 0?overlayTap:props.Pk30RASEZ,Ugy22DNeV:(_ref4=quote!==null&&quote!==void 0?quote:props.Ugy22DNeV)!==null&&_ref4!==void 0?_ref4:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"qr9xBUeTK\"};};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,aLoeIpSuy,iDAu7X4QV,Ugy22DNeV,Edz3ZRmHd,BpSiM2NCU,d2QuR_VIK,Pk30RASEZ,DZCrc1k2m,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qr9xBUeTK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vug3g7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Pk30RASEZ){const res=await Pk30RASEZ(...args);if(res===false)return false;}if(DZCrc1k2m){const res=await DZCrc1k2m(...args);if(res===false)return false;}});const onMouseEnter8joars=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(d2QuR_VIK){const res=await d2QuR_VIK(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ko4nk3\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qr9xBUeTK\",onMouseEnter:onMouseEnter8joars,onTap:onTap1vug3g7,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({cGIDkyYar:{\"data-framer-name\":\"Idle\"},D0jE5IOAq:{\"data-framer-name\":\"Mobile\"},gVOjVmRtW:{\"data-framer-name\":\"Hover\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13rk3ee\",\"data-framer-name\":\"IDLE\",layoutDependency:layoutDependency,layoutId:\"U7_nIceGb\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:0},variants:{cGIDkyYar:{opacity:.5}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g1sl7p\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"vt5QUUHeA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,pixelHeight:750,pixelWidth:1200,sizes:\"730px\",...toResponsiveImage(Edz3ZRmHd)},className:\"framer-1y8rwjm\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"Ck_WjfQrF\",...addPropertyOverrides({D0jE5IOAq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,pixelHeight:750,pixelWidth:1200,sizes:\"410px\",...toResponsiveImage(Edz3ZRmHd)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jdsq4z\",\"data-framer-name\":\"Video Wrap\",layoutDependency:layoutDependency,layoutId:\"RbVfgOFfo\",style:{opacity:0},variants:{gVOjVmRtW:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dpci1n-container\",layoutDependency:layoutDependency,layoutId:\"KVZV2qiDM-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"KVZV2qiDM\",isMixedBorderRadius:false,layoutId:\"KVZV2qiDM\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:BpSiM2NCU,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%\",...addPropertyOverrides({gVOjVmRtW:{playing:true}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ps2uqp\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"srF0VoggR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.15)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s1xx4\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"LCxABbG_Q\",style:{background:\"linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.3) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15nhz78\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"BicGWZyqV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1azmbar\",\"data-framer-name\":\"Name + Title\",layoutDependency:layoutDependency,layoutId:\"raS5X7Nq4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7VGFua2VyLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Tanker\", \"Tanker Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Jiyoon Cha\"})}),className:\"framer-1aqhlj5\",fonts:[\"FS;Tanker-regular\"],layoutDependency:layoutDependency,layoutId:\"jmnJKX_nJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aLoeIpSuy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3VwcmVtZS1ib2xk\",\"--framer-font-family\":'\"Supreme\", \"Supreme Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Graphic Designer + Art Director\"})}),className:\"framer-1av3lz5\",fonts:[\"FS;Supreme-bold\"],layoutDependency:layoutDependency,layoutId:\"DC_MbJ6vU\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:iDAu7X4QV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-naefp2\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"cnaR6QIxQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),className:\"framer-1vyhbwz\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"g8Jif3xNY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ugy22DNeV,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gVOjVmRtW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3VwcmVtZS1yZWd1bGFy\",\"--framer-font-family\":'\"Supreme\", \"Supreme Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),fonts:[\"FS;Supreme-regular\"]}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9FVF0.framer-8mcdsr, .framer-9FVF0 .framer-8mcdsr { display: block; }\",\".framer-9FVF0.framer-1ko4nk3 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-end; overflow: hidden; padding: 36px; position: relative; width: 472px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9FVF0 .framer-13rk3ee { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-9FVF0 .framer-1g1sl7p, .framer-9FVF0 .framer-jdsq4z, .framer-9FVF0 .framer-ps2uqp, .framer-9FVF0 .framer-1s1xx4 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-9FVF0 .framer-1y8rwjm { flex: none; height: 788px; left: calc(50.00000000000002% - 730px / 2); overflow: visible; position: absolute; top: calc(50.065359477124204% - 788px / 2); width: 730px; }\",\".framer-9FVF0 .framer-1dpci1n-container { flex: none; height: 839px; left: calc(50.00000000000002% - 666px / 2); position: absolute; top: calc(49.93464052287584% - 839px / 2); width: 666px; }\",\".framer-9FVF0 .framer-15nhz78 { align-content: flex-start; align-items: flex-start; bottom: -267px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 360px; justify-content: flex-start; left: 36px; overflow: hidden; padding: 0px; position: absolute; width: 350px; z-index: 1; }\",\".framer-9FVF0 .framer-1azmbar { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9FVF0 .framer-1aqhlj5, .framer-9FVF0 .framer-1vyhbwz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9FVF0 .framer-1av3lz5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 154px; word-break: break-word; word-wrap: break-word; }\",\".framer-9FVF0 .framer-naefp2 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9FVF0.framer-1ko4nk3, .framer-9FVF0 .framer-15nhz78, .framer-9FVF0 .framer-1azmbar, .framer-9FVF0 .framer-naefp2 { gap: 0px; } .framer-9FVF0.framer-1ko4nk3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9FVF0.framer-1ko4nk3 > :first-child, .framer-9FVF0 .framer-15nhz78 > :first-child, .framer-9FVF0 .framer-1azmbar > :first-child, .framer-9FVF0 .framer-naefp2 > :first-child { margin-top: 0px; } .framer-9FVF0.framer-1ko4nk3 > :last-child, .framer-9FVF0 .framer-15nhz78 > :last-child, .framer-9FVF0 .framer-1azmbar > :last-child, .framer-9FVF0 .framer-naefp2 > :last-child { margin-bottom: 0px; } .framer-9FVF0 .framer-15nhz78 > *, .framer-9FVF0 .framer-naefp2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9FVF0 .framer-1azmbar > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-9FVF0.framer-v-iontp0.framer-1ko4nk3, .framer-9FVF0.framer-v-1s2viuo.framer-1ko4nk3 { aspect-ratio: 0.7869281045751634 / 1; height: var(--framer-aspect-ratio-supported, 600px); }\",\".framer-9FVF0.framer-v-iontp0 .framer-15nhz78 { bottom: unset; height: min-content; left: unset; position: relative; }\",\".framer-9FVF0.framer-v-iontp0 .framer-naefp2 { bottom: unset; left: unset; position: relative; right: unset; width: 100%; }\",\".framer-9FVF0.framer-v-17wv9qj.framer-1ko4nk3 { aspect-ratio: 0.7869281045751634 / 1; height: var(--framer-aspect-ratio-supported, 457px); padding: 20px; width: 360px; }\",\".framer-9FVF0.framer-v-17wv9qj .framer-1y8rwjm { height: 443px; left: calc(50.00000000000002% - 410px / 2); top: calc(50.00000000000002% - 443px / 2); width: 410px; }\",\".framer-9FVF0.framer-v-17wv9qj .framer-15nhz78 { bottom: -277px; left: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 472\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gVOjVmRtW\":{\"layout\":[\"fixed\",\"fixed\"]},\"cGIDkyYar\":{\"layout\":[\"fixed\",\"fixed\"]},\"D0jE5IOAq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aLoeIpSuy\":\"title\",\"iDAu7X4QV\":\"occu\",\"Ugy22DNeV\":\"quote\",\"Edz3ZRmHd\":\"image\",\"BpSiM2NCU\":\"preview\",\"d2QuR_VIK\":\"mouseEnter\",\"Pk30RASEZ\":\"overlayTap\",\"DZCrc1k2m\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCewXwQnfY=withCSS(Component,css,\"framer-9FVF0\");export default FramerCewXwQnfY;FramerCewXwQnfY.displayName=\"Testimonial Card Base\";FramerCewXwQnfY.defaultProps={height:600,width:472};addPropertyControls(FramerCewXwQnfY,{variant:{options:[\"qr9xBUeTK\",\"gVOjVmRtW\",\"cGIDkyYar\",\"D0jE5IOAq\"],optionTitles:[\"Default\",\"Hover\",\"Idle\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},aLoeIpSuy:{defaultValue:\"Jiyoon Cha\",displayTextArea:false,title:\"Title\",type:ControlType.String},iDAu7X4QV:{defaultValue:\"Graphic Designer + Art Director\",displayTextArea:false,title:\"Occu\",type:ControlType.String},Ugy22DNeV:{defaultValue:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',displayTextArea:false,title:\"Quote\",type:ControlType.String},Edz3ZRmHd:{__defaultAssetReference:\"data:framer/asset-reference,zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?originalFilename=image-1.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},BpSiM2NCU:(Video1Controls===null||Video1Controls===void 0?void 0:Video1Controls[\"srcFile\"])&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4?originalFilename=preview-1.mp4\",description:undefined,hidden:undefined,title:\"Preview\"},d2QuR_VIK:{title:\"Mouse Enter\",type:ControlType.EventHandler},Pk30RASEZ:{title:\"Overlay Tap\",type:ControlType.EventHandler},DZCrc1k2m:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerCewXwQnfY,[{explicitInter:true,fonts:[{family:\"Tanker\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ATKS7EHYU4PKFTXRA4UFAHPY7XS75QMY/OYTCFLQCR7FVKK7FIO7TCJPY4YG22I3S/GKSURDSYOFIC3Y6F5SMWSENDSAB2YMKC.woff2\",weight:\"400\"},{family:\"Supreme\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5T6APCD6XXAHAFTHDATQKT4RFVWRY3KR/VM6PC4PLGZYYJIHGMT63IIGYLTQKGSH6/TN7F4YNDQ3FJ6JRJV2XDS3CGMFKQRLXV.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Supreme\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UDGUA26XVGIV6IQWMQNGGAL7FQZFY227/E6HQU6YVWTGYX3KW3DF66KAAJ224ZDU6/5ZZU4JM62PS7KOJ7BOKLPL3AEO2G76TS.woff2\",weight:\"400\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCewXwQnfY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gVOjVmRtW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cGIDkyYar\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D0jE5IOAq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"aLoeIpSuy\\\":\\\"title\\\",\\\"iDAu7X4QV\\\":\\\"occu\\\",\\\"Ugy22DNeV\\\":\\\"quote\\\",\\\"Edz3ZRmHd\\\":\\\"image\\\",\\\"BpSiM2NCU\\\":\\\"preview\\\",\\\"d2QuR_VIK\\\":\\\"mouseEnter\\\",\\\"Pk30RASEZ\\\":\\\"overlayTap\\\",\\\"DZCrc1k2m\\\":\\\"tap\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"600\",\"framerIntrinsicWidth\":\"472\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CewXwQnfY.map", "// Generated by Framer (99ae5b3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TestimonialCardBase from\"https://framerusercontent.com/modules/Q7CYcDlCKhwIm0aFbp4y/9qJqNmkd2MjEzPEGAdNj/CewXwQnfY.js\";const TestimonialCardBaseFonts=getFonts(TestimonialCardBase);const cycleOrder=[\"Gx0qTT9D8\",\"YfPgQI92h\",\"pZDRP94N3\",\"jfVk5bw8w\"];const serializationHash=\"framer-6XN1K\";const variantClassNames={Gx0qTT9D8:\"framer-v-r04vci\",jfVk5bw8w:\"framer-v-1k7c63j\",pZDRP94N3:\"framer-v-lnpoz0\",YfPgQI92h:\"framer-v-10gcukp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1\":\"YfPgQI92h\",\"2\":\"pZDRP94N3\",\"3\":\"jfVk5bw8w\",Default:\"Gx0qTT9D8\"};const getProps=({height,id,overlay,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,SipwRqKtI:overlay!==null&&overlay!==void 0?overlay:props.SipwRqKtI,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Gx0qTT9D8\"};};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,SipwRqKtI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gx0qTT9D8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeaved3goqm=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Gx0qTT9D8\");});const d2QuR_VIK6rrquq=activeVariantCallback(async(...args)=>{setVariant(\"YfPgQI92h\");});const Pk30RASEZv35s5m=activeVariantCallback(async(...args)=>{if(SipwRqKtI){const res=await SipwRqKtI(...args);if(res===false)return false;}});const d2QuR_VIK9no6aa=activeVariantCallback(async(...args)=>{setVariant(\"pZDRP94N3\");});const d2QuR_VIK16u0038=activeVariantCallback(async(...args)=>{setVariant(\"jfVk5bw8w\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-r04vci\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Gx0qTT9D8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jfVk5bw8w:{\"data-framer-name\":\"3\",\"data-highlight\":true,onMouseLeave:onMouseLeaved3goqm},pZDRP94N3:{\"data-framer-name\":\"2\",\"data-highlight\":true,onMouseLeave:onMouseLeaved3goqm},YfPgQI92h:{\"data-framer-name\":\"1\",\"data-highlight\":true,onMouseLeave:onMouseLeaved3goqm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 1px)`,...addPropertyOverrides({jfVk5bw8w:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px)`},pZDRP94N3:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px)`},YfPgQI92h:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uabqnj-container\",layoutDependency:layoutDependency,layoutId:\"jcnCBiTHs-container\",children:/*#__PURE__*/_jsx(TestimonialCardBase,{aLoeIpSuy:\"Jiyoon Cha\",d2QuR_VIK:d2QuR_VIK6rrquq,Edz3ZRmHd:addImageAlt({src:\"https://framerusercontent.com/images/grrV5yhlPBqvxQAGLYoJIt8f4.jpg\",srcSet:\"https://framerusercontent.com/images/grrV5yhlPBqvxQAGLYoJIt8f4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/grrV5yhlPBqvxQAGLYoJIt8f4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/grrV5yhlPBqvxQAGLYoJIt8f4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/grrV5yhlPBqvxQAGLYoJIt8f4.jpg 3414w\"},\"\"),height:\"100%\",id:\"jcnCBiTHs\",iDAu7X4QV:\"Graphic Designer + Art Director\",layoutId:\"jcnCBiTHs\",Pk30RASEZ:Pk30RASEZv35s5m,style:{width:\"100%\"},Ugy22DNeV:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:\"qr9xBUeTK\",width:\"100%\",...addPropertyOverrides({jfVk5bw8w:{style:{height:\"100%\",width:\"100%\"},variant:\"cGIDkyYar\"},pZDRP94N3:{style:{height:\"100%\",width:\"100%\"},variant:\"cGIDkyYar\"},YfPgQI92h:{style:{height:\"100%\",width:\"100%\"},variant:\"gVOjVmRtW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 1px)`,...addPropertyOverrides({jfVk5bw8w:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px)`},pZDRP94N3:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 1px)`},YfPgQI92h:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wjo60r-container\",layoutDependency:layoutDependency,layoutId:\"qg5gUlRdc-container\",children:/*#__PURE__*/_jsx(TestimonialCardBase,{aLoeIpSuy:\"Jiyoon Cha\",d2QuR_VIK:d2QuR_VIK9no6aa,Edz3ZRmHd:addImageAlt({src:\"https://framerusercontent.com/images/vZW3QExeafY8ogiiWnlsg3Z00.jpg\",srcSet:\"https://framerusercontent.com/images/vZW3QExeafY8ogiiWnlsg3Z00.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/vZW3QExeafY8ogiiWnlsg3Z00.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/vZW3QExeafY8ogiiWnlsg3Z00.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/vZW3QExeafY8ogiiWnlsg3Z00.jpg 4000w\"},\"\"),height:\"100%\",id:\"qg5gUlRdc\",iDAu7X4QV:\"Graphic Designer + Art Director\",layoutId:\"qg5gUlRdc\",Pk30RASEZ:Pk30RASEZv35s5m,style:{width:\"100%\"},Ugy22DNeV:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:\"qr9xBUeTK\",width:\"100%\",...addPropertyOverrides({jfVk5bw8w:{style:{height:\"100%\",width:\"100%\"},variant:\"cGIDkyYar\"},pZDRP94N3:{style:{height:\"100%\",width:\"100%\"},variant:\"gVOjVmRtW\"},YfPgQI92h:{style:{height:\"100%\",width:\"100%\"},variant:\"cGIDkyYar\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 1px)`,...addPropertyOverrides({jfVk5bw8w:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 1px)`},pZDRP94N3:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px)`},YfPgQI92h:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-afz7h2-container\",layoutDependency:layoutDependency,layoutId:\"xKS_EssKt-container\",children:/*#__PURE__*/_jsx(TestimonialCardBase,{aLoeIpSuy:\"Jiyoon Cha\",d2QuR_VIK:d2QuR_VIK16u0038,Edz3ZRmHd:addImageAlt({positionX:\"75.1%\",positionY:\"71.1%\",src:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg\",srcSet:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg 3456w\"},\"\"),height:\"100%\",id:\"xKS_EssKt\",iDAu7X4QV:\"Graphic Designer + Art Director\",layoutId:\"xKS_EssKt\",Pk30RASEZ:Pk30RASEZv35s5m,style:{width:\"100%\"},Ugy22DNeV:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:\"qr9xBUeTK\",width:\"100%\",...addPropertyOverrides({jfVk5bw8w:{style:{height:\"100%\",width:\"100%\"},variant:\"gVOjVmRtW\"},pZDRP94N3:{style:{height:\"100%\",width:\"100%\"},variant:\"cGIDkyYar\"},YfPgQI92h:{style:{height:\"100%\",width:\"100%\"},variant:\"cGIDkyYar\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6XN1K.framer-93r7he, .framer-6XN1K .framer-93r7he { display: block; }\",\".framer-6XN1K.framer-r04vci { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-6XN1K .framer-1uabqnj-container, .framer-6XN1K .framer-1wjo60r-container, .framer-6XN1K .framer-afz7h2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6XN1K.framer-r04vci { gap: 0px; } .framer-6XN1K.framer-r04vci > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6XN1K.framer-r04vci > :first-child { margin-left: 0px; } .framer-6XN1K.framer-r04vci > :last-child { margin-right: 0px; } }\",\".framer-6XN1K.framer-v-10gcukp .framer-1uabqnj-container, .framer-6XN1K.framer-v-lnpoz0 .framer-1wjo60r-container, .framer-6XN1K.framer-v-1k7c63j .framer-afz7h2-container { flex: 2 0 0px; height: 600px; }\",\".framer-6XN1K.framer-v-10gcukp .framer-1wjo60r-container, .framer-6XN1K.framer-v-10gcukp .framer-afz7h2-container, .framer-6XN1K.framer-v-lnpoz0 .framer-1uabqnj-container, .framer-6XN1K.framer-v-lnpoz0 .framer-afz7h2-container, .framer-6XN1K.framer-v-1k7c63j .framer-1uabqnj-container, .framer-6XN1K.framer-v-1k7c63j .framer-1wjo60r-container { height: 600px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YfPgQI92h\":{\"layout\":[\"fixed\",\"auto\"]},\"pZDRP94N3\":{\"layout\":[\"fixed\",\"auto\"]},\"jfVk5bw8w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SipwRqKtI\":\"overlay\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVpl3JSFdx=withCSS(Component,css,\"framer-6XN1K\");export default FramerVpl3JSFdx;FramerVpl3JSFdx.displayName=\"Card Container\";FramerVpl3JSFdx.defaultProps={height:600,width:1100};addPropertyControls(FramerVpl3JSFdx,{variant:{options:[\"Gx0qTT9D8\",\"YfPgQI92h\",\"pZDRP94N3\",\"jfVk5bw8w\"],optionTitles:[\"Default\",\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum},SipwRqKtI:{title:\"Overlay\",type:ControlType.EventHandler}});addFonts(FramerVpl3JSFdx,[{explicitInter:true,fonts:[]},...TestimonialCardBaseFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVpl3JSFdx\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YfPgQI92h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pZDRP94N3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jfVk5bw8w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerVariables\":\"{\\\"SipwRqKtI\\\":\\\"overlay\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "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", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "mouseEnter", "occu", "overlayTap", "preview", "quote", "tap", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "aLoeIpSuy", "iDAu7X4QV", "Ugy22DNeV", "Edz3ZRmHd", "BpSiM2NCU", "d2QuR_VIK", "Pk30RASEZ", "DZCrc1k2m", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vug3g7", "args", "onMouseEnter8joars", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "ComponentViewportProvider", "Video", "RichText2", "css", "FramerwESbelTK_", "withCSS", "wESbelTK_default", "addPropertyControls", "ControlType", "Video1Controls", "addFonts", "VideoFonts", "VideoFonts", "getFonts", "Video", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "mouseEnter", "occu", "overlayTap", "preview", "quote", "tap", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "aLoeIpSuy", "iDAu7X4QV", "Ugy22DNeV", "Edz3ZRmHd", "BpSiM2NCU", "d2QuR_VIK", "Pk30RASEZ", "DZCrc1k2m", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vug3g7", "args", "onMouseEnter8joars", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "ComponentViewportProvider", "RichText2", "css", "FramerCewXwQnfY", "withCSS", "CewXwQnfY_default", "addPropertyControls", "ControlType", "addFonts", "TestimonialCardBaseFonts", "getFonts", "CewXwQnfY_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "overlay", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SipwRqKtI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeaved3goqm", "args", "d2QuR_VIK6rrquq", "Pk30RASEZv35s5m", "d2QuR_VIK9no6aa", "d2QuR_VIK16u0038", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerVpl3JSFdx", "withCSS", "Vpl3JSFdx_default", "addPropertyControls", "ControlType", "addFonts"]
}
