{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/PnwtCmbni8DNhpO12HCV/546NsFB5lzp3zp6CvPdS/usTrCHVNi.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",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:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.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=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import BaseForm from\"https://framerusercontent.com/modules/5KnpCu3BMh9xY3q4vo8T/MdzAFJEzpWQmeu5usNe9/BaseForm.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js\";import DesktopNav from\"#framer/local/canvasComponent/J1JSSShkp/J1JSSShkp.js\";import Footer from\"#framer/local/canvasComponent/kDLUlmYF3/kDLUlmYF3.js\";import Byline from\"#framer/local/canvasComponent/stKrVSaIA/stKrVSaIA.js\";import MobileNav from\"#framer/local/canvasComponent/XBtwdoO5F/XBtwdoO5F.js\";import Projects from\"#framer/local/collection/jJ5Xqx6Mp/jJ5Xqx6Mp.js\";import*as sharedStyle from\"#framer/local/css/AuvOvewSo/AuvOvewSo.js\";import*as sharedStyle2 from\"#framer/local/css/ElyELmbnu/ElyELmbnu.js\";import*as sharedStyle5 from\"#framer/local/css/h71tGdqR2/h71tGdqR2.js\";import*as sharedStyle7 from\"#framer/local/css/hy5Z1XGF2/hy5Z1XGF2.js\";import*as sharedStyle10 from\"#framer/local/css/msUXnmZzD/msUXnmZzD.js\";import*as sharedStyle9 from\"#framer/local/css/oNVGJDM4Z/oNVGJDM4Z.js\";import*as sharedStyle8 from\"#framer/local/css/Ores0CQp5/Ores0CQp5.js\";import*as sharedStyle1 from\"#framer/local/css/rVbzVCSb0/rVbzVCSb0.js\";import*as sharedStyle6 from\"#framer/local/css/t6fY544PZ/t6fY544PZ.js\";import*as sharedStyle3 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle4 from\"#framer/local/css/Y3_2rTEH6/Y3_2rTEH6.js\";import metadataProvider from\"#framer/local/webPageMetadata/usTrCHVNi/usTrCHVNi.js\";const DesktopNavFonts=getFonts(DesktopNav);const DesktopNavWithVariantAppearEffect=withVariantAppearEffect(DesktopNav);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MobileNavFonts=getFonts(MobileNav);const MobileNavWithVariantAppearEffect=withVariantAppearEffect(MobileNav);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const BylineFonts=getFonts(Byline);const BaseFormFonts=getFonts(BaseForm);const PhosphorFonts=getFonts(Phosphor);const FooterFonts=getFonts(Footer);const breakpoints={EQcpu0oxu:\"(min-width: 810px) and (max-width: 1199px)\",IDluK_Rj3:\"(max-width: 809px)\",wCH9PADCX:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZMHFg\";const variantClassNames={EQcpu0oxu:\"framer-v-1jz076a\",IDluK_Rj3:\"framer-v-1716sfo\",wCH9PADCX:\"framer-v-mnz6ww\"};const transition1={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:100};const transition3={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:100};const transition4={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"1200>\":\"wCH9PADCX\",\"390>\":\"IDluK_Rj3\",\"810>\":\"EQcpu0oxu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wCH9PADCX\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"usTrCHVNi\",data:Projects,type:\"Collection\"},select:[{collection:\"usTrCHVNi\",name:\"ejm4oSD6w\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"YY_1APRgY\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"FLbKIJ_xp\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"eCzBIRTs3\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"pklpMdGDt\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"Msw8y0dtJ\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"gRGU1TXvy\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"yhjn8Rkvs\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"so4Iik31N\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"l79EX6JGO\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"RyXJM8keO\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"bBwndT7Yz\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"puCvuG2k7\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"Tr4RxcqzC\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"yNQ1WDUZf\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"LLQP9Nu3G\",type:\"Identifier\"},{collection:\"usTrCHVNi\",name:\"IgFTPMQ0X\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"usTrCHVNi\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,ejm4oSD6w=getFromCurrentRouteData(\"ejm4oSD6w\")??\"\",FLbKIJ_xp=getFromCurrentRouteData(\"FLbKIJ_xp\")??\"\",eCzBIRTs3=getFromCurrentRouteData(\"eCzBIRTs3\")??\"\",YY_1APRgY=getFromCurrentRouteData(\"YY_1APRgY\")??\"\",Msw8y0dtJ=getFromCurrentRouteData(\"Msw8y0dtJ\")??\"\",Bz0pg13sy,gRGU1TXvy=getFromCurrentRouteData(\"gRGU1TXvy\")??\"\",Mot3Ob6BU,yhjn8Rkvs=getFromCurrentRouteData(\"yhjn8Rkvs\")??\"\",so4Iik31N=getFromCurrentRouteData(\"so4Iik31N\")??\"\",l79EX6JGO=getFromCurrentRouteData(\"l79EX6JGO\"),bBwndT7Yz=getFromCurrentRouteData(\"bBwndT7Yz\"),Tr4RxcqzC=getFromCurrentRouteData(\"Tr4RxcqzC\"),LLQP9Nu3G=getFromCurrentRouteData(\"LLQP9Nu3G\"),RyXJM8keO=getFromCurrentRouteData(\"RyXJM8keO\"),puCvuG2k7=getFromCurrentRouteData(\"puCvuG2k7\"),yNQ1WDUZf=getFromCurrentRouteData(\"yNQ1WDUZf\"),IgFTPMQ0X=getFromCurrentRouteData(\"IgFTPMQ0X\"),...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onSubmit3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"EQcpu0oxu\",\"IDluK_Rj3\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"EQcpu0oxu\",\"IDluK_Rj3\"].includes(baseVariant))return true;return false;};const elementId=useRouteElementId(\"mTHyUVb6L\");const visible=isSet(YY_1APRgY);const visible1=isSet(Msw8y0dtJ);const visible2=isSet(gRGU1TXvy);const visible3=isSet(yhjn8Rkvs);const visible4=isSet(so4Iik31N);const visible5=isSet(l79EX6JGO);const visible6=isSet(bBwndT7Yz);const visible7=isSet(Tr4RxcqzC);const visible8=isSet(LLQP9Nu3G);const visible9=isSet(RyXJM8keO);const visible10=isSet(puCvuG2k7);const visible11=isSet(yNQ1WDUZf);const visible12=isSet(IgFTPMQ0X);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"IDluK_Rj3\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"EQcpu0oxu\")return false;return true;};const router=useRouter();const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"IDluK_Rj3\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wCH9PADCX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(244, 244, 244); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-mnz6ww\",className),ref:ref??ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ts2cp4-container hidden-1jz076a hidden-1716sfo\",\"data-framer-appear-id\":\"1ts2cp4\",initial:animation1,layoutScroll:true,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(DesktopNavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:25,ref:ref2,target:\"mn8u3uG3z\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"XSoBjpvKi\",layoutId:\"XSoBjpvKi\",style:{height:\"100%\",width:\"100%\"},variant:\"B2wee72I3\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{height:50,width:\"100.5vw\",y:0},IDluK_Rj3:{height:50,width:\"101vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{animate:animation,initial:animation1,optimized:true},IDluK_Rj3:{animate:animation,initial:animation1,optimized:true}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{className:\"framer-nviqmy-container hidden-mnz6ww\",\"data-framer-appear-id\":\"nviqmy\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{__framer__animateOnce:false,__framer__targets:[{offset:25,ref:ref2,target:\"kVjj2ZFAi\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:\"u7wWQkLFO\"},IDluK_Rj3:{__framer__animateOnce:false,__framer__targets:[{offset:25,ref:ref2,target:\"kVjj2ZFAi\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:\"u7wWQkLFO\"}},children:/*#__PURE__*/_jsx(MobileNavWithVariantAppearEffect,{height:\"100%\",id:\"ALQpxAe75\",layoutId:\"ALQpxAe75\",style:{width:\"100%\"},variant:\"kVjj2ZFAi\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1he3tuz\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11fnvsq\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gvtr3c\",\"data-framer-name\":\"Lead\",id:elementId,ref:ref2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1hxi2hg\",\"data-styles-preset\":\"rVbzVCSb0\",children:\"Art Gallery\"})})},IDluK_Rj3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1bhlgvu\",\"data-styles-preset\":\"ElyELmbnu\",children:\"Art Gallery\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-h9zxpy\",\"data-styles-preset\":\"AuvOvewSo\",children:\"Art Gallery\"})}),className:\"framer-1jc8jlm\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:ejm4oSD6w,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e3ivrt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11siegz\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"AMPM Design\"})}),className:\"framer-xd2vg8\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],text:FLbKIJ_xp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Architecture\"})}),className:\"framer-bc7c8x\",\"data-framer-name\":\"Product]\",fonts:[\"Inter\"],text:eCzBIRTs3,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nblp7a\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),visible&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o3t3ii\",\"data-styles-preset\":\"Y3_2rTEH6\",children:\"Using section drawings and floor plans, we created a lifelike 3D interior of a 3-story opera gallery. Each detail, floor to ceiling, was meticulously crafted to mirror the building's exact features. Employing reference imagery, we added products and materials in 8K resolution, achieving unparalleled realism. Natural lighting was applied to replicate window illumination and gallery ambiance.\"})}),className:\"framer-2kbb03\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:YY_1APRgY,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m5il5s\",\"data-framer-name\":\"Motion\",children:[visible1&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s72pbw\",\"data-border\":true,\"data-framer-name\":\"Video\",style:{transformPerspective:1200},children:visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ahznab-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"c6hN1Y5fX\",isMixedBorderRadius:false,layoutId:\"c6hN1Y5fX\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:Bz0pg13sy,srcType:\"URL\",srcUrl:Msw8y0dtJ,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible2&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19m3afp\",\"data-border\":true,\"data-framer-name\":\"Video\",style:{transformPerspective:1200},children:visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1afuva0-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"RTRDcX3Zf\",isMixedBorderRadius:false,layoutId:\"RTRDcX3Zf\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:Mot3Ob6BU,srcType:\"URL\",srcUrl:gRGU1TXvy,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible3&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-syxo4b\",\"data-border\":true,\"data-framer-name\":\"Video\",style:{transformPerspective:1200},children:visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n9lfmv-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"uYnX69OgM\",isMixedBorderRadius:false,layoutId:\"uYnX69OgM\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:yhjn8Rkvs,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pwwd3s\",\"data-border\":true,\"data-framer-name\":\"Video\",style:{transformPerspective:1200},children:visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n9clpb-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"C9Nib0zFv\",isMixedBorderRadius:false,layoutId:\"C9Nib0zFv\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:so4Iik31N,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipbe9l\",\"data-framer-name\":\"Stills\",children:[visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(l79EX6JGO)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(l79EX6JGO)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(l79EX6JGO)},className:\"framer-1pwuiuw\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),visible6&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(bBwndT7Yz)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+570),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(bBwndT7Yz)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(bBwndT7Yz)},className:\"framer-1tz6ad9\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+580),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(Tr4RxcqzC)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+1140),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(Tr4RxcqzC)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+580),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(Tr4RxcqzC)},className:\"framer-kapy5t\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+580),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(LLQP9Nu3G)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+1710),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(LLQP9Nu3G)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+580),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(LLQP9Nu3G)},className:\"framer-4sv6lf\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+1160),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(RyXJM8keO)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+2280),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(RyXJM8keO)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+1160),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(RyXJM8keO)},className:\"framer-1lebiku\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+1160),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(puCvuG2k7)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+2850),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(puCvuG2k7)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+1160),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(puCvuG2k7)},className:\"framer-1hf0xos\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+1740),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(yNQ1WDUZf)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+3420),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(yNQ1WDUZf)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+1740),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(yNQ1WDUZf)},className:\"framer-sa0la\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),visible12&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+1028.4+0+1740),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(IgFTPMQ0X)}},IDluK_Rj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+1000.4+0+3990),sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 200px)`,...toResponsiveImage(IgFTPMQ0X)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+1036.8+0+1740),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 200px)`,...toResponsiveImage(IgFTPMQ0X)},className:\"framer-hncmn6\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l4x0mj\",\"data-border\":true,\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xstn8g\",\"data-framer-name\":\"Content\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f82nef hidden-1716sfo\",\"data-framer-name\":\"Lead\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8j5olz\",\"data-framer-name\":\"Texts\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekfpf8\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jpu9lg-container\",children:/*#__PURE__*/_jsx(Byline,{byline:\"Transform Creatively.\",height:\"100%\",id:\"QYI9QvF0X\",layoutId:\"QYI9QvF0X\",variant:\"gUwrm7FgH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lr5isd\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y0q60j\",\"data-styles-preset\":\"h71tGdqR2\",children:\"Elevate Your Brand.\"})}),className:\"framer-1g99xz8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9pacpn\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lt0byk\",\"data-styles-preset\":\"t6fY544PZ\",children:\"Harness the power of hyper-realistic CGI to showcase the true elegance and sophistication of your brand and products. Submit the form to get started!\"})}),className:\"framer-pabt6u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11t0t7i hidden-1jz076a\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r964fv\",\"data-framer-name\":\"Form\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"w7Q3mmwZH\"},implicitPathVariables:undefined},{href:{webPageId:\"w7Q3mmwZH\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-636ibf-container\",id:\"636ibf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BaseForm,{button:{label:\"SUBMIT PROJECT\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"N2JBl2m9O\",inputs:[{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"name\",options:[],placeholder:\"Name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"Email\",required:true,step:0,type:\"email\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"company\",options:[],placeholder:\"Company\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"website\",options:[],placeholder:\"Website\",required:true,step:0,type:\"url\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"budget\",options:[{text:\"Under \\xa32,000\",value:\"Under \\xa32,000\"},{text:\"\\xa32,000 to \\xa34,999\",value:\"\\xa32,000 to \\xa34,999\"},{text:\"\\xa35,000 to \\xa39,999\",value:\"\\xa35,000 to \\xa39,999\"},{text:\"\\xa310,000 to \\xa324,999\",value:\"\\xa310,000 to \\xa324,999\"},{text:\"\\xa325,000 to \\xa349,999\",value:\"\\xa325,000 to \\xa349,999\"},{text:\"\\xa350,000+\",value:\"\\xa350,000+\"}],placeholder:\"Budget Range\",required:true,step:0,type:\"select\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"product\",options:[{text:\"Architecture & Interior Design\",value:\"Architecture & Interior Design\"},{text:\"Automotive & Mobility\",value:\"Automotive & Mobility\"},{text:\"Beauty & Personal Care\",value:\"Beauty & Personal Care\"},{text:\"Electronics & Tech\",value:\"Electronics & Tech\"},{text:\"Eyewear\",value:\"Eyewear\"},{text:\"Fashion & Footwear\",value:\"Fashion & Footwear\"},{text:\"Furniture & Decor\",value:\"Furniture & Decor\"},{text:\"Jewelry & Accessories\",value:\"Jewelry & Accessories\"},{text:\"Marine & Yachts\",value:\"Marine & Yachts\"},{text:\"Spirits & Beverages\",value:\"Spirits & Beverages\"},{text:\"Watches\",value:\"Watches\"}],placeholder:\"Product\",required:true,step:0,type:\"select\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"deliverables\",options:[{text:\"Stills\",value:\"Stills\"},{text:\"Animations\",value:\"Animations\"},{text:\"Stills & Animations\",value:\"Stills & Animations\"}],placeholder:\"Deliverables\",required:true,step:0,type:\"select\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"deadline\",options:[],placeholder:\"Deadline\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"message\",options:[],placeholder:\"Project description...\",required:true,step:0,type:\"textarea\",value:\"\"}],layoutId:\"N2JBl2m9O\",link:resolvedLinks[0],method:\"post\",onSubmit:onSubmit3bnx0g({overlay}),redirectAs:\"link\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:0,color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Arimo\", \"Arimo Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.6em\",textAlign:\"center\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15},form:{columnGap:20,columns:\"2\",fill:\"rgba(255, 255, 255, 0)\",rowGap:20},input:{borderObject:{borderColor:\"rgb(0, 0, 0)\",borderWidth:1},borderRadius:0,color:\"var(--token-55df9709-9415-41e3-968a-bc638cca9166, rgb(0, 0, 0))\",fill:\"rgb(255, 255, 255)\",focusObject:{focusColor:\"rgb(0, 0, 0)\",focusWidthFrom:0,focusWidthTo:2},font:{fontFamily:'\"Arimo\", \"Arimo Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.6em\",textAlign:\"left\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholderColor:\"rgba(0, 0, 0, 0.6)\"},label:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"Arimo\", \"Arimo Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},url:\"https://submit-form.com/cVPSILmW\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-14wx309\"),\"data-framer-portal-id\":\"636ibf\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"GycIfRVbH\"),/*#__PURE__*/_jsx(motion.div,{animate:animation10,className:cx(scopingClassNames,\"framer-9fl2zc\"),\"data-framer-name\":\"Notification\",\"data-framer-portal-id\":\"636ibf\",exit:animation9,initial:animation2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{animate:animation11,className:\"framer-29nkor\",\"data-framer-name\":\"Content\",exit:animation8,initial:animation4,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m7ov8b\",\"data-framer-name\":\"Lead\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wxoos5\",\"data-styles-preset\":\"hy5Z1XGF2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Thank you.\"})}),className:\"framer-1xp9txm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1861awk\",\"data-framer-name\":\"Icon\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jodoic-container\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"XCircle\",id:\"bLzXg6LB3\",layoutId:\"bLzXg6LB3\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bu0knk\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w6mtra\",\"data-styles-preset\":\"Ores0CQp5\",children:\"We will try to get back to you within the next 24 hours. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w6mtra\",\"data-styles-preset\":\"Ores0CQp5\",children:\"We appreciate your patience!\"})]}),className:\"framer-ga6h1f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),getContainer())})})]})})})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rbmbcj hidden-mnz6ww hidden-1jz076a\",\"data-framer-name\":\"Lead\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t39mdm\",\"data-framer-name\":\"Texts\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ykc9t\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hfh24j\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IDluK_Rj3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15svcvz\",\"data-styles-preset\":\"msUXnmZzD\",children:\"Elevate Your Brand.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-55lqa2\",\"data-styles-preset\":\"oNVGJDM4Z\",children:\"WE'RE READY WHEN\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-55lqa2\",\"data-styles-preset\":\"oNVGJDM4Z\",children:\"YOU ARE.\"})]}),className:\"framer-1xlxfli\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gxbn8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IDluK_Rj3:{byline:\"Transform Creatively.\"}},children:/*#__PURE__*/_jsx(Byline,{byline:\"CONTACT US.\",height:\"100%\",id:\"LlYNrFMrR\",layoutId:\"LlYNrFMrR\",variant:\"gUwrm7FgH\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wxvx4j\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IDluK_Rj3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lt0byk\",\"data-styles-preset\":\"t6fY544PZ\",children:\"Harness the power of hyper-realistic CGI to showcase the true elegance and sophistication of your brand and products. Submit the form to get started!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lt0byk\",\"data-styles-preset\":\"t6fY544PZ\",children:\"Shoot us a message with your inquiries and there will be a warm and welcoming Renderologist waiting to connect with you.\"})}),className:\"framer-83dbjv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17czqz7\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-clalxs\",\"data-framer-name\":\"Form\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"w7Q3mmwZH\"},implicitPathVariables:undefined},{href:{webPageId:\"w7Q3mmwZH\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-131prps-container\",id:\"131prps\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IDluK_Rj3:{link:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(BaseForm,{button:{label:\"SUBMIT PROJECT\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"A4TyD4BEX\",inputs:[{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"name\",options:[],placeholder:\"Name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"Email\",required:true,step:0,type:\"email\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"company\",options:[],placeholder:\"Company\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"website\",options:[],placeholder:\"Website\",required:true,step:0,type:\"url\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"budget\",options:[{text:\"Under \\xa32,000\",value:\"Under \\xa32,000\"},{text:\"\\xa32,000 to \\xa34,999\",value:\"\\xa32,000 to \\xa34,999\"},{text:\"\\xa35,000 to \\xa39,999\",value:\"\\xa35,000 to \\xa39,999\"},{text:\"\\xa310,000 to \\xa324,999\",value:\"\\xa310,000 to \\xa324,999\"},{text:\"\\xa325,000 to \\xa349,999\",value:\"\\xa325,000 to \\xa349,999\"},{text:\"\\xa350,000+\",value:\"\\xa350,000+\"}],placeholder:\"Budget Range\",required:true,step:0,type:\"select\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"product\",options:[{text:\"Architecture & Interior Design\",value:\"Architecture & Interior Design\"},{text:\"Automotive & Mobility\",value:\"Automotive & Mobility\"},{text:\"Beauty & Personal Care\",value:\"Beauty & Personal Care\"},{text:\"Electronics & Tech\",value:\"Electronics & Tech\"},{text:\"Eyewear\",value:\"Eyewear\"},{text:\"Fashion & Footwear\",value:\"Fashion & Footwear\"},{text:\"Furniture & Decor\",value:\"Furniture & Decor\"},{text:\"Jewelry & Accessories\",value:\"Jewelry & Accessories\"},{text:\"Marine & Yachts\",value:\"Marine & Yachts\"},{text:\"Spirits & Beverages\",value:\"Spirits & Beverages\"},{text:\"Watches\",value:\"Watches\"}],placeholder:\"Product\",required:true,step:0,type:\"select\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"deliverables\",options:[{text:\"Stills\",value:\"Stills\"},{text:\"Animations\",value:\"Animations\"},{text:\"Stills & Animations\",value:\"Stills & Animations\"}],placeholder:\"Deliverables\",required:true,step:0,type:\"select\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"deadline\",options:[],placeholder:\"Deadline\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"message\",options:[],placeholder:\"Project description...\",required:true,step:0,type:\"textarea\",value:\"\"}],layoutId:\"A4TyD4BEX\",link:resolvedLinks1[0],method:\"post\",onSubmit:onSubmit3bnx0g({overlay:overlay1}),redirectAs:\"link\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:0,color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Arimo\", \"Arimo Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.6em\",textAlign:\"center\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15},form:{columnGap:20,columns:\"2\",fill:\"rgba(255, 255, 255, 0)\",rowGap:20},input:{borderObject:{borderColor:\"rgb(0, 0, 0)\",borderWidth:1},borderRadius:0,color:\"var(--token-55df9709-9415-41e3-968a-bc638cca9166, rgb(0, 0, 0))\",fill:\"rgb(255, 255, 255)\",focusObject:{focusColor:\"rgb(0, 0, 0)\",focusWidthFrom:0,focusWidthTo:2},font:{fontFamily:'\"Arimo\", \"Arimo Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.6em\",textAlign:\"left\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholderColor:\"rgba(0, 0, 0, 0.6)\"},label:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"Arimo\", \"Arimo Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},url:\"https://submit-form.com/cVPSILmW\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-13zrgey\"),\"data-framer-portal-id\":\"131prps\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"xCQbK7rb8\"),/*#__PURE__*/_jsx(motion.div,{animate:animation10,className:cx(scopingClassNames,\"framer-xhcoro\"),\"data-framer-name\":\"Notification\",\"data-framer-portal-id\":\"131prps\",exit:animation9,initial:animation2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{animate:animation11,className:\"framer-3n4ghe\",\"data-framer-name\":\"Content\",exit:animation8,initial:animation4,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s4orwz\",\"data-framer-name\":\"Lead\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wxoos5\",\"data-styles-preset\":\"hy5Z1XGF2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Thank you.\"})}),className:\"framer-m197b5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1evglqm\",\"data-framer-name\":\"Icon\",onTap:onTap1wnntms({overlay:overlay1}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hknnsk-container\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"XCircle\",id:\"aMV5CN6Z0\",layoutId:\"aMV5CN6Z0\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2htgy6\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w6mtra\",\"data-styles-preset\":\"Ores0CQp5\",children:\"We will try to get back to you within the next 24 hours. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w6mtra\",\"data-styles-preset\":\"Ores0CQp5\",children:\"We appreciate your patience!\"})]}),className:\"framer-1rfvrak\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),getContainer())})})]})})})})})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-45gs6t\",\"data-framer-name\":\"Footer\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ddgdq9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EQcpu0oxu:{variant:\"XY_ufKPYo\"},IDluK_Rj3:{variant:\"z5MrTt55_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tXnIJimHN\",layoutId:\"tXnIJimHN\",style:{width:\"100%\"},variant:\"uW4JeyNXb\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZMHFg.framer-1l46v1d, .framer-ZMHFg .framer-1l46v1d { display: block; }\",\".framer-ZMHFg.framer-mnz6ww { align-content: center; align-items: center; background-color: #f4f4f4; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-ZMHFg .framer-1ts2cp4-container { flex: none; height: 50px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-ZMHFg .framer-nviqmy-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-ZMHFg .framer-1he3tuz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 150px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-11fnvsq, .framer-ZMHFg .framer-t39mdm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-gvtr3c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 25px; width: 100%; }\",\".framer-ZMHFg .framer-1jc8jlm, .framer-ZMHFg .framer-xd2vg8, .framer-ZMHFg .framer-bc7c8x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZMHFg .framer-1e3ivrt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-11siegz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZMHFg .framer-nblp7a, .framer-ZMHFg .framer-17czqz7 { background-color: #000000; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-2kbb03 { flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZMHFg .framer-m5il5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-s72pbw { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-1ahznab-container { aspect-ratio: 1.7752808988764044 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 631px); position: relative; width: 1px; }\",\".framer-ZMHFg .framer-19m3afp, .framer-ZMHFg .framer-syxo4b, .framer-ZMHFg .framer-pwwd3s { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 508px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-1afuva0-container, .framer-ZMHFg .framer-n9lfmv-container, .framer-ZMHFg .framer-1n9clpb-container { aspect-ratio: 1.7752808988764044 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 1px; }\",\".framer-ZMHFg .framer-ipbe9l { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-1pwuiuw { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 540px); justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-1tz6ad9, .framer-ZMHFg .framer-kapy5t, .framer-ZMHFg .framer-4sv6lf, .framer-ZMHFg .framer-1lebiku, .framer-ZMHFg .framer-1hf0xos, .framer-ZMHFg .framer-sa0la, .framer-ZMHFg .framer-hncmn6 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 540px); justify-self: start; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-l4x0mj { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f4f4f4; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-1xstn8g { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: auto; justify-content: center; overflow: hidden; padding: 120px 40px 120px 40px; position: relative; width: 1px; }\",\".framer-ZMHFg .framer-1f82nef { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-8j5olz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZMHFg .framer-1ekfpf8, .framer-ZMHFg .framer-19ykc9t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-1jpu9lg-container, .framer-ZMHFg .framer-1gxbn8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZMHFg .framer-1lr5isd, .framer-ZMHFg .framer-1hfh24j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-1g99xz8, .framer-ZMHFg .framer-1xlxfli, .framer-ZMHFg .framer-83dbjv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZMHFg .framer-9pacpn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-pabt6u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZMHFg .framer-11t0t7i { align-self: stretch; background-color: #000000; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-ZMHFg .framer-r964fv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZMHFg .framer-636ibf-container, .framer-ZMHFg .framer-131prps-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ZMHFg.framer-14wx309, .framer-ZMHFg.framer-13zrgey { background-color: rgba(0, 0, 0, 0.9); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-ZMHFg.framer-9fl2zc, .framer-ZMHFg.framer-xhcoro { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; justify-content: center; left: 0px; overflow: hidden; padding: 30px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-ZMHFg .framer-29nkor, .framer-ZMHFg .framer-3n4ghe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZMHFg .framer-1m7ov8b, .framer-ZMHFg .framer-s4orwz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 338px; }\",\".framer-ZMHFg .framer-1xp9txm, .framer-ZMHFg .framer-ga6h1f, .framer-ZMHFg .framer-m197b5, .framer-ZMHFg .framer-1rfvrak { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZMHFg .framer-1861awk, .framer-ZMHFg .framer-1evglqm { align-content: center; align-items: center; align-self: stretch; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZMHFg .framer-1jodoic-container, .framer-ZMHFg .framer-1hknnsk-container { flex: none; height: 23px; position: relative; width: 22px; z-index: 1; }\",\".framer-ZMHFg .framer-1bu0knk, .framer-ZMHFg .framer-2htgy6 { background-color: #ffffff; flex: none; height: 1px; overflow: hidden; position: relative; width: 338px; }\",\".framer-ZMHFg .framer-1rbmbcj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-wxvx4j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 75%; }\",\".framer-ZMHFg .framer-clalxs { 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: 0px; position: relative; width: 100%; }\",\".framer-ZMHFg .framer-45gs6t { align-content: flex-start; align-items: flex-start; background-color: #f4f4f4; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZMHFg .framer-1ddgdq9-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZMHFg.framer-mnz6ww, .framer-ZMHFg .framer-1he3tuz, .framer-ZMHFg .framer-11fnvsq, .framer-ZMHFg .framer-gvtr3c, .framer-ZMHFg .framer-1e3ivrt, .framer-ZMHFg .framer-11siegz, .framer-ZMHFg .framer-m5il5s, .framer-ZMHFg .framer-s72pbw, .framer-ZMHFg .framer-19m3afp, .framer-ZMHFg .framer-syxo4b, .framer-ZMHFg .framer-pwwd3s, .framer-ZMHFg .framer-l4x0mj, .framer-ZMHFg .framer-1xstn8g, .framer-ZMHFg .framer-1f82nef, .framer-ZMHFg .framer-8j5olz, .framer-ZMHFg .framer-1ekfpf8, .framer-ZMHFg .framer-1lr5isd, .framer-ZMHFg .framer-9pacpn, .framer-ZMHFg .framer-r964fv, .framer-ZMHFg.framer-9fl2zc, .framer-ZMHFg .framer-29nkor, .framer-ZMHFg .framer-1861awk, .framer-ZMHFg .framer-1rbmbcj, .framer-ZMHFg .framer-t39mdm, .framer-ZMHFg .framer-19ykc9t, .framer-ZMHFg .framer-1hfh24j, .framer-ZMHFg .framer-wxvx4j, .framer-ZMHFg .framer-clalxs, .framer-ZMHFg.framer-xhcoro, .framer-ZMHFg .framer-3n4ghe, .framer-ZMHFg .framer-1evglqm, .framer-ZMHFg .framer-45gs6t { gap: 0px; } .framer-ZMHFg.framer-mnz6ww > *, .framer-ZMHFg .framer-45gs6t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZMHFg.framer-mnz6ww > :first-child, .framer-ZMHFg .framer-1he3tuz > :first-child, .framer-ZMHFg .framer-11fnvsq > :first-child, .framer-ZMHFg .framer-gvtr3c > :first-child, .framer-ZMHFg .framer-11siegz > :first-child, .framer-ZMHFg .framer-m5il5s > :first-child, .framer-ZMHFg .framer-1xstn8g > :first-child, .framer-ZMHFg .framer-8j5olz > :first-child, .framer-ZMHFg .framer-1ekfpf8 > :first-child, .framer-ZMHFg .framer-1lr5isd > :first-child, .framer-ZMHFg .framer-9pacpn > :first-child, .framer-ZMHFg.framer-9fl2zc > :first-child, .framer-ZMHFg .framer-29nkor > :first-child, .framer-ZMHFg .framer-1rbmbcj > :first-child, .framer-ZMHFg .framer-t39mdm > :first-child, .framer-ZMHFg .framer-19ykc9t > :first-child, .framer-ZMHFg .framer-1hfh24j > :first-child, .framer-ZMHFg .framer-wxvx4j > :first-child, .framer-ZMHFg.framer-xhcoro > :first-child, .framer-ZMHFg .framer-3n4ghe > :first-child, .framer-ZMHFg .framer-45gs6t > :first-child { margin-top: 0px; } .framer-ZMHFg.framer-mnz6ww > :last-child, .framer-ZMHFg .framer-1he3tuz > :last-child, .framer-ZMHFg .framer-11fnvsq > :last-child, .framer-ZMHFg .framer-gvtr3c > :last-child, .framer-ZMHFg .framer-11siegz > :last-child, .framer-ZMHFg .framer-m5il5s > :last-child, .framer-ZMHFg .framer-1xstn8g > :last-child, .framer-ZMHFg .framer-8j5olz > :last-child, .framer-ZMHFg .framer-1ekfpf8 > :last-child, .framer-ZMHFg .framer-1lr5isd > :last-child, .framer-ZMHFg .framer-9pacpn > :last-child, .framer-ZMHFg.framer-9fl2zc > :last-child, .framer-ZMHFg .framer-29nkor > :last-child, .framer-ZMHFg .framer-1rbmbcj > :last-child, .framer-ZMHFg .framer-t39mdm > :last-child, .framer-ZMHFg .framer-19ykc9t > :last-child, .framer-ZMHFg .framer-1hfh24j > :last-child, .framer-ZMHFg .framer-wxvx4j > :last-child, .framer-ZMHFg.framer-xhcoro > :last-child, .framer-ZMHFg .framer-3n4ghe > :last-child, .framer-ZMHFg .framer-45gs6t > :last-child { margin-bottom: 0px; } .framer-ZMHFg .framer-1he3tuz > *, .framer-ZMHFg .framer-m5il5s > *, .framer-ZMHFg .framer-1rbmbcj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZMHFg .framer-11fnvsq > *, .framer-ZMHFg .framer-gvtr3c > *, .framer-ZMHFg .framer-8j5olz > *, .framer-ZMHFg .framer-t39mdm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ZMHFg .framer-1e3ivrt > *, .framer-ZMHFg .framer-s72pbw > *, .framer-ZMHFg .framer-19m3afp > *, .framer-ZMHFg .framer-syxo4b > *, .framer-ZMHFg .framer-pwwd3s > *, .framer-ZMHFg .framer-1861awk > *, .framer-ZMHFg .framer-1evglqm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZMHFg .framer-1e3ivrt > :first-child, .framer-ZMHFg .framer-s72pbw > :first-child, .framer-ZMHFg .framer-19m3afp > :first-child, .framer-ZMHFg .framer-syxo4b > :first-child, .framer-ZMHFg .framer-pwwd3s > :first-child, .framer-ZMHFg .framer-l4x0mj > :first-child, .framer-ZMHFg .framer-1f82nef > :first-child, .framer-ZMHFg .framer-r964fv > :first-child, .framer-ZMHFg .framer-1861awk > :first-child, .framer-ZMHFg .framer-clalxs > :first-child, .framer-ZMHFg .framer-1evglqm > :first-child { margin-left: 0px; } .framer-ZMHFg .framer-1e3ivrt > :last-child, .framer-ZMHFg .framer-s72pbw > :last-child, .framer-ZMHFg .framer-19m3afp > :last-child, .framer-ZMHFg .framer-syxo4b > :last-child, .framer-ZMHFg .framer-pwwd3s > :last-child, .framer-ZMHFg .framer-l4x0mj > :last-child, .framer-ZMHFg .framer-1f82nef > :last-child, .framer-ZMHFg .framer-r964fv > :last-child, .framer-ZMHFg .framer-1861awk > :last-child, .framer-ZMHFg .framer-clalxs > :last-child, .framer-ZMHFg .framer-1evglqm > :last-child { margin-right: 0px; } .framer-ZMHFg .framer-11siegz > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-ZMHFg .framer-l4x0mj > *, .framer-ZMHFg .framer-r964fv > *, .framer-ZMHFg .framer-clalxs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZMHFg .framer-1xstn8g > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-ZMHFg .framer-1f82nef > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-ZMHFg .framer-1ekfpf8 > *, .framer-ZMHFg .framer-29nkor > *, .framer-ZMHFg .framer-19ykc9t > *, .framer-ZMHFg .framer-3n4ghe > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-ZMHFg .framer-1lr5isd > *, .framer-ZMHFg .framer-9pacpn > *, .framer-ZMHFg .framer-1hfh24j > *, .framer-ZMHFg .framer-wxvx4j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZMHFg.framer-9fl2zc > *, .framer-ZMHFg.framer-xhcoro > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-ZMHFg[data-border=\"true\"]::after, .framer-ZMHFg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ZMHFg.framer-mnz6ww { width: 810px; } .framer-ZMHFg .framer-nviqmy-container { min-height: 50px; order: 0; width: 100%; } .framer-ZMHFg .framer-1he3tuz { order: 2; padding: 140px 40px 90px 40px; } .framer-ZMHFg .framer-11fnvsq { order: 0; } .framer-ZMHFg .framer-m5il5s { order: 1; } .framer-ZMHFg .framer-1ahznab-container { height: var(--framer-aspect-ratio-supported, 411px); } .framer-ZMHFg .framer-ipbe9l { order: 2; } .framer-ZMHFg .framer-1pwuiuw, .framer-ZMHFg .framer-1tz6ad9, .framer-ZMHFg .framer-kapy5t, .framer-ZMHFg .framer-4sv6lf, .framer-ZMHFg .framer-1lebiku, .framer-ZMHFg .framer-1hf0xos, .framer-ZMHFg .framer-sa0la, .framer-ZMHFg .framer-hncmn6 { height: var(--framer-aspect-ratio-supported, 345px); } .framer-ZMHFg .framer-l4x0mj { order: 3; } .framer-ZMHFg .framer-1xstn8g { gap: 40px; order: 0; padding: 90px 40px 90px 40px; } .framer-ZMHFg .framer-1f82nef { flex-direction: column; gap: 40px; order: 1; } .framer-ZMHFg .framer-8j5olz, .framer-ZMHFg .framer-r964fv { flex: none; width: 100%; } .framer-ZMHFg .framer-45gs6t { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZMHFg .framer-1xstn8g, .framer-ZMHFg .framer-1f82nef { gap: 0px; } .framer-ZMHFg .framer-1xstn8g > *, .framer-ZMHFg .framer-1f82nef > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZMHFg .framer-1xstn8g > :first-child, .framer-ZMHFg .framer-1f82nef > :first-child { margin-top: 0px; } .framer-ZMHFg .framer-1xstn8g > :last-child, .framer-ZMHFg .framer-1f82nef > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-ZMHFg.framer-mnz6ww { width: 390px; } .framer-ZMHFg .framer-nviqmy-container { min-height: 50px; order: 0; width: 101%; } .framer-ZMHFg .framer-1he3tuz { gap: 30px; order: 2; padding: 130px 25px 80px 25px; } .framer-ZMHFg .framer-11fnvsq { order: 0; padding: 0px 0px 10px 0px; } .framer-ZMHFg .framer-m5il5s { gap: 30px; order: 1; } .framer-ZMHFg .framer-1ahznab-container { height: var(--framer-aspect-ratio-supported, 192px); } .framer-ZMHFg .framer-ipbe9l { gap: 30px; grid-template-columns: repeat(1, minmax(200px, 1fr)); order: 2; } .framer-ZMHFg .framer-1pwuiuw, .framer-ZMHFg .framer-1tz6ad9, .framer-ZMHFg .framer-kapy5t, .framer-ZMHFg .framer-4sv6lf, .framer-ZMHFg .framer-1lebiku, .framer-ZMHFg .framer-1hf0xos, .framer-ZMHFg .framer-sa0la, .framer-ZMHFg .framer-hncmn6 { height: var(--framer-aspect-ratio-supported, 340px); } .framer-ZMHFg .framer-l4x0mj { order: 3; } .framer-ZMHFg .framer-1xstn8g { gap: 30px; order: 0; padding: 80px 25px 80px 25px; } .framer-ZMHFg .framer-1rbmbcj { gap: 30px; } .framer-ZMHFg .framer-1hfh24j { order: 1; } .framer-ZMHFg .framer-1gxbn8-container { order: 0; } .framer-ZMHFg .framer-wxvx4j { width: 100%; } .framer-ZMHFg .framer-45gs6t { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZMHFg .framer-1he3tuz, .framer-ZMHFg .framer-m5il5s, .framer-ZMHFg .framer-ipbe9l, .framer-ZMHFg .framer-1xstn8g, .framer-ZMHFg .framer-1rbmbcj { gap: 0px; } .framer-ZMHFg .framer-1he3tuz > *, .framer-ZMHFg .framer-m5il5s > *, .framer-ZMHFg .framer-1xstn8g > *, .framer-ZMHFg .framer-1rbmbcj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ZMHFg .framer-1he3tuz > :first-child, .framer-ZMHFg .framer-m5il5s > :first-child, .framer-ZMHFg .framer-1xstn8g > :first-child, .framer-ZMHFg .framer-1rbmbcj > :first-child { margin-top: 0px; } .framer-ZMHFg .framer-1he3tuz > :last-child, .framer-ZMHFg .framer-m5il5s > :last-child, .framer-ZMHFg .framer-1xstn8g > :last-child, .framer-ZMHFg .framer-1rbmbcj > :last-child { margin-bottom: 0px; } .framer-ZMHFg .framer-ipbe9l > *, .framer-ZMHFg .framer-ipbe9l > :first-child, .framer-ZMHFg .framer-ipbe9l > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4388.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EQcpu0oxu\":{\"layout\":[\"fixed\",\"auto\"]},\"IDluK_Rj3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"mTHyUVb6L\":{\"pattern\":\":mTHyUVb6L\",\"name\":\"lead\"}}\n * @framerResponsiveScreen\n */const FramerusTrCHVNi=withCSS(Component,css,\"framer-ZMHFg\");export default FramerusTrCHVNi;FramerusTrCHVNi.displayName=\"Projects\";FramerusTrCHVNi.defaultProps={height:4388.5,width:1200};addFonts(FramerusTrCHVNi,[{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:\"Arimo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsAhDAVQI4aA.woff2\",weight:\"400\"},{family:\"Arimo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsAhDAVQI4aA.woff2\",weight:\"500\"}]},...DesktopNavFonts,...MobileNavFonts,...VideoFonts,...BylineFonts,...BaseFormFonts,...PhosphorFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerusTrCHVNi\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EQcpu0oxu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IDluK_Rj3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4388.5\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"mTHyUVb6L\\\":{\\\"pattern\\\":\\\":mTHyUVb6L\\\",\\\"name\\\":\\\"lead\\\"}}\",\"framerImmutableVariables\":\"true\"}},\"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", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "DesktopNavFonts", "getFonts", "J1JSSShkp_default", "DesktopNavWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MobileNavFonts", "XBtwdoO5F_default", "MobileNavWithVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "VideoFonts", "Video", "ImageWithFX", "Image2", "BylineFonts", "stKrVSaIA_default", "BaseFormFonts", "BaseForm_default", "PhosphorFonts", "Icon", "FooterFonts", "kDLUlmYF3_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "animation2", "transition2", "animation3", "isSet", "value", "animation4", "animation5", "toResponsiveImage", "animation6", "animation7", "transition3", "animation8", "transition4", "animation9", "transition5", "animation10", "animation11", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "jJ5Xqx6Mp_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "ejm4oSD6w", "FLbKIJ_xp", "eCzBIRTs3", "YY_1APRgY", "Msw8y0dtJ", "Bz0pg13sy", "gRGU1TXvy", "Mot3Ob6BU", "yhjn8Rkvs", "so4Iik31N", "l79EX6JGO", "bBwndT7Yz", "Tr4RxcqzC", "LLQP9Nu3G", "RyXJM8keO", "puCvuG2k7", "yNQ1WDUZf", "IgFTPMQ0X", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "ref2", "isDisplayed1", "elementId", "useRouteElementId", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "l", "ResolveLinks", "resolvedLinks", "AnimatePresence", "Ga", "overlay1", "resolvedLinks1", "css", "FramerusTrCHVNi", "withCSS", "usTrCHVNi_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
