{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/c5dVfBQ9NAWQZ8HUrieg/jc0Ly3mwfW6jQEA6xJXO/XiBdg_XXG.js", "ssg:https://framerusercontent.com/modules/sxOotpUb5CAXj2g35EZj/Qs9ePXoKX0r1CWsOzLnY/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const 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;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"XiMfSXImU\",\"yTalrrrzB\"];const serializationHash=\"framer-aWT4t\";const variantClassNames={XiMfSXImU:\"framer-v-u40uk5\",yTalrrrzB:\"framer-v-plx4hq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"XiMfSXImU\",\"Variant 2\":\"yTalrrrzB\"};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:\"XiMfSXImU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XiMfSXImU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter9bcuz1=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"yTalrrrzB\");});const onMouseLeaveodd6uf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"XiMfSXImU\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",intrinsicHeight:56.5,intrinsicWidth:150,positionX:\"center\",positionY:\"center\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-u40uk5\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XiMfSXImU\",onMouseEnter:onMouseEnter9bcuz1,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({yTalrrrzB:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeaveodd6uf}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2gvupb-container\",layoutDependency:layoutDependency,layoutId:\"s_fx8e4zj-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"s_fx8e4zj\",isMixedBorderRadius:false,layoutId:\"s_fx8e4zj\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/jyGk86d2sXJQEvpvMVwFlOD2LU.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({yTalrrrzB:{playing:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56.5,intrinsicWidth:150,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:113,pixelWidth:300,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/gB3V8qEWndXxhNuRtfx219LrIQ.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gB3V8qEWndXxhNuRtfx219LrIQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gB3V8qEWndXxhNuRtfx219LrIQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gB3V8qEWndXxhNuRtfx219LrIQ.svg 1401w\"},className:\"framer-clpcgr\",\"data-framer-name\":\"home\",layoutDependency:layoutDependency,layoutId:\"CWYk3fcuk\",transformTemplate:transformTemplate1})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aWT4t.framer-oiwzsj, .framer-aWT4t .framer-oiwzsj { display: block; }\",\".framer-aWT4t.framer-u40uk5 { height: 542px; overflow: visible; position: relative; width: 1440px; }\",\".framer-aWT4t .framer-2gvupb-container { aspect-ratio: 2.6527777777777777 / 1; bottom: var(--framer-aspect-ratio-supported, -1px); flex: none; left: 50%; position: absolute; top: 0px; width: 100%; }\",\".framer-aWT4t .framer-clpcgr { aspect-ratio: 2.6548672566371683 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 542\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yTalrrrzB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXiBdg_XXG=withCSS(Component,css,\"framer-aWT4t\");export default FramerXiBdg_XXG;FramerXiBdg_XXG.displayName=\"home\";FramerXiBdg_XXG.defaultProps={height:542,width:1440};addPropertyControls(FramerXiBdg_XXG,{variant:{options:[\"XiMfSXImU\",\"yTalrrrzB\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXiBdg_XXG,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXiBdg_XXG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"542\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yTalrrrzB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XiBdg_XXG.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import FooterInformations from\"#framer/local/canvasComponent/k8ZH97v6x/k8ZH97v6x.js\";import Menu from\"#framer/local/canvasComponent/QnBcaQBo9/QnBcaQBo9.js\";import Home from\"#framer/local/canvasComponent/XiBdg_XXG/XiBdg_XXG.js\";import Projects from\"#framer/local/collection/DG4_15OOO/DG4_15OOO.js\";import*as sharedStyle1 from\"#framer/local/css/iR_CmZyGs/iR_CmZyGs.js\";import*as sharedStyle2 from\"#framer/local/css/PfV7RmQjB/PfV7RmQjB.js\";import*as sharedStyle from\"#framer/local/css/qwZvfAnlJ/qwZvfAnlJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MenuFonts=getFonts(Menu);const MenuWithVariantAppearEffect=withVariantAppearEffect(Menu);const ContainerWithFX=withFX(Container);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const HomeFonts=getFonts(Home);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const FooterInformationsFonts=getFonts(FooterInformations);const breakpoints={Bjzq64b0J:\"(min-width: 980px) and (max-width: 1601px)\",IYYZGSoUE:\"(max-width: 979px)\",WQLkyLRf1:\"(min-width: 1602px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4dkqQ\";const variantClassNames={Bjzq64b0J:\"framer-v-1ee0phc\",IYYZGSoUE:\"framer-v-1186391\",WQLkyLRf1:\"framer-v-72rtr7\"};const inertia={bounceDamping:100,bounceStiffness:17,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={cursor:\"grabbing\",opacity:1,rotate:20,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const transition2={delay:0,duration:1.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:-25,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:100,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:400};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const inertia1={bounceDamping:30,bounceStiffness:59,delay:0,type:\"inertia\"};const animation3={cursor:\"grabbing\"};const transition3={damping:30,delay:0,mass:5.8,stiffness:119,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-500,y:500};const animation6={opacity:1,rotate:-9,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation7={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:600,y:0};const transition4={delay:.15,duration:3.1,ease:[.21,.63,.51,1.03],type:\"tween\"};const animation8={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:600,y:0};const transition5={delay:0,duration:1.55,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:180,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"IYYZGSoUE\",Tablet:\"Bjzq64b0J\"};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:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,omONDEx0jgGnUoby9P,fsOXc5Ny7gGnUoby9P,Hx6TABdJ7gGnUoby9P,ElercDvC3gGnUoby9P,Y1_JHnwb4gGnUoby9P,pQ3j1QWnsgGnUoby9P,FdqiqgOUlgGnUoby9P,idgGnUoby9P,CkzeVEMW6yyp9oI82C,v9VtpyCF7yyp9oI82C,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-4dkqQ`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-4dkqQ`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId=useRouteElementId(\"dkYX6X9sD\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"IYYZGSoUE\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"IYYZGSoUE\")return true;return false;};const ref5=React.useRef(null);const elementId1=useRouteElementId(\"kEqSnT5_k\");const elementId2=useRouteElementId(\"rVtnFvLdh\");const elementId3=useRouteElementId(\"pRYRRiVvu\");const dynamicRef=useDynamicRefs();const elementId4=useRouteElementId(\"ATHUOBv6V\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"WJb96ldWp\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:690,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tzynsk-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{__framer__targets:[{ref:ref3,target:\"wfGfRlKiN\"}],__framer__threshold:0,EjwW0OMUc:\"rgb(255, 255, 255)\",variant:\"o1tU3EOYr\",YUXf2g4bE:\"rgb(0, 0, 0)\"}},children:/*#__PURE__*/_jsx(MenuWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"kI7X_cAhe\"},{ref:ref3,target:\"jRaNa1BFM\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,EjwW0OMUc:\"rgb(0, 0, 0)\",height:\"100%\",id:\"sHIYLf4lb\",layoutId:\"sHIYLf4lb\",style:{width:\"100%\"},uvvkI56wu:\"Back\",variant:\"qRTXEqBHn\",width:\"100%\",YUXf2g4bE:\"rgb(255, 255, 255)\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2i8x4w\",\"data-framer-name\":\"Track\",id:elementId,name:\"Track\",ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ibt9ak\",\"data-framer-name\":\"Sticky Hero\",name:\"Sticky Hero\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qwrdze\",\"data-framer-name\":\"Hero Tile\",name:\"Hero Tile\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:668.5,intrinsicWidth:599.5,loading:getLoadingLazyAtYPosition(219.5),pixelHeight:1472,pixelWidth:1455,positionX:\"center\",positionY:\"center\",sizes:\"27.551vw\",src:\"https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png?scale-down-to=1024 1012w,https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png 1455w\"}},IYYZGSoUE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:668.5,intrinsicWidth:599.5,loading:getLoadingLazyAtYPosition(131.48974099231168),pixelHeight:1472,pixelWidth:1455,positionX:\"center\",positionY:\"center\",sizes:\"42.619vw\",src:\"https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png?scale-down-to=1024 1012w,https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png 1455w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__targetOpacity:1,animate:animation1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:668.5,intrinsicWidth:599.5,loading:getLoadingLazyAtYPosition(122.00988730451127),pixelHeight:1472,pixelWidth:1455,positionX:\"center\",positionY:\"center\",sizes:\"22.5625vw\",src:\"https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png?scale-down-to=1024 1012w,https://framerusercontent.com/images/uHl8OaC30ZVe48vyqXmhP5wmcc.png 1455w\"},className:\"framer-1ioutza\",\"data-framer-appear-id\":\"1ioutza\",\"data-framer-name\":\"PSTH_Hellowork_Bag\",drag:true,dragMomentum:true,initial:animation2,name:\"PSTH_Hellowork_Bag\",onMouseDown:preventDefault,optimized:true,style:{rotate:-25},whileTap:animation})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{height:314,width:\"90.7143vw\",y:343}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:542,width:\"90vw\",y:229,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ts4vmg-container hidden-1186391\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Home,{height:\"100%\",id:\"cjTgs_GGK\",layoutId:\"cjTgs_GGK\",style:{width:\"100%\"},variant:\"XiMfSXImU\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{animate:animation6,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(115.00249929003422),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"50vw\",src:\"https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif\",srcSet:\"https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif?scale-down-to=512 512w,https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif 2048w\"},style:{rotate:-9}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__targetOpacity:1,animate:animation4,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(67.75),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"38.25vw\",src:\"https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif\",srcSet:\"https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif?scale-down-to=512 512w,https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/tnYaKPEMQ6cJfBakCv7zyNEa3ac.gif 2048w\"},className:\"framer-1r9km8l hidden-1186391\",\"data-framer-appear-id\":\"1r9km8l\",drag:true,dragMomentum:false,initial:animation5,onMouseDown:preventDefault,optimized:true,whileTap:animation3})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:254.5,intrinsicWidth:450.5,loading:getLoadingLazyAtYPosition(392.0651658767775),pixelHeight:509,pixelWidth:901,sizes:\"90vw\",src:\"https://framerusercontent.com/images/Fk670ocx51Qwxz6yG2KkdTnyyw8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Fk670ocx51Qwxz6yG2KkdTnyyw8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/Fk670ocx51Qwxz6yG2KkdTnyyw8.gif 901w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:254.5,intrinsicWidth:450.5,pixelHeight:509,pixelWidth:901,src:\"https://framerusercontent.com/images/Fk670ocx51Qwxz6yG2KkdTnyyw8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Fk670ocx51Qwxz6yG2KkdTnyyw8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/Fk670ocx51Qwxz6yG2KkdTnyyw8.gif 901w\"},className:\"framer-rcaqtf hidden-72rtr7 hidden-1ee0phc\",\"data-framer-name\":\"$6615a1f5cee93d965f957f38_logo_1_\",name:\"$6615a1f5cee93d965f957f38_logo_1_\",transformTemplate:transformTemplate2})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aq5pcr\",\"data-framer-name\":\"Lead\",name:\"Lead\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rh1udb\",\"data-styles-preset\":\"qwZvfAnlJ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"THEORY #1\"})}),className:\"framer-191lnmo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kuyged\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-86e2ve\",\"data-styles-preset\":\"iR_CmZyGs\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Producing a film should be like an afternoon pool party among friends. It should be simple, friendly, and creative.\"})}),className:\"framer-151u5p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{height:690,width:\"calc(100vw - 32px)\",y:1016}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:0,className:\"framer-31zx4u-container hidden-72rtr7 hidden-1ee0phc\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MenuWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"o1tU3EOYr\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,EjwW0OMUc:\"rgb(0, 0, 0)\",height:\"100%\",id:\"Ms4rPABPX\",layoutId:\"Ms4rPABPX\",style:{width:\"100%\"},uvvkI56wu:\"Back\",variant:\"o1tU3EOYr\",width:\"100%\",YUXf2g4bE:\"rgb(0, 0, 0)\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:668.5,intrinsicWidth:599.5,loading:getLoadingLazyAtYPosition(1020),pixelHeight:876,pixelWidth:876,positionX:\"center\",positionY:\"center\",sizes:\"21.7347vw\",src:\"https://framerusercontent.com/images/q7K7ZjxhOosZM7ZoeSrJQp9dhh4.png\",srcSet:\"https://framerusercontent.com/images/q7K7ZjxhOosZM7ZoeSrJQp9dhh4.png?scale-down-to=512 512w,https://framerusercontent.com/images/q7K7ZjxhOosZM7ZoeSrJQp9dhh4.png 876w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:668.5,intrinsicWidth:599.5,loading:getLoadingLazyAtYPosition(1020),pixelHeight:876,pixelWidth:876,positionX:\"center\",positionY:\"center\",sizes:\"14.9813vw\",src:\"https://framerusercontent.com/images/q7K7ZjxhOosZM7ZoeSrJQp9dhh4.png\",srcSet:\"https://framerusercontent.com/images/q7K7ZjxhOosZM7ZoeSrJQp9dhh4.png?scale-down-to=512 512w,https://framerusercontent.com/images/q7K7ZjxhOosZM7ZoeSrJQp9dhh4.png 876w\"},className:\"framer-15w9yv7 hidden-1186391\",\"data-framer-name\":\"PSTH_Hellowork_Bag\",drag:true,dragMomentum:true,name:\"PSTH_Hellowork_Bag\",onMouseDown:preventDefault,style:{rotate:-25},whileHover:animation9,whileTap:animation})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a6loy8\",\"data-framer-name\":\"Projects\",id:elementId1,name:\"Projects\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1khdrmr\",\"data-framer-name\":\"Scrolling Headline\",id:elementId2,name:\"Scrolling Headline\",ref:ref5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rh1udb\",\"data-styles-preset\":\"qwZvfAnlJ\",children:\"Recent Projects\"})}),className:\"framer-5x6hrd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h1grjt\",\"data-framer-name\":\"Projects \",name:\"Projects \",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gGnUoby9P\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"gGnUoby9P\",name:\"omONDEx0j\",type:\"Identifier\"},{collection:\"gGnUoby9P\",name:\"fsOXc5Ny7\",type:\"Identifier\"},{collection:\"gGnUoby9P\",name:\"Hx6TABdJ7\",type:\"Identifier\"},{collection:\"gGnUoby9P\",name:\"ElercDvC3\",type:\"Identifier\"},{collection:\"gGnUoby9P\",name:\"Y1_JHnwb4\",type:\"Identifier\"},{collection:\"gGnUoby9P\",name:\"pQ3j1QWns\",type:\"Identifier\"},{collection:\"gGnUoby9P\",name:\"FdqiqgOUl\",type:\"Identifier\"},{collection:\"gGnUoby9P\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({ElercDvC3:ElercDvC3gGnUoby9P,FdqiqgOUl:FdqiqgOUlgGnUoby9P,fsOXc5Ny7:fsOXc5Ny7gGnUoby9P,Hx6TABdJ7:Hx6TABdJ7gGnUoby9P,id:idgGnUoby9P,omONDEx0j:omONDEx0jgGnUoby9P,pQ3j1QWns:pQ3j1QWnsgGnUoby9P,Y1_JHnwb4:Y1_JHnwb4gGnUoby9P},i)=>{omONDEx0jgGnUoby9P!==null&&omONDEx0jgGnUoby9P!==void 0?omONDEx0jgGnUoby9P:omONDEx0jgGnUoby9P=\"\";Hx6TABdJ7gGnUoby9P!==null&&Hx6TABdJ7gGnUoby9P!==void 0?Hx6TABdJ7gGnUoby9P:Hx6TABdJ7gGnUoby9P=\"\";ElercDvC3gGnUoby9P!==null&&ElercDvC3gGnUoby9P!==void 0?ElercDvC3gGnUoby9P:ElercDvC3gGnUoby9P=\"\";Y1_JHnwb4gGnUoby9P!==null&&Y1_JHnwb4gGnUoby9P!==void 0?Y1_JHnwb4gGnUoby9P:Y1_JHnwb4gGnUoby9P=\"\";const visible=equals(fsOXc5Ny7gGnUoby9P,\"YK4moHkBP\");return /*#__PURE__*/_jsx(LayoutGroup,{id:`gGnUoby9P-${idgGnUoby9P}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{omONDEx0j:omONDEx0jgGnUoby9P},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{omONDEx0j:omONDEx0jgGnUoby9P},webPageId:\"M4lMzPVF0\"},nodeId:\"pRYRRiVvu\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-12btu4d framer-lux5qc\",\"data-framer-name\":\"Project\",id:`${omONDEx0jgGnUoby9P}-${elementId3}`,name:\"Project\",ref:dynamicRef(`${omONDEx0jgGnUoby9P}-${elementId3}`),children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1miy5cc hidden-1186391\",\"data-framer-name\":\"Scrolling Line Wrapper\",name:\"Scrolling Line Wrapper\",children:visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-g56e8f\",\"data-framer-name\":\"Scrolling Text\",name:\"Scrolling Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:80,delay:0,duration:.3,ease:[.44,0,.56,1],mass:2.5,stiffness:590,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:500,y:0}},{ref:dynamicRef(`${omONDEx0jgGnUoby9P}-${elementId3}`),target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-500,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-86e2ve\",\"data-styles-preset\":\"iR_CmZyGs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-832b6beb-abde-4970-a3c8-e2bb5f36f01c, rgb(0, 0, 0))\"},children:\"An infinity of stories Copy Copy Copy\"})}),className:\"framer-1lql125\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:Hx6TABdJ7gGnUoby9P,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6n4gso\",\"data-framer-name\":\"Media Wrapper\",name:\"Media Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1atipbj\",\"data-framer-name\":\"Media Card\",name:\"Media Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vnu90h\",\"data-framer-name\":\"Media Container\",name:\"Media Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-106633f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIDY1IE1lZGl1bQ==\",\"--framer-font-family\":'\"Haas Grot Disp 65 Medium\", \"Haas Grot Disp 65 Medium Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Zalando x K-Way\"})})},IYYZGSoUE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIDc1IEJvbGQ=\",\"--framer-font-family\":'\"Haas Grot Disp 75 Bold\", \"Haas Grot Disp 75 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.225em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Zalando x K-Way\"})}),fonts:[\"CUSTOM;Haas Grot Disp 75 Bold\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:121,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIDY1IE1lZGl1bQ==\",\"--framer-font-family\":'\"Haas Grot Disp 65 Medium\", \"Haas Grot Disp 65 Medium Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Zalando x K-Way\"})}),className:\"framer-euw1cv\",fonts:[\"CUSTOM;Haas Grot Disp 65 Medium\"],text:ElercDvC3gGnUoby9P,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{__framer__offset:10,__framer__speed:95}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:77,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g2tfal-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-852eb2ab-db3e-4368-ac73-8792afd43b71, rgb(217, 217, 215))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Cin1pBtbP\",isMixedBorderRadius:false,layoutId:\"Cin1pBtbP\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(FdqiqgOUlgGnUoby9P),posterEnabled:true,srcFile:pQ3j1QWnsgGnUoby9P,srcType:\"URL\",srcUrl:Y1_JHnwb4gGnUoby9P,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]})})})]})})})},idgGnUoby9P);})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kvr8rg\",\"data-framer-name\":\"Scrolling Headline\",id:elementId4,name:\"Scrolling Headline\",ref:ref6}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12grq7k\",\"data-framer-name\":\"Fixed Footer\",id:elementId5,name:\"Fixed Footer\",ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{y:4410.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:690,width:\"100vw\",y:6583.875,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:CkzeVEMW6yyp9oI82C,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-66}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:0,className:\"framer-13tqdu2-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{variant:\"o1tU3EOYr\"}},children:/*#__PURE__*/_jsx(MenuWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:v9VtpyCF7yyp9oI82C,target:\"kI7X_cAhe\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,EjwW0OMUc:\"rgb(0, 0, 0)\",height:\"100%\",id:\"CkSSduHSB\",layoutId:\"CkSSduHSB\",style:{width:\"100%\"},uvvkI56wu:\"Back\",variant:\"kI7X_cAhe\",width:\"100%\",YUXf2g4bE:\"var(--token-852eb2ab-db3e-4368-ac73-8792afd43b71, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ml258q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1et5gf0\",\"data-styles-preset\":\"PfV7RmQjB\",children:[\"Poolside Theory is \",/*#__PURE__*/_jsx(\"br\",{}),\"a production company\",/*#__PURE__*/_jsx(\"br\",{}),\"conducted by \",/*#__PURE__*/_jsx(\"br\",{}),\"the greatest scientists \",/*#__PURE__*/_jsx(\"br\",{}),\"of the cosmic world\"]})}),className:\"framer-mjes4x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bjzq64b0J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75,intrinsicWidth:80.5,loading:getLoadingLazyAtYPosition(7416.875),pixelHeight:150,pixelWidth:161,src:\"https://framerusercontent.com/images/QeIBdFN1vweQfnv5meREHwTMo.svg\"}},IYYZGSoUE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75,intrinsicWidth:80.5,loading:getLoadingLazyAtYPosition(5259.75),pixelHeight:150,pixelWidth:161,src:\"https://framerusercontent.com/images/QeIBdFN1vweQfnv5meREHwTMo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75,intrinsicWidth:80.5,loading:getLoadingLazyAtYPosition(7305.875),pixelHeight:150,pixelWidth:161,src:\"https://framerusercontent.com/images/QeIBdFN1vweQfnv5meREHwTMo.svg\"},className:\"framer-93rabp\",\"data-framer-name\":\"technologieFichier_8\",name:\"technologieFichier_8\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IYYZGSoUE:{y:5276.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:\"100vw\",y:7449.875,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r8zkm4-container\",children:/*#__PURE__*/_jsx(FooterInformations,{height:\"100%\",id:\"ceFDHkJ_l\",layoutId:\"ceFDHkJ_l\",style:{width:\"100%\"},variant:\"fJ_EZ65wd\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-4dkqQ { background: rgb(255, 220, 99); }`,\".framer-4dkqQ.framer-lux5qc, .framer-4dkqQ .framer-lux5qc { display: block; }\",\".framer-4dkqQ.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffdc63; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1602px; }\",\".framer-4dkqQ .framer-1tzynsk-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 5; }\",\".framer-4dkqQ .framer-2i8x4w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 100vh; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-4dkqQ .framer-1ibt9ak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; }\",\".framer-4dkqQ .framer-1qwrdze { align-content: center; align-items: center; background-color: #ffdb63; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-4dkqQ .framer-1ioutza { aspect-ratio: 0.8256880733944955 / 1; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 438px); left: 245px; overflow: hidden; position: absolute; top: 122px; width: 23%; z-index: 1; }\",\".framer-4dkqQ .framer-ts4vmg-container { flex: none; height: auto; mix-blend-mode: multiply; position: relative; width: 90%; }\",\".framer-4dkqQ .framer-1r9km8l { aspect-ratio: 1.3799019607843137 / 1; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 444px); overflow: hidden; position: absolute; right: 137px; top: 68px; width: 38%; z-index: 5; }\",\".framer-4dkqQ .framer-rcaqtf { aspect-ratio: 1.7701375245579567 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 90%; z-index: 1; }\",\".framer-4dkqQ .framer-1aq5pcr { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; background-color: #ffdc63; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100vh; justify-content: flex-end; min-height: 100vh; overflow: hidden; padding: 32px; pointer-events: none; position: sticky; top: 0px; user-select: none; width: 100%; will-change: transform; z-index: 1; }\",\".framer-4dkqQ .framer-191lnmo, .framer-4dkqQ .framer-5x6hrd, .framer-4dkqQ .framer-1lql125 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4dkqQ .framer-1kuyged { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4dkqQ .framer-151u5p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-4dkqQ .framer-31zx4u-container, .framer-4dkqQ .framer-13tqdu2-container { flex: none; height: auto; opacity: 0; position: relative; width: 100%; z-index: 5; }\",\".framer-4dkqQ .framer-15w9yv7 { aspect-ratio: 0.9278350515463918 / 1; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 259px); left: 771px; overflow: hidden; position: absolute; top: 20px; width: 15%; z-index: 1; }\",\".framer-4dkqQ .framer-1a6loy8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-4dkqQ .framer-1khdrmr { align-content: center; align-items: center; background-color: var(--token-852eb2ab-db3e-4368-ac73-8792afd43b71, #d9d9d7); border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 70px 32px 0px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-4dkqQ .framer-1h1grjt { align-content: flex-start; align-items: flex-start; background-color: var(--token-852eb2ab-db3e-4368-ac73-8792afd43b71, #d9d9d7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-4dkqQ .framer-12btu4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-4dkqQ .framer-1miy5cc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 1px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-4dkqQ .framer-g56e8f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 0px 47px 0px; position: relative; width: 200%; }\",\".framer-4dkqQ .framer-6n4gso { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-4dkqQ .framer-1atipbj { align-content: center; align-items: center; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4dkqQ .framer-vnu90h { align-content: center; align-items: center; background-color: var(--token-852eb2ab-db3e-4368-ac73-8792afd43b71, #d9d9d7); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-4dkqQ .framer-106633f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: min-content; }\",\".framer-4dkqQ .framer-euw1cv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; mix-blend-mode: luminosity; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-4dkqQ .framer-1g2tfal-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-4dkqQ .framer-1kvr8rg { align-content: center; align-items: center; background-color: var(--token-852eb2ab-db3e-4368-ac73-8792afd43b71, #d9d9d7); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 86px; overflow: hidden; padding: 70px 32px 0px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-4dkqQ .framer-12grq7k { align-content: flex-start; align-items: flex-start; background-color: var(--token-3dd5bb37-c8ac-49e7-9f69-a40de00fddda, #ff6101); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; max-height: 100vh; overflow: hidden; padding: 0px; position: sticky; width: 100%; will-change: transform; z-index: 1; }\",\".framer-4dkqQ .framer-ml258q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-4dkqQ .framer-mjes4x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-4dkqQ .framer-93rabp { aspect-ratio: 1.0733333333333333 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 683px); z-index: 1; }\",\".framer-4dkqQ .framer-r8zkm4-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4dkqQ.framer-72rtr7, .framer-4dkqQ .framer-2i8x4w, .framer-4dkqQ .framer-1ibt9ak, .framer-4dkqQ .framer-1qwrdze, .framer-4dkqQ .framer-1aq5pcr, .framer-4dkqQ .framer-1kuyged, .framer-4dkqQ .framer-1a6loy8, .framer-4dkqQ .framer-1khdrmr, .framer-4dkqQ .framer-1h1grjt, .framer-4dkqQ .framer-12btu4d, .framer-4dkqQ .framer-1miy5cc, .framer-4dkqQ .framer-g56e8f, .framer-4dkqQ .framer-6n4gso, .framer-4dkqQ .framer-1atipbj, .framer-4dkqQ .framer-vnu90h, .framer-4dkqQ .framer-106633f, .framer-4dkqQ .framer-1kvr8rg, .framer-4dkqQ .framer-ml258q { gap: 0px; } .framer-4dkqQ.framer-72rtr7 > *, .framer-4dkqQ .framer-2i8x4w > *, .framer-4dkqQ .framer-1ibt9ak > *, .framer-4dkqQ .framer-1qwrdze > *, .framer-4dkqQ .framer-1a6loy8 > *, .framer-4dkqQ .framer-1khdrmr > *, .framer-4dkqQ .framer-1miy5cc > *, .framer-4dkqQ .framer-g56e8f > *, .framer-4dkqQ .framer-1atipbj > *, .framer-4dkqQ .framer-vnu90h > *, .framer-4dkqQ .framer-1kvr8rg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4dkqQ.framer-72rtr7 > :first-child, .framer-4dkqQ .framer-2i8x4w > :first-child, .framer-4dkqQ .framer-1ibt9ak > :first-child, .framer-4dkqQ .framer-1qwrdze > :first-child, .framer-4dkqQ .framer-1aq5pcr > :first-child, .framer-4dkqQ .framer-1a6loy8 > :first-child, .framer-4dkqQ .framer-1khdrmr > :first-child, .framer-4dkqQ .framer-1h1grjt > :first-child, .framer-4dkqQ .framer-12btu4d > :first-child, .framer-4dkqQ .framer-1miy5cc > :first-child, .framer-4dkqQ .framer-g56e8f > :first-child, .framer-4dkqQ .framer-1atipbj > :first-child, .framer-4dkqQ .framer-vnu90h > :first-child, .framer-4dkqQ .framer-1kvr8rg > :first-child { margin-top: 0px; } .framer-4dkqQ.framer-72rtr7 > :last-child, .framer-4dkqQ .framer-2i8x4w > :last-child, .framer-4dkqQ .framer-1ibt9ak > :last-child, .framer-4dkqQ .framer-1qwrdze > :last-child, .framer-4dkqQ .framer-1aq5pcr > :last-child, .framer-4dkqQ .framer-1a6loy8 > :last-child, .framer-4dkqQ .framer-1khdrmr > :last-child, .framer-4dkqQ .framer-1h1grjt > :last-child, .framer-4dkqQ .framer-12btu4d > :last-child, .framer-4dkqQ .framer-1miy5cc > :last-child, .framer-4dkqQ .framer-g56e8f > :last-child, .framer-4dkqQ .framer-1atipbj > :last-child, .framer-4dkqQ .framer-vnu90h > :last-child, .framer-4dkqQ .framer-1kvr8rg > :last-child { margin-bottom: 0px; } .framer-4dkqQ .framer-1aq5pcr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-4dkqQ .framer-1kuyged > *, .framer-4dkqQ .framer-6n4gso > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4dkqQ .framer-1kuyged > :first-child, .framer-4dkqQ .framer-6n4gso > :first-child, .framer-4dkqQ .framer-106633f > :first-child, .framer-4dkqQ .framer-ml258q > :first-child { margin-left: 0px; } .framer-4dkqQ .framer-1kuyged > :last-child, .framer-4dkqQ .framer-6n4gso > :last-child, .framer-4dkqQ .framer-106633f > :last-child, .framer-4dkqQ .framer-ml258q > :last-child { margin-right: 0px; } .framer-4dkqQ .framer-1h1grjt > *, .framer-4dkqQ .framer-12btu4d > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-4dkqQ .framer-106633f > *, .framer-4dkqQ .framer-ml258q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 980px) and (max-width: 1601px) { .${metadata.bodyClassName}-framer-4dkqQ { background: rgb(255, 220, 99); } .framer-4dkqQ.framer-72rtr7 { width: 980px; } .framer-4dkqQ .framer-1ioutza { height: var(--framer-aspect-ratio-supported, 327px); left: 103px; top: 220px; width: 28%; } .framer-4dkqQ .framer-ts4vmg-container { height: 314px; width: 91%; } .framer-4dkqQ .framer-1r9km8l { height: var(--framer-aspect-ratio-supported, 355px); right: 51px; top: 115px; width: 50%; } .framer-4dkqQ .framer-1kuyged { gap: unset; justify-content: space-between; padding: 0px 70px 0px 0px; } .framer-4dkqQ .framer-15w9yv7 { bottom: 86px; height: var(--framer-aspect-ratio-supported, 230px); left: 401px; width: 22%; } .framer-4dkqQ .framer-12grq7k { gap: 0px; justify-content: flex-end; } .framer-4dkqQ .framer-13tqdu2-container { left: 50%; position: absolute; top: 0px; transform: translateX(-50%); } .framer-4dkqQ .framer-ml258q { align-content: flex-end; align-items: flex-end; flex: none; height: min-content; } .framer-4dkqQ .framer-mjes4x { height: auto; } .framer-4dkqQ .framer-93rabp { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 422px); width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4dkqQ .framer-1kuyged, .framer-4dkqQ .framer-12grq7k { gap: 0px; } .framer-4dkqQ .framer-1kuyged > *, .framer-4dkqQ .framer-1kuyged > :first-child, .framer-4dkqQ .framer-1kuyged > :last-child { margin: 0px; } .framer-4dkqQ .framer-12grq7k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4dkqQ .framer-12grq7k > :first-child { margin-top: 0px; } .framer-4dkqQ .framer-12grq7k > :last-child { margin-bottom: 0px; } }}`,\"@media (max-width: 979px) { .framer-4dkqQ.framer-72rtr7 { background-color: unset; width: 420px; } .framer-4dkqQ .framer-1ibt9ak { justify-content: center; } .framer-4dkqQ .framer-1ioutza { height: var(--framer-aspect-ratio-supported, 217px); left: 48%; order: 0; top: 131px; transform: translateX(-50%); width: 43%; z-index: 3; } .framer-4dkqQ .framer-rcaqtf { height: var(--framer-aspect-ratio-supported, 214px); order: 3; } .framer-4dkqQ .framer-1aq5pcr { height: min-content; justify-content: flex-start; min-height: unset; padding: 16px; } .framer-4dkqQ .framer-191lnmo { order: 1; } .framer-4dkqQ .framer-1kuyged { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 2; } .framer-4dkqQ .framer-151u5p { order: 0; width: 100%; } .framer-4dkqQ .framer-31zx4u-container { order: 0; } .framer-4dkqQ .framer-1khdrmr, .framer-4dkqQ .framer-1kvr8rg { padding: 70px 16px 0px 16px; } .framer-4dkqQ .framer-1h1grjt { gap: 16px; } .framer-4dkqQ .framer-12btu4d { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; gap: 0px; justify-content: flex-start; padding: 30px 0px 0px 0px; } .framer-4dkqQ .framer-6n4gso { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; justify-content: flex-end; padding: 20px 16px 0px 16px; will-change: var(--framer-will-change-override, transform); } .framer-4dkqQ .framer-1atipbj { height: 50vh; } .framer-4dkqQ .framer-106633f { align-content: flex-start; align-items: flex-start; } .framer-4dkqQ .framer-ml258q { flex-direction: column; padding: 16px; } .framer-4dkqQ .framer-mjes4x { height: 1px; width: 100%; } .framer-4dkqQ .framer-93rabp { height: var(--framer-aspect-ratio-supported, 362px); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4dkqQ .framer-1kuyged, .framer-4dkqQ .framer-1h1grjt, .framer-4dkqQ .framer-12btu4d, .framer-4dkqQ .framer-ml258q { gap: 0px; } .framer-4dkqQ .framer-1kuyged > *, .framer-4dkqQ .framer-12btu4d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4dkqQ .framer-1kuyged > :first-child, .framer-4dkqQ .framer-1h1grjt > :first-child, .framer-4dkqQ .framer-12btu4d > :first-child, .framer-4dkqQ .framer-ml258q > :first-child { margin-top: 0px; } .framer-4dkqQ .framer-1kuyged > :last-child, .framer-4dkqQ .framer-1h1grjt > :last-child, .framer-4dkqQ .framer-12btu4d > :last-child, .framer-4dkqQ .framer-ml258q > :last-child { margin-bottom: 0px; } .framer-4dkqQ .framer-1h1grjt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-4dkqQ .framer-ml258q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6830.5\n * @framerIntrinsicWidth 1602\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Bjzq64b0J\":{\"layout\":[\"fixed\",\"auto\"]},\"IYYZGSoUE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-4dkqQ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6830.5,width:1602};addFonts(FrameraugiA20Il,[{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\"},{family:\"Haas Grot Disp 65 Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5aUo9HZLKUpUaImF6aLLsRsf3QA.woff2\"},{family:\"Haas Grot Disp 75 Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Mnv13ok7pgh01yKgxJ9r2q5TlQ.woff2\"}]},...MenuFonts,...HomeFonts,...VideoFonts,...FooterInformationsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bjzq64b0J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IYYZGSoUE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6830.5\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1602\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter9bcuz1", "args", "onMouseLeaveodd6uf", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerXiBdg_XXG", "withCSS", "XiBdg_XXG_default", "addPropertyControls", "ControlType", "addFonts", "MenuFonts", "getFonts", "QnBcaQBo9_default", "MenuWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "HomeFonts", "XiBdg_XXG_default", "MotionDivWithFX", "motion", "ImageWithFX", "RichTextWithFX", "RichText2", "VideoFonts", "Video", "FooterInformationsFonts", "k8ZH97v6x_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "preventDefault", "e", "transition1", "animation", "transition2", "animation1", "animation2", "transformTemplate1", "_", "animation3", "transition3", "animation4", "animation5", "animation6", "transformTemplate2", "_", "animation7", "transition4", "animation8", "transition5", "animation9", "equals", "a", "b", "toImageSrc", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "omONDEx0jgGnUoby9P", "fsOXc5Ny7gGnUoby9P", "Hx6TABdJ7gGnUoby9P", "ElercDvC3gGnUoby9P", "Y1_JHnwb4gGnUoby9P", "pQ3j1QWnsgGnUoby9P", "FdqiqgOUlgGnUoby9P", "idgGnUoby9P", "CkzeVEMW6yyp9oI82C", "v9VtpyCF7yyp9oI82C", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "ref2", "ref3", "elementId", "useRouteElementId", "ref4", "isDisplayed", "isBrowser", "isDisplayed1", "ref5", "elementId1", "elementId2", "elementId3", "dynamicRef", "useDynamicRefs", "elementId4", "ref6", "elementId5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "variantClassNames", "u", "LayoutGroup", "motion", "cx", "serializationHash", "ComponentViewportProvider", "PropertyOverrides2", "ContainerWithFX", "MenuWithVariantAppearEffect", "MotionDivWithFX", "getLoadingLazyAtYPosition", "transformTemplate1", "ImageWithFXWithOptimizedAppearEffect", "animation1", "animation2", "preventDefault", "animation", "Container", "XiBdg_XXG_default", "Image2", "RichText2", "x", "ImageWithFX", "ChildrenCanSuspend", "DG4_15OOO_default", "collection", "paginationInfo", "loadMore", "l", "i", "visible", "PathVariablesContext", "Link", "RichTextWithFX", "Video", "k8ZH97v6x_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "MenuFonts", "HomeFonts", "VideoFonts", "FooterInformationsFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
