{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/SVzZTONKDZHqe0b8dfTj/Video.js", "ssg:https://framerusercontent.com/modules/xg9jFBoso1kNuKttJQhc/tJ7Gh4CNM9RCaRNvUGKB/g9MohnivW.js", "ssg:https://framerusercontent.com/modules/35yhpGBaB6m7SHsLm7jK/vtusZqW7ARxHkHPz8U22/odqkt7MKt.js", "ssg:https://framerusercontent.com/modules/ojUaF36PbQ7YikhJRs8B/T6VtOFt5SRsU0bJV2vWk/MN6PUOA_R.js", "ssg:https://framerusercontent.com/modules/AvBTTphdfp9KSDzOMV85/ga3ZgIyYoFIbItjd5o9j/tpJJUEkpY.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;const video=videoRef.current;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;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{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\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (5eef525)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import TokensLogosCopy2 from\"https://framerusercontent.com/modules/wDfRzLk1gLxquXe2V8p5/AgF3PUFLXgofRGoXDh63/BWALnqy1u.js\";import*as localizedValues from\"./g9MohnivW-0.js\";import TokensLogosCopy3 from\"https://framerusercontent.com/modules/IL2LxUwScPaji9d8sKXp/l5ztMb0tISEGd4hxQe5U/Jj8nMiapi.js\";import TokensLogosCopy from\"https://framerusercontent.com/modules/ppmUTJHwQo2sjovEQjhJ/pkzv5M8ABqMdOPu4wCqY/JmgVeF1Lh.js\";import TokensLogosCopy4 from\"https://framerusercontent.com/modules/0T9Ylr2Pg5NdukIbjHix/uaMkb68wSQlDqX24Yr6t/vvS85X6d6.js\";import TokensLogosCopy5 from\"https://framerusercontent.com/modules/LmErOVrxhtrJpB55mQcb/N1Q5PN2QuthgBojdc2ng/x1QVq1CDN.js\";const TokensLogosCopyFonts=getFonts(TokensLogosCopy);const TokensLogosCopy2Fonts=getFonts(TokensLogosCopy2);const TokensLogosCopy3Fonts=getFonts(TokensLogosCopy3);const TokensLogosCopy4Fonts=getFonts(TokensLogosCopy4);const TokensLogosCopy5Fonts=getFonts(TokensLogosCopy5);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"bw9Hs8qrB\",\"ZfP3I3uP0\",\"ZOXU79OCA\"];const serializationHash=\"framer-bfESg\";const variantClassNames={bw9Hs8qrB:\"framer-v-1u7yli6\",ZfP3I3uP0:\"framer-v-3x4aqd\",ZOXU79OCA:\"framer-v-1d5kmf\"};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={e67N8JDZP: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 animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:30,delay:.1,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"bw9Hs8qrB\",Mobile:\"ZOXU79OCA\",Tablet:\"ZfP3I3uP0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"bw9Hs8qrB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bw9Hs8qrB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1u7yli6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"bw9Hs8qrB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},tabIndex:1,...addPropertyOverrides({ZfP3I3uP0:{\"data-framer-name\":\"Tablet\"},ZOXU79OCA:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17gx1f1-container\",layoutDependency:layoutDependency,layoutId:\"ay7qluSLr-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:75,height:\"100%\",hoverFactor:1,id:\"ay7qluSLr\",layoutId:\"ay7qluSLr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kt3gy0-container\",\"data-framer-name\":\"CLC Logo\",layoutDependency:layoutDependency,layoutId:\"xqSmjKuBI-container\",name:\"CLC Logo\",children:/*#__PURE__*/_jsx(TokensLogosCopy,{height:\"100%\",id:\"xqSmjKuBI\",layoutId:\"xqSmjKuBI\",name:\"CLC Logo\",q4Tl71JqI:addImageAlt({src:\"https://framerusercontent.com/images/Mntz3qGEQEvNWviASgmatJUQE4.png\",srcSet:\"https://framerusercontent.com/images/Mntz3qGEQEvNWviASgmatJUQE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mntz3qGEQEvNWviASgmatJUQE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mntz3qGEQEvNWviASgmatJUQE4.png 1992w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jd3i2e-container\",\"data-framer-name\":\"M2M Logo\",layoutDependency:layoutDependency,layoutId:\"X8qtAw3D6-container\",name:\"M2M Logo\",children:/*#__PURE__*/_jsx(TokensLogosCopy2,{height:\"100%\",id:\"X8qtAw3D6\",layoutId:\"X8qtAw3D6\",name:\"M2M Logo\",q4Tl71JqI:addImageAlt({src:\"https://framerusercontent.com/images/kc5xVyjPQeFA5dtSx3hdG0BvcE.png\",srcSet:\"https://framerusercontent.com/images/kc5xVyjPQeFA5dtSx3hdG0BvcE.png?scale-down-to=512 512w,https://framerusercontent.com/images/kc5xVyjPQeFA5dtSx3hdG0BvcE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kc5xVyjPQeFA5dtSx3hdG0BvcE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kc5xVyjPQeFA5dtSx3hdG0BvcE.png 3130w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10k9cln-container\",\"data-framer-name\":\"MobioT Logo\",layoutDependency:layoutDependency,layoutId:\"Lz9wodKmu-container\",name:\"MobioT Logo\",children:/*#__PURE__*/_jsx(TokensLogosCopy3,{height:\"100%\",id:\"Lz9wodKmu\",layoutId:\"Lz9wodKmu\",name:\"MobioT Logo\",q4Tl71JqI:addImageAlt({src:\"https://framerusercontent.com/images/oVQ8NbSvphsz25l9dKfsjI8sz0.png\",srcSet:\"https://framerusercontent.com/images/oVQ8NbSvphsz25l9dKfsjI8sz0.png?scale-down-to=512 512w,https://framerusercontent.com/images/oVQ8NbSvphsz25l9dKfsjI8sz0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oVQ8NbSvphsz25l9dKfsjI8sz0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oVQ8NbSvphsz25l9dKfsjI8sz0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/oVQ8NbSvphsz25l9dKfsjI8sz0.png 4201w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkseh5-container\",\"data-framer-name\":\"DIS Logo\",layoutDependency:layoutDependency,layoutId:\"Zu1ln1GoG-container\",name:\"DIS Logo\",children:/*#__PURE__*/_jsx(TokensLogosCopy4,{height:\"100%\",id:\"Zu1ln1GoG\",layoutId:\"Zu1ln1GoG\",name:\"DIS Logo\",q4Tl71JqI:addImageAlt({src:\"https://framerusercontent.com/images/iejxbt19EzEgoxPD4vuwHn5xYw.png\",srcSet:\"https://framerusercontent.com/images/iejxbt19EzEgoxPD4vuwHn5xYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/iejxbt19EzEgoxPD4vuwHn5xYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iejxbt19EzEgoxPD4vuwHn5xYw.png 1484w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jkjm7g-container\",\"data-framer-name\":\"CYI Logo\",layoutDependency:layoutDependency,layoutId:\"GJNZ8OrBf-container\",name:\"CYI Logo\",children:/*#__PURE__*/_jsx(TokensLogosCopy5,{height:\"100%\",id:\"GJNZ8OrBf\",layoutId:\"GJNZ8OrBf\",name:\"CYI Logo\",q4Tl71JqI:addImageAlt({src:\"https://framerusercontent.com/images/8ky3lIBaPTlZDTJ3Cphvrujo.png\",srcSet:\"https://framerusercontent.com/images/8ky3lIBaPTlZDTJ3Cphvrujo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8ky3lIBaPTlZDTJ3Cphvrujo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8ky3lIBaPTlZDTJ3Cphvrujo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8ky3lIBaPTlZDTJ3Cphvrujo.png 2231w\"},\"\"),width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({ZfP3I3uP0:{gap:0},ZOXU79OCA:{gap:0}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bfESg.framer-sf3az1, .framer-bfESg .framer-sf3az1 { display: block; }\",\".framer-bfESg.framer-1u7yli6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bfESg .framer-17gx1f1-container { flex: none; height: 280px; position: relative; width: 811px; }\",\".framer-bfESg .framer-kt3gy0-container, .framer-bfESg .framer-jd3i2e-container, .framer-bfESg .framer-10k9cln-container, .framer-bfESg .framer-bkseh5-container, .framer-bfESg .framer-1jkjm7g-container { height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bfESg.framer-1u7yli6 { gap: 0px; } .framer-bfESg.framer-1u7yli6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bfESg.framer-1u7yli6 > :first-child { margin-top: 0px; } .framer-bfESg.framer-1u7yli6 > :last-child { margin-bottom: 0px; } }\",\".framer-bfESg.framer-v-3x4aqd.framer-1u7yli6 { gap: 12px; width: 350px; }\",\".framer-bfESg.framer-v-3x4aqd .framer-17gx1f1-container, .framer-bfESg.framer-v-1d5kmf .framer-17gx1f1-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bfESg.framer-v-3x4aqd.framer-1u7yli6 { gap: 0px; } .framer-bfESg.framer-v-3x4aqd.framer-1u7yli6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bfESg.framer-v-3x4aqd.framer-1u7yli6 > :first-child { margin-top: 0px; } .framer-bfESg.framer-v-3x4aqd.framer-1u7yli6 > :last-child { margin-bottom: 0px; } }\",\".framer-bfESg.framer-v-1d5kmf.framer-1u7yli6 { gap: 12px; height: 240px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bfESg.framer-v-1d5kmf.framer-1u7yli6 { gap: 0px; } .framer-bfESg.framer-v-1d5kmf.framer-1u7yli6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bfESg.framer-v-1d5kmf.framer-1u7yli6 > :first-child { margin-top: 0px; } .framer-bfESg.framer-v-1d5kmf.framer-1u7yli6 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 280\n * @framerIntrinsicWidth 811\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ZfP3I3uP0\":{\"layout\":[\"fixed\",\"auto\"]},\"ZOXU79OCA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg9MohnivW=withCSS(Component,css,\"framer-bfESg\");export default Framerg9MohnivW;Framerg9MohnivW.displayName=\"Ticker - Tokens Copy\";Framerg9MohnivW.defaultProps={height:280,width:811};addPropertyControls(Framerg9MohnivW,{variant:{options:[\"bw9Hs8qrB\",\"ZfP3I3uP0\",\"ZOXU79OCA\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerg9MohnivW,[{explicitInter:true,fonts:[]},...TokensLogosCopyFonts,...TokensLogosCopy2Fonts,...TokensLogosCopy3Fonts,...TokensLogosCopy4Fonts,...TokensLogosCopy5Fonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg9MohnivW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"280\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"811\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZfP3I3uP0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZOXU79OCA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g9MohnivW.map", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./odqkt7MKt-0.js\";const enabledGestures={WAaz3phyj:{hover:true}};const cycleOrder=[\"WAaz3phyj\"];const serializationHash=\"framer-C2Ie1\";const variantClassNames={WAaz3phyj:\"framer-v-1j00s30\"};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={e67N8JDZP: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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,text,title,width,...props})=>{var _ref,_ref1;return{...props,GUKfNfty0:(_ref=title!==null&&title!==void 0?title:props.GUKfNfty0)!==null&&_ref!==void 0?_ref:\"Design chages\",UnHZsjtwk:(_ref1=text!==null&&text!==void 0?text:props.UnHZsjtwk)!==null&&_ref1!==void 0?_ref1:\"Access to multiple design chages with charges\"};};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,GUKfNfty0,UnHZsjtwk,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WAaz3phyj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1j00s30\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WAaz3phyj\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({\"WAaz3phyj-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ah76gt\",layoutDependency:layoutDependency,layoutId:\"hrX60iL23\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac085fbd-8ae6-4712-88bd-739598761841, rgb(85, 45, 92)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Design chages\"})}),className:\"framer-kbbluu\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"SKGlcwqeT\",style:{\"--extracted-r6o4lv\":\"var(--token-ac085fbd-8ae6-4712-88bd-739598761841, rgb(85, 45, 92))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:GUKfNfty0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-322676e5-a001-43ca-b536-5c0d1e3a3d18, rgb(26, 26, 26)))\"},children:\"Access to multiple design chages with charges\"})}),className:\"framer-l3i0zp\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"P8XIsbVig\",style:{\"--extracted-r6o4lv\":\"var(--token-322676e5-a001-43ca-b536-5c0d1e3a3d18, rgb(26, 26, 26))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:UnHZsjtwk,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C2Ie1.framer-13bq122, .framer-C2Ie1 .framer-13bq122 { display: block; }\",\".framer-C2Ie1.framer-1j00s30 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 251px; justify-content: center; overflow: hidden; padding: 24px 26px 24px 26px; position: relative; width: 343px; will-change: var(--framer-will-change-override, transform); }\",\".framer-C2Ie1 .framer-ah76gt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-C2Ie1 .framer-kbbluu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-C2Ie1 .framer-l3i0zp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C2Ie1.framer-1j00s30, .framer-C2Ie1 .framer-ah76gt { gap: 0px; } .framer-C2Ie1.framer-1j00s30 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-C2Ie1.framer-1j00s30 > :first-child, .framer-C2Ie1 .framer-ah76gt > :first-child { margin-top: 0px; } .framer-C2Ie1.framer-1j00s30 > :last-child, .framer-C2Ie1 .framer-ah76gt > :last-child { margin-bottom: 0px; } .framer-C2Ie1 .framer-ah76gt > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }\",\".framer-C2Ie1.framer-v-1j00s30.hover.framer-1j00s30 { height: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 251\n * @framerIntrinsicWidth 343\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ciEwZkgeQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GUKfNfty0\":\"title\",\"UnHZsjtwk\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerodqkt7MKt=withCSS(Component,css,\"framer-C2Ie1\");export default Framerodqkt7MKt;Framerodqkt7MKt.displayName=\"Featutes Copy\";Framerodqkt7MKt.defaultProps={height:251,width:343};addPropertyControls(Framerodqkt7MKt,{GUKfNfty0:{defaultValue:\"Design chages\",displayTextArea:false,title:\"Title\",type:ControlType.String},UnHZsjtwk:{defaultValue:\"Access to multiple design chages with charges\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(Framerodqkt7MKt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerodqkt7MKt\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"251\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"GUKfNfty0\\\":\\\"title\\\",\\\"UnHZsjtwk\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ciEwZkgeQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"343\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./odqkt7MKt.map", "// Generated by Framer (38fb4ea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./MN6PUOA_R-0.js\";import FeatutesCopy from\"https://framerusercontent.com/modules/35yhpGBaB6m7SHsLm7jK/vtusZqW7ARxHkHPz8U22/odqkt7MKt.js\";const FeatutesCopyFonts=getFonts(FeatutesCopy);const cycleOrder=[\"p7Q124P1O\"];const serializationHash=\"framer-7RksI\";const variantClassNames={p7Q124P1O:\"framer-v-18i9tj5\"};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={e67N8JDZP: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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p7Q124P1O\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18i9tj5\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"p7Q124P1O\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t2qpob-container\",layoutDependency:layoutDependency,layoutId:\"Wq9dPwXyU-container\",children:/*#__PURE__*/_jsx(FeatutesCopy,{GUKfNfty0:\"5x50 MB Data\",height:\"100%\",id:\"Wq9dPwXyU\",layoutId:\"Wq9dPwXyU\",style:{height:\"100%\",width:\"100%\"},UnHZsjtwk:\"In the realm of IoT, devices often operate on minimal data over extended periods. That's why we've crafted the Only Data Flat you Need, offering an optimal data bundle tailored for five years of seamless connectivity. \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-67wsg7-container\",layoutDependency:layoutDependency,layoutId:\"leLgHYJPc-container\",children:/*#__PURE__*/_jsx(FeatutesCopy,{GUKfNfty0:\"5x 25 SMS\",height:\"100%\",id:\"leLgHYJPc\",layoutId:\"leLgHYJPc\",style:{width:\"100%\"},UnHZsjtwk:\"In the IoT realm, SMS is crucial for fallback and wake-up scenarios. We provide a generous SMS allocation to ensure your IoT projects maintain seamless connectivity and operation throughout their lifecycle.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rrq9sd-container\",layoutDependency:layoutDependency,layoutId:\"wRLAqj_7b-container\",children:/*#__PURE__*/_jsx(FeatutesCopy,{GUKfNfty0:\"IMEI Lock\",height:\"100%\",id:\"wRLAqj_7b\",layoutId:\"wRLAqj_7b\",style:{width:\"100%\"},UnHZsjtwk:\"IMEI locking enhances IoT security by tying devices to specific networks, preventing unauthorised use and ensuring secure, reliable connectivity. This safeguard is vital for managing device access and protecting data.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pphmrv-container\",layoutDependency:layoutDependency,layoutId:\"dmSyHpmAl-container\",children:/*#__PURE__*/_jsx(FeatutesCopy,{GUKfNfty0:\"IP Security\",height:\"100%\",id:\"dmSyHpmAl\",layoutId:\"dmSyHpmAl\",style:{width:\"100%\"},UnHZsjtwk:\"We offer IP Security in IoT to empower our customers with a fortress against cyber threats, ensuring their data flows securely across networks. \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1plozao-container\",layoutDependency:layoutDependency,layoutId:\"fi034NiVA-container\",children:/*#__PURE__*/_jsx(FeatutesCopy,{GUKfNfty0:\"Freedom to Switch\",height:\"100%\",id:\"fi034NiVA\",layoutId:\"fi034NiVA\",style:{width:\"100%\"},UnHZsjtwk:\"Say goodbye to traditional constraints and hello to the freedom of switching operator profiles remotely. With The IoT Provider, you're not just prepared for the evolving landscape of IoT; you're a step ahead.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zubwle-container\",layoutDependency:layoutDependency,layoutId:\"CfOcPVMRd-container\",children:/*#__PURE__*/_jsx(FeatutesCopy,{GUKfNfty0:\"Customer Portal\",height:\"100%\",id:\"CfOcPVMRd\",layoutId:\"CfOcPVMRd\",style:{width:\"100%\"},UnHZsjtwk:\" Our Customer Portal, accessible through The IoT Provider Connectivity Platform, streamlines your IoT SIM card management. \",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7RksI.framer-10p8dvr, .framer-7RksI .framer-10p8dvr { display: block; }\",\".framer-7RksI.framer-18i9tj5 { display: grid; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-7RksI .framer-1t2qpob-container { align-self: start; flex: none; height: 258px; justify-self: start; position: relative; width: 100%; }\",\".framer-7RksI .framer-67wsg7-container, .framer-7RksI .framer-rrq9sd-container, .framer-7RksI .framer-1pphmrv-container, .framer-7RksI .framer-1plozao-container, .framer-7RksI .framer-zubwle-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 529\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMN6PUOA_R=withCSS(Component,css,\"framer-7RksI\");export default FramerMN6PUOA_R;FramerMN6PUOA_R.displayName=\"Feature Grid\";FramerMN6PUOA_R.defaultProps={height:529,width:1100};addFonts(FramerMN6PUOA_R,[{explicitInter:true,fonts:[]},...FeatutesCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMN6PUOA_R\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1100\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"529\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d2b7042)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const enabledGestures={FtjA5ihHE:{hover:true},LQg20Ysuh:{hover:true},OJ_xlG4QZ:{hover:true},QZJ4yaWBB:{hover:true},SN9K4sHy0:{hover:true},T1sjtIkEP:{hover:true},VlLjeqkiY:{hover:true},yNYAcvhAo:{hover:true}};const cycleOrder=[\"LQg20Ysuh\",\"FtjA5ihHE\",\"SN9K4sHy0\",\"OJ_xlG4QZ\",\"QZJ4yaWBB\",\"yNYAcvhAo\",\"T1sjtIkEP\",\"VlLjeqkiY\"];const serializationHash=\"framer-7PqD2\";const variantClassNames={FtjA5ihHE:\"framer-v-134emjt\",LQg20Ysuh:\"framer-v-7n5345\",OJ_xlG4QZ:\"framer-v-19xnvd2\",QZJ4yaWBB:\"framer-v-1jol2tm\",SN9K4sHy0:\"framer-v-1by6vii\",T1sjtIkEP:\"framer-v-qil909\",VlLjeqkiY:\"framer-v-5dkwpl\",yNYAcvhAo:\"framer-v-a3cj01\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,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={\"Large/Primary/Icon\":\"SN9K4sHy0\",\"Large/Secondary\":\"yNYAcvhAo\",\"Medium/primary/Icon\":\"OJ_xlG4QZ\",\"Medium/Secondary\":\"T1sjtIkEP\",\"Nav Button\":\"FtjA5ihHE\",\"Nav Link\":\"LQg20Ysuh\",\"Small/primary/Icon\":\"QZJ4yaWBB\",\"Small/Secondary\":\"VlLjeqkiY\"};const getProps=({height,id,link,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,nOnPp8FH5:(_ref=title!==null&&title!==void 0?title:props.nOnPp8FH5)!==null&&_ref!==void 0?_ref:\"Button\",QGfy0O994:tap!==null&&tap!==void 0?tap:props.QGfy0O994,qXabZ_TCJ:link!==null&&link!==void 0?link:props.qXabZ_TCJ,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"LQg20Ysuh\"};};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,nOnPp8FH5,qXabZ_TCJ,QGfy0O994,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"LQg20Ysuh\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sa59ja=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(QGfy0O994){const res=await QGfy0O994(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"SN9K4sHy0-hover\",\"OJ_xlG4QZ-hover\",\"QZJ4yaWBB-hover\"].includes(gestureVariant))return true;if([\"SN9K4sHy0\",\"OJ_xlG4QZ\",\"QZJ4yaWBB\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"SN9K4sHy0-hover\",\"OJ_xlG4QZ-hover\",\"QZJ4yaWBB-hover\",\"yNYAcvhAo-hover\",\"T1sjtIkEP-hover\",\"VlLjeqkiY-hover\"].includes(gestureVariant))return false;if([\"SN9K4sHy0\",\"OJ_xlG4QZ\",\"QZJ4yaWBB\",\"yNYAcvhAo\",\"T1sjtIkEP\",\"VlLjeqkiY\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsx(Link,{href:qXabZ_TCJ,smoothScroll:true,...addPropertyOverrides({FtjA5ihHE:{openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-7n5345\",className,classNames)} framer-uch00y`,\"data-framer-name\":\"Nav Link\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LQg20Ysuh\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1sa59ja,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(22, 27, 33, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"none\",...style},variants:{\"FtjA5ihHE-hover\":{\"--border-color\":\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\",backgroundColor:\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\",boxShadow:'0px 0px 10px 0px var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19)) /* {\"name\":\"Accent Yellow\"} */'},\"OJ_xlG4QZ-hover\":{boxShadow:'0px 0px 20px 0px var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19)) /* {\"name\":\"Accent Yellow\"} */'},\"QZJ4yaWBB-hover\":{boxShadow:'0px 0px 20px 0px var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19)) /* {\"name\":\"Accent Yellow\"} */'},\"SN9K4sHy0-hover\":{boxShadow:'0px 0px 20px 0px var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19)) /* {\"name\":\"Accent Yellow\"} */'},\"T1sjtIkEP-hover\":{\"--border-color\":\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\",backgroundColor:\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\",boxShadow:'0px 0px 20px 0px var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19)) /* {\"name\":\"Accent Yellow\"} */'},\"VlLjeqkiY-hover\":{\"--border-color\":\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\",backgroundColor:\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\",boxShadow:'0px 0px 20px 0px var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19)) /* {\"name\":\"Accent Yellow\"} */'},\"yNYAcvhAo-hover\":{\"--border-color\":\"rgba(34, 34, 34, 0)\",backgroundColor:\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\",boxShadow:'0px 0px 20px 0px var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19)) /* {\"name\":\"Accent Yellow\"} */'},FtjA5ihHE:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(203, 211, 221)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(59, 71, 88, 0)\"},OJ_xlG4QZ:{backgroundColor:\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\"},QZJ4yaWBB:{backgroundColor:\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\"},SN9K4sHy0:{backgroundColor:\"var(--token-c33d47c9-6e2d-4b00-a100-dda655d27bf1, rgb(231, 224, 19))\"},T1sjtIkEP:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(203, 211, 221)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},VlLjeqkiY:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(203, 211, 221)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},yNYAcvhAo:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b3eb2566-576e-41f9-a77f-af5821bf159f, rgb(221, 225, 232))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"FtjA5ihHE-hover\":{\"data-framer-name\":undefined},\"LQg20Ysuh-hover\":{\"data-framer-name\":undefined},\"OJ_xlG4QZ-hover\":{\"data-framer-name\":undefined},\"QZJ4yaWBB-hover\":{\"data-framer-name\":undefined},\"SN9K4sHy0-hover\":{\"data-framer-name\":undefined},\"T1sjtIkEP-hover\":{\"data-framer-name\":undefined},\"VlLjeqkiY-hover\":{\"data-framer-name\":undefined},\"yNYAcvhAo-hover\":{\"data-framer-name\":undefined},FtjA5ihHE:{\"data-border\":true,\"data-framer-name\":\"Nav Button\"},OJ_xlG4QZ:{\"data-framer-name\":\"Medium/primary/Icon\"},QZJ4yaWBB:{\"data-framer-name\":\"Small/primary/Icon\"},SN9K4sHy0:{\"data-framer-name\":\"Large/Primary/Icon\"},T1sjtIkEP:{\"data-border\":true,\"data-framer-name\":\"Medium/Secondary\"},VlLjeqkiY:{\"data-border\":true,\"data-framer-name\":\"Small/Secondary\"},yNYAcvhAo:{\"data-border\":true,\"data-framer-name\":\"Large/Secondary\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-prabrb-container\",layoutDependency:layoutDependency,layoutId:\"urtKyQTUM-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"urtKyQTUM\",layoutId:\"urtKyQTUM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({OJ_xlG4QZ:{color:\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},QZJ4yaWBB:{color:\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},SN9K4sHy0:{color:\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(203, 211, 221))\"},children:\"Button\"})}),className:\"framer-jt3829\",fonts:[\"CUSTOM;Cerebri Sans Bold\"],layoutDependency:layoutDependency,layoutId:\"JjLQV91Xp\",style:{\"--extracted-r6o4lv\":\"rgb(203, 211, 221)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",textShadow:\"none\"},text:nOnPp8FH5,variants:{\"FtjA5ihHE-hover\":{\"--extracted-r6o4lv\":\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},\"LQg20Ysuh-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 0px 20px rgba(236, 228, 25, 0.6)\"},\"T1sjtIkEP-hover\":{\"--extracted-r6o4lv\":\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},\"VlLjeqkiY-hover\":{\"--extracted-r6o4lv\":\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},\"yNYAcvhAo-hover\":{\"--extracted-r6o4lv\":\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},OJ_xlG4QZ:{\"--extracted-r6o4lv\":\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},QZJ4yaWBB:{\"--extracted-r6o4lv\":\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},SN9K4sHy0:{\"--extracted-r6o4lv\":\"var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1))\"},yNYAcvhAo:{\"--extracted-r6o4lv\":\"var(--token-b3eb2566-576e-41f9-a77f-af5821bf159f, rgb(221, 225, 232))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"FtjA5ihHE-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1)))\"},children:\"Button\"})})},\"LQg20Ysuh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Button\"})})},\"T1sjtIkEP-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1)))\"},children:\"Button\"})})},\"VlLjeqkiY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1)))\"},children:\"Button\"})})},\"yNYAcvhAo-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1)))\"},children:\"Button\"})})},OJ_xlG4QZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1)))\"},children:\"Button\"})})},QZJ4yaWBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1)))\"},children:\"Button\"})})},SN9K4sHy0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1a85f47e-5a78-401a-8b68-44fed6bc12d6, rgb(0, 1, 1)))\"},children:\"Button\"})})},T1sjtIkEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(203, 211, 221))\"},children:\"Button\"})})},yNYAcvhAo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlcmVicmkgU2FucyBCb2xk\",\"--framer-font-family\":'\"Cerebri Sans Bold\", \"Cerebri Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3eb2566-576e-41f9-a77f-af5821bf159f, rgb(221, 225, 232)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jk762y\",layoutDependency:layoutDependency,layoutId:\"kIyET5NJp\",style:{backgroundColor:\"rgba(22, 27, 33, 0)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,boxShadow:\"none\"},variants:{\"FtjA5ihHE-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"LQg20Ysuh-hover\":{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 0px 20px 0px rgba(255, 255, 255, 0.6)\"},FtjA5ihHE:{backgroundColor:\"rgba(0, 0, 0, 0)\"}}})]})})})})});});const css=['.framer-7PqD2[data-border=\"true\"]::after, .framer-7PqD2 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7PqD2.framer-uch00y, .framer-7PqD2 .framer-uch00y { display: block; }\",\".framer-7PqD2.framer-7n5345 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 2px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-7PqD2 .framer-prabrb-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-7PqD2 .framer-jt3829 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7PqD2 .framer-jk762y { flex: none; height: 2px; overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-7n5345 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-7PqD2.framer-7n5345 > :first-child { margin-top: 0px; } .framer-7PqD2.framer-7n5345 > :last-child { margin-bottom: 0px; } }\",\".framer-7PqD2.framer-v-1by6vii.framer-7n5345, .framer-7PqD2.framer-v-a3cj01.framer-7n5345 { flex-direction: row; padding: 18px 36px 18px 36px; }\",\".framer-7PqD2.framer-v-1by6vii .framer-prabrb-container { order: 1; }\",\".framer-7PqD2.framer-v-1by6vii .framer-jt3829, .framer-7PqD2.framer-v-19xnvd2 .framer-jt3829, .framer-7PqD2.framer-v-1jol2tm .framer-jt3829, .framer-7PqD2.framer-v-a3cj01 .framer-jt3829, .framer-7PqD2.framer-v-qil909 .framer-jt3829, .framer-7PqD2.framer-v-5dkwpl .framer-jt3829 { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-1by6vii.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-1by6vii.framer-7n5345 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7PqD2.framer-v-1by6vii.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-1by6vii.framer-7n5345 > :last-child { margin-right: 0px; } }\",\".framer-7PqD2.framer-v-19xnvd2.framer-7n5345, .framer-7PqD2.framer-v-qil909.framer-7n5345 { flex-direction: row; padding: 14px 28px 14px 28px; }\",\".framer-7PqD2.framer-v-19xnvd2 .framer-prabrb-container { height: 20px; order: 1; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-19xnvd2.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-19xnvd2.framer-7n5345 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7PqD2.framer-v-19xnvd2.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-19xnvd2.framer-7n5345 > :last-child { margin-right: 0px; } }\",\".framer-7PqD2.framer-v-1jol2tm.framer-7n5345, .framer-7PqD2.framer-v-5dkwpl.framer-7n5345 { flex-direction: row; padding: 10px 20px 10px 20px; }\",\".framer-7PqD2.framer-v-1jol2tm .framer-prabrb-container { height: 16px; order: 1; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-1jol2tm.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-1jol2tm.framer-7n5345 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7PqD2.framer-v-1jol2tm.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-1jol2tm.framer-7n5345 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-a3cj01.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-a3cj01.framer-7n5345 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7PqD2.framer-v-a3cj01.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-a3cj01.framer-7n5345 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-qil909.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-qil909.framer-7n5345 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7PqD2.framer-v-qil909.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-qil909.framer-7n5345 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-5dkwpl.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-5dkwpl.framer-7n5345 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7PqD2.framer-v-5dkwpl.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-5dkwpl.framer-7n5345 > :last-child { margin-right: 0px; } }\",\".framer-7PqD2.framer-v-7n5345.hover .framer-jk762y { width: 20px; }\",\".framer-7PqD2.framer-v-1by6vii.hover.framer-7n5345 { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-1by6vii.hover.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-1by6vii.hover.framer-7n5345 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-7PqD2.framer-v-1by6vii.hover.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-1by6vii.hover.framer-7n5345 > :last-child { margin-right: 0px; } }\",\".framer-7PqD2.framer-v-19xnvd2.hover.framer-7n5345, .framer-7PqD2.framer-v-1jol2tm.hover.framer-7n5345 { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-19xnvd2.hover.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-19xnvd2.hover.framer-7n5345 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-7PqD2.framer-v-19xnvd2.hover.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-19xnvd2.hover.framer-7n5345 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7PqD2.framer-v-1jol2tm.hover.framer-7n5345 { gap: 0px; } .framer-7PqD2.framer-v-1jol2tm.hover.framer-7n5345 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-7PqD2.framer-v-1jol2tm.hover.framer-7n5345 > :first-child { margin-left: 0px; } .framer-7PqD2.framer-v-1jol2tm.hover.framer-7n5345 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 92\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FtjA5ihHE\":{\"layout\":[\"auto\",\"auto\"]},\"SN9K4sHy0\":{\"layout\":[\"auto\",\"auto\"]},\"OJ_xlG4QZ\":{\"layout\":[\"auto\",\"auto\"]},\"QZJ4yaWBB\":{\"layout\":[\"auto\",\"auto\"]},\"yNYAcvhAo\":{\"layout\":[\"auto\",\"auto\"]},\"T1sjtIkEP\":{\"layout\":[\"auto\",\"auto\"]},\"VlLjeqkiY\":{\"layout\":[\"auto\",\"auto\"]},\"EKi2HcYbr\":{\"layout\":[\"auto\",\"auto\"]},\"oyl_LgQJF\":{\"layout\":[\"auto\",\"auto\"]},\"vQ5lFvLFu\":{\"layout\":[\"auto\",\"auto\"]},\"F5Pj4BYPu\":{\"layout\":[\"auto\",\"auto\"]},\"nNW8VQEjY\":{\"layout\":[\"auto\",\"auto\"]},\"Caaiybl8X\":{\"layout\":[\"auto\",\"auto\"]},\"hOnMwSPmI\":{\"layout\":[\"auto\",\"auto\"]},\"dpDo2s6jw\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"nOnPp8FH5\":\"title\",\"qXabZ_TCJ\":\"link\",\"QGfy0O994\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramertpJJUEkpY=withCSS(Component,css,\"framer-7PqD2\");export default FramertpJJUEkpY;FramertpJJUEkpY.displayName=\"Buttons\";FramertpJJUEkpY.defaultProps={height:39,width:92};addPropertyControls(FramertpJJUEkpY,{variant:{options:[\"LQg20Ysuh\",\"FtjA5ihHE\",\"SN9K4sHy0\",\"OJ_xlG4QZ\",\"QZJ4yaWBB\",\"yNYAcvhAo\",\"T1sjtIkEP\",\"VlLjeqkiY\"],optionTitles:[\"Nav Link\",\"Nav Button\",\"Large/Primary/Icon\",\"Medium/primary/Icon\",\"Small/primary/Icon\",\"Large/Secondary\",\"Medium/Secondary\",\"Small/Secondary\"],title:\"Variant\",type:ControlType.Enum},nOnPp8FH5:{defaultValue:\"Button\",displayTextArea:false,title:\"Title\",type:ControlType.String},qXabZ_TCJ:{title:\"Link\",type:ControlType.Link},QGfy0O994:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramertpJJUEkpY,[{family:\"Cerebri Sans Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/2R9IWGchwm3brVw6emD7YB4o5w.woff2\"},...MaterialFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertpJJUEkpY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"39\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FtjA5ihHE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SN9K4sHy0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OJ_xlG4QZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QZJ4yaWBB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yNYAcvhAo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"T1sjtIkEP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VlLjeqkiY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EKi2HcYbr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oyl_LgQJF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vQ5lFvLFu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"F5Pj4BYPu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nNW8VQEjY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Caaiybl8X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hOnMwSPmI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dpDo2s6jw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"nOnPp8FH5\\\":\\\"title\\\",\\\"qXabZ_TCJ\\\":\\\"link\\\",\\\"QGfy0O994\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"92\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tpJJUEkpY.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", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "TokensLogosCopyFonts", "getFonts", "JmgVeF1Lh_default", "TokensLogosCopy2Fonts", "BWALnqy1u_default", "TokensLogosCopy3Fonts", "Jj8nMiapi_default", "TokensLogosCopy4Fonts", "vvS85X6d6_default", "TokensLogosCopy5Fonts", "x1QVq1CDN_default", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithFX", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Ticker", "JmgVeF1Lh_default", "BWALnqy1u_default", "Jj8nMiapi_default", "vvS85X6d6_default", "x1QVq1CDN_default", "css", "Framerg9MohnivW", "withCSS", "g9MohnivW_default", "addPropertyControls", "ControlType", "addFonts", "TokensLogosCopyFonts", "TokensLogosCopy2Fonts", "TokensLogosCopy3Fonts", "TokensLogosCopy4Fonts", "TokensLogosCopy5Fonts", "TickerFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "GUKfNfty0", "UnHZsjtwk", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "addPropertyOverrides", "u", "RichText2", "css", "Framerodqkt7MKt", "withCSS", "odqkt7MKt_default", "addPropertyControls", "ControlType", "addFonts", "FeatutesCopyFonts", "getFonts", "odqkt7MKt_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "odqkt7MKt_default", "css", "FramerMN6PUOA_R", "withCSS", "MN6PUOA_R_default", "addFonts", "FeatutesCopyFonts", "MaterialFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "nOnPp8FH5", "qXabZ_TCJ", "QGfy0O994", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sa59ja", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramertpJJUEkpY", "withCSS", "tpJJUEkpY_default", "addPropertyControls", "ControlType", "addFonts"]
}
