{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/4P5zyNOxvPL20RgxQvmx/ptYl2gKBxFoMNWCNTy93/zTVJ1nFLE.js", "ssg:https://framerusercontent.com/modules/9G5kckBHoEUKphTDQzoM/LVX5KxeodwCIRDPWg7H9/Eck9rWbgV.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 (7cbec57)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./zTVJ1nFLE-0.js\";const cycleOrder=[\"cddd13Gtp\",\"hkkK5JpDZ\",\"r2q8CGSLo\"];const serializationHash=\"framer-k5nH9\";const variantClassNames={cddd13Gtp:\"framer-v-1xjw2z6\",hkkK5JpDZ:\"framer-v-1n8og4i\",r2q8CGSLo:\"framer-v-1ueffn3\"};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 valuesByLocaleId={rDXQOTUFD:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:30,delay:0,mass:1,stiffness:200,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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"cddd13Gtp\",\"Variant 2\":\"hkkK5JpDZ\",\"Variant 3\":\"r2q8CGSLo\"};const getProps=({height,id,textColor,textSize,title1,title2,title3,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5;return{...props,alrWq3yGr:(_ref=title3!==null&&title3!==void 0?title3:props.alrWq3yGr)!==null&&_ref!==void 0?_ref:\"beauty.\",c_FQD8pO8:(_ref1=textColor!==null&&textColor!==void 0?textColor:props.c_FQD8pO8)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 255, 255)\",dNmvBpuNV:(_ref2=textSize!==null&&textSize!==void 0?textSize:props.dNmvBpuNV)!==null&&_ref2!==void 0?_ref2:60,prRJoYo14:(_ref3=title1!==null&&title1!==void 0?title1:props.prRJoYo14)!==null&&_ref3!==void 0?_ref3:\"no-code tool.\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"cddd13Gtp\",zLT7JXi3G:(_ref5=title2!==null&&title2!==void 0?title2:props.zLT7JXi3G)!==null&&_ref5!==void 0?_ref5:\"website builder.\"};};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,prRJoYo14,zLT7JXi3G,alrWq3yGr,c_FQD8pO8,dNmvBpuNV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cddd13Gtp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppeara12cec=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hkkK5JpDZ\"),1e3);});const onAppeari7b3qk=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"r2q8CGSLo\"),1e3);});const onAppear135xpke=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"cddd13Gtp\"),1e3);});useOnVariantChange(baseVariant,{default:onAppeara12cec,hkkK5JpDZ:onAppeari7b3qk,r2q8CGSLo:onAppear135xpke});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-1xjw2z6\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cddd13Gtp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hkkK5JpDZ:{\"data-framer-name\":\"Variant 2\"},r2q8CGSLo:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),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\":\"calc(var(--variable-reference-dNmvBpuNV-zTVJ1nFLE) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-c_FQD8pO8-zTVJ1nFLE))\"},children:\"no-code tool.\"})}),className:\"framer-12zhwr3\",\"data-framer-name\":\"Text-1\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"q4kCnoo2H\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-c_FQD8pO8-zTVJ1nFLE)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-zTVJ1nFLE\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-zTVJ1nFLE\":dNmvBpuNV,opacity:1},text:prRJoYo14,variants:{hkkK5JpDZ:{opacity:0},r2q8CGSLo:{opacity:0}},verticalAlignment:\"center\",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\":\"calc(var(--variable-reference-dNmvBpuNV-zTVJ1nFLE) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-c_FQD8pO8-zTVJ1nFLE))\"},children:\"website builder.\"})}),className:\"framer-fa7f9c\",\"data-framer-name\":\"Text-2\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"Oa4Q_VapP\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-c_FQD8pO8-zTVJ1nFLE)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-zTVJ1nFLE\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-zTVJ1nFLE\":dNmvBpuNV,opacity:0},text:zLT7JXi3G,variants:{hkkK5JpDZ:{opacity:1}},verticalAlignment:\"center\",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\":\"calc(var(--variable-reference-dNmvBpuNV-zTVJ1nFLE) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-c_FQD8pO8-zTVJ1nFLE))\"},children:\"beauty.\"})}),className:\"framer-jao1sj\",\"data-framer-name\":\"Text-3\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"tvt1l2Vro\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-c_FQD8pO8-zTVJ1nFLE)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-zTVJ1nFLE\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-zTVJ1nFLE\":dNmvBpuNV,opacity:0},text:alrWq3yGr,variants:{r2q8CGSLo:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k5nH9.framer-1heasz7, .framer-k5nH9 .framer-1heasz7 { display: block; }\",\".framer-k5nH9.framer-1xjw2z6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-k5nH9 .framer-12zhwr3 { flex: none; height: auto; overflow: visible; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-k5nH9 .framer-fa7f9c { bottom: -84px; flex: none; height: auto; left: 0px; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-k5nH9 .framer-jao1sj { bottom: -168px; flex: none; height: auto; left: 0px; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-k5nH9.framer-1xjw2z6 { gap: 0px; } .framer-k5nH9.framer-1xjw2z6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-k5nH9.framer-1xjw2z6 > :first-child { margin-top: 0px; } .framer-k5nH9.framer-1xjw2z6 > :last-child { margin-bottom: 0px; } }\",\".framer-k5nH9.framer-v-1n8og4i.framer-1xjw2z6, .framer-k5nH9.framer-v-1ueffn3.framer-1xjw2z6 { flex-direction: row; }\",\".framer-k5nH9.framer-v-1n8og4i .framer-12zhwr3 { left: 0px; position: absolute; top: -84px; z-index: 1; }\",\".framer-k5nH9.framer-v-1n8og4i .framer-fa7f9c, .framer-k5nH9.framer-v-1ueffn3 .framer-jao1sj { bottom: unset; left: unset; position: relative; }\",\".framer-k5nH9.framer-v-1n8og4i .framer-jao1sj { bottom: -84px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-k5nH9.framer-v-1n8og4i.framer-1xjw2z6 { gap: 0px; } .framer-k5nH9.framer-v-1n8og4i.framer-1xjw2z6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-k5nH9.framer-v-1n8og4i.framer-1xjw2z6 > :first-child { margin-left: 0px; } .framer-k5nH9.framer-v-1n8og4i.framer-1xjw2z6 > :last-child { margin-right: 0px; } }\",\".framer-k5nH9.framer-v-1ueffn3 .framer-12zhwr3 { left: 0px; position: absolute; top: -168px; z-index: 1; }\",\".framer-k5nH9.framer-v-1ueffn3 .framer-fa7f9c { bottom: 84px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-k5nH9.framer-v-1ueffn3.framer-1xjw2z6 { gap: 0px; } .framer-k5nH9.framer-v-1ueffn3.framer-1xjw2z6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-k5nH9.framer-v-1ueffn3.framer-1xjw2z6 > :first-child { margin-left: 0px; } .framer-k5nH9.framer-v-1ueffn3.framer-1xjw2z6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 375\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"hkkK5JpDZ\":{\"layout\":[\"auto\",\"auto\"]},\"r2q8CGSLo\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"prRJoYo14\":\"title1\",\"zLT7JXi3G\":\"title2\",\"alrWq3yGr\":\"title3\",\"c_FQD8pO8\":\"textColor\",\"dNmvBpuNV\":\"textSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzTVJ1nFLE=withCSS(Component,css,\"framer-k5nH9\");export default FramerzTVJ1nFLE;FramerzTVJ1nFLE.displayName=\"Words Bad\";FramerzTVJ1nFLE.defaultProps={height:84,width:375};addPropertyControls(FramerzTVJ1nFLE,{variant:{options:[\"cddd13Gtp\",\"hkkK5JpDZ\",\"r2q8CGSLo\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},prRJoYo14:{defaultValue:\"no-code tool.\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},zLT7JXi3G:{defaultValue:\"website builder.\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},alrWq3yGr:{defaultValue:\"beauty.\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},c_FQD8pO8:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text Color\",type:ControlType.Color},dNmvBpuNV:{defaultValue:60,title:\"Text Size\",type:ControlType.Number}});addFonts(FramerzTVJ1nFLE,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzTVJ1nFLE\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"prRJoYo14\\\":\\\"title1\\\",\\\"zLT7JXi3G\\\":\\\"title2\\\",\\\"alrWq3yGr\\\":\\\"title3\\\",\\\"c_FQD8pO8\\\":\\\"textColor\\\",\\\"dNmvBpuNV\\\":\\\"textSize\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hkkK5JpDZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"r2q8CGSLo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"375\",\"framerIntrinsicHeight\":\"84\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zTVJ1nFLE.map", "// Generated by Framer (11696e7)\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*as localizedValues from\"./Eck9rWbgV-0.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"KewctlsDy\",\"oFhivFIex\",\"XOBVqAbd4\",\"ZxUK33d1C\"];const serializationHash=\"framer-n8ykr\";const variantClassNames={KewctlsDy:\"framer-v-13a8an5\",oFhivFIex:\"framer-v-18jh7jt\",XOBVqAbd4:\"framer-v-ozwnul\",ZxUK33d1C:\"framer-v-ibncgy\"};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 valuesByLocaleId={rDXQOTUFD:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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:\"KewctlsDy\",Hover:\"oFhivFIex\",Idle:\"XOBVqAbd4\",Mobile:\"ZxUK33d1C\"};const getProps=({background,height,id,image,logo,mouseEnter,occu,overlayTap,preview,quote,quoteLong,shortQuote,tap,title,visible,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_humanReadableVariantMap_props_variant,_ref8,_ref9,_ref10;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\"},GZi8DKb7_:(_ref3=visible!==null&&visible!==void 0?visible:props.GZi8DKb7_)!==null&&_ref3!==void 0?_ref3:true,iDAu7X4QV:(_ref4=occu!==null&&occu!==void 0?occu:props.iDAu7X4QV)!==null&&_ref4!==void 0?_ref4:\"Graphic Designer + Art Director\",oW_5HzMS_:(_ref5=quoteLong!==null&&quoteLong!==void 0?quoteLong:props.oW_5HzMS_)!==null&&_ref5!==void 0?_ref5:\"Wir als K\\xfcnstler- und Produktions-Agentur bringen den besten Content mit den angesagtesten K\\xfcnstlern an den Start \u2013 und Julep wei\\xdf am besten, welche Marken zu den K\\xfcnstlern und ihren Podcasts passen! Diese Expertise getoppt mit dem fast t\\xe4glichen, engen Austausch zwischen unseren Teams und die unkomplizierte, sympathische Kommunikation machen Julep zu einem Business-Partner, der aus unserem Arbeitsalltag nicht mehr wegzudenken ist.\",Pk30RASEZ:overlayTap!==null&&overlayTap!==void 0?overlayTap:props.Pk30RASEZ,PQA98wLG3:(_ref6=logo!==null&&logo!==void 0?logo:props.PQA98wLG3)!==null&&_ref6!==void 0?_ref6:{src:\"https://framerusercontent.com/images/HXgvbQZXilbIhHW2fN6GhYwwBvg.png\",srcSet:\"https://framerusercontent.com/images/HXgvbQZXilbIhHW2fN6GhYwwBvg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HXgvbQZXilbIhHW2fN6GhYwwBvg.png 1000w\"},Ugy22DNeV:(_ref7=quote!==null&&quote!==void 0?quote:props.Ugy22DNeV)!==null&&_ref7!==void 0?_ref7:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:(_ref8=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref8!==void 0?_ref8:\"KewctlsDy\",wNfqeB5tS:(_ref9=shortQuote!==null&&shortQuote!==void 0?shortQuote:props.wNfqeB5tS)!==null&&_ref9!==void 0?_ref9:\"Julep wei\\xdf am besten, welche Marken zu den K\\xfcnstlern und ihren Podcasts passen!\",wv64jjKQv:(_ref10=background!==null&&background!==void 0?background:props.wv64jjKQv)!==null&&_ref10!==void 0?_ref10:\"rgb(153, 238, 255)\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;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,oW_5HzMS_,wv64jjKQv,PQA98wLG3,wNfqeB5tS,GZi8DKb7_,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KewctlsDy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap27z3vv=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 onMouseEnter1thzbsd=activeVariantCallback(async(...args)=>{if(d2QuR_VIK){const res=await d2QuR_VIK(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"oFhivFIex\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"oFhivFIex\")return false;return true;};const isDisplayed2=value=>{if(baseVariant===\"oFhivFIex\")return value;return false;};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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13a8an5\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KewctlsDy\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1thzbsd,onTap:onTap27z3vv,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({oFhivFIex:{\"data-framer-name\":\"Hover\"},XOBVqAbd4:{\"data-framer-name\":\"Idle\"},ZxUK33d1C:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17uc6jd\",\"data-framer-name\":\"IDLE\",layoutDependency:layoutDependency,layoutId:\"Il30Ebk9Z\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:0},variants:{XOBVqAbd4:{opacity:.5}}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4gripe\",layoutDependency:layoutDependency,layoutId:\"FwBufGDeM\",children:isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",...toResponsiveImage(PQA98wLG3),...{positionX:\"left\",positionY:\"center\"}},className:\"framer-19g4bw6\",layoutDependency:layoutDependency,layoutId:\"a6aBb_5EA\",...addPropertyOverrides({oFhivFIex:{background:{alt:\"\",fit:\"fit\",sizes:\"204px\",...toResponsiveImage(PQA98wLG3),...{positionX:\"left\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g7nlrq\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"hBjg9idNQ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-23trky\",layoutDependency:layoutDependency,layoutId:\"p8ip2HYID\",style:{backdropFilter:\"blur(10px)\",backgroundColor:wv64jjKQv,WebkitBackdropFilter:\"blur(10px)\"}}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,pixelHeight:750,pixelWidth:1200,sizes:\"730px\",...toResponsiveImage(Edz3ZRmHd)},className:\"framer-ns8ye1\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"t4ixdE9xa\",...addPropertyOverrides({ZxUK33d1C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,pixelHeight:750,pixelWidth:1200,sizes:\"410px\",...toResponsiveImage(Edz3ZRmHd)}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-h6pq7v\",\"data-framer-name\":\"Video Wrap\",layoutDependency:layoutDependency,layoutId:\"UpRnX1jei\",style:{opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1diyafw-container\",layoutDependency:layoutDependency,layoutId:\"Pt77CNMRO-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Pt77CNMRO\",isMixedBorderRadius:false,layoutId:\"Pt77CNMRO\",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-1o4l22i\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"yZRJ0gCuR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.15)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1saimyc\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"zaXU85J7M\",style:{background:\"linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.3) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q8wx57\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"LIv3Jn0I7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1np5hr0\",layoutDependency:layoutDependency,layoutId:\"AoabCNFqz\",children:[isDisplayed2(GZi8DKb7_)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(Edz3ZRmHd)},className:\"framer-1w8cotc\",layoutDependency:layoutDependency,layoutId:\"vvWhQKfvb\",style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},...addPropertyOverrides({oFhivFIex:{background:{alt:\"\",fit:\"fill\",sizes:\"50px\",...toResponsiveImage(Edz3ZRmHd)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xtpjdd\",\"data-framer-name\":\"Name + Title\",layoutDependency:layoutDependency,layoutId:\"jcz_X67pY\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xkIGl0YWxpYw==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Julep wei\\xdf am besten, welche Marken zu den K\\xfcnstlern und ihren Podcasts passen!\"})}),className:\"framer-13fcdwh\",fonts:[\"FS;Satoshi-bold italic\"],layoutDependency:layoutDependency,layoutId:\"o5MMPeDNH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wNfqeB5tS,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\":\"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-fxriio\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"hJoLtTzmz\",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-ei8ron\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"SASHcDxLM\",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-yg8yak\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"qCKzEg7cr\",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-l239d2\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"YbyhPTPXy\",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({oFhivFIex:{text:oW_5HzMS_}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n8ykr.framer-1c4ixt, .framer-n8ykr .framer-1c4ixt { display: block; }\",\".framer-n8ykr.framer-13a8an5 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 765px; justify-content: flex-end; overflow: hidden; padding: 36px 36px 36px 36px; position: relative; width: 602px; will-change: var(--framer-will-change-override, transform); }\",\".framer-n8ykr .framer-17uc6jd { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-n8ykr .framer-4gripe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 75px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 204px; }\",\".framer-n8ykr .framer-19g4bw6 { flex: none; height: 75px; position: relative; width: 204px; z-index: 1; }\",\".framer-n8ykr .framer-1g7nlrq, .framer-n8ykr .framer-h6pq7v, .framer-n8ykr .framer-1o4l22i, .framer-n8ykr .framer-1saimyc { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-n8ykr .framer-23trky { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-n8ykr .framer-ns8ye1 { flex: none; height: 788px; left: calc(50.00000000000002% - 730px / 2); overflow: visible; position: absolute; top: calc(50.065359477124204% - 788px / 2); width: 730px; }\",\".framer-n8ykr .framer-1diyafw-container { flex: none; height: 839px; left: calc(50.00000000000002% - 666px / 2); position: absolute; top: calc(49.93464052287584% - 839px / 2); width: 666px; }\",\".framer-n8ykr .framer-q8wx57 { align-content: flex-start; align-items: flex-start; bottom: -189px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 360px; justify-content: flex-start; left: 36px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; width: 350px; z-index: 1; }\",\".framer-n8ykr .framer-1np5hr0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-n8ykr .framer-1w8cotc { flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-n8ykr .framer-xtpjdd { 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: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-n8ykr .framer-13fcdwh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-n8ykr .framer-fxriio, .framer-n8ykr .framer-l239d2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-n8ykr .framer-ei8ron { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-n8ykr .framer-yg8yak { 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 0px 0px 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n8ykr.framer-13a8an5, .framer-n8ykr .framer-4gripe, .framer-n8ykr .framer-q8wx57, .framer-n8ykr .framer-1np5hr0, .framer-n8ykr .framer-xtpjdd, .framer-n8ykr .framer-yg8yak { gap: 0px; } .framer-n8ykr.framer-13a8an5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-n8ykr.framer-13a8an5 > :first-child, .framer-n8ykr .framer-q8wx57 > :first-child, .framer-n8ykr .framer-xtpjdd > :first-child, .framer-n8ykr .framer-yg8yak > :first-child { margin-top: 0px; } .framer-n8ykr.framer-13a8an5 > :last-child, .framer-n8ykr .framer-q8wx57 > :last-child, .framer-n8ykr .framer-xtpjdd > :last-child, .framer-n8ykr .framer-yg8yak > :last-child { margin-bottom: 0px; } .framer-n8ykr .framer-4gripe > *, .framer-n8ykr .framer-1np5hr0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-n8ykr .framer-4gripe > :first-child, .framer-n8ykr .framer-1np5hr0 > :first-child { margin-left: 0px; } .framer-n8ykr .framer-4gripe > :last-child, .framer-n8ykr .framer-1np5hr0 > :last-child { margin-right: 0px; } .framer-n8ykr .framer-q8wx57 > *, .framer-n8ykr .framer-yg8yak > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-n8ykr .framer-xtpjdd > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-n8ykr.framer-v-18jh7jt .framer-17uc6jd, .framer-n8ykr.framer-v-18jh7jt .framer-19g4bw6, .framer-n8ykr.framer-v-18jh7jt .framer-l239d2 { order: 0; }\",\".framer-n8ykr.framer-v-18jh7jt .framer-4gripe, .framer-n8ykr.framer-v-18jh7jt .framer-1np5hr0 { order: 1; }\",\".framer-n8ykr.framer-v-18jh7jt .framer-1g7nlrq { order: 2; }\",\".framer-n8ykr.framer-v-18jh7jt .framer-q8wx57 { bottom: unset; height: auto; left: unset; order: 3; position: relative; }\",\".framer-n8ykr.framer-v-18jh7jt .framer-yg8yak { bottom: unset; left: unset; order: 0; position: relative; right: unset; width: 100%; }\",\".framer-n8ykr.framer-v-ibncgy.framer-13a8an5 { height: 400px; padding: 20px 20px 20px 20px; width: 360px; }\",\".framer-n8ykr.framer-v-ibncgy .framer-ns8ye1 { height: 443px; left: calc(50.00000000000002% - 410px / 2); top: calc(50.00000000000002% - 443px / 2); width: 410px; }\",\".framer-n8ykr.framer-v-ibncgy .framer-q8wx57 { bottom: -277px; left: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 765\n * @framerIntrinsicWidth 602\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oFhivFIex\":{\"layout\":[\"fixed\",\"fixed\"]},\"XOBVqAbd4\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZxUK33d1C\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aLoeIpSuy\":\"title\",\"iDAu7X4QV\":\"occu\",\"Ugy22DNeV\":\"quote\",\"Edz3ZRmHd\":\"image\",\"BpSiM2NCU\":\"preview\",\"d2QuR_VIK\":\"mouseEnter\",\"Pk30RASEZ\":\"overlayTap\",\"DZCrc1k2m\":\"tap\",\"oW_5HzMS_\":\"quoteLong\",\"wv64jjKQv\":\"background\",\"PQA98wLG3\":\"logo\",\"wNfqeB5tS\":\"shortQuote\",\"GZi8DKb7_\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEck9rWbgV=withCSS(Component,css,\"framer-n8ykr\");export default FramerEck9rWbgV;FramerEck9rWbgV.displayName=\"Card\";FramerEck9rWbgV.defaultProps={height:765,width:602};addPropertyControls(FramerEck9rWbgV,{variant:{options:[\"KewctlsDy\",\"oFhivFIex\",\"XOBVqAbd4\",\"ZxUK33d1C\"],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:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"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},oW_5HzMS_:{defaultValue:\"Wir als K\\xfcnstler- und Produktions-Agentur bringen den besten Content mit den angesagtesten K\\xfcnstlern an den Start \u2013 und Julep wei\\xdf am besten, welche Marken zu den K\\xfcnstlern und ihren Podcasts passen! Diese Expertise getoppt mit dem fast t\\xe4glichen, engen Austausch zwischen unseren Teams und die unkomplizierte, sympathische Kommunikation machen Julep zu einem Business-Partner, der aus unserem Arbeitsalltag nicht mehr wegzudenken ist.\",displayTextArea:false,placeholder:\"Wir als K\\xfcnstler- und Produktions-Agentur bringen den besten Content mit den angesagtesten K\\xfcnstlern an den Start \u2013 und Julep wei\\xdf am besten, welche Marken zu den K\\xfcnstlern und ihren Podcasts passen! Diese Expertise getoppt mit dem fast t\\xe4glichen, engen Austausch zwischen unseren Teams und die unkomplizierte, sympathische Kommunikation machen Julep zu einem Business-Partner, der aus unserem Arbeitsalltag nicht mehr wegzudenken ist.\",title:\"Quote long\",type:ControlType.String},wv64jjKQv:{defaultValue:\"rgb(153, 238, 255)\",title:\"Background\",type:ControlType.Color},PQA98wLG3:{__defaultAssetReference:\"data:framer/asset-reference,HXgvbQZXilbIhHW2fN6GhYwwBvg.png?originalFilename=FINAL-logo-rot-endgame.png&preferredSize=auto\",title:\"Logo\",type:ControlType.ResponsiveImage},wNfqeB5tS:{defaultValue:\"Julep wei\\xdf am besten, welche Marken zu den K\\xfcnstlern und ihren Podcasts passen!\",displayTextArea:false,placeholder:\"Julep wei\\xdf am besten, welche Marken zu den K\\xfcnstlern und ihren Podcasts passen!\",title:\"Short Quote\",type:ControlType.String},GZi8DKb7_:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerEck9rWbgV,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{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\":\"FramerEck9rWbgV\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"602\",\"framerIntrinsicHeight\":\"765\",\"framerVariables\":\"{\\\"aLoeIpSuy\\\":\\\"title\\\",\\\"iDAu7X4QV\\\":\\\"occu\\\",\\\"Ugy22DNeV\\\":\\\"quote\\\",\\\"Edz3ZRmHd\\\":\\\"image\\\",\\\"BpSiM2NCU\\\":\\\"preview\\\",\\\"d2QuR_VIK\\\":\\\"mouseEnter\\\",\\\"Pk30RASEZ\\\":\\\"overlayTap\\\",\\\"DZCrc1k2m\\\":\\\"tap\\\",\\\"oW_5HzMS_\\\":\\\"quoteLong\\\",\\\"wv64jjKQv\\\":\\\"background\\\",\\\"PQA98wLG3\\\":\\\"logo\\\",\\\"wNfqeB5tS\\\":\\\"shortQuote\\\",\\\"GZi8DKb7_\\\":\\\"visible\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oFhivFIex\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XOBVqAbd4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZxUK33d1C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Eck9rWbgV.map"],
  "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", "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", "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", "textColor", "textSize", "title1", "title2", "title3", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "prRJoYo14", "zLT7JXi3G", "alrWq3yGr", "c_FQD8pO8", "dNmvBpuNV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppeara12cec", "args", "onAppeari7b3qk", "onAppear135xpke", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FramerzTVJ1nFLE", "withCSS", "zTVJ1nFLE_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "VideoControls", "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", "background", "height", "id", "image", "logo", "mouseEnter", "occu", "overlayTap", "preview", "quote", "quoteLong", "shortQuote", "tap", "title", "visible", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableVariantMap_props_variant", "_ref8", "_ref9", "_ref10", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "aLoeIpSuy", "iDAu7X4QV", "Ugy22DNeV", "Edz3ZRmHd", "BpSiM2NCU", "d2QuR_VIK", "Pk30RASEZ", "DZCrc1k2m", "oW_5HzMS_", "wv64jjKQv", "PQA98wLG3", "wNfqeB5tS", "GZi8DKb7_", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap27z3vv", "args", "onMouseEnter1thzbsd", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "Image2", "ComponentViewportProvider", "Video", "RichText2", "css", "FramerEck9rWbgV", "withCSS", "Eck9rWbgV_default", "addPropertyControls", "ControlType", "VideoControls", "addFonts", "VideoFonts"]
}
