{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/IPQ8l2HHRVFYTHUBmlYK/7dc09TQ6DWxJ97kEkdB3/c25XqMOEc.js", "ssg:https://framerusercontent.com/modules/oc1PLqVNQpJxiYuRQU35/JS7f1xqtOMUZfjv9rMFt/tGsq0czOM.js", "ssg:https://framerusercontent.com/modules/exaKnN150HGAYBLldzc4/hPW2qBYYSg6DDBWksQMP/L2XCIaYtL.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (8d84d1c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"LJY3KlnVC\",\"pha7E4zml\",\"adN3aiqHt\",\"xVM2TY7DN\"];const serializationHash=\"framer-xm9Vl\";const variantClassNames={adN3aiqHt:\"framer-v-inch2q\",LJY3KlnVC:\"framer-v-140n9py\",pha7E4zml:\"framer-v-6woblp\",xVM2TY7DN:\"framer-v-hkfjo1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"LJY3KlnVC\",\"Variant 2\":\"pha7E4zml\",\"Variant 3\":\"adN3aiqHt\",\"Variant 4\":\"xVM2TY7DN\"};const getProps=({fontSize,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,itdJZF6qM:(_ref=fontSize!==null&&fontSize!==void 0?fontSize:props.itdJZF6qM)!==null&&_ref!==void 0?_ref:250,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"LJY3KlnVC\"};};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,itdJZF6qM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LJY3KlnVC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1koui2z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pha7E4zml\"),100);});const onAppear1xp9y52=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"adN3aiqHt\"),300);});const onAppearn155hy=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xVM2TY7DN\"),300);});const onAppear19zq4pm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"LJY3KlnVC\"),300);});useOnVariantChange(baseVariant,{adN3aiqHt:onAppearn155hy,default:onAppear1koui2z,pha7E4zml:onAppear1xp9y52,xVM2TY7DN:onAppear19zq4pm});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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-140n9py\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LJY3KlnVC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({adN3aiqHt:{\"data-framer-name\":\"Variant 3\"},pha7E4zml:{\"data-framer-name\":\"Variant 2\"},xVM2TY7DN:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NOzE3OTcgUE9TVEVSX1Yy\",\"--framer-font-family\":'\"1797 POSTER_V2\", \"1797 POSTER_V2 Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-itdJZF6qM-c25XqMOEc) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(249, 249, 249))\",\"--framer-text-transform\":\"uppercase\"},children:\"LOADING\"})}),className:\"framer-rseja1\",\"data-framer-name\":\"LOADING\",fonts:[\"CUSTOM;1797 POSTER_V2\"],layoutDependency:layoutDependency,layoutId:\"jjoRh6AdX\",style:{\"--extracted-r6o4lv\":\"rgb(249, 249, 249)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-itdJZF6qM-c25XqMOEc\":itdJZF6qM},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({adN3aiqHt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NOzE3OTcgUE9TVEVSX1Yy\",\"--framer-font-family\":'\"1797 POSTER_V2\", \"1797 POSTER_V2 Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-itdJZF6qM-c25XqMOEc) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(249, 249, 249))\",\"--framer-text-transform\":\"uppercase\"},children:\"LOADING..\"})})},pha7E4zml:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NOzE3OTcgUE9TVEVSX1Yy\",\"--framer-font-family\":'\"1797 POSTER_V2\", \"1797 POSTER_V2 Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-itdJZF6qM-c25XqMOEc) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(249, 249, 249))\",\"--framer-text-transform\":\"uppercase\"},children:\"LOADING.\"})})},xVM2TY7DN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NOzE3OTcgUE9TVEVSX1Yy\",\"--framer-font-family\":'\"1797 POSTER_V2\", \"1797 POSTER_V2 Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-itdJZF6qM-c25XqMOEc) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(249, 249, 249))\",\"--framer-text-transform\":\"uppercase\"},children:\"LOADING...\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xm9Vl.framer-qcz8c1, .framer-xm9Vl .framer-qcz8c1 { display: block; }\",\".framer-xm9Vl.framer-140n9py { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xm9Vl .framer-rseja1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xm9Vl.framer-140n9py { gap: 0px; } .framer-xm9Vl.framer-140n9py > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xm9Vl.framer-140n9py > :first-child { margin-left: 0px; } .framer-xm9Vl.framer-140n9py > :last-child { margin-right: 0px; } }\",\".framer-xm9Vl.framer-v-6woblp.framer-140n9py, .framer-xm9Vl.framer-v-inch2q.framer-140n9py, .framer-xm9Vl.framer-v-hkfjo1.framer-140n9py { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xm9Vl.framer-v-6woblp.framer-140n9py { gap: 0px; } .framer-xm9Vl.framer-v-6woblp.framer-140n9py > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xm9Vl.framer-v-6woblp.framer-140n9py > :first-child { margin-top: 0px; } .framer-xm9Vl.framer-v-6woblp.framer-140n9py > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xm9Vl.framer-v-inch2q.framer-140n9py { gap: 0px; } .framer-xm9Vl.framer-v-inch2q.framer-140n9py > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xm9Vl.framer-v-inch2q.framer-140n9py > :first-child { margin-top: 0px; } .framer-xm9Vl.framer-v-inch2q.framer-140n9py > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xm9Vl.framer-v-hkfjo1.framer-140n9py { gap: 0px; } .framer-xm9Vl.framer-v-hkfjo1.framer-140n9py > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xm9Vl.framer-v-hkfjo1.framer-140n9py > :first-child { margin-top: 0px; } .framer-xm9Vl.framer-v-hkfjo1.framer-140n9py > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 580\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pha7E4zml\":{\"layout\":[\"auto\",\"auto\"]},\"adN3aiqHt\":{\"layout\":[\"auto\",\"auto\"]},\"xVM2TY7DN\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"itdJZF6qM\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerc25XqMOEc=withCSS(Component,css,\"framer-xm9Vl\");export default Framerc25XqMOEc;Framerc25XqMOEc.displayName=\"LOADING\";Framerc25XqMOEc.defaultProps={height:300,width:580};addPropertyControls(Framerc25XqMOEc,{variant:{options:[\"LJY3KlnVC\",\"pha7E4zml\",\"adN3aiqHt\",\"xVM2TY7DN\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},itdJZF6qM:{defaultValue:250,title:\"Font Size\",type:ControlType.Number}});addFonts(Framerc25XqMOEc,[{explicitInter:true,fonts:[{family:\"1797 POSTER_V2\",source:\"custom\",url:\"https://framerusercontent.com/assets/d2BJtGqyJvbXhOYrIeyoWqfceA.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc25XqMOEc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"580\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"300\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pha7E4zml\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"adN3aiqHt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xVM2TY7DN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"itdJZF6qM\\\":\\\"fontSize\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./c25XqMOEc.map", "// Generated by Framer (8d84d1c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"uWs419sTV\"];const serializationHash=\"framer-lWaFe\";const variantClassNames={uWs419sTV:\"framer-v-a35zwo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition2={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)=>{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:\"uWs419sTV\",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__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-a35zwo\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uWs419sTV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l0ool8\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1047,intrinsicWidth:1144,layoutDependency:layoutDependency,layoutId:\"nBC_PfkPw\",svg:'<svg width=\"1144\" height=\"1047\" viewBox=\"0 0 1144 1047\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\" clip-path=\"url(#clip0_4102_199)\">\\n<path d=\"M50.7324 413.362C50.8775 413.616 51.0227 413.852 51.2041 414.051C51.0408 413.834 50.8594 413.634 50.7324 413.362Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M497.163 726.889C493.951 722.427 490.54 718.164 486.947 714.047C486.602 712.668 485.623 711.507 484.244 710.981C438.174 660.483 364.489 637.792 297.39 650.997C283.673 654.062 288.209 674.015 301.781 671.004C301.926 670.967 302.072 670.931 302.199 670.895C310.055 711.199 335.548 745.662 378.061 754.278C381.618 755.058 382.797 749.798 379.331 748.927C340.447 739.169 318.402 706.12 313.158 668.5C323.392 666.542 333.788 665.417 344.24 665.163C334.641 693.314 350.445 726.472 380.148 734.652C410.468 743.939 442.202 723.279 447.991 693.169C452.4 695.908 456.718 698.828 460.855 701.966C466.879 706.265 472.486 710.999 477.748 716.078C470.2 740.584 442.874 751.285 418.996 753.009C415.512 753.299 415.875 758.45 419.34 758.287C433.112 757.507 447.102 755.167 459.476 748.51C465.718 745.191 471.524 740.783 476.296 735.323C479.526 731.569 482.211 727.342 484.316 722.826C490.104 729.047 495.457 735.686 500.447 742.651C501.39 743.903 503.168 744.193 504.493 743.322C505.872 742.397 506.253 740.547 505.328 739.169C502.606 735.088 499.993 730.934 497.126 726.871L497.163 726.889ZM435.906 704.923C426.58 724.404 402.665 734.398 382.126 728.032C355.635 720.377 342.298 689.233 354.401 665.236C355.126 665.254 355.852 665.254 356.596 665.29C385.718 666.705 414.768 674.559 440.388 688.743C439.88 694.33 438.392 699.844 435.888 704.923H435.906Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M335.313 630.01C355.09 629.412 374.922 631.407 394.047 636.468C435.997 647.732 474.155 675.974 494.876 714.391C496.201 717.221 500.265 715.262 499.05 712.523C491.828 697.395 481.83 684.19 470.345 672.273C435.634 635.887 384.902 618.129 335.167 618.311C331.847 618.293 329.162 621.05 329.27 624.351C329.379 627.58 332.083 630.119 335.313 630.01Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M649.051 744.266C654.023 737.301 659.394 730.662 665.182 724.44C667.286 728.975 669.972 733.201 673.202 736.938C677.974 742.397 683.78 746.787 690.022 750.125C702.414 756.8 716.386 759.121 730.158 759.901C733.623 760.065 733.986 754.913 730.502 754.623C711.632 752.882 691.473 747.15 679.262 731.877C675.905 727.614 673.365 722.771 671.75 717.693C677.012 712.632 682.619 707.898 688.625 703.599C692.78 700.461 697.08 697.541 701.507 694.802C707.295 724.912 739.03 745.572 769.35 736.285C799.071 728.104 814.857 694.929 805.258 666.795C815.691 667.049 826.106 668.174 836.34 670.133C831.096 707.753 809.068 740.801 770.166 750.578C766.701 751.449 767.88 756.709 771.437 755.929C813.949 747.295 839.443 712.85 847.299 672.545C847.444 672.582 847.59 672.6 847.717 672.636C861.289 675.629 865.843 655.676 852.108 652.629C785.009 639.424 711.323 662.116 665.254 712.614C663.875 713.14 662.877 714.301 662.551 715.679C658.976 719.797 655.547 724.059 652.335 728.521C649.487 732.584 646.874 736.738 644.134 740.819C643.209 742.198 643.59 744.066 644.969 744.973C646.293 745.862 648.053 745.554 649.015 744.302L649.051 744.266ZM767.39 729.628C746.851 735.995 722.954 726 713.61 706.519C711.124 701.44 709.636 695.926 709.11 690.339C734.73 676.155 763.78 668.301 792.902 666.886C793.627 666.85 794.353 666.85 795.097 666.832C807.2 690.829 793.863 721.973 767.372 729.628H767.39Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M654.658 715.988C675.379 677.57 713.537 649.328 755.487 638.064C774.612 633.003 794.444 630.99 814.222 631.606C817.451 631.715 820.155 629.176 820.264 625.947C820.373 622.646 817.687 619.871 814.367 619.907C764.632 619.744 713.882 637.483 679.189 673.888C667.704 685.805 657.706 698.992 650.485 714.137C649.269 716.894 653.333 718.853 654.658 716.006V715.988Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M588.067 788.542C586.307 790.9 583.749 792.859 580.973 794.183C572.699 798.337 561.413 796.124 555.915 788.542C552.286 784.008 546.207 790.302 550.834 793.766C554.137 795.979 557.53 797.702 561.086 798.936C568.126 801.366 575.838 801.384 582.896 798.972C586.634 797.412 599.026 793.331 593.238 787.799C591.605 786.583 589.301 786.91 588.067 788.542Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M592.095 852.499C589.609 855.238 586.343 857.378 582.86 858.884C572.39 863.473 559.072 860.879 551.306 852.499C547.55 848.672 542.234 854.785 546.534 857.977C561.322 868.824 582.025 868.824 596.831 858.013C598.809 856.744 599.026 853.805 597.266 852.263C595.779 850.903 593.456 851.012 592.095 852.499Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M1130.5 333.316C1130.5 333.316 1127.43 338.322 1126.91 339.157C1129.41 332.192 1131.82 324.918 1132.66 317.118C1132.82 314.833 1132.42 312.221 1132.12 310.044C1131.59 280.986 1135.65 251.692 1138.59 222.779C1139.81 215.778 1130.83 211.551 1126.15 216.793C1123.3 220.113 1118.71 224.666 1116 228.384C1087.01 266.076 1065.02 309.119 1043.19 351.11C1029.92 377.23 1017.17 403.549 1004.74 430.031C1025.79 313.908 1051.9 118.228 1007.53 38.4902L1006.74 37.0391C1001.09 26.8452 993.345 12.8603 977.106 5.0244C952.52 -6.83829 928.206 4.31699 897.433 18.4107C870.778 30.6181 837.628 45.8183 791.722 53.1463C782.958 54.543 768.298 56.8828 748.266 57.3C722.156 57.8261 704.519 54.7425 684.088 51.151C667.323 48.2126 648.325 44.875 622.397 43.4784C591.696 41.8277 557.802 41.9729 521.694 43.9137C495.765 45.3104 476.768 48.6479 460.002 51.5864C439.572 55.1597 421.935 58.2614 395.825 57.7354C375.793 57.3182 361.132 54.9964 352.368 53.5816C306.463 46.2536 273.294 31.0534 246.658 18.8461C215.885 4.75232 191.571 -6.40296 166.985 5.45972C150.727 13.2956 142.998 27.2624 137.337 37.4745L136.538 38.9256C92.1747 118.663 118.285 314.343 139.333 430.467C126.922 403.984 114.148 377.665 100.884 351.545C86.187 322.669 70.4737 293.447 53.4722 265.677C44.5995 251.656 35.6179 237.635 24.8219 224.901L17.9088 217.229C13.2093 211.878 4.28216 216.304 5.46156 223.214C8.63687 251.221 12.5017 279.589 12.7738 307.777C12.8101 310.316 12.3565 312.856 12.1206 315.431C12.5561 325.934 16.8745 335.801 20.195 345.034C16.2395 338.322 13.6085 333.842 13.5722 333.788C9.8707 327.349 -0.308428 330.323 0.0726087 337.796C6.3325 399.976 22.8622 460.087 45.3797 518.113C52.4198 536.524 60.6393 554.445 69.0584 572.239C68.0242 576.157 64.3771 589.942 64.3771 589.942C64.0142 591.284 64.0324 592.735 64.5223 594.15C68.7318 606.357 73.2136 618.22 78.0037 630.101C87.7655 653.953 98.1624 677.388 111.97 699.391C119.428 710.854 128.028 723.08 140.494 729.791C141.038 730.063 141.582 730.245 142.109 730.39C154.102 753.263 169.017 767.429 186.527 772.653C182.226 913.735 178.198 1006.3 176.021 1014.48C175.422 1016.29 175.549 1018.25 176.366 1019.97C178.071 1023.51 191.789 1047.07 253.353 1047.07C274.655 1047.07 301.691 1044.26 335.911 1036.81C337.218 1036.52 338.415 1035.88 339.395 1034.97C342.57 1031.96 357.05 1013.37 347.433 931.656C361.096 940.635 376.555 948.543 394.301 955.636C415.348 964.07 438.265 970.836 464.375 976.314C483.699 980.377 504.439 983.605 525.994 985.927L526.793 986.018C545.028 987.977 562.247 989.809 580.7 988.594C591.388 987.886 605.45 986.87 619.548 985.347C640.559 983.061 660.754 979.887 679.625 975.933C704.882 970.636 727.146 964.125 747.685 956.071C766.32 948.761 782.505 940.581 796.712 931.221C787.095 1012.94 801.575 1031.53 804.75 1034.54C805.73 1035.46 806.927 1036.1 808.234 1036.37C941.433 1065.32 965.475 1024.31 967.779 1019.54C968.614 1017.81 968.778 1015.96 968.179 1014.17C965.965 1005.88 961.937 913.3 957.637 772.217C975.146 766.994 990.061 752.827 1002.04 729.954C1003.11 729.7 1004.21 729.211 1005.34 728.431C1008.04 726.762 1010.85 724.839 1013.16 722.663C1020.74 715.77 1026.8 707.354 1032.17 698.955C1045.98 676.953 1056.38 653.518 1066.14 629.666C1070.93 617.803 1075.41 605.94 1079.62 593.715C1080.08 592.409 1080.15 590.94 1079.77 589.507C1079.77 589.507 1076.12 575.739 1075.09 571.803C1110.32 498.07 1135.47 419.366 1144.05 337.796C1144.8 330.269 1134.51 326.859 1130.57 333.352L1130.5 333.316ZM994.652 718.255C993.781 719.289 993.291 720.395 993.073 721.538C993.019 721.665 992.946 721.774 992.892 721.901C973.132 716.477 959.651 665.508 959.651 619.49C959.651 563.877 975.164 525.477 990.769 517.986C1005.96 537.703 1011.65 568.829 1014.88 594.005C1018.28 620.342 1013.98 676.699 994.652 718.255ZM151.834 47.4507L152.651 45.9634C157.659 36.9303 163.338 26.682 174.551 21.2585C191.698 12.9873 210.623 21.6576 239.273 34.7899C266.889 47.4507 301.255 63.1951 349.538 70.904C358.138 72.2826 374.142 74.8401 395.408 75.2573C423.223 75.8196 442.529 72.4458 462.978 68.8544C480.052 65.8615 497.707 62.7598 522.583 61.4356C558.074 59.5311 591.315 59.3678 621.399 61.0003C646.275 62.3426 663.93 65.4262 681.004 68.419C701.453 72.0105 720.74 75.3843 748.574 74.822C769.822 74.3867 785.843 71.8291 794.444 70.4687C842.727 62.7598 877.093 47.0154 904.709 34.3546C933.359 21.2222 952.284 12.5519 969.431 20.8232C980.644 26.2285 986.323 36.4768 991.331 45.528L992.148 47.0154C1033.32 120.985 1010.26 324.501 974.783 491.213C971.681 489.98 968.469 488.964 965.13 488.257C965.82 479.351 966.219 470.408 966.219 461.629C966.219 261.287 790.071 98.2753 573.533 98.2753C553.157 98.2753 532.635 99.7445 512.513 102.629C421.082 115.834 337.218 158.985 276.361 224.103C214.778 290.019 180.866 374.364 180.866 461.611C180.866 470.426 181.265 479.332 181.954 488.13C177.473 488.837 173.19 489.998 169.144 491.612C133.671 324.9 110.61 121.384 151.78 47.4145L151.834 47.4507ZM908.356 757.307C904.146 762.84 899.247 767.556 893.768 771.329C889.377 774.358 883.969 777.26 877.673 780.053C890.701 756.818 900.3 728.884 906.287 696.724C910.17 675.865 911.567 658.143 912.039 646.97C912.275 641.8 912.257 638.808 912.257 638.699C912.239 635.47 909.517 632.822 906.36 632.894C903.13 632.912 900.517 635.561 900.554 638.789C900.554 638.808 900.572 641.619 900.354 646.462C900.064 653.427 899.392 663.023 897.941 674.341C886.492 653.536 861.815 631.752 827.739 613.123C827.395 612.924 827.05 612.688 826.705 612.488C848.225 610.765 864.283 609.096 874.516 607.536C884.514 605.995 893.913 609.822 902.513 619.036C903.185 619.726 903.82 620.433 904.491 621.267C906.904 624.133 909.227 627.471 911.386 631.171C930.855 664.655 934.284 723.352 908.356 757.326V757.307ZM815.365 839.095C789.309 863.836 759.116 883.879 725.603 898.644C699.638 910.108 671.841 918.361 642.991 923.222C604.869 929.625 563.536 930.84 523.418 926.704C497.326 924.02 471.579 918.451 446.902 910.144C413.77 898.989 383.287 883.099 356.27 862.874C346.653 855.673 337.363 847.819 328.617 839.53C317.966 829.445 307.932 818.435 298.552 806.663C317.132 811.488 339.214 815.768 364.507 819.432C367.265 819.922 370.041 820.394 372.817 820.847C388.313 823.387 404.698 825.581 422.915 827.54C438.537 829.227 454.595 830.624 471.996 831.857C486.04 832.837 500.755 833.689 515.743 834.342C526.756 834.832 538.206 835.231 549.963 835.558C563.554 835.558 581.426 835.485 599.262 834.959C611.474 834.596 623.594 834.125 635.261 833.562C650.684 832.819 665.799 831.894 680.169 830.805C697.788 829.463 713.973 827.939 729.65 826.126C747.812 824.021 764.088 821.682 779.166 819.015C804.641 815.333 826.778 811.052 845.358 806.209C836.013 817.963 825.961 828.991 815.292 839.095H815.365ZM235.644 757.743C209.716 723.769 213.145 665.072 232.614 631.57C234.773 627.87 237.096 624.532 239.509 621.667C240.18 620.868 240.852 620.107 241.596 619.327C248.89 611.545 256.801 607.627 265.22 607.627C266.635 607.627 268.069 607.736 269.52 607.954C279.736 609.514 295.794 611.164 317.313 612.906C316.968 613.105 316.624 613.359 316.279 613.54C282.203 632.169 257.527 653.953 246.077 674.758C244.644 663.44 243.973 653.844 243.664 646.861C243.446 642.036 243.464 639.243 243.464 639.207C243.483 635.978 240.888 633.33 237.658 633.312H237.604C234.392 633.312 231.779 635.905 231.743 639.116C231.743 639.243 231.725 642.218 231.961 647.387C232.433 658.579 233.83 676.3 237.713 697.141C243.7 729.283 253.299 757.235 266.345 780.489C260.049 777.695 254.623 774.793 250.232 771.764C244.771 767.991 239.854 763.293 235.644 757.743ZM250.94 509.969C251.775 508.953 252.319 507.683 252.319 506.268C252.319 505.905 252.283 505.561 252.21 505.216C261.029 472.512 274.964 442.348 293.725 415.557C300.511 405.853 307.969 396.584 315.843 387.986C323.337 379.824 331.411 372.06 339.885 364.914C347.887 358.148 356.433 351.763 365.287 345.923C373.616 340.426 382.434 335.275 391.488 330.613C399.962 326.26 408.853 322.215 417.925 318.606C426.362 315.25 435.144 312.203 444.035 309.518C452.218 307.051 460.71 304.838 469.238 302.952C477.004 301.247 484.987 299.76 492.953 298.544C500.084 297.456 507.378 296.567 514.599 295.896C520.914 295.297 527.301 294.88 533.579 294.608C538.877 294.391 544.175 294.282 549.31 294.282C551.705 294.282 554.1 294.372 556.495 294.463C548.457 306.834 543.068 322.524 540.183 342.186C534.613 380.114 531.655 421.162 530.893 471.388C530.494 497.816 530.803 532.442 536.663 566.035C539.367 581.634 542.941 597.56 549.8 610.983C534.831 610.62 519.753 609.858 505.055 609.078C498.088 608.716 491.12 608.335 484.135 608.008C483.899 608.008 483.627 607.99 483.391 607.972C449.569 560.793 470.581 389.02 470.798 387.224C471.107 384.812 469.383 382.617 466.988 382.327C464.593 382.018 462.379 383.723 462.089 386.136C461.182 393.319 441.93 551.016 472.831 607.482C445.432 606.176 412.59 604.489 380.964 602.603C371.148 583.775 367.501 543.344 370.459 484.701C370.459 484.629 370.459 484.538 370.459 484.466C371.221 475.124 371.638 467.288 371.856 461.829C374.305 428.653 377.771 402.914 377.807 402.642C378.134 400.248 376.446 398.035 374.051 397.708C371.638 397.382 369.443 399.069 369.116 401.463C369.08 401.699 366.158 423.483 363.763 452.796C363.491 453.358 363.31 453.993 363.31 454.664C363.273 456.641 363.201 458.727 363.128 460.885C363.128 461.085 363.092 461.266 363.092 461.466C362.493 469.592 362.04 477.065 361.695 484.266C361.695 484.611 361.677 484.955 361.64 485.3C358.302 524.353 349.592 573.599 331.284 599.32C303.541 597.252 283.473 595.311 271.679 593.515C260.974 591.865 250.668 594.259 241.305 600.444C240.507 576.755 242.067 544.94 250.886 509.987L250.94 509.969ZM577.071 294.445C586.126 306.271 592.059 322.161 595.107 343.002C600.623 380.549 603.544 421.234 604.306 471.061C604.687 497.09 604.397 531.209 598.664 564.076C595.779 580.728 591.95 597.723 584.021 610.801C581.716 610.874 579.412 610.965 577.126 611.019C570.884 611.164 565.259 611.2 559.925 611.164C552.032 598.086 548.221 581.127 545.336 564.512C539.603 531.644 539.312 497.525 539.694 471.496C540.456 421.67 543.359 380.966 548.893 343.437C551.959 322.542 557.911 306.616 567.019 294.79C569.088 294.808 571.156 294.79 573.243 294.699C574.513 294.644 575.801 294.536 577.071 294.445ZM660.519 622.174C703.92 620.143 765.648 617.005 813.332 613.504C813.441 613.504 813.568 613.504 813.677 613.486C816.798 616.461 820.082 618.946 823.53 620.832C870.216 646.353 890.901 673.126 895.346 691.392C895.165 692.462 894.983 693.514 894.784 694.602C887.889 731.587 876.095 762.622 859.746 786.837C838.826 793.694 811.028 799.643 776.916 804.577C761.892 807.243 745.907 809.529 728.035 811.596C712.539 813.392 696.536 814.898 679.117 816.222C664.873 817.292 649.886 818.217 634.608 818.961C623.032 819.523 611.002 819.977 598.881 820.339C581.245 820.865 563.499 820.92 550.217 820.92C538.732 820.611 527.355 820.194 516.432 819.723C501.572 819.07 486.983 818.235 473.066 817.256C455.847 816.04 439.971 814.644 424.512 812.993C406.585 811.07 390.454 808.912 375.231 806.409C372.509 805.955 369.805 805.502 366.866 804.994C332.972 800.097 305.193 794.147 284.254 787.291C267.887 763.021 256.111 732.004 249.216 695.019C249.017 693.931 248.853 692.897 248.654 691.827C253.099 673.561 273.784 646.789 320.47 621.267C323.918 619.381 327.202 616.896 330.323 613.921C330.45 613.921 330.559 613.921 330.668 613.939C378.352 617.44 440.08 620.596 483.463 622.61C490.413 622.936 497.344 623.299 504.293 623.662C522.202 624.605 540.71 625.584 559.018 625.784C564.733 625.838 570.757 625.784 577.452 625.639C587.087 625.421 596.849 624.986 606.284 624.587L612.054 624.333C628.203 623.644 644.352 622.918 660.5 622.156L660.519 622.174ZM802.591 599.592C793.065 600.263 783.085 600.898 772.906 601.533C778.114 588.926 781.38 570.461 782.65 546.246C787.15 565.926 793.555 585.081 802.591 599.592ZM361.35 546.663C362.62 570.878 365.868 589.362 371.094 601.986C360.915 601.351 350.935 600.698 341.409 600.045C350.463 585.534 356.85 566.38 361.35 546.681V546.663ZM902.64 599.991C893.278 593.806 882.971 591.411 872.284 593.062C860.472 594.858 840.404 596.817 812.661 598.884C794.353 573.164 785.644 523.972 782.305 484.883C782.305 484.52 782.287 484.194 782.251 483.831C781.906 476.648 781.452 469.193 780.854 461.012C780.854 460.813 780.817 460.631 780.817 460.432C780.745 458.273 780.672 456.151 780.636 454.156H780.327C777.914 423.937 774.848 401.264 774.83 401.01C774.503 398.615 772.289 396.928 769.894 397.255C767.481 397.581 765.812 399.794 766.138 402.189C766.175 402.443 769.64 428.127 772.09 461.248C772.307 466.708 772.707 474.689 773.505 484.266C776.463 542.89 772.816 583.321 762.999 602.149C731.391 604.036 698.55 605.723 671.133 607.029C702.033 550.563 682.782 392.865 681.875 385.682C681.566 383.27 679.371 381.565 676.976 381.873C674.562 382.182 672.857 384.376 673.165 386.771C673.383 388.548 694.395 560.34 660.573 607.518C660.319 607.518 660.065 607.536 659.829 607.555C643.698 608.316 627.586 609.042 611.455 609.731L605.667 609.985C601.893 610.148 598.065 610.312 594.218 610.457C601.059 597.052 604.615 581.163 607.318 565.582C613.179 531.989 613.488 497.344 613.089 470.916C612.326 420.69 609.387 379.642 603.798 341.714C600.913 322.016 595.506 306.308 587.432 293.919C587.686 293.919 587.94 293.901 588.194 293.901C590.353 293.846 592.531 293.828 594.69 293.81C597.176 293.81 599.661 293.81 602.147 293.865C604.923 293.919 607.718 294.01 610.494 294.118C613.56 294.245 616.609 294.409 619.675 294.626C622.977 294.844 626.298 295.116 629.6 295.424C633.138 295.751 636.658 296.132 640.197 296.567C643.934 297.021 647.672 297.547 651.392 298.109C655.311 298.708 659.212 299.361 663.095 300.104C667.159 300.866 671.242 301.7 675.252 302.589C679.443 303.514 683.653 304.548 687.79 305.618C692.108 306.743 696.409 307.958 700.618 309.246C705.009 310.588 709.4 312.021 713.682 313.509C718.128 315.069 722.573 316.737 726.891 318.461C731.373 320.256 735.837 322.179 740.173 324.156C744.673 326.206 749.137 328.382 753.473 330.632C757.937 332.953 762.401 335.42 766.701 337.941C771.128 340.553 775.537 343.311 779.783 346.14C784.156 349.06 788.492 352.126 792.666 355.282C796.966 358.511 801.194 361.921 805.258 365.403C809.431 368.977 813.568 372.731 817.506 376.559C821.552 380.495 825.544 384.612 829.336 388.802C833.237 393.101 837.047 397.6 840.676 402.189C843.979 406.361 847.227 410.714 850.293 415.103C869.073 441.93 883.026 472.113 891.826 504.835C891.772 505.162 891.735 505.488 891.735 505.815C891.735 507.211 892.243 508.499 893.078 509.497C901.896 544.468 903.457 576.302 902.677 600.009L902.64 599.991ZM902.459 499.394C893.26 466.273 878.998 435.654 859.873 408.374C856.662 403.785 853.287 399.25 849.839 394.897C846.047 390.126 842.074 385.41 838.009 380.93C834.035 376.541 829.88 372.242 825.653 368.142C821.534 364.152 817.234 360.216 812.861 356.497C808.615 352.87 804.188 349.314 799.706 345.923C795.351 342.639 790.833 339.429 786.261 336.382C781.833 333.425 777.243 330.559 772.616 327.838C768.134 325.208 763.507 322.632 758.844 320.22C754.344 317.88 749.699 315.613 745.018 313.491C740.518 311.441 735.873 309.446 731.228 307.577C726.746 305.782 722.138 304.058 717.529 302.444C713.102 300.902 708.547 299.415 704.011 298.036C699.656 296.712 695.193 295.461 690.729 294.3C686.465 293.193 682.111 292.141 677.774 291.18C673.637 290.255 669.409 289.402 665.218 288.622C661.226 287.879 657.162 287.19 653.134 286.573C649.305 285.992 645.44 285.448 641.594 284.977C637.965 284.523 634.318 284.142 630.671 283.798C627.259 283.471 623.848 283.199 620.437 282.963C617.28 282.746 614.123 282.582 610.966 282.437C608.099 282.31 605.214 282.219 602.329 282.165C599.752 282.111 597.194 282.093 594.617 282.093C592.367 282.093 590.136 282.129 587.886 282.183C585.999 282.238 584.112 282.292 582.206 282.365C580.483 282.437 578.741 282.564 577.017 282.691C575.547 282.8 574.096 282.909 572.626 282.981C568.144 283.199 563.663 282.999 558.927 282.818C555.715 282.691 552.504 282.546 549.292 282.546C543.994 282.546 538.514 282.637 533.034 282.872C526.557 283.145 519.97 283.598 513.456 284.197C505.999 284.886 498.505 285.811 491.138 286.936C482.901 288.187 474.663 289.729 466.661 291.488C457.843 293.429 449.061 295.715 440.606 298.272C431.388 301.047 422.28 304.222 413.534 307.686C404.117 311.441 394.863 315.631 386.063 320.166C376.646 325.009 367.465 330.378 358.774 336.109C349.538 342.204 340.629 348.879 332.264 355.935C323.428 363.408 314.972 371.516 307.152 380.041C298.914 389.02 291.149 398.688 284.054 408.809C264.948 436.09 250.668 466.708 241.469 499.829C237.295 498.995 232.668 497.308 228.042 495.53C228.894 494.605 229.475 493.426 229.566 492.066C236.243 403.93 275.399 322.125 339.794 261.687C404.516 200.958 488.87 167.511 577.325 167.511C584.311 167.511 591.478 167.728 598.645 168.164C598.718 168.164 598.845 168.164 598.954 168.164C771.945 178.829 911.531 317.536 925.031 491.522C923.071 492.247 921.075 492.991 918.989 493.825L918.263 494.115C912.838 496.238 907.285 498.414 902.368 499.394H902.459ZM936.734 488.202C936.625 488.22 936.535 488.257 936.426 488.275C921.402 309.645 777.606 167.565 599.589 156.682C599.516 156.682 599.389 156.682 599.28 156.682C591.932 156.228 584.583 156.011 577.416 156.011C486.004 156.011 398.837 190.565 331.974 253.325C265.474 315.74 225.048 400.23 218.135 491.249C218.135 491.431 218.135 491.594 218.135 491.775C214.361 490.415 210.75 489.291 207.23 488.692C202.476 487.876 197.903 487.477 193.476 487.422C192.805 478.879 192.406 470.245 192.406 461.702C192.406 377.393 225.211 295.842 284.798 232.066C343.859 168.853 425.31 126.971 514.146 114.128C533.706 111.317 553.683 109.884 573.515 109.884C783.666 109.884 954.643 267.709 954.643 461.683C954.643 470.027 954.262 478.516 953.627 486.969C948.256 486.806 942.595 487.223 936.698 488.238L936.734 488.202ZM151.09 722.3C151.036 722.191 150.981 722.064 150.909 721.955C150.727 720.758 150.183 719.597 149.294 718.581C130.006 677.026 125.724 620.741 129.117 594.44C132.347 569.264 138.026 538.156 153.231 518.421C168.854 525.912 184.349 564.312 184.349 619.925C184.349 665.852 170.922 716.695 151.09 722.3ZM106.563 658.905C96.1846 637.066 87.0579 614.248 79.0743 591.429C79.9997 587.929 83.8463 573.363 83.8463 573.363C84.2818 571.731 84.1366 569.899 83.3383 568.266C79.1106 559.088 74.5926 550.037 70.5826 540.75C46.4865 485.373 27.9427 426.621 18.5438 366.8C33.0595 387.859 51.2949 414.287 50.6235 413.217C50.6417 413.271 50.6961 413.308 50.7142 413.362C50.4784 412.945 50.3151 412.491 50.2425 412.038C50.6235 412.763 50.9683 413.507 51.3674 414.233C51.313 414.178 51.2586 414.106 51.2041 414.033C53.4541 416.827 58.6071 415.357 58.4801 411.349C58.4983 410.768 58.3168 410.115 58.0265 409.517V409.553C51.3674 394.697 44.9442 379.679 38.9021 364.587C33.2773 350.004 26.7633 334.314 23.9146 319.259C23.3159 315.74 23.9509 314.524 24.3138 311.622C25.3662 289.275 23.715 267.074 21.8643 244.89C28.6685 254.068 34.8921 263.736 40.9524 273.368C83.0661 343.238 117.722 417.534 151.272 491.884C151.689 493.898 152.106 495.857 152.506 497.671C152.76 498.831 153.249 499.884 153.885 500.809C150.963 503.257 148.187 506.032 145.629 509.116C127.43 531.009 121.043 565.418 117.505 592.953C114.075 619.562 118.049 662.478 129.444 699.082C120.444 686.675 113.331 672.818 106.545 658.923L106.563 658.905ZM155.3 730.081C177.037 721.375 193.149 676.137 193.149 619.925C193.149 567.359 179.069 523.972 159.237 511.746C162.031 509.116 164.989 506.849 168.146 505.053C173.408 502.06 179.087 500.21 185.511 499.43C191.516 498.704 198.157 498.94 205.252 500.174C209.734 500.954 214.869 502.913 220.657 505.198L221.364 505.47C227.044 507.701 232.85 509.95 238.565 511.166C229.167 550.617 228.568 585.915 230.074 610.239C229.475 610.892 228.876 611.545 228.277 612.253C225.32 615.771 222.526 619.798 219.931 624.224C199.337 659.667 194.093 719.887 219.423 760.046C212.219 762.477 205.343 763.493 198.865 763.039C197.613 761.86 195.944 761.098 194.093 761.044C192.95 761.008 191.879 761.262 190.9 761.697C177.346 758.033 165.388 747.44 155.264 730.081H155.3ZM329.833 1023.06C225.12 1045.26 196.198 1021.32 190.591 1014.99C193.24 995.359 196.742 914.715 201.024 774.811C201.333 774.811 201.623 774.848 201.931 774.848C209.861 774.848 218.135 773.161 226.663 769.859C231.199 775.228 236.297 779.944 241.922 783.808C251.176 790.193 263.877 796.033 279.645 801.149C279.681 801.149 279.717 801.167 279.736 801.185C292.038 818.217 305.737 833.98 320.579 848.019C320.634 848.073 320.67 848.11 320.724 848.146L332.355 911.033C331.03 912.593 330.377 914.679 330.686 916.801C341.482 992.131 332.827 1017.07 329.851 1023.04L329.833 1023.06ZM742.26 942.358C722.482 950.122 700.981 956.379 676.522 961.513C658.142 965.376 638.4 968.46 617.879 970.709C604.052 972.214 590.19 973.212 579.648 973.901C562.483 975.044 545.863 973.266 528.281 971.38L527.482 971.289C506.398 969.022 486.149 965.884 467.315 961.912C442.039 956.597 419.921 950.067 399.672 941.959C376.9 932.853 358.193 922.387 342.443 910.017C342.135 909.781 341.79 909.636 341.445 909.455L331.992 858.304C337.599 863.147 343.369 867.826 349.266 872.234C377.263 893.202 408.871 909.69 443.182 921.227C468.675 929.806 495.275 935.556 522.22 938.349C538.224 940 554.409 940.816 570.521 940.816C595.851 940.816 621 938.785 644.932 934.776C674.762 929.77 703.485 921.208 730.339 909.364C760.296 896.141 787.694 878.836 812.008 857.886L802.555 909.019C802.228 909.201 801.865 909.346 801.557 909.582C785.335 922.351 765.939 933.053 742.26 942.358ZM814.167 1022.62C811.191 1016.65 802.536 991.695 813.332 916.384C813.641 914.279 812.988 912.194 811.663 910.615L823.294 847.729C823.294 847.729 823.385 847.638 823.439 847.602C838.299 833.526 852.035 817.727 864.283 800.768C864.301 800.768 864.337 800.768 864.355 800.75C880.141 795.616 892.842 789.776 902.096 783.409C907.721 779.527 912.819 774.829 917.356 769.46C925.884 772.762 934.158 774.448 942.087 774.448C942.395 774.448 942.686 774.412 942.994 774.412C947.258 914.189 950.76 994.833 953.409 1014.53C947.585 1021.1 918.462 1044.77 814.185 1022.64L814.167 1022.62ZM953.046 761.244C952.066 760.808 950.996 760.554 949.871 760.591C948.02 760.645 946.351 761.407 945.099 762.586C938.621 763.039 931.744 762.023 924.541 759.593C949.871 719.434 944.645 659.232 924.033 623.789C921.456 619.345 918.644 615.318 915.723 611.872C915.087 611.11 914.452 610.402 913.836 609.731C915.886 576.664 912.965 542.709 905.344 510.749C911.078 509.533 916.902 507.266 922.599 505.035L923.325 504.745C929.095 502.459 934.248 500.518 938.712 499.738C945.806 498.523 952.465 498.269 958.471 498.995C964.894 499.775 970.574 501.625 975.854 504.618C978.993 506.395 981.969 508.663 984.745 511.293C964.931 523.518 950.832 566.906 950.832 619.472C950.832 675.665 966.927 720.921 988.682 729.628C978.557 746.987 966.6 757.598 953.028 761.244H953.046ZM1060.66 567.831C1059.92 569.373 1059.68 571.15 1060.15 572.928L1064.93 590.994C1055.2 617.93 1036 669.516 1014.54 698.629C1025.93 662.025 1029.91 619.109 1026.48 592.5C1022.94 564.965 1016.55 530.556 998.371 508.681C995.813 505.579 993.055 502.822 990.116 500.373C990.751 499.448 991.222 498.396 991.476 497.217C991.876 495.385 992.275 493.426 992.71 491.413C1012.83 446.374 1033.88 401.681 1056.22 357.731C1073.82 323.376 1092.12 288.913 1113.44 256.753C1116.15 252.726 1118.96 248.754 1121.88 244.818C1120.43 261.523 1119.2 278.247 1118.67 295.08C1118.54 301.573 1118.38 309.01 1119.56 315.45C1119 323.92 1115.62 332.337 1112.7 341.025C1104.39 363.862 1094.56 386.263 1084.45 408.392C1084.45 408.392 1084.49 408.338 1084.5 408.32H1084.52C1081.53 414.069 1089.33 419.747 1093.79 414.849C1094.32 413.852 1094.81 412.818 1095.34 411.82C1095.23 412.455 1094.99 413.072 1094.68 413.652C1094.72 413.58 1094.77 413.543 1094.81 413.471C1094.03 414.759 1111.19 388.857 1125.22 367.689C1115.77 427.02 1097.31 485.3 1073.4 540.26C1069.41 549.547 1064.89 558.598 1060.64 567.776L1060.66 567.831Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M1093.88 414.813C1093.88 414.813 1093.83 414.849 1093.81 414.886C1093.81 414.886 1093.79 414.922 1093.79 414.94C1093.83 414.904 1093.87 414.849 1093.9 414.813H1093.88Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M1093.96 414.722C1093.96 414.722 1093.9 414.777 1093.88 414.814C1093.9 414.777 1093.94 414.759 1093.96 414.722Z\" fill=\"#E9E9E9\"/>\\n<path d=\"M1094.7 413.689C1094.47 414.07 1094.23 414.432 1093.96 414.722C1094.23 414.432 1094.48 414.07 1094.7 413.689Z\" fill=\"#E9E9E9\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4102_199\">\\n<rect width=\"1144\" height=\"1047\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lWaFe.framer-1nzk4e6, .framer-lWaFe .framer-1nzk4e6 { display: block; }\",\".framer-lWaFe.framer-a35zwo { height: 1047px; overflow: visible; position: relative; width: 1144px; }\",\".framer-lWaFe .framer-l0ool8 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1047\n * @framerIntrinsicWidth 1144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertGsq0czOM=withCSS(Component,css,\"framer-lWaFe\");export default FramertGsq0czOM;FramertGsq0czOM.displayName=\"Logo\";FramertGsq0czOM.defaultProps={height:1047,width:1144};addFonts(FramertGsq0czOM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertGsq0czOM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1047\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1144\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tGsq0czOM.map", "// Generated by Framer (8d84d1c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LOADING from\"https://framerusercontent.com/modules/IPQ8l2HHRVFYTHUBmlYK/7dc09TQ6DWxJ97kEkdB3/c25XqMOEc.js\";import Logo from\"https://framerusercontent.com/modules/oc1PLqVNQpJxiYuRQU35/JS7f1xqtOMUZfjv9rMFt/tGsq0czOM.js\";const LogoFonts=getFonts(Logo);const LOADINGFonts=getFonts(LOADING);const cycleOrder=[\"Gum2MReQC\",\"ridAxz5VL\",\"ADDjstKeV\"];const serializationHash=\"framer-0Eyc8\";const variantClassNames={ADDjstKeV:\"framer-v-1cttycq\",Gum2MReQC:\"framer-v-wsjn42\",ridAxz5VL:\"framer-v-c3h57a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"ridAxz5VL\",\"Variant 3\":\"ADDjstKeV\",Desktop:\"Gum2MReQC\"};const getProps=({fontSize,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"Gum2MReQC\",XaFEv47VN:(_ref1=fontSize!==null&&fontSize!==void 0?fontSize:props.XaFEv47VN)!==null&&_ref1!==void 0?_ref1:250};};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,XaFEv47VN,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gum2MReQC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear13v2qee=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ridAxz5VL\"),800);});useOnVariantChange(baseVariant,{ADDjstKeV:undefined,default:onAppear13v2qee});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wsjn42\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Gum2MReQC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(88, 78, 231)\",opacity:1,...style},variants:{ridAxz5VL:{opacity:0}},...addPropertyOverrides({ADDjstKeV:{\"data-framer-name\":\"Variant 3\",\"data-highlight\":undefined},ridAxz5VL:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"994px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k9n9dx-container\",layoutDependency:layoutDependency,layoutId:\"tb8Dc9r_u-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"tb8Dc9r_u\",layoutId:\"tb8Dc9r_u\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"581px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14is7js-container\",layoutDependency:layoutDependency,layoutId:\"PTlTacvti-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(LOADING,{height:\"100%\",id:\"PTlTacvti\",itdJZF6qM:XaFEv47VN,layoutId:\"PTlTacvti\",style:{width:\"100%\"},variant:\"LJY3KlnVC\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0Eyc8.framer-574zhl, .framer-0Eyc8 .framer-574zhl { display: block; }\",\".framer-0Eyc8.framer-wsjn42 { height: 800px; overflow: hidden; position: relative; width: 2002px; }\",\".framer-0Eyc8 .framer-1k9n9dx-container { aspect-ratio: 1.0926456542502387 / 1; bottom: 41px; flex: none; left: 50%; position: absolute; top: -151px; width: var(--framer-aspect-ratio-supported, 994px); }\",\".framer-0Eyc8 .framer-14is7js-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: 581px; }\",\".framer-0Eyc8.framer-v-c3h57a .framer-1k9n9dx-container { bottom: -103px; left: 49%; top: -271px; width: var(--framer-aspect-ratio-supported, 1283px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 2002\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ridAxz5VL\":{\"layout\":[\"fixed\",\"fixed\"]},\"ADDjstKeV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XaFEv47VN\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL2XCIaYtL=withCSS(Component,css,\"framer-0Eyc8\");export default FramerL2XCIaYtL;FramerL2XCIaYtL.displayName=\"Preloader\";FramerL2XCIaYtL.defaultProps={height:800,width:2002};addPropertyControls(FramerL2XCIaYtL,{variant:{options:[\"Gum2MReQC\",\"ridAxz5VL\",\"ADDjstKeV\"],optionTitles:[\"Desktop\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},XaFEv47VN:{defaultValue:250,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerL2XCIaYtL,[{explicitInter:true,fonts:[]},...LogoFonts,...LOADINGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL2XCIaYtL\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"XaFEv47VN\\\":\\\"fontSize\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"2002\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ridAxz5VL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ADDjstKeV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L2XCIaYtL.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", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fontSize", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "itdJZF6qM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1koui2z", "args", "onAppear1xp9y52", "onAppearn155hy", "onAppear19zq4pm", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "Framerc25XqMOEc", "withCSS", "c25XqMOEc_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "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", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithFX", "cx", "serializationHash", "SVG", "css", "FramertGsq0czOM", "withCSS", "tGsq0czOM_default", "addFonts", "LogoFonts", "getFonts", "tGsq0czOM_default", "LOADINGFonts", "c25XqMOEc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fontSize", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XaFEv47VN", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear13v2qee", "args", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerL2XCIaYtL", "withCSS", "L2XCIaYtL_default", "addPropertyControls", "ControlType", "addFonts"]
}
