{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/BCcso2Mf4lTzmD9ed16W/eu4MuwT6VkS8lEqmlYRS/Vrvi60Dcb.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 (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/I0BNwkDq86NkxvMxt7DV/Smooth_Scroll.js\";import Navbar from\"#framer/local/canvasComponent/M8kAmycue/M8kAmycue.js\";import Label from\"#framer/local/canvasComponent/XeKj_A49v/XeKj_A49v.js\";import Footer from\"#framer/local/canvasComponent/XrAPG5bNy/XrAPG5bNy.js\";import Work from\"#framer/local/collection/plinw6abP/plinw6abP.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle1 from\"#framer/local/css/aw6LXwT3V/aw6LXwT3V.js\";import*as sharedStyle from\"#framer/local/css/GC0Ep1U3S/GC0Ep1U3S.js\";import*as sharedStyle8 from\"#framer/local/css/JqS4ta4RS/JqS4ta4RS.js\";import*as sharedStyle6 from\"#framer/local/css/JYk6L8Sil/JYk6L8Sil.js\";import*as sharedStyle2 from\"#framer/local/css/PC1VRih_Z/PC1VRih_Z.js\";import*as sharedStyle4 from\"#framer/local/css/u_X3IGggF/u_X3IGggF.js\";import*as sharedStyle5 from\"#framer/local/css/UlZIUXA0_/UlZIUXA0_.js\";import*as sharedStyle7 from\"#framer/local/css/Vx36MwADm/Vx36MwADm.js\";import*as sharedStyle3 from\"#framer/local/css/Y7FKd8Jbs/Y7FKd8Jbs.js\";import metadataProvider from\"#framer/local/webPageMetadata/Vrvi60Dcb/Vrvi60Dcb.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const FeatherFonts=getFonts(Feather);const FooterFonts=getFonts(Footer);const LabelFonts=getFonts(Label);const breakpoints={FcjGaT1wT:\"(min-width: 1440px) and (max-width: 1759px)\",paWnZ5gM1:\"(max-width: 809px)\",pkfgbhiXS:\"(min-width: 1200px) and (max-width: 1439px)\",YmIkP9ggq:\"(min-width: 1760px)\",zqzb5Qgz9:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3WNCY\";const variantClassNames={FcjGaT1wT:\"framer-v-t5z9rh\",paWnZ5gM1:\"framer-v-1td6q76\",pkfgbhiXS:\"framer-v-1w26mg0\",YmIkP9ggq:\"framer-v-ubh0kb\",zqzb5Qgz9:\"framer-v-oz2uxz\"};const transition1={damping:24,delay:0,mass:1,stiffness:100,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 transition2={damping:24,delay:.6,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:24,delay:.7,mass:1,stiffness:100,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:150};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"FcjGaT1wT\",\"Large Desktop\":\"YmIkP9ggq\",\"Small Desktop\":\"pkfgbhiXS\",Phone:\"paWnZ5gM1\",Tablet:\"zqzb5Qgz9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pkfgbhiXS\"};};const cursor={component:Label,variant:\"fS8kjSUJ9\"};const cursor1={component:Label,variant:\"VMPqAxWTR\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Vrvi60Dcb\",data:Work,type:\"Collection\"},select:[{collection:\"Vrvi60Dcb\",name:\"p2QIvCQFF\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"TX_jLQlmH\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"Mr11bkoJV\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"IlFLzwuzN\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"OqBrx8Fdk\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"r9ysMtO4V\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"KGo96W7ti\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"eD3ZNth7n\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"haS27Rp9H\",type:\"Identifier\"},{collection:\"Vrvi60Dcb\",name:\"vOiVuqd0B\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Vrvi60Dcb\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,TX_jLQlmH=getFromCurrentRouteData(\"TX_jLQlmH\")??\"\",Mr11bkoJV=getFromCurrentRouteData(\"Mr11bkoJV\")??\"\",IlFLzwuzN=getFromCurrentRouteData(\"IlFLzwuzN\")??\"\",OqBrx8Fdk=getFromCurrentRouteData(\"OqBrx8Fdk\"),r9ysMtO4V=getFromCurrentRouteData(\"r9ysMtO4V\"),KGo96W7ti=getFromCurrentRouteData(\"KGo96W7ti\"),eD3ZNth7n=getFromCurrentRouteData(\"eD3ZNth7n\"),haS27Rp9H=getFromCurrentRouteData(\"haS27Rp9H\"),vOiVuqd0B=getFromCurrentRouteData(\"vOiVuqd0B\"),Q93BCrZVPcDg_p6sJ_,mU4aK6LJhcDg_p6sJ_,TX_jLQlmHcDg_p6sJ_,idcDg_p6sJ_,p2QIvCQFF=getFromCurrentRouteData(\"p2QIvCQFF\")??0,Q93BCrZVPHHbx9ctDM,mU4aK6LJhHHbx9ctDM,TX_jLQlmHHHbx9ctDM,idHHbx9ctDM,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"ARzORyFIK\");const ref1=React.useRef(null);useCustomCursors({\"1mojpzs\":cursor,wepgd9:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pkfgbhiXS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{paWnZ5gM1:{\"data-framer-cursor\":undefined},zqzb5Qgz9:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1w26mg0\",className),\"data-framer-cursor\":\"1mojpzs\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1heqiuz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kJhFaquxt\",scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"kJhFaquxt\",intensity:10,layoutId:\"kJhFaquxt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:114,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13imhjm-container\",layoutScroll:true,nodeId:\"z1TzK05Qb\",rendersWithMotion:true,scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{paWnZ5gM1:{__framer__variantAppearEffectEnabled:undefined,variant:\"zV4LpxH_M\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"z1TzK05Qb\",layoutId:\"z1TzK05Qb\",style:{width:\"100%\"},variant:\"e4rrJN3zD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kt5qzv\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rx5w0v\",\"data-framer-name\":\"Banner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9hjigi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{paWnZ5gM1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Agenda Semibold\", \"Agenda Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Suns Lifestyle\"})})},zqzb5Qgz9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Agenda Semibold\", \"Agenda Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"AT Management\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Agenda Semibold\", \"Agenda Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"AT Management\"})}),className:\"framer-lfwla8\",\"data-framer-appear-id\":\"lfwla8\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Agenda Semibold\"],initial:animation1,optimized:true,style:{transformPerspective:1200},text:TX_jLQlmH,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q11gjn\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgU2VyYSBNZWRpdW0gSXRhbGlj\",\"--framer-font-family\":'\"Proxima Sera Medium Italic\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Description\"})}),className:\"framer-1hv3ehh\",\"data-framer-appear-id\":\"1hv3ehh\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Proxima Sera Medium Italic\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"ecU6kP_tv\"]},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:Mr11bkoJV,className:\"framer-r6vtk1\",\"data-framer-appear-id\":\"r6vtk1\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Agenda Semibold\"],initial:animation1,optimized:true,style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-4mr79n\",h1:\"framer-styles-preset-1bq7936\",h2:\"framer-styles-preset-9kgey4\",h3:\"framer-styles-preset-1946j8h\",h4:\"framer-styles-preset-1rdp11e\",h5:\"framer-styles-preset-f2r5h9\",h6:\"framer-styles-preset-qytm0d\",img:\"framer-styles-preset-r2o4f4\",p:\"framer-styles-preset-1otkkkp\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nq1p1o\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgU2VyYSBNZWRpdW0gSXRhbGlj\",\"--framer-font-family\":'\"Proxima Sera Medium Italic\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Services\"})}),className:\"framer-25wkj0\",\"data-framer-appear-id\":\"25wkj0\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Proxima Sera Medium Italic\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"ecU6kP_tv\"]},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:IlFLzwuzN,className:\"framer-zyd1g6\",\"data-framer-appear-id\":\"zyd1g6\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Agenda Semibold\"],initial:animation1,optimized:true,style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-4mr79n\",h1:\"framer-styles-preset-1bq7936\",h2:\"framer-styles-preset-9kgey4\",h3:\"framer-styles-preset-1946j8h\",h4:\"framer-styles-preset-1rdp11e\",h5:\"framer-styles-preset-f2r5h9\",h6:\"framer-styles-preset-qytm0d\",img:\"framer-styles-preset-r2o4f4\",p:\"framer-styles-preset-1otkkkp\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x4mjuc-container\",id:elementId,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ARzORyFIK\",ref:ref1,scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YmIkP9ggq:{style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ARzORyFIK\",isMixedBorderRadius:false,layoutId:\"ARzORyFIK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:OqBrx8Fdk,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xm694o\",\"data-framer-name\":\"Gallery 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FcjGaT1wT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1468+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(r9ysMtO4V)}},paWnZ5gM1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+753.2+24+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1000px)`,...toResponsiveImage(r9ysMtO4V)}},YmIkP9ggq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1468+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1200px)`,...toResponsiveImage(r9ysMtO4V)}},zqzb5Qgz9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1077.2+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(r9ysMtO4V)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__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)+114+1268+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(r9ysMtO4V)},className:\"framer-vuqpz0\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FcjGaT1wT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1468+56+556),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(KGo96W7ti)}},paWnZ5gM1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+753.2+24+260),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1000px)`,...toResponsiveImage(KGo96W7ti)}},YmIkP9ggq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1468+56+806),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1200px)`,...toResponsiveImage(KGo96W7ti)}},zqzb5Qgz9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1077.2+56+483),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(KGo96W7ti)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__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)+114+1268+56+556),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(KGo96W7ti)},className:\"framer-nhim3r\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mkyrlb\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FcjGaT1wT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+2636+120+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 1000px)`,...toResponsiveImage(eD3ZNth7n)}},paWnZ5gM1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1265.2+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1000px)`,...toResponsiveImage(eD3ZNth7n)}},YmIkP9ggq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+3136+120+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,...toResponsiveImage(eD3ZNth7n)}},zqzb5Qgz9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+2099.2+72+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(eD3ZNth7n)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__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)+114+2436+120+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 1000px)`,...toResponsiveImage(eD3ZNth7n)},className:\"framer-1xgi2s\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9lr57y\",\"data-framer-name\":\"Gallery 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FcjGaT1wT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+3376+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(haS27Rp9H)}},paWnZ5gM1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1592.2+24+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1000px)`,...toResponsiveImage(haS27Rp9H)}},YmIkP9ggq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+4126+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1200px)`,...toResponsiveImage(haS27Rp9H)}},zqzb5Qgz9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+2743.2+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(haS27Rp9H)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__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)+114+3176+56+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(haS27Rp9H)},className:\"framer-1aroq27\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FcjGaT1wT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+3376+56+556),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(vOiVuqd0B)}},paWnZ5gM1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+1592.2+24+224),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1000px)`,...toResponsiveImage(vOiVuqd0B)}},YmIkP9ggq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+4126+56+806),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1200px)`,...toResponsiveImage(vOiVuqd0B)}},zqzb5Qgz9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+114+2743.2+56+556),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(vOiVuqd0B)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__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)+114+3176+56+556),sizes:`min(${componentViewport?.width||\"100vw\"} - 112px, 1000px)`,...toResponsiveImage(vOiVuqd0B)},className:\"framer-124iopa\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-57j888\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eipe40\",\"data-border\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cDg_p6sJ_\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"cDg_p6sJ_\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"cDg_p6sJ_\",name:\"Q93BCrZVP\",type:\"Identifier\"},{collection:\"cDg_p6sJ_\",name:\"mU4aK6LJh\",type:\"Identifier\"},{collection:\"cDg_p6sJ_\",name:\"TX_jLQlmH\",type:\"Identifier\"},{collection:\"cDg_p6sJ_\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"cDg_p6sJ_\",name:\"p2QIvCQFF\",type:\"Identifier\"},operator:\"<\",right:{type:\"LiteralValue\",value:p2QIvCQFF},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idcDg_p6sJ_,mU4aK6LJh:mU4aK6LJhcDg_p6sJ_,Q93BCrZVP:Q93BCrZVPcDg_p6sJ_,TX_jLQlmH:TX_jLQlmHcDg_p6sJ_},index)=>{Q93BCrZVPcDg_p6sJ_??=\"\";mU4aK6LJhcDg_p6sJ_??=\"#09F\";TX_jLQlmHcDg_p6sJ_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cDg_p6sJ_-${idcDg_p6sJ_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Q93BCrZVP:Q93BCrZVPcDg_p6sJ_},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Q93BCrZVP:Q93BCrZVPcDg_p6sJ_},webPageId:\"Vrvi60Dcb\"},motionChild:true,nodeId:\"XaJUMvE4o\",scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1s9x2m7 framer-z9ruri\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1izjcl9\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgU2VyYSBNZWRpdW0gSXRhbGlj\",\"--framer-font-family\":'\"Proxima Sera Medium Italic\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Previous Project\"})}),className:\"framer-clb7xt\",fonts:[\"CUSTOM;Proxima Sera Medium Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-308h92\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{paWnZ5gM1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBNZWRpdW0=\",\"--framer-font-family\":'\"Agenda Medium\", \"Agenda Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--variable-reference-mU4aK6LJh-cDg_p6sJ_)\"},children:\"Client\"})})},zqzb5Qgz9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBNZWRpdW0=\",\"--framer-font-family\":'\"Agenda Medium\", \"Agenda Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--variable-reference-mU4aK6LJh-cDg_p6sJ_)\"},children:\"Client\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBNZWRpdW0=\",\"--framer-font-family\":'\"Agenda Medium\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--variable-reference-mU4aK6LJh-cDg_p6sJ_)\"},children:\"Client\"})}),className:\"framer-8rz90a\",fonts:[\"CUSTOM;Agenda Medium\"],style:{\"--variable-reference-mU4aK6LJh-cDg_p6sJ_\":mU4aK6LJhcDg_p6sJ_},text:TX_jLQlmHcDg_p6sJ_,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jedp3t\",style:{\"--1j2ugt1\":mU4aK6LJhcDg_p6sJ_,rotate:-45},whileHover:animation6,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g98aar-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"apOxzwUOK\",scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"apOxzwUOK\",layoutId:\"apOxzwUOK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})})})})},idcDg_p6sJ_);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eodds7\",\"data-border\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HHbx9ctDM\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"HHbx9ctDM\",name:\"Q93BCrZVP\",type:\"Identifier\"},{collection:\"HHbx9ctDM\",name:\"mU4aK6LJh\",type:\"Identifier\"},{collection:\"HHbx9ctDM\",name:\"TX_jLQlmH\",type:\"Identifier\"},{collection:\"HHbx9ctDM\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"HHbx9ctDM\",name:\"p2QIvCQFF\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:p2QIvCQFF},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idHHbx9ctDM,mU4aK6LJh:mU4aK6LJhHHbx9ctDM,Q93BCrZVP:Q93BCrZVPHHbx9ctDM,TX_jLQlmH:TX_jLQlmHHHbx9ctDM},index1)=>{Q93BCrZVPHHbx9ctDM??=\"\";mU4aK6LJhHHbx9ctDM??=\"#09F\";TX_jLQlmHHHbx9ctDM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HHbx9ctDM-${idHHbx9ctDM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Q93BCrZVP:Q93BCrZVPHHbx9ctDM},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Q93BCrZVP:Q93BCrZVPHHbx9ctDM},webPageId:\"Vrvi60Dcb\"},motionChild:true,nodeId:\"umx9cMmaE\",scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ksuos9 framer-z9ruri\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfwzni\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgU2VyYSBNZWRpdW0gSXRhbGlj\",\"--framer-font-family\":'\"Proxima Sera Medium Italic\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Next Project\"})}),className:\"framer-8u7j2b\",fonts:[\"CUSTOM;Proxima Sera Medium Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xvg2rz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{paWnZ5gM1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBNZWRpdW0=\",\"--framer-font-family\":'\"Agenda Medium\", \"Agenda Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--variable-reference-mU4aK6LJh-HHbx9ctDM)\"},children:\"Client\"})})},zqzb5Qgz9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBNZWRpdW0=\",\"--framer-font-family\":'\"Agenda Medium\", \"Agenda Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--variable-reference-mU4aK6LJh-HHbx9ctDM)\"},children:\"Client\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FnZW5kYSBNZWRpdW0=\",\"--framer-font-family\":'\"Agenda Medium\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--variable-reference-mU4aK6LJh-HHbx9ctDM)\"},children:\"Client\"})}),className:\"framer-1igaj8g\",fonts:[\"CUSTOM;Agenda Medium\"],style:{\"--variable-reference-mU4aK6LJh-HHbx9ctDM\":mU4aK6LJhHHbx9ctDM},text:TX_jLQlmHHHbx9ctDM,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p23gzf\",style:{\"--1ped9ha\":mU4aK6LJhHHbx9ctDM,rotate:-45},whileHover:animation6,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oosqhk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UOyIND2Ir\",scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"UOyIND2Ir\",layoutId:\"UOyIND2Ir\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})})})})},idHHbx9ctDM);})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FcjGaT1wT:{y:(componentViewport?.y||0)+114+4735},paWnZ5gM1:{y:(componentViewport?.y||0)+114+2432.2},YmIkP9ggq:{y:(componentViewport?.y||0)+114+5985},zqzb5Qgz9:{y:(componentViewport?.y||0)+114+4102.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:720,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+114+4535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17kg17v-container\",nodeId:\"Zz3dZUI0H\",scopeId:\"Vrvi60Dcb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{paWnZ5gM1:{QLjuBrC51:undefined,variant:\"CTHjnYAUq\"},zqzb5Qgz9:{variant:\"HEkNk0opO\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Zz3dZUI0H\",layoutId:\"Zz3dZUI0H\",QLjuBrC51:\"wepgd9\",style:{width:\"100%\"},variant:\"E96864uYk\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3WNCY.framer-z9ruri, .framer-3WNCY .framer-z9ruri { display: block; }\",\".framer-3WNCY.framer-1w26mg0 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 114px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-3WNCY .framer-1heqiuz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3WNCY .framer-13imhjm-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-3WNCY .framer-1kt5qzv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-3WNCY .framer-1rx5w0v { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 468px; justify-content: center; overflow: hidden; padding: 0px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-3WNCY .framer-9hjigi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WNCY .framer-lfwla8, .framer-3WNCY .framer-1hv3ehh, .framer-3WNCY .framer-25wkj0, .framer-3WNCY .framer-zyd1g6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3WNCY .framer-q11gjn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3WNCY .framer-r6vtk1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-3WNCY .framer-nq1p1o { 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; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3WNCY .framer-x4mjuc-container { flex: none; height: 600px; position: relative; width: 100%; z-index: 1; }\",\".framer-3WNCY .framer-1xm694o, .framer-3WNCY .framer-9lr57y { align-content: center; align-items: center; background-color: var(--token-f34d626a-ab0f-44b2-8b49-64e5dab0e723, #f7f4ef); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 56px; position: relative; width: 100%; }\",\".framer-3WNCY .framer-vuqpz0, .framer-3WNCY .framer-nhim3r, .framer-3WNCY .framer-1xgi2s, .framer-3WNCY .framer-1aroq27, .framer-3WNCY .framer-124iopa { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); max-width: 1000px; position: relative; width: 100%; }\",\".framer-3WNCY .framer-mkyrlb { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-3WNCY .framer-57j888 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 191px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3WNCY .framer-1eipe40 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; padding: 92px; position: relative; width: 1px; }\",\".framer-3WNCY .framer-1s9x2m7, .framer-3WNCY .framer-ksuos9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3WNCY .framer-1izjcl9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-3WNCY .framer-clb7xt, .framer-3WNCY .framer-8u7j2b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3WNCY .framer-308h92, .framer-3WNCY .framer-xvg2rz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3WNCY .framer-8rz90a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --variable-reference-mU4aK6LJh-cDg_p6sJ_: var(--1j2ugt1); flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3WNCY .framer-1jedp3t { background-color: var(--1j2ugt1); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 46px; overflow: hidden; position: relative; width: 46px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3WNCY .framer-g98aar-container, .framer-3WNCY .framer-oosqhk-container { flex: none; height: 19px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 20px; }\",\".framer-3WNCY .framer-eodds7 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-end; align-items: flex-end; background-color: #000000; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; padding: 92px; position: relative; width: 1px; }\",\".framer-3WNCY .framer-1pfwzni { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-3WNCY .framer-1igaj8g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --variable-reference-mU4aK6LJh-HHbx9ctDM: var(--1ped9ha); flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3WNCY .framer-p23gzf { background-color: var(--1ped9ha); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 46px; overflow: hidden; position: relative; width: 46px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3WNCY .framer-17kg17v-container { flex: none; height: auto; position: relative; width: 100%; z-index: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WNCY.framer-1w26mg0, .framer-3WNCY .framer-1kt5qzv, .framer-3WNCY .framer-1rx5w0v, .framer-3WNCY .framer-9hjigi, .framer-3WNCY .framer-q11gjn, .framer-3WNCY .framer-nq1p1o, .framer-3WNCY .framer-1xm694o, .framer-3WNCY .framer-mkyrlb, .framer-3WNCY .framer-9lr57y, .framer-3WNCY .framer-57j888, .framer-3WNCY .framer-1eipe40, .framer-3WNCY .framer-1s9x2m7, .framer-3WNCY .framer-1izjcl9, .framer-3WNCY .framer-308h92, .framer-3WNCY .framer-eodds7, .framer-3WNCY .framer-ksuos9, .framer-3WNCY .framer-1pfwzni, .framer-3WNCY .framer-xvg2rz { gap: 0px; } .framer-3WNCY.framer-1w26mg0 > *, .framer-3WNCY .framer-1kt5qzv > *, .framer-3WNCY .framer-1rx5w0v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3WNCY.framer-1w26mg0 > :first-child, .framer-3WNCY .framer-1kt5qzv > :first-child, .framer-3WNCY .framer-1rx5w0v > :first-child, .framer-3WNCY .framer-q11gjn > :first-child, .framer-3WNCY .framer-nq1p1o > :first-child, .framer-3WNCY .framer-1xm694o > :first-child, .framer-3WNCY .framer-mkyrlb > :first-child, .framer-3WNCY .framer-9lr57y > :first-child, .framer-3WNCY .framer-1eipe40 > :first-child, .framer-3WNCY .framer-1izjcl9 > :first-child, .framer-3WNCY .framer-eodds7 > :first-child, .framer-3WNCY .framer-1pfwzni > :first-child { margin-top: 0px; } .framer-3WNCY.framer-1w26mg0 > :last-child, .framer-3WNCY .framer-1kt5qzv > :last-child, .framer-3WNCY .framer-1rx5w0v > :last-child, .framer-3WNCY .framer-q11gjn > :last-child, .framer-3WNCY .framer-nq1p1o > :last-child, .framer-3WNCY .framer-1xm694o > :last-child, .framer-3WNCY .framer-mkyrlb > :last-child, .framer-3WNCY .framer-9lr57y > :last-child, .framer-3WNCY .framer-1eipe40 > :last-child, .framer-3WNCY .framer-1izjcl9 > :last-child, .framer-3WNCY .framer-eodds7 > :last-child, .framer-3WNCY .framer-1pfwzni > :last-child { margin-bottom: 0px; } .framer-3WNCY .framer-9hjigi > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-3WNCY .framer-9hjigi > :first-child, .framer-3WNCY .framer-57j888 > :first-child, .framer-3WNCY .framer-1s9x2m7 > :first-child, .framer-3WNCY .framer-308h92 > :first-child, .framer-3WNCY .framer-ksuos9 > :first-child, .framer-3WNCY .framer-xvg2rz > :first-child { margin-left: 0px; } .framer-3WNCY .framer-9hjigi > :last-child, .framer-3WNCY .framer-57j888 > :last-child, .framer-3WNCY .framer-1s9x2m7 > :last-child, .framer-3WNCY .framer-308h92 > :last-child, .framer-3WNCY .framer-ksuos9 > :last-child, .framer-3WNCY .framer-xvg2rz > :last-child { margin-right: 0px; } .framer-3WNCY .framer-q11gjn > *, .framer-3WNCY .framer-nq1p1o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3WNCY .framer-1xm694o > *, .framer-3WNCY .framer-9lr57y > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-3WNCY .framer-mkyrlb > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-3WNCY .framer-57j888 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3WNCY .framer-1eipe40 > *, .framer-3WNCY .framer-eodds7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3WNCY .framer-1s9x2m7 > *, .framer-3WNCY .framer-ksuos9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-3WNCY .framer-1izjcl9 > *, .framer-3WNCY .framer-1pfwzni > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3WNCY .framer-308h92 > *, .framer-3WNCY .framer-xvg2rz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-3WNCY[data-border=\"true\"]::after, .framer-3WNCY [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: 1760px) { .framer-3WNCY.framer-1w26mg0 { width: 1760px; } .framer-3WNCY .framer-9hjigi { gap: unset; justify-content: space-between; } .framer-3WNCY .framer-q11gjn { flex: none; width: 590px; } .framer-3WNCY .framer-x4mjuc-container { height: 800px; max-height: 800px; } .framer-3WNCY .framer-vuqpz0, .framer-3WNCY .framer-nhim3r, .framer-3WNCY .framer-1xgi2s, .framer-3WNCY .framer-1aroq27, .framer-3WNCY .framer-124iopa { max-width: 1200px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WNCY .framer-9hjigi { gap: 0px; } .framer-3WNCY .framer-9hjigi > *, .framer-3WNCY .framer-9hjigi > :first-child, .framer-3WNCY .framer-9hjigi > :last-child { margin: 0px; } }}\",\"@media (min-width: 1440px) and (max-width: 1759px) { .framer-3WNCY.framer-1w26mg0 { width: 1440px; } .framer-3WNCY .framer-9hjigi { gap: unset; justify-content: space-between; } .framer-3WNCY .framer-q11gjn { flex: none; width: 600px; } .framer-3WNCY .framer-x4mjuc-container { height: 800px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WNCY .framer-9hjigi { gap: 0px; } .framer-3WNCY .framer-9hjigi > *, .framer-3WNCY .framer-9hjigi > :first-child, .framer-3WNCY .framer-9hjigi > :last-child { margin: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-3WNCY.framer-1w26mg0 { width: 810px; } .framer-3WNCY .framer-1rx5w0v { height: min-content; padding: 56px; } .framer-3WNCY .framer-9hjigi { flex-direction: column; gap: 32px; justify-content: center; } .framer-3WNCY .framer-q11gjn { flex: none; width: 100%; } .framer-3WNCY .framer-x4mjuc-container { height: 470px; } .framer-3WNCY .framer-mkyrlb { padding: 72px 56px 72px 56px; } .framer-3WNCY .framer-1eipe40, .framer-3WNCY .framer-eodds7 { flex: none; padding: 56px; width: 50%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WNCY .framer-9hjigi { gap: 0px; } .framer-3WNCY .framer-9hjigi > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3WNCY .framer-9hjigi > :first-child { margin-top: 0px; } .framer-3WNCY .framer-9hjigi > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-3WNCY.framer-1w26mg0 { width: 390px; } .framer-3WNCY .framer-1rx5w0v { height: min-content; padding: 0px 24px 0px 24px; } .framer-3WNCY .framer-9hjigi { flex-direction: column; gap: 29px; justify-content: center; padding: 24px 0px 24px 0px; } .framer-3WNCY .framer-q11gjn { flex: none; width: 100%; } .framer-3WNCY .framer-x4mjuc-container { height: 216px; } .framer-3WNCY .framer-1xm694o { padding: 24px; } .framer-3WNCY .framer-mkyrlb { gap: 56px; padding: 56px 24px 56px 24px; } .framer-3WNCY .framer-9lr57y { gap: 24px; padding: 24px; } .framer-3WNCY .framer-57j888 { flex-direction: column; height: min-content; } .framer-3WNCY .framer-1eipe40 { --border-right-width: 0px; align-content: center; align-items: center; flex: none; height: 184px; width: 100%; } .framer-3WNCY .framer-1izjcl9, .framer-3WNCY .framer-1pfwzni { align-content: center; align-items: center; } .framer-3WNCY .framer-eodds7 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; align-content: center; align-items: center; flex: none; height: 184px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3WNCY .framer-9hjigi, .framer-3WNCY .framer-mkyrlb, .framer-3WNCY .framer-9lr57y, .framer-3WNCY .framer-57j888 { gap: 0px; } .framer-3WNCY .framer-9hjigi > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-3WNCY .framer-9hjigi > :first-child, .framer-3WNCY .framer-mkyrlb > :first-child, .framer-3WNCY .framer-9lr57y > :first-child, .framer-3WNCY .framer-57j888 > :first-child { margin-top: 0px; } .framer-3WNCY .framer-9hjigi > :last-child, .framer-3WNCY .framer-mkyrlb > :last-child, .framer-3WNCY .framer-9lr57y > :last-child, .framer-3WNCY .framer-57j888 > :last-child { margin-bottom: 0px; } .framer-3WNCY .framer-mkyrlb > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-3WNCY .framer-9lr57y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3WNCY .framer-57j888 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5169\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YmIkP9ggq\":{\"layout\":[\"fixed\",\"auto\"]},\"FcjGaT1wT\":{\"layout\":[\"fixed\",\"auto\"]},\"zqzb5Qgz9\":{\"layout\":[\"fixed\",\"auto\"]},\"paWnZ5gM1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ARzORyFIK\":{\"pattern\":\":ARzORyFIK\",\"name\":\"video\"}}\n * @framerResponsiveScreen\n */const FramerVrvi60Dcb=withCSS(Component,css,\"framer-3WNCY\");export default FramerVrvi60Dcb;FramerVrvi60Dcb.displayName=\"Work\";FramerVrvi60Dcb.defaultProps={height:5169,width:1200};addFonts(FramerVrvi60Dcb,[{explicitInter:true,fonts:[{family:\"Agenda Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/V42ibakelNxQ41KNdB0IXOxvoDo.otf\"},{family:\"Proxima Sera Medium Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/KMM9cJG7dPkFr5sN00a8kl6U.otf\"},{family:\"Agenda Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/8xDwQybUkD08CMpBIdfDn4onmAw.otf\"}]},...SmoothScrollFonts,...NavbarFonts,...VideoFonts,...FeatherFonts,...FooterFonts,...LabelFonts,...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),...componentPresets.fonts?.[\"ecU6kP_tv\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"ecU6kP_tv\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVrvi60Dcb\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YmIkP9ggq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FcjGaT1wT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zqzb5Qgz9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"paWnZ5gM1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"5169\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"ARzORyFIK\\\":{\\\"pattern\\\":\\\":ARzORyFIK\\\",\\\"name\\\":\\\"video\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"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", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavbarFonts", "M8kAmycue_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "VideoFonts", "Video", "ImageWithFX", "withFX", "Image2", "FeatherFonts", "Icon", "FooterFonts", "XrAPG5bNy_default", "LabelFonts", "XeKj_A49v_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "toResponsiveImage", "value", "animation4", "animation5", "transition4", "animation6", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "XeKj_A49v_default", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "plinw6abP_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "TX_jLQlmH", "Mr11bkoJV", "IlFLzwuzN", "OqBrx8Fdk", "r9ysMtO4V", "KGo96W7ti", "eD3ZNth7n", "haS27Rp9H", "vOiVuqd0B", "Q93BCrZVPcDg_p6sJ_", "mU4aK6LJhcDg_p6sJ_", "TX_jLQlmHcDg_p6sJ_", "idcDg_p6sJ_", "p2QIvCQFF", "Q93BCrZVPHHbx9ctDM", "mU4aK6LJhHHbx9ctDM", "TX_jLQlmHHHbx9ctDM", "idHHbx9ctDM", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "NavbarWithVariantAppearEffect", "x", "RichTextWithOptimizedAppearEffect", "ComponentPresetsProvider", "Video", "getLoadingLazyAtYPosition", "ImageWithFX", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "RichText2", "Icon", "collection1", "paginationInfo1", "loadMore1", "index1", "XrAPG5bNy_default", "css", "FramerVrvi60Dcb", "withCSS", "Vrvi60Dcb_default", "addFonts", "SmoothScrollFonts", "NavbarFonts", "VideoFonts", "FeatherFonts", "FooterFonts", "LabelFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
