{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/pb1i5yFAvUFKkYbBK7i9/fnGGAAlM2SU1L5pOYSNs/rjawdYVtT.js", "ssg:https://framerusercontent.com/modules/uaaIcHrkiS9fXVB0BHpP/V9E0OxSNLKtlPlXsC4Pm/rNaojXLtB-0.js", "ssg:https://framerusercontent.com/modules/uaaIcHrkiS9fXVB0BHpP/V9E0OxSNLKtlPlXsC4Pm/rNaojXLtB.js", "ssg:https://framerusercontent.com/modules/6I4TE1eLsDGglLNZaVeo/pP8KgYuLZ6pXuefRSKOc/TDhAPbewD.js", "ssg:https://framerusercontent.com/modules/rYBETONScGsY8Z4YetSB/zvdtaZ4OJvfbLh7gUqfU/rNaojXLtB.js", "ssg:https://framerusercontent.com/modules/oHQzVF02A0hm6pdNgNx5/bhQ6XmFEavjfNxiV920i/EWbo6P45d.js", "ssg:https://framerusercontent.com/modules/G8fjwNx86c99wei7MRe9/by4GZOV1fBFnkw9yf25B/rfgQqPiBu.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??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??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??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//     !isStaticRenderer\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??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (4b118ea)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"Y9iCZiErY\",\"Z6lR271W6\"];const serializationHash=\"framer-DBqQL\";const variantClassNames={Y9iCZiErY:\"framer-v-lrbim2\",Z6lR271W6:\"framer-v-9wjkug\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Left:\"Z6lR271W6\",Right:\"Y9iCZiErY\"};const getProps=({click,height,id,name1,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Y9iCZiErY\",vJg8X8WUE:name1??props.vJg8X8WUE??\"ArrowLeft\",YX5UTzqQ_:click??props.YX5UTzqQ_};};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,YX5UTzqQ_,vJg8X8WUE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y9iCZiErY\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1b5t4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(YX5UTzqQ_){const res=await YX5UTzqQ_(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lrbim2\",className,classNames),\"data-framer-name\":\"Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Y9iCZiErY\",onTap:onTap1b5t4,ref:ref??ref1,style:{backdropFilter:\"blur(20px)\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",WebkitBackdropFilter:\"blur(20px)\",...style},...addPropertyOverrides({Z6lR271W6:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fn94sw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ck6yfTAxZ-container\",nodeId:\"ck6yfTAxZ\",rendersWithMotion:true,scopeId:\"rjawdYVtT\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-68dc9a99-b3ae-4e27-ad2a-bc9cf7f21cee, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:vJg8X8WUE,id:\"ck6yfTAxZ\",layoutId:\"ck6yfTAxZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DBqQL.framer-1ub5a3a, .framer-DBqQL .framer-1ub5a3a { display: block; }\",\".framer-DBqQL.framer-lrbim2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 55px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DBqQL .framer-fn94sw-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DBqQL.framer-lrbim2 { gap: 0px; } .framer-DBqQL.framer-lrbim2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DBqQL.framer-lrbim2 > :first-child { margin-left: 0px; } .framer-DBqQL.framer-lrbim2 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 55\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z6lR271W6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"YX5UTzqQ_\":\"click\",\"vJg8X8WUE\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrjawdYVtT=withCSS(Component,css,\"framer-DBqQL\");export default FramerrjawdYVtT;FramerrjawdYVtT.displayName=\"Helper/Arrow\";FramerrjawdYVtT.defaultProps={height:55,width:55};addPropertyControls(FramerrjawdYVtT,{variant:{options:[\"Y9iCZiErY\",\"Z6lR271W6\"],optionTitles:[\"Right\",\"Left\"],title:\"Variant\",type:ControlType.Enum},YX5UTzqQ_:{title:\"Click\",type:ControlType.EventHandler},vJg8X8WUE:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ArrowLeft\",description:undefined,hidden:undefined,title:\"Name\"}});addFonts(FramerrjawdYVtT,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrjawdYVtT\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z6lR271W6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YX5UTzqQ_\\\":\\\"click\\\",\\\"vJg8X8WUE\\\":\\\"name1\\\"}\",\"framerIntrinsicWidth\":\"55\",\"framerIntrinsicHeight\":\"55\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rjawdYVtT.map", "export const v0=\"Ver la entrevista completa\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport*as localizedValues from\"./rNaojXLtB-0.js\";const valuesByLocaleId={K4J4kGwmj:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (aba0f78)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/OC9EEyQr64vDwqD8Tatp/p6hycMNB5wdbB90yzL0N/bV6fZNE8k.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={kujbQz4aG:{hover:true}};const serializationHash=\"framer-y1tRT\";const variantClassNames={kujbQz4aG:\"framer-v-1hzxf2l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,newTab,text,width,...props})=>{return{...props,EPLMFdaxY:newTab??props.EPLMFdaxY,pMWfLVSoJ:link??props.pMWfLVSoJ,ZalcL8N2g:text??props.ZalcL8N2g??\"Watch Full Interview\"};};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,pMWfLVSoJ,ZalcL8N2g,EPLMFdaxY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"kujbQz4aG\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:pMWfLVSoJ,motionChild:true,nodeId:\"kujbQz4aG\",openInNewTab:EPLMFdaxY,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1hzxf2l\",className,classNames)} framer-1ypaeuj`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kujbQz4aG\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 0, 51)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"kujbQz4aG-hover\":{backgroundColor:\"rgb(255, 46, 88)\"}},...addPropertyOverrides({\"kujbQz4aG-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ada294-container\",layoutDependency:layoutDependency,layoutId:\"d5whYaWRi-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"YoutubeLogo\",id:\"d5whYaWRi\",layoutId:\"d5whYaWRi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8zuqdv\",\"data-styles-preset\":\"bV6fZNE8k\",children:\"Watch Full Interview\"})}),className:\"framer-uglz78\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QO_Y6GveI\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ZalcL8N2g,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y1tRT.framer-1ypaeuj, .framer-y1tRT .framer-1ypaeuj { display: block; }\",\".framer-y1tRT.framer-1hzxf2l { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 14px; position: relative; text-decoration: none; width: 350px; }\",\".framer-y1tRT .framer-1ada294-container { flex: none; height: 25px; position: relative; width: 24px; }\",\".framer-y1tRT .framer-uglz78 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y1tRT.framer-1hzxf2l { gap: 0px; } .framer-y1tRT.framer-1hzxf2l > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-y1tRT.framer-1hzxf2l > :first-child { margin-left: 0px; } .framer-y1tRT.framer-1hzxf2l > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53.5\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OoyHn7Q3S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pMWfLVSoJ\":\"link\",\"ZalcL8N2g\":\"text\",\"EPLMFdaxY\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTDhAPbewD=withCSS(Component,css,\"framer-y1tRT\");export default FramerTDhAPbewD;FramerTDhAPbewD.displayName=\"Button/Youtube Button\";FramerTDhAPbewD.defaultProps={height:53.5,width:350};addPropertyControls(FramerTDhAPbewD,{pMWfLVSoJ:{title:\"Link\",type:ControlType.Link},ZalcL8N2g:{defaultValue:\"Watch Full Interview\",displayTextArea:false,title:\"Text\",type:ControlType.String},EPLMFdaxY:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerTDhAPbewD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTDhAPbewD\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OoyHn7Q3S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"350\",\"framerIntrinsicHeight\":\"53.5\",\"framerVariables\":\"{\\\"pMWfLVSoJ\\\":\\\"link\\\",\\\"ZalcL8N2g\\\":\\\"text\\\",\\\"EPLMFdaxY\\\":\\\"newTab\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/oJI9b718nhibLddPZRey/Dc2n9eYNKBTzmwgCO8ew/bV6fZNE8k.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/uaaIcHrkiS9fXVB0BHpP/V9E0OxSNLKtlPlXsC4Pm/rNaojXLtB.js\";import ButtonYoutubeButton from\"https://framerusercontent.com/modules/6I4TE1eLsDGglLNZaVeo/pP8KgYuLZ6pXuefRSKOc/TDhAPbewD.js\";const ButtonYoutubeButtonFonts=getFonts(ButtonYoutubeButton);const serializationHash=\"framer-OUsMA\";const variantClassNames={M59014FRq:\"framer-v-j5kkx3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,text,title,width,...props})=>{return{...props,d7qQBLcLc:title??props.d7qQBLcLc??\"Daisy From Kenya\",qOi05yIZr:link??props.qOi05yIZr,sWyv6PV90:image??props.sWyv6PV90??{alt:\"\",src:\"https://framerusercontent.com/images/uEslRhsl8l4RtRW0PSdNoMmH2g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uEslRhsl8l4RtRW0PSdNoMmH2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/uEslRhsl8l4RtRW0PSdNoMmH2g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEslRhsl8l4RtRW0PSdNoMmH2g.png 1876w\"},yZ5cA5S1I:text??props.yZ5cA5S1I??\"Meet Daisy, our FTMO Trader from Nairobi, Kenya, who has 4 years of trading experience under her belt. She recently found success in the markets when she focused on one forex pair: GBPJPY....\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,sWyv6PV90,d7qQBLcLc,yZ5cA5S1I,qOi05yIZr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"M59014FRq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-j5kkx3\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"M59014FRq\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(26, 22, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(13, 10, 19)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,...toResponsiveImage(sWyv6PV90),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-avtve0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"AV00LwEkH\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cxvsda\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"PHVMhBJN0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7f7tin\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"NBFD8uV1I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Daisy From Kenya\"})}),className:\"framer-14jiraa\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter Tight-600\"],layoutDependency:layoutDependency,layoutId:\"uvHWmIiJh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:d7qQBLcLc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8zuqdv\",\"data-styles-preset\":\"bV6fZNE8k\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e5091f60-e3f3-4ddf-9a3e-bd01d63ffd7e, rgb(144, 144, 161)))\"},children:\"Meet Daisy, our FTMO Trader from Nairobi, Kenya, who has 4 years of trading experience under her belt. She recently found success in the markets when she focused on one forex pair: GBPJPY....\"})}),className:\"framer-nb3id5\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AtZMLkM8T\",style:{\"--extracted-r6o4lv\":\"var(--token-e5091f60-e3f3-4ddf-9a3e-bd01d63ffd7e, rgb(144, 144, 161))\",\"--framer-paragraph-spacing\":\"0px\"},text:yZ5cA5S1I,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:`calc(${componentViewport?.width||\"100vw\"} - 52px)`,y:(componentViewport?.y||0)+10+252.3779296875+0+358.5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tbswv6-container\",layoutDependency:layoutDependency,layoutId:\"QFMIv0lb2-container\",nodeId:\"QFMIv0lb2\",rendersWithMotion:true,scopeId:\"rNaojXLtB\",children:/*#__PURE__*/_jsx(ButtonYoutubeButton,{EPLMFdaxY:true,height:\"100%\",id:\"QFMIv0lb2\",layoutId:\"QFMIv0lb2\",pMWfLVSoJ:qOi05yIZr,style:{width:\"100%\"},width:\"100%\",ZalcL8N2g:getLocalizedValue(\"v0\",activeLocale)??\"Watch Full Interview\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OUsMA.framer-wb6aik, .framer-OUsMA .framer-wb6aik { display: block; }\",\".framer-OUsMA.framer-j5kkx3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 490px; }\",\".framer-OUsMA .framer-avtve0 { aspect-ratio: 1.724770642201835 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 116px); position: relative; width: 100%; }\",\".framer-OUsMA .framer-1cxvsda { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-OUsMA .framer-7f7tin { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-OUsMA .framer-14jiraa, .framer-OUsMA .framer-nb3id5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OUsMA .framer-1tbswv6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OUsMA.framer-j5kkx3, .framer-OUsMA .framer-1cxvsda, .framer-OUsMA .framer-7f7tin { gap: 0px; } .framer-OUsMA.framer-j5kkx3 > * { margin: 0px; margin-bottom: calc(-20px / 2); margin-top: calc(-20px / 2); } .framer-OUsMA.framer-j5kkx3 > :first-child, .framer-OUsMA .framer-1cxvsda > :first-child, .framer-OUsMA .framer-7f7tin > :first-child { margin-top: 0px; } .framer-OUsMA.framer-j5kkx3 > :last-child, .framer-OUsMA .framer-1cxvsda > :last-child, .framer-OUsMA .framer-7f7tin > :last-child { margin-bottom: 0px; } .framer-OUsMA .framer-1cxvsda > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-OUsMA .framer-7f7tin > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,'.framer-OUsMA[data-border=\"true\"]::after, .framer-OUsMA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 563\n * @framerIntrinsicWidth 490\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"sWyv6PV90\":\"image\",\"d7qQBLcLc\":\"title\",\"yZ5cA5S1I\":\"text\",\"qOi05yIZr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrNaojXLtB=withCSS(Component,css,\"framer-OUsMA\");export default FramerrNaojXLtB;FramerrNaojXLtB.displayName=\"Cards/Showcase Card\";FramerrNaojXLtB.defaultProps={height:563,width:490};addPropertyControls(FramerrNaojXLtB,{sWyv6PV90:{__defaultAssetReference:\"data:framer/asset-reference,uEslRhsl8l4RtRW0PSdNoMmH2g.png?originalFilename=Image.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,uEslRhsl8l4RtRW0PSdNoMmH2g.png?originalFilename=Image.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},d7qQBLcLc:{defaultValue:\"Daisy From Kenya\",displayTextArea:false,title:\"Title\",type:ControlType.String},yZ5cA5S1I:{defaultValue:\"Meet Daisy, our FTMO Trader from Nairobi, Kenya, who has 4 years of trading experience under her belt. She recently found success in the markets when she focused on one forex pair: GBPJPY....\",displayTextArea:false,title:\"Text\",type:ControlType.String},qOi05yIZr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerrNaojXLtB,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonYoutubeButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrNaojXLtB\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"490\",\"framerVariables\":\"{\\\"sWyv6PV90\\\":\\\"image\\\",\\\"d7qQBLcLc\\\":\\\"title\\\",\\\"yZ5cA5S1I\\\":\\\"text\\\",\\\"qOi05yIZr\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"563\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HelperArrow from\"https://framerusercontent.com/modules/pb1i5yFAvUFKkYbBK7i9/fnGGAAlM2SU1L5pOYSNs/rjawdYVtT.js\";import CardsShowcaseCard from\"https://framerusercontent.com/modules/rYBETONScGsY8Z4YetSB/zvdtaZ4OJvfbLh7gUqfU/rNaojXLtB.js\";const CardsShowcaseCardFonts=getFonts(CardsShowcaseCard);const HelperArrowFonts=getFonts(HelperArrow);const cycleOrder=[\"J_fE1EW50\",\"XVXCbmyAk\",\"CzdNeit0H\"];const serializationHash=\"framer-ZUpSR\";const variantClassNames={CzdNeit0H:\"framer-v-1uaz2wp\",J_fE1EW50:\"framer-v-t5qhf8\",XVXCbmyAk:\"framer-v-aymtkk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"J_fE1EW50\",\"Variant 2\":\"XVXCbmyAk\",\"Variant 3\":\"CzdNeit0H\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"J_fE1EW50\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J_fE1EW50\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const YX5UTzqQ_p1bfod=activeVariantCallback(async(...args)=>{setVariant(\"J_fE1EW50\");});const YX5UTzqQ_1sm0igr=activeVariantCallback(async(...args)=>{setVariant(\"XVXCbmyAk\");});const YX5UTzqQ_t65wm0=activeVariantCallback(async(...args)=>{setVariant(\"CzdNeit0H\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-t5qhf8\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"J_fE1EW50\",ref:refBinding,style:{...style},...addPropertyOverrides({CzdNeit0H:{\"data-framer-name\":\"Variant 3\"},XVXCbmyAk:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:593,width:\"490px\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-et5fgc-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"ejWJ2u1_M-container\",name:\"1\",nodeId:\"ejWJ2u1_M\",rendersWithMotion:true,scopeId:\"EWbo6P45d\",style:{mask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:-4,scale:.9,transformPerspective:500,WebkitMask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"},variants:{CzdNeit0H:{mask:\"none\",rotateY:0,scale:1,WebkitMask:\"none\"},XVXCbmyAk:{mask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:4,WebkitMask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"}},children:/*#__PURE__*/_jsx(CardsShowcaseCard,{d7qQBLcLc:\"Macroeconom\\xeda & Geopol\\xedtica 2025 con Carlos Valverde de TradeZenter \",height:\"100%\",id:\"ejWJ2u1_M\",layoutId:\"ejWJ2u1_M\",name:\"1\",qOi05yIZr:\"https://www.youtube.com/watch?v=SD7QwiRCQCY\",style:{height:\"100%\",width:\"100%\"},sWyv6PV90:addImageAlt({src:\"https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg\",srcSet:\"https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg 2560w\"},\"\"),width:\"100%\",yZ5cA5S1I:\"En este episodio, analizamos en profundidad las principales noticias econ\\xf3micas y los movimientos geopol\\xedticos que est\\xe1n marcando el rumbo del mundo actual.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:593,width:\"490px\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lp300-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"JSD7R00Ey-container\",name:\"2\",nodeId:\"JSD7R00Ey\",rendersWithMotion:true,scopeId:\"EWbo6P45d\",style:{mask:\"none\",rotateY:0,scale:1,transformPerspective:1200,WebkitMask:\"none\"},variants:{CzdNeit0H:{mask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:4,scale:.9,transformPerspective:500,WebkitMask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"},XVXCbmyAk:{mask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:-4,scale:.9,transformPerspective:500,WebkitMask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"}},children:/*#__PURE__*/_jsx(CardsShowcaseCard,{d7qQBLcLc:\"Ojal\\xe1 hubiese sabido esto hace 16 a\\xf1os -    Ro Myung de TradingManias \",height:\"100%\",id:\"JSD7R00Ey\",layoutId:\"JSD7R00Ey\",name:\"2\",qOi05yIZr:\"https://www.youtube.com/watch?v=t5RElSpDSRk\",style:{height:\"100%\",width:\"100%\"},sWyv6PV90:addImageAlt({src:\"https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg\",srcSet:\"https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg 2560w\"},\"\"),width:\"100%\",yZ5cA5S1I:\"Entre muchos temas, compartimos las lecciones m\\xe1s valiosas que desear\\xeda haber conocido hace 16 a\\xf1os. Desde errores comunes hasta los secretos de una operativa s\\xf3lida.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:593,width:\"490px\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fb4lfq-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"PQYjiNFdT-container\",name:\"3\",nodeId:\"PQYjiNFdT\",rendersWithMotion:true,scopeId:\"EWbo6P45d\",style:{mask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:4,scale:.9,transformPerspective:500,WebkitMask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"},variants:{CzdNeit0H:{mask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:-4,WebkitMask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"},XVXCbmyAk:{mask:\"none\",rotateY:0,scale:1,WebkitMask:\"none\"}},children:/*#__PURE__*/_jsx(CardsShowcaseCard,{d7qQBLcLc:\"De la quiebra a la consistencia - Axel Ballester de @singulartraders\",height:\"100%\",id:\"PQYjiNFdT\",layoutId:\"PQYjiNFdT\",name:\"3\",qOi05yIZr:\"https://www.youtube.com/watch?v=04E2RW7y6tE\",style:{height:\"100%\",width:\"100%\"},sWyv6PV90:addImageAlt({src:\"https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg\",srcSet:\"https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg 2560w\"},\"\"),width:\"100%\",yZ5cA5S1I:\"La inspiradora historia de Axel, en su b\\xfasqueda de una nueva oportunidad, encontr\\xf3 el mundo del trading, un camino lleno de desaf\\xedos, aprendizajes y golpes de realidad.\",...addPropertyOverrides({XVXCbmyAk:{d7qQBLcLc:\"De la quiebra a la consistencia - Axel Ballester de SingularTraders\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edu3j1\",layoutDependency:layoutDependency,layoutId:\"hYvdTel3H\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+297+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6m7h7f-container\",layoutDependency:layoutDependency,layoutId:\"Wbh54SdJd-container\",nodeId:\"Wbh54SdJd\",rendersWithMotion:true,scopeId:\"EWbo6P45d\",children:/*#__PURE__*/_jsx(HelperArrow,{height:\"100%\",id:\"Wbh54SdJd\",layoutId:\"Wbh54SdJd\",variant:\"Y9iCZiErY\",vJg8X8WUE:\"ArrowLeft\",width:\"100%\",...addPropertyOverrides({CzdNeit0H:{YX5UTzqQ_:YX5UTzqQ_1sm0igr},XVXCbmyAk:{YX5UTzqQ_:YX5UTzqQ_p1bfod}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+297+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vnnhv2-container\",layoutDependency:layoutDependency,layoutId:\"TqfYANW3F-container\",nodeId:\"TqfYANW3F\",rendersWithMotion:true,scopeId:\"EWbo6P45d\",children:/*#__PURE__*/_jsx(HelperArrow,{height:\"100%\",id:\"TqfYANW3F\",layoutId:\"TqfYANW3F\",variant:\"Y9iCZiErY\",vJg8X8WUE:\"ArrowRight\",width:\"100%\",YX5UTzqQ_:YX5UTzqQ_1sm0igr,...addPropertyOverrides({CzdNeit0H:{YX5UTzqQ_:YX5UTzqQ_p1bfod},XVXCbmyAk:{YX5UTzqQ_:YX5UTzqQ_t65wm0}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZUpSR.framer-sj1qtj, .framer-ZUpSR .framer-sj1qtj { display: block; }\",\".framer-ZUpSR.framer-t5qhf8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; min-height: 631px; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 1136px; }\",\".framer-ZUpSR .framer-et5fgc-container { flex: none; height: 593px; left: -182px; position: absolute; top: 0px; width: 490px; z-index: 1; }\",\".framer-ZUpSR .framer-lp300-container { flex: none; height: 593px; left: calc(50.00000000000002% - 490px / 2); position: absolute; top: 0px; width: 490px; z-index: 1; }\",\".framer-ZUpSR .framer-1fb4lfq-container { flex: none; height: 593px; position: absolute; right: -182px; top: 0px; width: 490px; z-index: 1; }\",\".framer-ZUpSR .framer-1edu3j1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 297px; width: 702px; z-index: 10; }\",\".framer-ZUpSR .framer-6m7h7f-container, .framer-ZUpSR .framer-1vnnhv2-container { flex: none; height: auto; position: relative; width: auto; z-index: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZUpSR.framer-t5qhf8 { gap: 0px; } .framer-ZUpSR.framer-t5qhf8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ZUpSR.framer-t5qhf8 > :first-child { margin-left: 0px; } .framer-ZUpSR.framer-t5qhf8 > :last-child { margin-right: 0px; } }\",\".framer-ZUpSR.framer-v-aymtkk .framer-et5fgc-container, .framer-ZUpSR.framer-v-1uaz2wp .framer-lp300-container { left: unset; right: -182px; }\",\".framer-ZUpSR.framer-v-aymtkk .framer-lp300-container { left: -182px; }\",\".framer-ZUpSR.framer-v-aymtkk .framer-1fb4lfq-container { left: calc(50.00000000000002% - 490px / 2); right: unset; }\",\".framer-ZUpSR.framer-v-1uaz2wp .framer-et5fgc-container { left: calc(50.00000000000002% - 490px / 2); }\",\".framer-ZUpSR.framer-v-1uaz2wp .framer-1fb4lfq-container { left: -182px; right: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 631\n * @framerIntrinsicWidth 1136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XVXCbmyAk\":{\"layout\":[\"fixed\",\"auto\"]},\"CzdNeit0H\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEWbo6P45d=withCSS(Component,css,\"framer-ZUpSR\");export default FramerEWbo6P45d;FramerEWbo6P45d.displayName=\"Showcase Container\";FramerEWbo6P45d.defaultProps={height:631,width:1136};addPropertyControls(FramerEWbo6P45d,{variant:{options:[\"J_fE1EW50\",\"XVXCbmyAk\",\"CzdNeit0H\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEWbo6P45d,[{explicitInter:true,fonts:[]},...CardsShowcaseCardFonts,...HelperArrowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEWbo6P45d\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1136\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XVXCbmyAk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CzdNeit0H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"631\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HelperArrow from\"https://framerusercontent.com/modules/pb1i5yFAvUFKkYbBK7i9/fnGGAAlM2SU1L5pOYSNs/rjawdYVtT.js\";import CardsShowcaseCard from\"https://framerusercontent.com/modules/rYBETONScGsY8Z4YetSB/zvdtaZ4OJvfbLh7gUqfU/rNaojXLtB.js\";const HelperArrowFonts=getFonts(HelperArrow);const CardsShowcaseCardFonts=getFonts(CardsShowcaseCard);const cycleOrder=[\"zEUb25Tdz\",\"ekTBOuyz6\",\"d8D72Jqwc\"];const serializationHash=\"framer-5V2vs\";const variantClassNames={d8D72Jqwc:\"framer-v-1muww3s\",ekTBOuyz6:\"framer-v-rkmaja\",zEUb25Tdz:\"framer-v-b3ia63\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"zEUb25Tdz\",\"Variant 2\":\"ekTBOuyz6\",\"Variant 3\":\"d8D72Jqwc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zEUb25Tdz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zEUb25Tdz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const YX5UTzqQ_qc64p=activeVariantCallback(async(...args)=>{setVariant(\"d8D72Jqwc\");});const YX5UTzqQ_zhhq2h=activeVariantCallback(async(...args)=>{setVariant(\"zEUb25Tdz\");});const YX5UTzqQ_1w856r2=activeVariantCallback(async(...args)=>{setVariant(\"ekTBOuyz6\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"d8D72Jqwc\")return true;return false;};const isDisplayed1=()=>{if([\"ekTBOuyz6\",\"d8D72Jqwc\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"ekTBOuyz6\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-b3ia63\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zEUb25Tdz\",ref:refBinding,style:{...style},...addPropertyOverrides({d8D72Jqwc:{\"data-framer-name\":\"Variant 3\"},ekTBOuyz6:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ay1fer\",layoutDependency:layoutDependency,layoutId:\"kLGuSpPJO\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:\"63px\",y:(componentViewport?.y||0)+278+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17r0gw5-container\",layoutDependency:layoutDependency,layoutId:\"Qug4kdEu_-container\",nodeId:\"Qug4kdEu_\",rendersWithMotion:true,scopeId:\"rfgQqPiBu\",children:/*#__PURE__*/_jsx(HelperArrow,{height:\"100%\",id:\"Qug4kdEu_\",layoutId:\"Qug4kdEu_\",style:{height:\"100%\",width:\"100%\"},variant:\"Y9iCZiErY\",vJg8X8WUE:\"ArrowLeft\",width:\"100%\",YX5UTzqQ_:YX5UTzqQ_qc64p,...addPropertyOverrides({d8D72Jqwc:{YX5UTzqQ_:YX5UTzqQ_1w856r2},ekTBOuyz6:{YX5UTzqQ_:YX5UTzqQ_zhhq2h}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:\"62.9601px\",y:(componentViewport?.y||0)+278+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jek7u5-container\",layoutDependency:layoutDependency,layoutId:\"qmlObbMb6-container\",nodeId:\"qmlObbMb6\",rendersWithMotion:true,scopeId:\"rfgQqPiBu\",children:/*#__PURE__*/_jsx(HelperArrow,{height:\"100%\",id:\"qmlObbMb6\",layoutId:\"qmlObbMb6\",style:{height:\"100%\",width:\"100%\"},variant:\"Y9iCZiErY\",vJg8X8WUE:\"ArrowRight\",width:\"100%\",YX5UTzqQ_:YX5UTzqQ_1w856r2,...addPropertyOverrides({d8D72Jqwc:{YX5UTzqQ_:YX5UTzqQ_zhhq2h},ekTBOuyz6:{YX5UTzqQ_:YX5UTzqQ_qc64p}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({d8D72Jqwc:{height:593,width:\"490px\",y:(componentViewport?.y||0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x7gtiw-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"fDsGBbIBA-container\",name:\"1\",nodeId:\"fDsGBbIBA\",rendersWithMotion:true,scopeId:\"rfgQqPiBu\",style:{mask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:-4,scale:.9,transformPerspective:500,WebkitMask:\"linear-gradient(90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"},variants:{d8D72Jqwc:{mask:\"none\",rotateY:0,scale:1,WebkitMask:\"none\"}},children:/*#__PURE__*/_jsx(CardsShowcaseCard,{d7qQBLcLc:\"Macroeconom\\xeda & Geopol\\xedtica 2025 con Carlos Valverde de TradeZenter \",height:\"100%\",id:\"fDsGBbIBA\",layoutId:\"fDsGBbIBA\",name:\"1\",qOi05yIZr:\"https://www.youtube.com/watch?v=SD7QwiRCQCY\",style:{height:\"100%\",width:\"100%\"},sWyv6PV90:addImageAlt({src:\"https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg\",srcSet:\"https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FpxmeMFYmywP6sM0du2dgDoe7vQ.jpg 2560w\"},\"\"),width:\"100%\",yZ5cA5S1I:\"En este episodio, analizamos en profundidad las principales noticias econ\\xf3micas y los movimientos geopol\\xedticos que est\\xe1n marcando el rumbo del mundo actual.\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:593,width:\"490px\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a3a9xc-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"ELGdGq10F-container\",name:\"2\",nodeId:\"ELGdGq10F\",rendersWithMotion:true,scopeId:\"rfgQqPiBu\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsShowcaseCard,{d7qQBLcLc:\"Ojal\\xe1 hubiese sabido esto hace 16 a\\xf1os -    Ro Myung de TradingManias \",height:\"100%\",id:\"ELGdGq10F\",layoutId:\"ELGdGq10F\",name:\"2\",qOi05yIZr:\"https://www.youtube.com/watch?v=t5RElSpDSRk\",style:{height:\"100%\",width:\"100%\"},sWyv6PV90:addImageAlt({src:\"https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg\",srcSet:\"https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sopppxlUPA61FRk6jraRXxrXwbo.jpg 2560w\"},\"\"),width:\"100%\",yZ5cA5S1I:\"Entre muchos temas, compartimos las lecciones m\\xe1s valiosas que desear\\xeda haber conocido hace 16 a\\xf1os. Desde errores comunes hasta los secretos de una operativa s\\xf3lida.\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ekTBOuyz6:{height:593,width:\"490px\",y:(componentViewport?.y||0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-37m5ro-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"DUQ6QcR4b-container\",name:\"3\",nodeId:\"DUQ6QcR4b\",rendersWithMotion:true,scopeId:\"rfgQqPiBu\",style:{mask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\",rotateY:4,scale:.9,transformPerspective:500,WebkitMask:\"linear-gradient(-90deg, rgba(0,0,0,0) 36%, rgba(0,0,0,1) 100%) add\"},variants:{ekTBOuyz6:{mask:\"none\",rotateY:0,scale:1,WebkitMask:\"none\"}},children:/*#__PURE__*/_jsx(CardsShowcaseCard,{d7qQBLcLc:\"De la quiebra a la consistencia - Axel Ballester de @singulartraders\",height:\"100%\",id:\"DUQ6QcR4b\",layoutId:\"DUQ6QcR4b\",name:\"3\",qOi05yIZr:\"https://www.youtube.com/watch?v=04E2RW7y6tE\",style:{height:\"100%\",width:\"100%\"},sWyv6PV90:addImageAlt({src:\"https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg\",srcSet:\"https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7lwZX31LrS10chcBJ9MAM42F4wA.jpg 2560w\"},\"\"),width:\"100%\",yZ5cA5S1I:\"La inspiradora historia de Axel, en su b\\xfasqueda de una nueva oportunidad, encontr\\xf3 el mundo del trading, un camino lleno de desaf\\xedos, aprendizajes y golpes de realidad.\",...addPropertyOverrides({ekTBOuyz6:{d7qQBLcLc:\"De la quiebra a la consistencia - Axel Ballester de SingularTraders\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5V2vs.framer-tyysoi, .framer-5V2vs .framer-tyysoi { display: block; }\",\".framer-5V2vs.framer-b3ia63 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; min-height: 631px; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 1136px; }\",\".framer-5V2vs .framer-ay1fer { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 278px; width: 577px; z-index: 10; }\",\".framer-5V2vs .framer-17r0gw5-container, .framer-5V2vs .framer-1jek7u5-container { flex: none; height: 63px; position: relative; width: 63px; z-index: 6; }\",\".framer-5V2vs .framer-1x7gtiw-container { flex: none; height: 593px; left: -3202px; position: absolute; top: 0px; width: 490px; z-index: 1; }\",\".framer-5V2vs .framer-a3a9xc-container { flex: none; height: 593px; left: calc(50.00000000000002% - 490px / 2); position: absolute; top: 0px; width: 490px; z-index: 1; }\",\".framer-5V2vs .framer-37m5ro-container { flex: none; height: 593px; left: 323px; position: absolute; top: 0px; width: 490px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5V2vs.framer-b3ia63 { gap: 0px; } .framer-5V2vs.framer-b3ia63 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5V2vs.framer-b3ia63 > :first-child { margin-left: 0px; } .framer-5V2vs.framer-b3ia63 > :last-child { margin-right: 0px; } }\",\".framer-5V2vs.framer-v-1muww3s .framer-1x7gtiw-container { left: calc(50.00000000000002% - 490px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 631\n * @framerIntrinsicWidth 1136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ekTBOuyz6\":{\"layout\":[\"fixed\",\"auto\"]},\"d8D72Jqwc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrfgQqPiBu=withCSS(Component,css,\"framer-5V2vs\");export default FramerrfgQqPiBu;FramerrfgQqPiBu.displayName=\"Showcase Container MOBILE\";FramerrfgQqPiBu.defaultProps={height:631,width:1136};addPropertyControls(FramerrfgQqPiBu,{variant:{options:[\"zEUb25Tdz\",\"ekTBOuyz6\",\"d8D72Jqwc\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrfgQqPiBu,[{explicitInter:true,fonts:[]},...HelperArrowFonts,...CardsShowcaseCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrfgQqPiBu\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ekTBOuyz6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d8D72Jqwc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1136\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"631\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "name1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YX5UTzqQ_", "vJg8X8WUE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1b5t4", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerrjawdYVtT", "withCSS", "rjawdYVtT_default", "addPropertyControls", "ControlType", "addFonts", "rNaojXLtB_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "valuesByLocaleId", "rNaojXLtB_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "newTab", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pMWfLVSoJ", "ZalcL8N2g", "EPLMFdaxY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "RichText2", "css", "FramerTDhAPbewD", "withCSS", "TDhAPbewD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonYoutubeButtonFonts", "getFonts", "TDhAPbewD_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "sWyv6PV90", "d7qQBLcLc", "yZ5cA5S1I", "qOi05yIZr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "TDhAPbewD_default", "getLocalizedValue", "css", "FramerrNaojXLtB", "withCSS", "rNaojXLtB_default", "addPropertyControls", "ControlType", "addFonts", "ButtonYoutubeButtonFonts", "getFontsFromSharedStyle", "fonts", "CardsShowcaseCardFonts", "getFonts", "rNaojXLtB_default", "HelperArrowFonts", "rjawdYVtT_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "YX5UTzqQ_p1bfod", "args", "YX5UTzqQ_1sm0igr", "YX5UTzqQ_t65wm0", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerEWbo6P45d", "withCSS", "EWbo6P45d_default", "addPropertyControls", "ControlType", "addFonts", "HelperArrowFonts", "getFonts", "rjawdYVtT_default", "CardsShowcaseCardFonts", "rNaojXLtB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "YX5UTzqQ_qc64p", "args", "YX5UTzqQ_zhhq2h", "YX5UTzqQ_1w856r2", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerrfgQqPiBu", "withCSS", "rfgQqPiBu_default", "addPropertyControls", "ControlType", "addFonts"]
}
