{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/omo5LdjL4LRSZXvwvWOk/u3WxIJnBoahCGbEeALvk/O_XoZ3FcZ.js", "ssg:https://framerusercontent.com/modules/KHQCAic3dhIo5SQDy5b5/UHwggJPWe4MjhBk1PjMX/e8DZGVTEA.js", "ssg:https://framerusercontent.com/modules/8BdIZmLuaMevhuzPuD85/HUC1m1X742i5RLykDvjL/H4mdjJxZw.js", "ssg:https://framerusercontent.com/modules/9WbKy5qEjTTyMDg2REIq/j5nQoVDY7Zf4aOYfvmua/Vc71GEKT8.js", "ssg:https://framerusercontent.com/modules/aQ10uWu17edYp2plwgrH/UoGWIMugkvKWTv26VCfr/ySNx1Tx3J.js", "ssg:https://framerusercontent.com/modules/8kndw743FSWmUFdqDaTp/J4uQL6j1IhEHnerOTx7G/wi0fLYvRJ.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (79ec8dc)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,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=[\"G47S15YSn\",\"PX1MOnVXY\"];const serializationHash=\"framer-8EaGQ\";const variantClassNames={G47S15YSn:\"framer-v-1hbo82m\",PX1MOnVXY:\"framer-v-17k3l76\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={Hidden:\"PX1MOnVXY\",Loading:\"G47S15YSn\"};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:\"G47S15YSn\"};};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,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"G47S15YSn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"PX1MOnVXY\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hbo82m\",className,classNames),\"data-framer-name\":\"Loading\",layoutDependency:layoutDependency,layoutId:\"G47S15YSn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qrc6yg\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"onOQ0YrdY\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1jivlv8\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"rN6xsA2D3\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgb(153, 153, 153) 342deg)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m7b4s7\",\"data-framer-name\":\"Round\",layoutDependency:layoutDependency,layoutId:\"KWLYXFUsw\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1}})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8EaGQ.framer-xuzmjz, .framer-8EaGQ .framer-xuzmjz { display: block; }\",\".framer-8EaGQ.framer-1hbo82m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 40px; }\",\".framer-8EaGQ .framer-1qrc6yg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-8EaGQ .framer-1jivlv8 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-8EaGQ .framer-m7b4s7 { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8EaGQ.framer-1hbo82m { gap: 0px; } .framer-8EaGQ.framer-1hbo82m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8EaGQ.framer-1hbo82m > :first-child { margin-left: 0px; } .framer-8EaGQ.framer-1hbo82m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PX1MOnVXY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO_XoZ3FcZ=withCSS(Component,css,\"framer-8EaGQ\");export default FramerO_XoZ3FcZ;FramerO_XoZ3FcZ.displayName=\"Spinner\";FramerO_XoZ3FcZ.defaultProps={height:40,width:40};addPropertyControls(FramerO_XoZ3FcZ,{variant:{options:[\"G47S15YSn\",\"PX1MOnVXY\"],optionTitles:[\"Loading\",\"Hidden\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerO_XoZ3FcZ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO_XoZ3FcZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PX1MOnVXY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O_XoZ3FcZ.map", "// Generated by Framer (6807895)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-medium\",\"FS;Switzer-variable\",\"FS;Switzer-variable italic\",\"FS;Switzer-variable italic\"]);const variationAxes=[{defaultValue:400,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HJHZ26OECMTXRH7JXPFC7EVIHDSLT2RA/LJRNLR7WCPF3PY3SZ7B2LHNUTQMFNCHL/4MCJYGQDIOOXHWSIIB2OYNDBEALJSOGN.woff2\",variationAxes,weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDSQNRHYYJCWSLSNMQTKJOY7QNC2IBLM/HGYBIGJ4X7DYUETLTGW4BIVO3FCWLJUR/AFY5UJBPUVSDM77Q42DSHPT5JUNR7N4Y.woff2\",variationAxes,weight:\"400\"}]}];export const css=['.framer-Jqf88 .framer-styles-preset-k4z7qj:not(.rich-text-wrapper), .framer-Jqf88 .framer-styles-preset-k4z7qj.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer Variable\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer Variable\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer Variable\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f81bdd53-0cb0-4797-8dd6-60b913fedc45, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Jqf88\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (81a45be)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/KHQCAic3dhIo5SQDy5b5/UHwggJPWe4MjhBk1PjMX/e8DZGVTEA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/x8KUH3uw5QVirEHvgJcM/kwApfsnnyktza5MJDcJh/kXM1R5isf.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wBLrW4tidXote9tiEzy4/pXuWchkqBKNobSqEtFLY/oPbX90un_.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/u7RVpjA2fQklVzz4ajNM/FP5Kasd03tN23niwU5bQ/smSTrHrV3.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/3YMGOTCgtTKkAjh5vhKR/uhO4yBpo7moQ1Aa6WGQa/vQY_t3BBy.js\";const cycleOrder=[\"k3UHWGGOT\",\"Zhe9_8rxD\",\"UgYHVB8nA\",\"XXrNN8kDX\"];const serializationHash=\"framer-Pdwor\";const variantClassNames={k3UHWGGOT:\"framer-v-wamo63\",UgYHVB8nA:\"framer-v-14c8eby\",XXrNN8kDX:\"framer-v-x4onrg\",Zhe9_8rxD:\"framer-v-1cezfjg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.7,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop close\":\"k3UHWGGOT\",\"Desktop open\":\"Zhe9_8rxD\",\"Mobile close\":\"UgYHVB8nA\",\"Mobile open\":\"XXrNN8kDX\"};const getProps=({content,height,id,width,...props})=>{return{...props,BFsoBtCUr:content??props.BFsoBtCUr??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Info content\"})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"k3UHWGGOT\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,BFsoBtCUr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"k3UHWGGOT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap3gp6y6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Zhe9_8rxD\");});const onTap17mj1n9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XXrNN8kDX\");});const onTap1a9nnel=activeVariantCallback(async(...args)=>{setVariant(\"k3UHWGGOT\");});const onTap9s3s5d=activeVariantCallback(async(...args)=>{setVariant(\"UgYHVB8nA\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Zhe9_8rxD\",\"XXrNN8kDX\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Zhe9_8rxD\",\"XXrNN8kDX\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"XXrNN8kDX\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"Zhe9_8rxD\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wamo63\",className,classNames),\"data-framer-name\":\"Desktop close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"k3UHWGGOT\",onTap:onTap3gp6y6,ref:refBinding,style:{backdropFilter:\"blur(100px)\",backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(100px)\",...style},variants:{XXrNN8kDX:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},Zhe9_8rxD:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({UgYHVB8nA:{\"data-framer-name\":\"Mobile close\",onTap:onTap17mj1n9},XXrNN8kDX:{\"data-framer-name\":\"Mobile open\",\"data-highlight\":undefined,onTap:undefined},Zhe9_8rxD:{\"data-framer-name\":\"Desktop open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o0p6hk\",layoutDependency:layoutDependency,layoutId:\"aOujRNSw2\",...addPropertyOverrides({XXrNN8kDX:{\"data-highlight\":true,onTap:onTap9s3s5d},Zhe9_8rxD:{\"data-highlight\":true,onTap:onTap1a9nnel}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2htd2x\",\"data-styles-preset\":\"oPbX90un_\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f81bdd53-0cb0-4797-8dd6-60b913fedc45, rgb(255, 255, 255)))\"},children:\"Info\"})}),className:\"framer-72nb61\",\"data-framer-name\":\"Team:\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BjvwNaLtq\",style:{\"--extracted-r6o4lv\":\"var(--token-f81bdd53-0cb0-4797-8dd6-60b913fedc45, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p1r9d5\",layoutDependency:layoutDependency,layoutId:\"XkRpoDvhU\",style:{backgroundColor:\"var(--token-f81bdd53-0cb0-4797-8dd6-60b913fedc45, rgb(255, 255, 255))\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yyp12\",layoutDependency:layoutDependency,layoutId:\"Zgug_epi_\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80}})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:BFsoBtCUr,className:\"framer-9ky2dl\",\"data-framer-name\":\"Info\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MuTh4294W\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-20iavq\",h6:\"framer-styles-preset-t82mr9\",img:\"framer-styles-preset-1xlsho5\",p:\"framer-styles-preset-2htd2x\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({XXrNN8kDX:{stylesPresetsClassNames:{a:\"framer-styles-preset-20iavq\",h6:\"framer-styles-preset-t82mr9\",img:\"framer-styles-preset-1xlsho5\",p:\"framer-styles-preset-k4z7qj\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:BFsoBtCUr,className:\"framer-1yj7zy\",\"data-framer-name\":\"Info\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jxBAcJWE6\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{img:\"framer-styles-preset-1xlsho5\",p:\"framer-styles-preset-k4z7qj\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Pdwor.framer-1am2y45, .framer-Pdwor .framer-1am2y45 { display: block; }\",\".framer-Pdwor.framer-wamo63 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 14px 10px 14px; position: relative; width: 140px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Pdwor .framer-o0p6hk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Pdwor .framer-72nb61 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Pdwor .framer-1p1r9d5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Pdwor .framer-yyp12 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: hidden; position: relative; width: 10px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Pdwor .framer-9ky2dl, .framer-Pdwor .framer-1yj7zy { 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-Pdwor.framer-wamo63 { gap: 0px; } .framer-Pdwor.framer-wamo63 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Pdwor.framer-wamo63 > :first-child { margin-top: 0px; } .framer-Pdwor.framer-wamo63 > :last-child { margin-bottom: 0px; } }\",\".framer-Pdwor.framer-v-1cezfjg.framer-wamo63 { gap: 32px; padding: 20px; width: 440px; }\",\".framer-Pdwor.framer-v-1cezfjg .framer-o0p6hk, .framer-Pdwor.framer-v-x4onrg .framer-o0p6hk { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Pdwor.framer-v-1cezfjg.framer-wamo63 { gap: 0px; } .framer-Pdwor.framer-v-1cezfjg.framer-wamo63 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Pdwor.framer-v-1cezfjg.framer-wamo63 > :first-child { margin-top: 0px; } .framer-Pdwor.framer-v-1cezfjg.framer-wamo63 > :last-child { margin-bottom: 0px; } }\",\".framer-Pdwor.framer-v-x4onrg.framer-wamo63 { cursor: unset; gap: 32px; padding: 20px; width: 360px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Pdwor.framer-v-x4onrg.framer-wamo63 { gap: 0px; } .framer-Pdwor.framer-v-x4onrg.framer-wamo63 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Pdwor.framer-v-x4onrg.framer-wamo63 > :first-child { margin-top: 0px; } .framer-Pdwor.framer-v-x4onrg.framer-wamo63 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Zhe9_8rxD\":{\"layout\":[\"fixed\",\"auto\"]},\"UgYHVB8nA\":{\"layout\":[\"fixed\",\"auto\"]},\"XXrNN8kDX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BFsoBtCUr\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH4mdjJxZw=withCSS(Component,css,\"framer-Pdwor\");export default FramerH4mdjJxZw;FramerH4mdjJxZw.displayName=\"Work/Popup\";FramerH4mdjJxZw.defaultProps={height:38,width:140};addPropertyControls(FramerH4mdjJxZw,{variant:{options:[\"k3UHWGGOT\",\"Zhe9_8rxD\",\"UgYHVB8nA\",\"XXrNN8kDX\"],optionTitles:[\"Desktop close\",\"Desktop open\",\"Mobile close\",\"Mobile open\"],title:\"Variant\",type:ControlType.Enum},BFsoBtCUr:{defaultValue:\"<p>Info content</p>\",description:\"bio\",title:\"Content\",type:ControlType.RichText}});addFonts(FramerH4mdjJxZw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH4mdjJxZw\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zhe9_8rxD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UgYHVB8nA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XXrNN8kDX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"BFsoBtCUr\\\":\\\"content\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"140\",\"framerIntrinsicHeight\":\"38\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H4mdjJxZw.map", "// Generated by Framer (63ecd5c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/4Qaw6cinFzpvkbs7Qoij/if2Vp8VEM0D5YVJXHYhr/NeG79b9pK.js\";const enabledGestures={LG7R__cLL:{hover:true}};const serializationHash=\"framer-zhy3E\";const variantClassNames={LG7R__cLL:\"framer-v-h92c4q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={filter:\"blur(20px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={delay:.05,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const textEffect={effect:animation,startDelay:.1,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,title,width,...props})=>{return{...props,xrj2rztpZ:title??props.xrj2rztpZ??\"Omnia\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,xrj2rztpZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LG7R__cLL\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h92c4q\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LG7R__cLL\",ref:refBinding,style:{...style},...addPropertyOverrides({\"LG7R__cLL-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-qr80in\",\"data-styles-preset\":\"NeG79b9pK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-1633fed7-dbd0-466c-9c94-e1e30c9cb752, rgb(237, 237, 237)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(237, 237, 237) 0%, rgba(0, 0, 0, 0) 100%)\"},children:\"Omnia\"})})}),className:\"framer-1r6wszf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"slLVbccMu\",style:{\"--extracted-1of0zx5\":\"var(--token-1633fed7-dbd0-466c-9c94-e1e30c9cb752, rgb(237, 237, 237))\",\"--framer-paragraph-spacing\":\"0px\",filter:\"blur(8px)\",WebkitFilter:\"blur(8px)\"},text:xrj2rztpZ,variants:{\"LG7R__cLL-hover\":{\"--extracted-1of0zx5\":\"var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0))\",filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"LG7R__cLL-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-qr80in\",\"data-styles-preset\":\"NeG79b9pK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0)))\"},children:\"Omnia\"})}),effect:textEffect}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zhy3E.framer-nsgfkk, .framer-zhy3E .framer-nsgfkk { display: block; }\",\".framer-zhy3E.framer-h92c4q { cursor: pointer; height: 110px; overflow: visible; position: relative; width: 1180px; }\",\".framer-zhy3E .framer-1r6wszf { bottom: -20px; flex: none; height: 120px; left: calc(50.00000000000002% - 1180px / 2); position: absolute; white-space: pre-wrap; width: 1180px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 110\n * @framerIntrinsicWidth 1180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gnXnh66sK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xrj2rztpZ\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVc71GEKT8=withCSS(Component,css,\"framer-zhy3E\");export default FramerVc71GEKT8;FramerVc71GEKT8.displayName=\"Project Title\";FramerVc71GEKT8.defaultProps={height:110,width:1180};addPropertyControls(FramerVc71GEKT8,{xrj2rztpZ:{defaultValue:\"Omnia\",title:\"Title\",type:ControlType.String}});addFonts(FramerVc71GEKT8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVc71GEKT8\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"110\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1180\",\"framerVariables\":\"{\\\"xrj2rztpZ\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gnXnh66sK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vc71GEKT8.map", "// Generated by Framer (3ce81f8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vmavIjc4Zf8eJWnglm9J/7k59kKA4QMggOHNXne8P/cFvaLBBgC.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={TaR9vEpUL:{hover:true},vwwSKpEkz:{hover:true}};const cycleOrder=[\"TaR9vEpUL\",\"AtVfoApyb\",\"vwwSKpEkz\",\"yfqC3l0Qq\"];const serializationHash=\"framer-iJMP9\";const variantClassNames={AtVfoApyb:\"framer-v-ryf6xm\",TaR9vEpUL:\"framer-v-16uiqj7\",vwwSKpEkz:\"framer-v-bkddo5\",yfqC3l0Qq:\"framer-v-k3npub\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.6,ease:[.01,.51,.32,.99],type:\"tween\"};const transition2={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Defualt mobile\":\"AtVfoApyb\",\"Variant 3\":\"vwwSKpEkz\",\"Variant 4\":\"yfqC3l0Qq\",Defualt:\"TaR9vEpUL\"};const getProps=({height,id,title,width,...props})=>{return{...props,ssKL8ftyX:title??props.ssKL8ftyX??\"Velrion Spire\",variant:humanReadableVariantMap[props.variant]??props.variant??\"TaR9vEpUL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ssKL8ftyX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TaR9vEpUL\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-16uiqj7\",className,classNames),\"data-framer-name\":\"Defualt\",layoutDependency:layoutDependency,layoutId:\"TaR9vEpUL\",ref:refBinding,style:{...style},...addPropertyOverrides({\"TaR9vEpUL-hover\":{\"data-framer-name\":undefined},\"vwwSKpEkz-hover\":{\"data-framer-name\":undefined},AtVfoApyb:{\"data-framer-name\":\"Defualt mobile\"},vwwSKpEkz:{\"data-framer-name\":\"Variant 3\"},yfqC3l0Qq:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-16qraq0\",\"data-styles-preset\":\"cFvaLBBgC\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0)))\"},children:\"Velrion Spire\"})}),className:\"framer-11zsw4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L8w4mNTaU\",style:{\"--extracted-a0htzi\":\"var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0))\",filter:\"none\",WebkitFilter:\"none\"},text:ssKL8ftyX,variants:{\"TaR9vEpUL-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"vwwSKpEkz-hover\":{\"--extracted-a0htzi\":\"var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0))\",filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\"},vwwSKpEkz:{\"--extracted-a0htzi\":\"var(--token-1633fed7-dbd0-466c-9c94-e1e30c9cb752, rgb(237, 237, 237))\",filter:\"blur(5px)\",WebkitFilter:\"blur(5px)\"},yfqC3l0Qq:{\"--extracted-a0htzi\":\"var(--token-81b7077d-1a91-47ca-b063-5bf1ae92d5e3, rgb(176, 141, 0))\",filter:\"none\",WebkitFilter:\"none\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TaR9vEpUL-hover\":{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1},\"vwwSKpEkz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-16qraq0\",\"data-styles-preset\":\"cFvaLBBgC\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0)))\"},children:\"Velrion Spire\"})})},vwwSKpEkz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-16qraq0\",\"data-styles-preset\":\"cFvaLBBgC\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1633fed7-dbd0-466c-9c94-e1e30c9cb752, rgb(237, 237, 237)))\"},children:\"Velrion Spire\"})})},yfqC3l0Qq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-16qraq0\",\"data-styles-preset\":\"cFvaLBBgC\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-81b7077d-1a91-47ca-b063-5bf1ae92d5e3, rgb(176, 141, 0)))\"},children:\"Velrion Spire\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iJMP9.framer-2z5nsy, .framer-iJMP9 .framer-2z5nsy { display: block; }\",\".framer-iJMP9.framer-16uiqj7 { align-content: center; align-items: center; cursor: pointer; 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-iJMP9 .framer-11zsw4 { flex: none; height: auto; position: relative; transform-style: preserve-3d; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iJMP9.framer-16uiqj7 { gap: 0px; } .framer-iJMP9.framer-16uiqj7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iJMP9.framer-16uiqj7 > :first-child { margin-left: 0px; } .framer-iJMP9.framer-16uiqj7 > :last-child { margin-right: 0px; } }\",\".framer-iJMP9.framer-v-ryf6xm.framer-16uiqj7, .framer-iJMP9.framer-v-k3npub.framer-16uiqj7 { cursor: unset; }\",\".framer-iJMP9.framer-v-16uiqj7.hover.framer-16uiqj7 { align-content: flex-start; align-items: flex-start; gap: 20px; justify-content: flex-start; }\",\".framer-iJMP9.framer-v-16uiqj7.hover .framer-11zsw4 { order: 0; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iJMP9.framer-v-16uiqj7.hover.framer-16uiqj7 { gap: 0px; } .framer-iJMP9.framer-v-16uiqj7.hover.framer-16uiqj7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-iJMP9.framer-v-16uiqj7.hover.framer-16uiqj7 > :first-child { margin-left: 0px; } .framer-iJMP9.framer-v-16uiqj7.hover.framer-16uiqj7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 77.5\n * @framerIntrinsicWidth 465.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"AtVfoApyb\":{\"layout\":[\"auto\",\"auto\"]},\"vwwSKpEkz\":{\"layout\":[\"auto\",\"auto\"]},\"yfqC3l0Qq\":{\"layout\":[\"auto\",\"auto\"]},\"XqIUs8bdB\":{\"layout\":[\"auto\",\"auto\"]},\"gYHESNcPg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ssKL8ftyX\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerySNx1Tx3J=withCSS(Component,css,\"framer-iJMP9\");export default FramerySNx1Tx3J;FramerySNx1Tx3J.displayName=\"Button/Button works\";FramerySNx1Tx3J.defaultProps={height:77.5,width:465.5};addPropertyControls(FramerySNx1Tx3J,{variant:{options:[\"TaR9vEpUL\",\"AtVfoApyb\",\"vwwSKpEkz\",\"yfqC3l0Qq\"],optionTitles:[\"Defualt\",\"Defualt mobile\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},ssKL8ftyX:{defaultValue:\"Velrion Spire\",title:\"Title\",type:ControlType.String}});addFonts(FramerySNx1Tx3J,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerySNx1Tx3J\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AtVfoApyb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vwwSKpEkz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yfqC3l0Qq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XqIUs8bdB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gYHESNcPg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"465.5\",\"framerVariables\":\"{\\\"ssKL8ftyX\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"77.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withInfiniteScroll,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Spinner from\"https://framerusercontent.com/modules/omo5LdjL4LRSZXvwvWOk/u3WxIJnBoahCGbEeALvk/O_XoZ3FcZ.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import WorkPopup from\"#framer/local/canvasComponent/H4mdjJxZw/H4mdjJxZw.js\";import NavNavigation from\"#framer/local/canvasComponent/oGW2TdjWu/oGW2TdjWu.js\";import ProjectTitle from\"#framer/local/canvasComponent/Vc71GEKT8/Vc71GEKT8.js\";import ButtonButtonWorks from\"#framer/local/canvasComponent/ySNx1Tx3J/ySNx1Tx3J.js\";import ButtonButton from\"#framer/local/canvasComponent/z5viqM300/z5viqM300.js\";import Projects from\"#framer/local/collection/R8tkzUCOp/R8tkzUCOp.js\";import*as sharedStyle from\"#framer/local/css/NeG79b9pK/NeG79b9pK.js\";import*as sharedStyle1 from\"#framer/local/css/oPbX90un_/oPbX90un_.js\";import metadataProvider from\"#framer/local/webPageMetadata/wi0fLYvRJ/wi0fLYvRJ.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavNavigationFonts=getFonts(NavNavigation);const WorkPopupFonts=getFonts(WorkPopup);const ProjectTitleFonts=getFonts(ProjectTitle);const VideoFonts=getFonts(Video);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ButtonButtonFonts=getFonts(ButtonButton);const ButtonButtonWorksFonts=getFonts(ButtonButtonWorks);const SpinnerFonts=getFonts(Spinner);const ContainerWithInfiniteScroll=withInfiniteScroll(Container);const breakpoints={C7QvLNtY2:\"(min-width: 1280px)\",KfYPz9Li2:\"(min-width: 810px) and (max-width: 1279px)\",RptgU9S2t:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RInxj\";const variantClassNames={C7QvLNtY2:\"framer-v-kukus\",KfYPz9Li2:\"framer-v-1r8njyb\",RptgU9S2t:\"framer-v-ai8a81\"};const animation={filter:\"blur(20px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={delay:.05,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const textEffect={effect:animation,startDelay:.1,tokenization:\"character\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"URL\";}else{return\"URL\";}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"kdlPRdvnx\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"C7QvLNtY2\",Phone:\"RptgU9S2t\",Tablet:\"KfYPz9Li2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"C7QvLNtY2\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"wi0fLYvRJ\",data:Projects,type:\"Collection\"},select:[{collection:\"wi0fLYvRJ\",name:\"AmDyxlpyg\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"C_r_PctXY\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"lGdt8Ev5e\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"YyuaFvy2y\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"i33RtDNF0\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"alpxa2Sdk\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"ZTB0rA7qe\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"OCRsSgsY5\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"gWt_TbWi2\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"H8HgwZo1V\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"HNq6tOo_a\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"SbYREsJ2l\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"kIdqFXKwC\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"EM3aazC0o\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"QgFponZ7v\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"ETJeTPa8X\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"uVpwoMn2T\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"uAAToV6L0\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"pUZoJ2qQ6\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"mbHrl6t9w\",type:\"Identifier\"},{collection:\"wi0fLYvRJ\",name:\"fkTJVWKAs\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"wi0fLYvRJ\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,C_r_PctXY=getFromCurrentRouteData(\"C_r_PctXY\")??\"\",AmDyxlpyg=getFromCurrentRouteData(\"AmDyxlpyg\")??\"\",lGdt8Ev5e=getFromCurrentRouteData(\"lGdt8Ev5e\")??\"\",YyuaFvy2y=getFromCurrentRouteData(\"YyuaFvy2y\")??\"\",i33RtDNF0=getFromCurrentRouteData(\"i33RtDNF0\"),alpxa2Sdk=getFromCurrentRouteData(\"alpxa2Sdk\"),ZTB0rA7qe=getFromCurrentRouteData(\"ZTB0rA7qe\"),OCRsSgsY5=getFromCurrentRouteData(\"OCRsSgsY5\"),gWt_TbWi2=getFromCurrentRouteData(\"gWt_TbWi2\"),H8HgwZo1V=getFromCurrentRouteData(\"H8HgwZo1V\"),HNq6tOo_a=getFromCurrentRouteData(\"HNq6tOo_a\"),SbYREsJ2l=getFromCurrentRouteData(\"SbYREsJ2l\"),kIdqFXKwC=getFromCurrentRouteData(\"kIdqFXKwC\"),EM3aazC0o=getFromCurrentRouteData(\"EM3aazC0o\"),QgFponZ7v=getFromCurrentRouteData(\"QgFponZ7v\"),ETJeTPa8X=getFromCurrentRouteData(\"ETJeTPa8X\"),uVpwoMn2T=getFromCurrentRouteData(\"uVpwoMn2T\"),uAAToV6L0=getFromCurrentRouteData(\"uAAToV6L0\"),pUZoJ2qQ6=getFromCurrentRouteData(\"pUZoJ2qQ6\"),mbHrl6t9w=getFromCurrentRouteData(\"mbHrl6t9w\"),fkTJVWKAs=getFromCurrentRouteData(\"fkTJVWKAs\")??[],ecyhoJiiDb2Br2u1oC,GrWMPoD5mkdlPRdvnx,AmDyxlpygkdlPRdvnx,idkdlPRdvnx,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"RptgU9S2t\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"KfYPz9Li2\",\"RptgU9S2t\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"KfYPz9Li2\",\"RptgU9S2t\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"qxikKElCF\");const ref1=React.useRef(null);const visible=isSet(lGdt8Ev5e);const elementId1=useRouteElementId(\"lxxPS38_G\");const ref2=React.useRef(null);const visible1=isSet(YyuaFvy2y);const elementId2=useRouteElementId(\"TvXKkRhDH\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"HuYv8zk_h\");const ref4=React.useRef(null);const visible2=isSet(i33RtDNF0);const visible3=isSet(alpxa2Sdk);const elementId4=useRouteElementId(\"IiIaWADMk\");const ref5=React.useRef(null);const visible4=isSet(ZTB0rA7qe);const elementId5=useRouteElementId(\"OHFk0rtNJ\");const ref6=React.useRef(null);const visible5=isSet(OCRsSgsY5);const visible6=isSet(gWt_TbWi2);const elementId6=useRouteElementId(\"czpPBrEYT\");const ref7=React.useRef(null);const visible7=isSet(H8HgwZo1V);const visible8=isSet(HNq6tOo_a);const elementId7=useRouteElementId(\"kJcG07Bry\");const ref8=React.useRef(null);const visible9=isSet(SbYREsJ2l);const visible10=isSet(kIdqFXKwC);const elementId8=useRouteElementId(\"Le5uSgYe6\");const ref9=React.useRef(null);const visible11=isSet(EM3aazC0o);const elementId9=useRouteElementId(\"gRkx32vTw\");const ref10=React.useRef(null);const visible12=isSet(QgFponZ7v);const visible13=isSet(ETJeTPa8X);const elementId10=useRouteElementId(\"sEZd_0xmN\");const ref11=React.useRef(null);const visible14=isSet(uVpwoMn2T);const visible15=isSet(uAAToV6L0);const elementId11=useRouteElementId(\"eDTIv1Fzv\");const ref12=React.useRef(null);const visible16=isSet(pUZoJ2qQ6);const elementId12=useRouteElementId(\"Q0U2GgDuK\");const ref13=React.useRef(null);const visible17=isSet(mbHrl6t9w);const elementId13=useRouteElementId(\"tZkfOb3pT\");const ref14=React.useRef(null);const visible18=isSet(fkTJVWKAs);const elementId14=useRouteElementId(\"W1GBrmiyU\");const ref15=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"RptgU9S2t\")return false;return true;};const router=useRouter();const dynamicRef=useDynamicRefs();const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"KfYPz9Li2\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"C7QvLNtY2\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f81bdd53-0cb0-4797-8dd6-60b913fedc45, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-kukus\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18x4voa-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ev5txsDDt\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Ev5txsDDt\",intensity:10,layoutId:\"Ev5txsDDt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RptgU9S2t:{y:-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j0gnu2-container\",layoutScroll:true,nodeId:\"XoaDnpn24\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{variant:\"tXdtkqFvu\"},RptgU9S2t:{variant:\"tXdtkqFvu\"}},children:/*#__PURE__*/_jsx(NavNavigation,{height:\"100%\",id:\"XoaDnpn24\",layoutId:\"XoaDnpn24\",style:{width:\"100%\"},variant:\"J11rJgTlH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RptgU9S2t:{y:932}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:942,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwif3d-container\",layoutScroll:true,nodeId:\"CphqnuIrX\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RptgU9S2t:{variant:\"UgYHVB8nA\"}},children:/*#__PURE__*/_jsx(WorkPopup,{BFsoBtCUr:C_r_PctXY,height:\"100%\",id:\"CphqnuIrX\",layoutId:\"CphqnuIrX\",variant:\"k3UHWGGOT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1kv1lsi\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-dn1f52\",\"data-framer-name\":\"Title 2\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-n5dafn hidden-kukus hidden-1r8njyb\",\"data-framer-name\":\"Spacer\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1otrw1s hidden-kukus\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qr80in\",\"data-styles-preset\":\"NeG79b9pK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1633fed7-dbd0-466c-9c94-e1e30c9cb752, rgb(237, 237, 237))\"},children:\"Omnia\"})}),className:\"framer-1rplcqv\",\"data-framer-name\":\"Franco Pissaro\",effect:textEffect,fonts:[\"Inter\"],text:AmDyxlpyg,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2awani hidden-1r8njyb hidden-ai8a81\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+200+60+0+28+-60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-81aduc-container\",nodeId:\"oBsUbHOUp\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(ProjectTitle,{height:\"100%\",id:\"oBsUbHOUp\",layoutId:\"oBsUbHOUp\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xrj2rztpZ:AmDyxlpyg})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fh24qm hidden-kukus hidden-1r8njyb\",\"data-framer-name\":\"Spacer\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-3de1ip\",\"data-framer-name\":\"Case\",id:elementId,ref:ref1,children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t7kgmm\",\"data-framer-name\":\"Video 1\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoznph-container\",isModuleExternal:true,nodeId:\"x7BjU_R1z\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"x7BjU_R1z\",isMixedBorderRadius:false,layoutId:\"x7BjU_R1z\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:convertFromBoolean(equals(lGdt8Ev5e,\"\"),activeLocale),srcUrl:lGdt8Ev5e,startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1anldjg\",\"data-framer-name\":\"Video 2\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p7n2u6-container\",isModuleExternal:true,nodeId:\"oKJ1DVox0\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"oKJ1DVox0\",isMixedBorderRadius:false,layoutId:\"oKJ1DVox0\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:convertFromBoolean(isSet(YyuaFvy2y),activeLocale),srcUrl:YyuaFvy2y,startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-du5d9p\",\"data-framer-name\":\"Image 0 Wide\",id:elementId3,ref:ref4,children:visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+117+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(i33RtDNF0)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+75+128+0+117+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(i33RtDNF0)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+117+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(i33RtDNF0)},className:\"framer-11ktfuu\",\"data-framer-appear-id\":\"11ktfuu\",\"data-framer-name\":\"Image\",initial:animation2,optimized:true})})}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-glgbw2\",\"data-framer-name\":\"Image 1 Wide\",id:elementId4,ref:ref5,children:visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(alpxa2Sdk)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(alpxa2Sdk)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(alpxa2Sdk)},className:\"framer-1n0qmwt\",\"data-framer-appear-id\":\"1n0qmwt\",\"data-framer-name\":\"Image\",initial:animation2,optimized:true})})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ryjft8\",\"data-framer-name\":\"Images 1.1 Halfwide\",id:elementId5,ref:ref6,children:[visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(ZTB0rA7qe)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(ZTB0rA7qe)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 25px) * 0.4978)`,...toResponsiveImage(ZTB0rA7qe)},className:\"framer-a9fkr9\",\"data-framer-name\":\"Image (A)\"})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(OCRsSgsY5)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(OCRsSgsY5)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 25px) * 0.4978)`,...toResponsiveImage(OCRsSgsY5)},className:\"framer-72flgn\",\"data-framer-name\":\"Image (B)\"})})]}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18o1nrp\",\"data-framer-name\":\"Images 1.2 Halfwide\",id:elementId6,ref:ref7,children:[visible6&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(gWt_TbWi2)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(gWt_TbWi2)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 25px) * 0.4978)`,...toResponsiveImage(gWt_TbWi2)},className:\"framer-rqyyx1\",\"data-framer-name\":\"Image (A)\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(H8HgwZo1V)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(H8HgwZo1V)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 25px) * 0.4978)`,...toResponsiveImage(H8HgwZo1V)},className:\"framer-1ev632p\",\"data-framer-name\":\"Image (B)\"})})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ixttvy\",\"data-framer-name\":\"Images 2-3 Sq\",id:elementId7,ref:ref8,children:[visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+722+0),sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px) / 2)`,...toResponsiveImage(HNq6tOo_a)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+75+128+0+482+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(HNq6tOo_a)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+872+0),sizes:\"567.5px\",...toResponsiveImage(HNq6tOo_a)},className:\"framer-1yf9s1i\",\"data-framer-name\":\"Image (A)\"})}),visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+722+0),sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px) / 2)`,...toResponsiveImage(SbYREsJ2l)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+75+128+0+482+0+365),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(SbYREsJ2l)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+872+0),sizes:\"567.5px\",...toResponsiveImage(SbYREsJ2l)},className:\"framer-1e7c5bz\",\"data-framer-name\":\"Image (B)\"})})]}),visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qawu5l\",\"data-framer-name\":\"Image 4 Wide\",id:elementId8,ref:ref9,children:visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+1177+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(kIdqFXKwC)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+75+128+0+1212+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(kIdqFXKwC)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+1449+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(kIdqFXKwC)},className:\"framer-1e3ou1e\",\"data-framer-name\":\"Image\"})})}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-naia2h\",\"data-framer-name\":\"Images 5.1 Halfwide\",id:elementId9,ref:ref10,children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(EM3aazC0o)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(EM3aazC0o)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 25px) * 0.4978)`,...toResponsiveImage(EM3aazC0o)},className:\"framer-1cdeczv\",\"data-framer-name\":\"Image (A)\"})}),visible12&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(QgFponZ7v)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(QgFponZ7v)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 25px) * 0.4978)`,...toResponsiveImage(QgFponZ7v)},className:\"framer-jwrfv8\",\"data-framer-name\":\"Image (B)\"})})]}),visible13&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1posx2y\",\"data-framer-name\":\"Images 5.2 Sq\",id:elementId10,ref:ref11,children:[visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+1782+0),sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px) / 2)`,...toResponsiveImage(ETJeTPa8X)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+75+128+0+1577+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(ETJeTPa8X)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+2354+0),sizes:\"567.5px\",...toResponsiveImage(ETJeTPa8X)},className:\"framer-1tp4lxa\",\"data-framer-name\":\"Image (A)\"})}),visible14&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+1782+0),sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 25px) / 2)`,...toResponsiveImage(uVpwoMn2T)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+75+128+0+1577+0+365),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 25px)`,...toResponsiveImage(uVpwoMn2T)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+2354+0),sizes:\"567.5px\",...toResponsiveImage(uVpwoMn2T)},className:\"framer-ge8dvb\",\"data-framer-name\":\"Image (B)\"})})]}),visible15&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j3pqsw\",\"data-framer-name\":\"Image 6 Wide\",id:elementId11,ref:ref12,children:visible15&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+2237+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(uAAToV6L0)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+75+128+0+2307+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(uAAToV6L0)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+60+56+0+2931+0),sizes:`max((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(uAAToV6L0)},className:\"framer-fj6nq1\",\"data-framer-name\":\"Image\"})})}),visible16&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mtfw1s\",\"data-framer-name\":\"Image 7 Wide\",id:elementId12,ref:ref13,children:visible16&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(pUZoJ2qQ6)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(pUZoJ2qQ6)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(pUZoJ2qQ6)},className:\"framer-xjvj30\",\"data-framer-name\":\"Image\"})})}),visible17&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4v383r\",\"data-framer-name\":\"Image 8 Wide\",id:elementId13,ref:ref14,children:visible17&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 65px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(mbHrl6t9w)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(mbHrl6t9w)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 165px) / 6, 50px) * 6 + 30px) / 0, 1px)`,...toResponsiveImage(mbHrl6t9w)},className:\"framer-1ebqy81\",\"data-framer-name\":\"Image\"})})}),visible18&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d5tw5h\",\"data-framer-name\":\"Image Gallery\",id:elementId14,ref:ref15,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4sufw8\",children:fkTJVWKAs?.map(({ecyhoJiiD:ecyhoJiiDb2Br2u1oC,id},index)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`b2Br2u1oC-${id??index}`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{background:{alt:\"\",fit:\"fill\",sizes:\"342px\",...toResponsiveImage(ecyhoJiiDb2Br2u1oC)}},RptgU9S2t:{background:{alt:\"\",fit:\"fill\",sizes:\"159px\",...toResponsiveImage(ecyhoJiiDb2Br2u1oC)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"377px\",...toResponsiveImage(ecyhoJiiDb2Br2u1oC)},className:\"framer-sb1137\",\"data-framer-name\":\"Image\"})})},id??index);})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1stqfdy\",\"data-framer-name\":\"Other works\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-106oj8w hidden-ai8a81\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b82kya\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mbvnit\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{y:(componentViewport?.y||0)+0+200+60+2893+120+0+0+0+0},RptgU9S2t:{y:(componentViewport?.y||0)+0+200+75+2795+120+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+200+60+3787+160+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vlch9v-container\",nodeId:\"a5oYbS4DM\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"a5oYbS4DM\",layoutId:\"a5oYbS4DM\",variant:\"VaPnx_k5e\",width:\"100%\",Z2nmj1uyt:\"\u2198 Latest\",Zx7qf4I5V:\"var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0))\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2htd2x\",\"data-styles-preset\":\"oPbX90un_\",style:{\"--framer-text-color\":\"var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-szurc7\",\"data-framer-name\":\"S.2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tpHcbU0FF\"},implicitPathVariables:undefined},{href:{webPageId:\"tpHcbU0FF\"},implicitPathVariables:undefined},{href:{webPageId:\"tpHcbU0FF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{y:(componentViewport?.y||0)+0+200+60+2893+120+0+0+0+0},RptgU9S2t:{y:(componentViewport?.y||0)+0+200+75+2795+120+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+200+60+3787+160+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12hspp5-container\",nodeId:\"BnZGegjjG\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{jBuiZ9EgX:resolvedLinks[1]},RptgU9S2t:{jBuiZ9EgX:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"BnZGegjjG\",jBuiZ9EgX:resolvedLinks[0],layoutId:\"BnZGegjjG\",variant:\"VaPnx_k5e\",width:\"100%\",Z2nmj1uyt:\"\u2192 All\",Zx7qf4I5V:\"var(--token-93a4230d-dd8e-4b26-bdbe-bd7469402040, rgb(0, 0, 0))\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4lw6j1\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14l3hr4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:2,query:{from:{alias:\"kdlPRdvnx\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"kdlPRdvnx\",direction:\"desc\",name:\"lZPqXRWvo\",type:\"Identifier\"}],select:[{collection:\"kdlPRdvnx\",name:\"GrWMPoD5m\",type:\"Identifier\"},{collection:\"kdlPRdvnx\",name:\"AmDyxlpyg\",type:\"Identifier\"},{collection:\"kdlPRdvnx\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"kdlPRdvnx\",name:\"AmDyxlpyg\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:AmDyxlpyg},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({AmDyxlpyg:AmDyxlpygkdlPRdvnx,GrWMPoD5m:GrWMPoD5mkdlPRdvnx,id:idkdlPRdvnx},index1)=>{GrWMPoD5mkdlPRdvnx??=\"\";AmDyxlpygkdlPRdvnx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kdlPRdvnx-${idkdlPRdvnx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{GrWMPoD5m:GrWMPoD5mkdlPRdvnx},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{GrWMPoD5m:GrWMPoD5mkdlPRdvnx},webPageId:\"wi0fLYvRJ\"},motionChild:true,nodeId:\"PInWmLiL5\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1yx5bpr framer-12bxnbp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{y:(componentViewport?.y||0)+0+200+60+2893+120+50+0+0+0+0+0+0},RptgU9S2t:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+200+75+2795+120+40+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,y:(componentViewport?.y||0)+0+200+60+3787+160+60+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g6n1tl-container\",nodeId:\"hqiA9ttZq\",scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{variant:\"AtVfoApyb\"},RptgU9S2t:{style:{width:\"100%\"},variant:\"AtVfoApyb\"}},children:/*#__PURE__*/_jsx(ButtonButtonWorks,{height:\"100%\",id:\"hqiA9ttZq\",layoutId:\"hqiA9ttZq\",ssKL8ftyX:AmDyxlpygkdlPRdvnx,variant:\"vwwSKpEkz\",width:\"100%\"})})})})})})})})},idkdlPRdvnx);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KfYPz9Li2:{y:(componentViewport?.y||0)+0+200+60+2893+120+50+0+0+0+93},RptgU9S2t:{y:(componentViewport?.y||0)+0+200+75+2795+120+40+0+0+0+93}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+200+60+3787+160+60+0+0+0+93,children:/*#__PURE__*/_jsx(ContainerWithInfiniteScroll,{__loadMore:loadMore,__paginationInfo:paginationInfo,className:\"framer-11s81wr-container\",isModuleExternal:true,nodeId:\"paonaqWJ4\",ref:dynamicRef(`${GrWMPoD5mkdlPRdvnx}-11s81wr`),scopeId:\"wi0fLYvRJ\",children:/*#__PURE__*/_jsx(Spinner,{height:\"100%\",id:\"paonaqWJ4\",layoutId:\"paonaqWJ4\",variant:loaderVariants(paginationInfo,{disabled:\"PX1MOnVXY\",loading:\"G47S15YSn\"},\"G47S15YSn\"),width:\"100%\"})})})})]})})})})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1je33sq hidden-kukus hidden-ai8a81\",\"data-framer-name\":\"Spacer\"})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RInxj.framer-12bxnbp, .framer-RInxj .framer-12bxnbp { display: block; }\",\".framer-RInxj.framer-kukus { align-content: center; align-items: center; background-color: var(--token-f81bdd53-0cb0-4797-8dd6-60b913fedc45, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-RInxj .framer-18x4voa-container, .framer-RInxj .framer-vlch9v-container, .framer-RInxj .framer-12hspp5-container, .framer-RInxj .framer-1g6n1tl-container, .framer-RInxj .framer-11s81wr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RInxj .framer-1j0gnu2-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-RInxj .framer-iwif3d-container { bottom: 20px; flex: none; height: auto; left: 50%; position: fixed; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-RInxj .framer-1kv1lsi { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-RInxj .framer-dn1f52 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 28px 0px 28px 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-n5dafn { flex: 1 0 0px; height: 50px; overflow: hidden; position: relative; width: 1px; }\",\".framer-RInxj .framer-1otrw1s, .framer-RInxj .framer-2awani { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RInxj .framer-1rplcqv { --framer-paragraph-spacing: 0px; -webkit-filter: blur(5px); filter: blur(5px); flex: 1 0 0px; height: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-RInxj .framer-81aduc-container { flex: 1 0 0px; height: 120px; position: relative; width: 1px; }\",\".framer-RInxj .framer-fh24qm { flex: 1 0 0px; height: 30px; overflow: hidden; position: relative; width: 1px; }\",\".framer-RInxj .framer-3de1ip { display: grid; flex: none; gap: 5px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-RInxj .framer-1t7kgmm, .framer-RInxj .framer-1anldjg, .framer-RInxj .framer-du5d9p { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; grid-column: auto / span 6; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-hoznph-container, .framer-RInxj .framer-p7n2u6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RInxj .framer-11ktfuu { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 750px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RInxj .framer-glgbw2, .framer-RInxj .framer-qawu5l { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; grid-column: auto / span 6; height: 900px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-1n0qmwt { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RInxj .framer-ryjft8, .framer-RInxj .framer-naia2h { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; grid-column: auto / span 6; height: min-content; justify-content: center; justify-self: start; min-height: 572px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-a9fkr9, .framer-RInxj .framer-72flgn, .framer-RInxj .framer-1ev632p { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 572px; position: relative; width: 50%; }\",\".framer-RInxj .framer-18o1nrp, .framer-RInxj .framer-ixttvy, .framer-RInxj .framer-1posx2y { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; grid-column: auto / span 6; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-rqyyx1, .framer-RInxj .framer-1cdeczv, .framer-RInxj .framer-jwrfv8 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 572px; position: relative; width: 50%; }\",\".framer-RInxj .framer-1yf9s1i, .framer-RInxj .framer-1e7c5bz, .framer-RInxj .framer-1tp4lxa, .framer-RInxj .framer-ge8dvb { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 572px; position: relative; width: 568px; }\",\".framer-RInxj .framer-1e3ou1e, .framer-RInxj .framer-fj6nq1, .framer-RInxj .framer-xjvj30, .framer-RInxj .framer-1ebqy81 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-RInxj .framer-1j3pqsw { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; grid-column: auto / span 6; height: 800px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-1mtfw1s, .framer-RInxj .framer-4v383r { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; grid-column: auto / span 6; height: 750px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-1d5tw5h { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; grid-column: auto / span 6; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px 0px 90px 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-4sufw8 { display: grid; flex: none; gap: 5px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(0px, 1fr)); height: min-content; justify-content: start; padding: 0px; position: relative; width: 1141px; }\",\".framer-RInxj .framer-sb1137 { align-self: start; aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); justify-self: start; position: relative; width: 100%; }\",\".framer-RInxj .framer-1stqfdy { background-color: var(--token-f81bdd53-0cb0-4797-8dd6-60b913fedc45, #ffffff); display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 160px 20px 120px 20px; position: relative; width: 100%; z-index: 2; }\",\".framer-RInxj .framer-106oj8w { align-self: start; flex: none; grid-column: auto / span 2; height: 20px; justify-self: start; max-width: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-RInxj .framer-b82kya { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: auto / span 2; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-1mbvnit { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-szurc7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RInxj .framer-4lw6j1 { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 6; height: min-content; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RInxj .framer-14l3hr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RInxj .framer-1yx5bpr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-RInxj .framer-1je33sq { flex: none; height: 60px; max-width: 100%; overflow: hidden; position: relative; width: 225px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RInxj.framer-kukus, .framer-RInxj .framer-1kv1lsi, .framer-RInxj .framer-dn1f52, .framer-RInxj .framer-1otrw1s, .framer-RInxj .framer-2awani, .framer-RInxj .framer-1t7kgmm, .framer-RInxj .framer-1anldjg, .framer-RInxj .framer-du5d9p, .framer-RInxj .framer-glgbw2, .framer-RInxj .framer-ryjft8, .framer-RInxj .framer-18o1nrp, .framer-RInxj .framer-ixttvy, .framer-RInxj .framer-qawu5l, .framer-RInxj .framer-naia2h, .framer-RInxj .framer-1posx2y, .framer-RInxj .framer-1j3pqsw, .framer-RInxj .framer-1mtfw1s, .framer-RInxj .framer-4v383r, .framer-RInxj .framer-1d5tw5h, .framer-RInxj .framer-b82kya, .framer-RInxj .framer-4lw6j1, .framer-RInxj .framer-14l3hr4, .framer-RInxj .framer-1yx5bpr { gap: 0px; } .framer-RInxj.framer-kukus > *, .framer-RInxj .framer-1kv1lsi > *, .framer-RInxj .framer-4lw6j1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-RInxj.framer-kukus > :first-child, .framer-RInxj .framer-1kv1lsi > :first-child, .framer-RInxj .framer-b82kya > :first-child, .framer-RInxj .framer-4lw6j1 > :first-child, .framer-RInxj .framer-14l3hr4 > :first-child, .framer-RInxj .framer-1yx5bpr > :first-child { margin-top: 0px; } .framer-RInxj.framer-kukus > :last-child, .framer-RInxj .framer-1kv1lsi > :last-child, .framer-RInxj .framer-b82kya > :last-child, .framer-RInxj .framer-4lw6j1 > :last-child, .framer-RInxj .framer-14l3hr4 > :last-child, .framer-RInxj .framer-1yx5bpr > :last-child { margin-bottom: 0px; } .framer-RInxj .framer-dn1f52 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-RInxj .framer-dn1f52 > :first-child, .framer-RInxj .framer-1otrw1s > :first-child, .framer-RInxj .framer-2awani > :first-child, .framer-RInxj .framer-1t7kgmm > :first-child, .framer-RInxj .framer-1anldjg > :first-child, .framer-RInxj .framer-du5d9p > :first-child, .framer-RInxj .framer-glgbw2 > :first-child, .framer-RInxj .framer-ryjft8 > :first-child, .framer-RInxj .framer-18o1nrp > :first-child, .framer-RInxj .framer-ixttvy > :first-child, .framer-RInxj .framer-qawu5l > :first-child, .framer-RInxj .framer-naia2h > :first-child, .framer-RInxj .framer-1posx2y > :first-child, .framer-RInxj .framer-1j3pqsw > :first-child, .framer-RInxj .framer-1mtfw1s > :first-child, .framer-RInxj .framer-4v383r > :first-child, .framer-RInxj .framer-1d5tw5h > :first-child { margin-left: 0px; } .framer-RInxj .framer-dn1f52 > :last-child, .framer-RInxj .framer-1otrw1s > :last-child, .framer-RInxj .framer-2awani > :last-child, .framer-RInxj .framer-1t7kgmm > :last-child, .framer-RInxj .framer-1anldjg > :last-child, .framer-RInxj .framer-du5d9p > :last-child, .framer-RInxj .framer-glgbw2 > :last-child, .framer-RInxj .framer-ryjft8 > :last-child, .framer-RInxj .framer-18o1nrp > :last-child, .framer-RInxj .framer-ixttvy > :last-child, .framer-RInxj .framer-qawu5l > :last-child, .framer-RInxj .framer-naia2h > :last-child, .framer-RInxj .framer-1posx2y > :last-child, .framer-RInxj .framer-1j3pqsw > :last-child, .framer-RInxj .framer-1mtfw1s > :last-child, .framer-RInxj .framer-4v383r > :last-child, .framer-RInxj .framer-1d5tw5h > :last-child { margin-right: 0px; } .framer-RInxj .framer-1otrw1s > *, .framer-RInxj .framer-2awani > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-RInxj .framer-1t7kgmm > *, .framer-RInxj .framer-1anldjg > *, .framer-RInxj .framer-du5d9p > *, .framer-RInxj .framer-glgbw2 > *, .framer-RInxj .framer-ryjft8 > *, .framer-RInxj .framer-18o1nrp > *, .framer-RInxj .framer-ixttvy > *, .framer-RInxj .framer-qawu5l > *, .framer-RInxj .framer-naia2h > *, .framer-RInxj .framer-1posx2y > *, .framer-RInxj .framer-1j3pqsw > *, .framer-RInxj .framer-1mtfw1s > *, .framer-RInxj .framer-4v383r > *, .framer-RInxj .framer-1d5tw5h > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-RInxj .framer-b82kya > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RInxj .framer-14l3hr4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-RInxj .framer-1yx5bpr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-RInxj.framer-kukus { width: 810px; } .framer-RInxj .framer-iwif3d-container { z-index: 2; } .framer-RInxj .framer-1kv1lsi { align-content: center; align-items: center; padding: 60px 20px 0px 20px; } .framer-RInxj .framer-dn1f52 { gap: 10px; width: 683px; } .framer-RInxj .framer-1otrw1s { padding: 0px 10px 0px 10px; } .framer-RInxj .framer-1rplcqv { flex: none; white-space: pre; width: auto; } .framer-RInxj .framer-3de1ip { padding: 0px; } .framer-RInxj .framer-1t7kgmm, .framer-RInxj .framer-1anldjg, .framer-RInxj .framer-du5d9p { align-content: flex-start; align-items: flex-start; } .framer-RInxj .framer-11ktfuu { aspect-ratio: 1.3166666666666667 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; height: var(--framer-aspect-ratio-supported, 585px); } .framer-RInxj .framer-glgbw2 { align-content: flex-start; align-items: flex-start; height: min-content; min-height: 527px; } .framer-RInxj .framer-1n0qmwt, .framer-RInxj .framer-xjvj30, .framer-RInxj .framer-1ebqy81 { aspect-ratio: 1.3166666666666667 / 1; height: var(--framer-aspect-ratio-supported, 152px); } .framer-RInxj .framer-ryjft8, .framer-RInxj .framer-naia2h { flex-direction: column; min-height: 280px; } .framer-RInxj .framer-a9fkr9, .framer-RInxj .framer-72flgn, .framer-RInxj .framer-rqyyx1, .framer-RInxj .framer-1ev632p, .framer-RInxj .framer-1cdeczv, .framer-RInxj .framer-jwrfv8 { width: 100%; } .framer-RInxj .framer-18o1nrp { flex-direction: column; min-height: 572px; } .framer-RInxj .framer-1yf9s1i, .framer-RInxj .framer-1e7c5bz, .framer-RInxj .framer-1tp4lxa, .framer-RInxj .framer-ge8dvb { height: 450px; width: 50%; } .framer-RInxj .framer-qawu5l, .framer-RInxj .framer-1j3pqsw { align-content: flex-start; align-items: flex-start; height: min-content; } .framer-RInxj .framer-1e3ou1e, .framer-RInxj .framer-fj6nq1 { aspect-ratio: 1.3166666666666667 / 1; height: var(--framer-aspect-ratio-supported, 585px); } .framer-RInxj .framer-1mtfw1s, .framer-RInxj .framer-4v383r { align-content: flex-start; align-items: flex-start; height: min-content; min-height: 750px; } .framer-RInxj .framer-1d5tw5h { align-content: flex-start; align-items: flex-start; padding: 0px; } .framer-RInxj .framer-4sufw8 { grid-template-columns: repeat(2, minmax(0px, 1fr)); width: 689px; } .framer-RInxj .framer-1stqfdy { grid-template-columns: repeat(7, minmax(50px, 1fr)); height: 302px; padding: 120px 10px 120px 10px; } .framer-RInxj .framer-106oj8w { height: 10px; order: 0; } .framer-RInxj .framer-b82kya { gap: 0px; grid-column: auto / span 3; order: 1; } .framer-RInxj .framer-1mbvnit { padding: 0px 0px 10px 0px; } .framer-RInxj .framer-4lw6j1 { grid-column: 1 / -1; justify-self: center; order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RInxj .framer-dn1f52, .framer-RInxj .framer-ryjft8, .framer-RInxj .framer-18o1nrp, .framer-RInxj .framer-naia2h, .framer-RInxj .framer-b82kya { gap: 0px; } .framer-RInxj .framer-dn1f52 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RInxj .framer-dn1f52 > :first-child { margin-left: 0px; } .framer-RInxj .framer-dn1f52 > :last-child { margin-right: 0px; } .framer-RInxj .framer-ryjft8 > *, .framer-RInxj .framer-18o1nrp > *, .framer-RInxj .framer-naia2h > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-RInxj .framer-ryjft8 > :first-child, .framer-RInxj .framer-18o1nrp > :first-child, .framer-RInxj .framer-naia2h > :first-child, .framer-RInxj .framer-b82kya > :first-child { margin-top: 0px; } .framer-RInxj .framer-ryjft8 > :last-child, .framer-RInxj .framer-18o1nrp > :last-child, .framer-RInxj .framer-naia2h > :last-child, .framer-RInxj .framer-b82kya > :last-child { margin-bottom: 0px; } .framer-RInxj .framer-b82kya > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 809px) { .framer-RInxj.framer-kukus { width: 390px; } .framer-RInxj .framer-1j0gnu2-container { top: -1px; } .framer-RInxj .framer-iwif3d-container { bottom: 30px; } .framer-RInxj .framer-1kv1lsi { align-content: center; align-items: center; padding: 75px 10px 0px 10px; } .framer-RInxj .framer-dn1f52 { gap: 10px; padding: 28px 0px 0px 0px; width: 306px; } .framer-RInxj .framer-n5dafn { height: 100px; } .framer-RInxj .framer-1rplcqv { flex: none; white-space: pre; width: auto; } .framer-RInxj .framer-fh24qm { height: 15px; } .framer-RInxj .framer-3de1ip, .framer-RInxj .framer-1mbvnit { padding: 0px; } .framer-RInxj .framer-11ktfuu { aspect-ratio: 1.0277777777777777 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; height: var(--framer-aspect-ratio-supported, 360px); } .framer-RInxj .framer-glgbw2 { height: min-content; min-height: 325px; } .framer-RInxj .framer-1n0qmwt, .framer-RInxj .framer-xjvj30, .framer-RInxj .framer-1ebqy81 { aspect-ratio: 1.0277777777777777 / 1; height: var(--framer-aspect-ratio-supported, 195px); } .framer-RInxj .framer-ryjft8, .framer-RInxj .framer-18o1nrp, .framer-RInxj .framer-ixttvy, .framer-RInxj .framer-1posx2y { flex-direction: column; } .framer-RInxj .framer-a9fkr9, .framer-RInxj .framer-72flgn, .framer-RInxj .framer-rqyyx1, .framer-RInxj .framer-1ev632p, .framer-RInxj .framer-1cdeczv, .framer-RInxj .framer-jwrfv8 { height: 316px; width: 100%; } .framer-RInxj .framer-1yf9s1i, .framer-RInxj .framer-1e7c5bz, .framer-RInxj .framer-1tp4lxa, .framer-RInxj .framer-ge8dvb { height: 360px; width: 100%; } .framer-RInxj .framer-qawu5l, .framer-RInxj .framer-1j3pqsw { height: min-content; } .framer-RInxj .framer-1e3ou1e, .framer-RInxj .framer-fj6nq1 { aspect-ratio: 1.0277777777777777 / 1; height: var(--framer-aspect-ratio-supported, 360px); } .framer-RInxj .framer-naia2h { flex-direction: column; min-height: 316px; } .framer-RInxj .framer-1mtfw1s, .framer-RInxj .framer-4v383r { height: min-content; min-height: 750px; } .framer-RInxj .framer-4sufw8 { gap: 6px; grid-template-columns: repeat(2, minmax(0px, 1fr)); width: 324px; } .framer-RInxj .framer-sb1137 { border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; } .framer-RInxj .framer-1stqfdy { padding: 120px 10px 120px 10px; z-index: 3; } .framer-RInxj .framer-b82kya { grid-column: auto / span 6; } .framer-RInxj .framer-14l3hr4, .framer-RInxj .framer-1yx5bpr, .framer-RInxj .framer-1g6n1tl-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RInxj .framer-dn1f52, .framer-RInxj .framer-ryjft8, .framer-RInxj .framer-18o1nrp, .framer-RInxj .framer-ixttvy, .framer-RInxj .framer-naia2h, .framer-RInxj .framer-1posx2y, .framer-RInxj .framer-4sufw8 { gap: 0px; } .framer-RInxj .framer-dn1f52 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RInxj .framer-dn1f52 > :first-child { margin-left: 0px; } .framer-RInxj .framer-dn1f52 > :last-child { margin-right: 0px; } .framer-RInxj .framer-ryjft8 > *, .framer-RInxj .framer-18o1nrp > *, .framer-RInxj .framer-ixttvy > *, .framer-RInxj .framer-naia2h > *, .framer-RInxj .framer-1posx2y > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-RInxj .framer-ryjft8 > :first-child, .framer-RInxj .framer-18o1nrp > :first-child, .framer-RInxj .framer-ixttvy > :first-child, .framer-RInxj .framer-naia2h > :first-child, .framer-RInxj .framer-1posx2y > :first-child { margin-top: 0px; } .framer-RInxj .framer-ryjft8 > :last-child, .framer-RInxj .framer-18o1nrp > :last-child, .framer-RInxj .framer-ixttvy > :last-child, .framer-RInxj .framer-naia2h > :last-child, .framer-RInxj .framer-1posx2y > :last-child { margin-bottom: 0px; } .framer-RInxj .framer-4sufw8 > *, .framer-RInxj .framer-4sufw8 > :first-child, .framer-RInxj .framer-4sufw8 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5043\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KfYPz9Li2\":{\"layout\":[\"fixed\",\"auto\"]},\"RptgU9S2t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"qxikKElCF\":{\"pattern\":\":qxikKElCF\",\"name\":\"case\"},\"lxxPS38_G\":{\"pattern\":\":lxxPS38_G\",\"name\":\"s1\"},\"TvXKkRhDH\":{\"pattern\":\":TvXKkRhDH\",\"name\":\"s1\"},\"HuYv8zk_h\":{\"pattern\":\":HuYv8zk_h\",\"name\":\"s1\"},\"IiIaWADMk\":{\"pattern\":\":IiIaWADMk\",\"name\":\"s1\"},\"OHFk0rtNJ\":{\"pattern\":\":OHFk0rtNJ\",\"name\":\"s2\"},\"czpPBrEYT\":{\"pattern\":\":czpPBrEYT\",\"name\":\"s2\"},\"kJcG07Bry\":{\"pattern\":\":kJcG07Bry\",\"name\":\"s2\"},\"Le5uSgYe6\":{\"pattern\":\":Le5uSgYe6\",\"name\":\"s1\"},\"gRkx32vTw\":{\"pattern\":\":gRkx32vTw\",\"name\":\"s2\"},\"sEZd_0xmN\":{\"pattern\":\":sEZd_0xmN\",\"name\":\"s2\"},\"eDTIv1Fzv\":{\"pattern\":\":eDTIv1Fzv\",\"name\":\"s1\"},\"Q0U2GgDuK\":{\"pattern\":\":Q0U2GgDuK\",\"name\":\"s1\"},\"tZkfOb3pT\":{\"pattern\":\":tZkfOb3pT\",\"name\":\"s1\"},\"W1GBrmiyU\":{\"pattern\":\":W1GBrmiyU\",\"name\":\"s1\"}}\n * @framerResponsiveScreen\n */const Framerwi0fLYvRJ=withCSS(Component,css,\"framer-RInxj\");export default Framerwi0fLYvRJ;Framerwi0fLYvRJ.displayName=\"Articles Detail\";Framerwi0fLYvRJ.defaultProps={height:5043,width:1280};addFonts(Framerwi0fLYvRJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...NavNavigationFonts,...WorkPopupFonts,...ProjectTitleFonts,...VideoFonts,...ButtonButtonFonts,...ButtonButtonWorksFonts,...SpinnerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwi0fLYvRJ\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KfYPz9Li2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RptgU9S2t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerScrollSections\":\"{\\\"qxikKElCF\\\":{\\\"pattern\\\":\\\":qxikKElCF\\\",\\\"name\\\":\\\"case\\\"},\\\"lxxPS38_G\\\":{\\\"pattern\\\":\\\":lxxPS38_G\\\",\\\"name\\\":\\\"s1\\\"},\\\"TvXKkRhDH\\\":{\\\"pattern\\\":\\\":TvXKkRhDH\\\",\\\"name\\\":\\\"s1\\\"},\\\"HuYv8zk_h\\\":{\\\"pattern\\\":\\\":HuYv8zk_h\\\",\\\"name\\\":\\\"s1\\\"},\\\"IiIaWADMk\\\":{\\\"pattern\\\":\\\":IiIaWADMk\\\",\\\"name\\\":\\\"s1\\\"},\\\"OHFk0rtNJ\\\":{\\\"pattern\\\":\\\":OHFk0rtNJ\\\",\\\"name\\\":\\\"s2\\\"},\\\"czpPBrEYT\\\":{\\\"pattern\\\":\\\":czpPBrEYT\\\",\\\"name\\\":\\\"s2\\\"},\\\"kJcG07Bry\\\":{\\\"pattern\\\":\\\":kJcG07Bry\\\",\\\"name\\\":\\\"s2\\\"},\\\"Le5uSgYe6\\\":{\\\"pattern\\\":\\\":Le5uSgYe6\\\",\\\"name\\\":\\\"s1\\\"},\\\"gRkx32vTw\\\":{\\\"pattern\\\":\\\":gRkx32vTw\\\",\\\"name\\\":\\\"s2\\\"},\\\"sEZd_0xmN\\\":{\\\"pattern\\\":\\\":sEZd_0xmN\\\",\\\"name\\\":\\\"s2\\\"},\\\"eDTIv1Fzv\\\":{\\\"pattern\\\":\\\":eDTIv1Fzv\\\",\\\"name\\\":\\\"s1\\\"},\\\"Q0U2GgDuK\\\":{\\\"pattern\\\":\\\":Q0U2GgDuK\\\",\\\"name\\\":\\\"s1\\\"},\\\"tZkfOb3pT\\\":{\\\"pattern\\\":\\\":tZkfOb3pT\\\",\\\"name\\\":\\\"s1\\\"},\\\"W1GBrmiyU\\\":{\\\"pattern\\\":\\\":W1GBrmiyU\\\",\\\"name\\\":\\\"s1\\\"}}\",\"framerIntrinsicHeight\":\"5043\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "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", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "MotionDivWithFX", "css", "FramerO_XoZ3FcZ", "withCSS", "O_XoZ3FcZ_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "variationAxes", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "BFsoBtCUr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3gp6y6", "args", "onTap17mj1n9", "onTap1a9nnel", "onTap9s3s5d", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "RichText2", "css", "FramerH4mdjJxZw", "withCSS", "H4mdjJxZw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xrj2rztpZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerVc71GEKT8", "withCSS", "Vc71GEKT8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ssKL8ftyX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "css", "FramerySNx1Tx3J", "withCSS", "ySNx1Tx3J_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavNavigationFonts", "oGW2TdjWu_default", "WorkPopupFonts", "H4mdjJxZw_default", "ProjectTitleFonts", "Vc71GEKT8_default", "VideoFonts", "Video", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "ButtonButtonFonts", "z5viqM300_default", "ButtonButtonWorksFonts", "ySNx1Tx3J_default", "SpinnerFonts", "O_XoZ3FcZ_default", "ContainerWithInfiniteScroll", "withInfiniteScroll", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "isSet", "value", "equals", "a", "b", "convertFromBoolean", "activeLocale", "toResponsiveImage", "transition2", "animation1", "animation2", "loaderVariants", "repeaterState", "variants", "currentVariant", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "R8tkzUCOp_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "C_r_PctXY", "AmDyxlpyg", "lGdt8Ev5e", "YyuaFvy2y", "i33RtDNF0", "alpxa2Sdk", "ZTB0rA7qe", "OCRsSgsY5", "gWt_TbWi2", "H8HgwZo1V", "HNq6tOo_a", "SbYREsJ2l", "kIdqFXKwC", "EM3aazC0o", "QgFponZ7v", "ETJeTPa8X", "uVpwoMn2T", "uAAToV6L0", "pUZoJ2qQ6", "mbHrl6t9w", "fkTJVWKAs", "ecyhoJiiDb2Br2u1oC", "GrWMPoD5mkdlPRdvnx", "AmDyxlpygkdlPRdvnx", "idkdlPRdvnx", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref1", "visible", "elementId1", "ref2", "visible1", "elementId2", "ref3", "elementId3", "ref4", "visible2", "visible3", "elementId4", "ref5", "visible4", "elementId5", "ref6", "visible5", "visible6", "elementId6", "ref7", "visible7", "visible8", "elementId7", "ref8", "visible9", "visible10", "elementId8", "ref9", "visible11", "elementId9", "ref10", "visible12", "visible13", "elementId10", "ref11", "visible14", "visible15", "elementId11", "ref12", "visible16", "elementId12", "ref13", "visible17", "elementId13", "ref14", "visible18", "elementId14", "ref15", "isDisplayed3", "router", "useRouter", "dynamicRef", "useDynamicRefs", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "index", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "collection", "l", "index1", "PathVariablesContext", "Link", "css", "Framerwi0fLYvRJ", "withCSS", "wi0fLYvRJ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
