{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js", "ssg:https://framerusercontent.com/modules/UU3tT7Q6PDVQ3aBQSnKp/m6gUHH92GKVF2pJ5f3yW/ade69bFoI.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:\"URL\",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:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],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\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,optimizeAppear,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/I0BNwkDq86NkxvMxt7DV/Smooth_Scroll.js\";import Navigation from\"#framer/local/canvasComponent/a7rhR3dn7/a7rhR3dn7.js\";import WorkItem from\"#framer/local/canvasComponent/BNUDwMFl6/BNUDwMFl6.js\";import ImageAspectRatio from\"#framer/local/canvasComponent/gtTB3sfvP/gtTB3sfvP.js\";import Footer from\"#framer/local/canvasComponent/STQt2b579/STQt2b579.js\";import FramerButton from\"#framer/local/codeFile/vHetTpg/Framer_Button.js\";import Work from\"#framer/local/collection/CiGJbYnE3/CiGJbYnE3.js\";import*as sharedStyle2 from\"#framer/local/css/EBynRuKhU/EBynRuKhU.js\";import*as sharedStyle1 from\"#framer/local/css/hZFUSe_OH/hZFUSe_OH.js\";import*as sharedStyle from\"#framer/local/css/l18Fo0cuF/l18Fo0cuF.js\";import metadataProvider from\"#framer/local/webPageMetadata/ade69bFoI/ade69bFoI.js\";const NavigationFonts=getFonts(Navigation);const ImageAspectRatioFonts=getFonts(ImageAspectRatio);const VideoFonts=getFonts(Video);const WorkItemFonts=getFonts(WorkItem);const SmoothScrollFonts=getFonts(SmoothScroll);const FramerButtonFonts=getFonts(FramerButton);const FooterFonts=getFonts(Footer);const cycleOrder=[\"ipKdoRuvr\",\"TBpsqCGcO\",\"vHLU9R77O\"];const breakpoints={ipKdoRuvr:\"(min-width: 1200px)\",TBpsqCGcO:\"(min-width: 810px) and (max-width: 1199px)\",vHLU9R77O:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-j1QvZ\";const variantClassNames={ipKdoRuvr:\"framer-v-s74ypc\",TBpsqCGcO:\"framer-v-1gx68nm\",vHLU9R77O:\"framer-v-1ih7vkc\"};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.15,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.3,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const transition4={delay:.45,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,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 QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"ipKdoRuvr\",Phone:\"vHLU9R77O\",Tablet:\"TBpsqCGcO\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ipKdoRuvr\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Work,type:\"Collection\"},select:[{name:\"UsZbOstXi\",type:\"Identifier\"},{name:\"HYsvORKzG\",type:\"Identifier\"},{name:\"cjerbeg0k\",type:\"Identifier\"},{name:\"AgQAAvKb0\",type:\"Identifier\"},{name:\"fpnSYN2Kh\",type:\"Identifier\"},{name:\"j4Y2f4s4m\",type:\"Identifier\"},{name:\"xffv2XAbO\",type:\"Identifier\"},{name:\"stWJbydqa\",type:\"Identifier\"},{name:\"HYVahnfNk\",type:\"Identifier\"},{name:\"UYtTzNGIY\",type:\"Identifier\"},{name:\"uOxpDzAQO\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Work\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,UsZbOstXi=getFromCurrentRouteData(\"UsZbOstXi\"),cjerbeg0k=getFromCurrentRouteData(\"cjerbeg0k\"),HYsvORKzG=getFromCurrentRouteData(\"HYsvORKzG\"),AgQAAvKb0=getFromCurrentRouteData(\"AgQAAvKb0\"),fpnSYN2Kh=getFromCurrentRouteData(\"fpnSYN2Kh\"),j4Y2f4s4m=getFromCurrentRouteData(\"j4Y2f4s4m\"),xffv2XAbO=getFromCurrentRouteData(\"xffv2XAbO\"),stWJbydqa=getFromCurrentRouteData(\"stWJbydqa\"),HYVahnfNk=getFromCurrentRouteData(\"HYVahnfNk\"),UYtTzNGIY=getFromCurrentRouteData(\"UYtTzNGIY\"),uOxpDzAQO=getFromCurrentRouteData(\"uOxpDzAQO\"),UsZbOstXiExwu4HLvF,HYsvORKzGExwu4HLvF,cjerbeg0kExwu4HLvF,ZvJgb0TpAExwu4HLvF,pu4GsmxwpExwu4HLvF,idExwu4HLvF,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-j1QvZ`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-j1QvZ`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const visible=isSet(AgQAAvKb0);const visible1=isSet(fpnSYN2Kh);const visible2=isSet(j4Y2f4s4m);const visible3=isSet(xffv2XAbO);const visible4=isSet(stWJbydqa);const visible5=isSet(HYVahnfNk);const visible6=isSet(UYtTzNGIY);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ipKdoRuvr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-s74ypc\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8emjmr\",\"data-framer-name\":\"Navbar Fixed\",name:\"Navbar Fixed\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ywyjc9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"znbJodqJn\"},vHLU9R77O:{variant:\"znbJodqJn\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"qSeDDKhSM\",layoutId:\"qSeDDKhSM\",style:{width:\"100%\"},variant:\"CYuIV823_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3hdlty\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wcfjuz\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfodda\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-acka54\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-86ukyx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{\"data-framer-appear-id\":\"m9ihtb\",animate:optimizeAppear(\"animate\",\"m9ihtb\",animation1,\"1gx68nm\"),initial:optimizeAppear(\"initial\",\"m9ihtb\",animation2,\"1gx68nm\")},vHLU9R77O:{\"data-framer-appear-id\":\"tdxmco\",animate:optimizeAppear(\"animate\",\"tdxmco\",animation1,\"1ih7vkc\"),initial:optimizeAppear(\"initial\",\"tdxmco\",animation2,\"1ih7vkc\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"1vv48zq\",animation1,\"s74ypc\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yo33vq\",\"data-styles-preset\":\"l18Fo0cuF\",children:\"01\"})}),className:\"framer-1vv48zq\",\"data-framer-appear-id\":\"1vv48zq\",exit:animation,fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"1vv48zq\",animation2,\"s74ypc\"),style:{transformPerspective:1200},text:UsZbOstXi,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sq95m3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{\"data-framer-appear-id\":\"181v3s9\",animate:optimizeAppear(\"animate\",\"181v3s9\",animation4,\"1gx68nm\"),initial:optimizeAppear(\"initial\",\"181v3s9\",animation2,\"1gx68nm\")},vHLU9R77O:{\"data-framer-appear-id\":\"t9kj7j\",animate:optimizeAppear(\"animate\",\"t9kj7j\",animation4,\"1ih7vkc\"),initial:optimizeAppear(\"initial\",\"t9kj7j\",animation2,\"1ih7vkc\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"1mlwgsj\",animation4,\"s74ypc\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yo33vq\",\"data-styles-preset\":\"l18Fo0cuF\",children:\"Brand identity, Website\"})}),className:\"framer-1mlwgsj\",\"data-framer-appear-id\":\"1mlwgsj\",exit:animation3,fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"1mlwgsj\",animation2,\"s74ypc\"),style:{transformPerspective:1200},text:cjerbeg0k,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxf64j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{\"data-framer-appear-id\":\"1qwh7gs\",animate:optimizeAppear(\"animate\",\"1qwh7gs\",animation6,\"1gx68nm\"),initial:optimizeAppear(\"initial\",\"1qwh7gs\",animation2,\"1gx68nm\")},vHLU9R77O:{\"data-framer-appear-id\":\"lfb8ey\",animate:optimizeAppear(\"animate\",\"lfb8ey\",animation6,\"1ih7vkc\"),initial:optimizeAppear(\"initial\",\"lfb8ey\",animation2,\"1ih7vkc\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"1o19ti3\",animation6,\"s74ypc\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gbwo2r\",\"data-styles-preset\":\"hZFUSe_OH\",children:\"UXer\u2014Clean, Grid, Minimal\"})}),className:\"framer-1o19ti3\",\"data-framer-appear-id\":\"1o19ti3\",exit:animation5,fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"1o19ti3\",animation2,\"s74ypc\"),style:{transformPerspective:1200},text:HYsvORKzG,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4dv0k\",\"data-framer-name\":\"Project Images\",name:\"Project Images\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oy8ivd\",\"data-framer-name\":\"Images\",name:\"Images\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{\"data-framer-appear-id\":\"1tttil9\",animate:optimizeAppear(\"animate\",\"1tttil9\",animation8,\"1gx68nm\"),initial:optimizeAppear(\"initial\",\"1tttil9\",animation2,\"1gx68nm\")},vHLU9R77O:{\"data-framer-appear-id\":\"4i7iqo\",animate:optimizeAppear(\"animate\",\"4i7iqo\",animation8,\"1ih7vkc\"),initial:optimizeAppear(\"initial\",\"4i7iqo\",animation2,\"1ih7vkc\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"1ngugj2\",animation8,\"s74ypc\"),className:\"framer-1ngugj2-container\",\"data-framer-appear-id\":\"1ngugj2\",exit:animation7,initial:optimizeAppear(\"initial\",\"1ngugj2\",animation2,\"s74ypc\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"A9KJlEBYN\",layoutId:\"A9KJlEBYN\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(AgQAAvKb0)})})})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16fv7q3\",\"data-framer-name\":\"Image Row\",name:\"Image Row\",children:[visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kp325p-container\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"rESRIE4Wn\",layoutId:\"rESRIE4Wn\",style:{width:\"100%\"},variant:\"MeTIOntQr\",width:\"100%\",WKR34BYYJ:toResponsiveImage(fpnSYN2Kh)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xt741m-container\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"UlNGSM87o\",layoutId:\"UlNGSM87o\",style:{width:\"100%\"},variant:\"MeTIOntQr\",width:\"100%\",WKR34BYYJ:toResponsiveImage(j4Y2f4s4m)})})})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1noceeb\",\"data-framer-name\":\"Image Row\",name:\"Image Row\",children:[visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4tb9fs-container\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"CMrwW8cLK\",layoutId:\"CMrwW8cLK\",style:{width:\"100%\"},variant:\"EqkIaTJTM\",width:\"100%\",WKR34BYYJ:toResponsiveImage(xffv2XAbO)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jzd348-container\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"H1Wfy_Uez\",layoutId:\"H1Wfy_Uez\",style:{width:\"100%\"},variant:\"EqkIaTJTM\",width:\"100%\",WKR34BYYJ:toResponsiveImage(stWJbydqa)})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-imsxk9-container\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"M5Jg3whi7\",layoutId:\"M5Jg3whi7\",style:{width:\"100%\"},variant:\"EqkIaTJTM\",width:\"100%\",WKR34BYYJ:toResponsiveImage(HYVahnfNk)})})})]}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fxqd03-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dv7XGQalo\",isMixedBorderRadius:false,layoutId:\"dv7XGQalo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:UYtTzNGIY,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-ep2kzb\",\"data-border\":true,\"data-framer-name\":\"Information\",name:\"Information\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fdrk1b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yo33vq\",\"data-styles-preset\":\"l18Fo0cuF\",children:\"Project Information\"})}),className:\"framer-1awjb5l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dfiw0y\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:uOxpDzAQO,className:\"framer-1locivh\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-errik9\",p:\"framer-styles-preset-yo33vq\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2yjgn\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c0d7p1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yo33vq\",\"data-styles-preset\":\"l18Fo0cuF\",children:\"Next work\"})}),className:\"framer-1sxcd5a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177crkz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-naevr2\",\"data-framer-name\":\"Work\",name:\"Work\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{name:\"UsZbOstXi\",type:\"Identifier\"},{name:\"HYsvORKzG\",type:\"Identifier\"},{name:\"cjerbeg0k\",type:\"Identifier\"},{name:\"ZvJgb0TpA\",type:\"Identifier\"},{name:\"pu4Gsmxwp\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"UsZbOstXi\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:UsZbOstXi},type:\"BinaryOperation\"}}},children:collection=>collection.map(({UsZbOstXi:UsZbOstXiExwu4HLvF,HYsvORKzG:HYsvORKzGExwu4HLvF,cjerbeg0k:cjerbeg0kExwu4HLvF,ZvJgb0TpA:ZvJgb0TpAExwu4HLvF,pu4Gsmxwp:pu4GsmxwpExwu4HLvF,id:idExwu4HLvF},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`Exwu4HLvF-${idExwu4HLvF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4b2e9s\",\"data-framer-name\":\"Work List\",name:\"Work List\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},webPageId:\"ade69bFoI\"},implicitPathVariables:undefined},{href:{pathVariables:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},webPageId:\"ade69bFoI\"},implicitPathVariables:undefined},{href:{pathVariables:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},webPageId:\"ade69bFoI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1isvrf6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{ejc0wl_X0:resolvedLinks[1]},vHLU9R77O:{ejc0wl_X0:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(WorkItem,{dy8ve8BDs:\"var(--token-28400ff0-1ea7-4d56-b9a2-e3a9fa7c3ba7, rgb(28, 28, 33))\",ejc0wl_X0:resolvedLinks[0],gP0qHAbx9:cjerbeg0kExwu4HLvF,height:\"100%\",i02RspAU5:UsZbOstXiExwu4HLvF,id:\"oafcYXH3u\",J4iImaLRF:false,layoutId:\"oafcYXH3u\",rXch_f5Zc:toResponsiveImage(ZvJgb0TpAExwu4HLvF),style:{width:\"100%\"},width:\"100%\",xSiKNVxPh:HYsvORKzGExwu4HLvF,yhckIRiz9:\"var(--token-03ae56eb-df7a-4c7b-b3df-9bf716a6723a, rgb(35, 35, 41))\"})})})})})})})},idExwu4HLvF);})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1edg2x0\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-twntu1-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"qGkkB9eXK\",intensity:10,layoutId:\"qGkkB9eXK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-159ylu1-container\",children:/*#__PURE__*/_jsx(FramerButton,{height:\"100%\",id:\"zFFRmYj3e\",layoutId:\"zFFRmYj3e\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ry3u70-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"lqmKCfeJO\"},vHLU9R77O:{variant:\"eLCldUbsU\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"QzwUbJZTt\",layoutId:\"QzwUbJZTt\",style:{width:\"100%\"},variant:\"S_Iixiy5t\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-j1QvZ { background: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, rgb(255, 255, 255)); }`,\".framer-j1QvZ.framer-19kax7z, .framer-j1QvZ .framer-19kax7z { display: block; }\",\".framer-j1QvZ.framer-s74ypc { align-content: center; align-items: center; background-color: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-j1QvZ .framer-8emjmr { align-content: center; align-items: center; background-color: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px 32px 0px 32px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-j1QvZ .framer-ywyjc9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-j1QvZ .framer-3hdlty { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-wcfjuz { flex: none; height: 25vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-mfodda { --border-bottom-width: 0px; --border-color: var(--token-74eb8845-2c5b-4972-bb2a-40be173f95c3, rgba(79, 79, 79, 0.5)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-acka54 { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-86ukyx, .framer-j1QvZ .framer-1sq95m3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-1vv48zq, .framer-j1QvZ .framer-1mlwgsj, .framer-j1QvZ .framer-1o19ti3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-j1QvZ .framer-oxf64j { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-1f4dv0k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-1oy8ivd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-1ngugj2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-16fv7q3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-1kp325p-container, .framer-j1QvZ .framer-1xt741m-container, .framer-j1QvZ .framer-4tb9fs-container, .framer-j1QvZ .framer-1jzd348-container, .framer-j1QvZ .framer-imsxk9-container, .framer-j1QvZ .framer-1isvrf6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-1noceeb { 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: 100%; }\",\".framer-j1QvZ .framer-1fxqd03-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 636px); position: relative; width: 100%; }\",\".framer-j1QvZ .framer-ep2kzb, .framer-j1QvZ .framer-s2yjgn { --border-bottom-width: 0px; --border-color: var(--token-74eb8845-2c5b-4972-bb2a-40be173f95c3, rgba(79, 79, 79, 0.25)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-1fdrk1b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-1awjb5l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 320px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-j1QvZ .framer-1dfiw0y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-1locivh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-j1QvZ .framer-c0d7p1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-1sxcd5a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-j1QvZ .framer-177crkz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-j1QvZ .framer-naevr2 { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-4b2e9s { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-1edg2x0 { flex: none; height: 15vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-j1QvZ .framer-twntu1-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\".framer-j1QvZ .framer-159ylu1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-j1QvZ .framer-1ry3u70-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-j1QvZ.framer-s74ypc, .framer-j1QvZ .framer-8emjmr, .framer-j1QvZ .framer-3hdlty, .framer-j1QvZ .framer-mfodda, .framer-j1QvZ .framer-acka54, .framer-j1QvZ .framer-86ukyx, .framer-j1QvZ .framer-1sq95m3, .framer-j1QvZ .framer-oxf64j, .framer-j1QvZ .framer-1f4dv0k, .framer-j1QvZ .framer-1oy8ivd, .framer-j1QvZ .framer-16fv7q3, .framer-j1QvZ .framer-1noceeb, .framer-j1QvZ .framer-ep2kzb, .framer-j1QvZ .framer-1fdrk1b, .framer-j1QvZ .framer-1dfiw0y, .framer-j1QvZ .framer-s2yjgn, .framer-j1QvZ .framer-c0d7p1, .framer-j1QvZ .framer-177crkz, .framer-j1QvZ .framer-4b2e9s { gap: 0px; } .framer-j1QvZ.framer-s74ypc > *, .framer-j1QvZ .framer-3hdlty > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-j1QvZ.framer-s74ypc > :first-child, .framer-j1QvZ .framer-3hdlty > :first-child, .framer-j1QvZ .framer-1f4dv0k > :first-child, .framer-j1QvZ .framer-1oy8ivd > :first-child, .framer-j1QvZ .framer-1fdrk1b > :first-child, .framer-j1QvZ .framer-c0d7p1 > :first-child, .framer-j1QvZ .framer-177crkz > :first-child { margin-top: 0px; } .framer-j1QvZ.framer-s74ypc > :last-child, .framer-j1QvZ .framer-3hdlty > :last-child, .framer-j1QvZ .framer-1f4dv0k > :last-child, .framer-j1QvZ .framer-1oy8ivd > :last-child, .framer-j1QvZ .framer-1fdrk1b > :last-child, .framer-j1QvZ .framer-c0d7p1 > :last-child, .framer-j1QvZ .framer-177crkz > :last-child { margin-bottom: 0px; } .framer-j1QvZ .framer-8emjmr > *, .framer-j1QvZ .framer-86ukyx > *, .framer-j1QvZ .framer-1sq95m3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-j1QvZ .framer-8emjmr > :first-child, .framer-j1QvZ .framer-mfodda > :first-child, .framer-j1QvZ .framer-acka54 > :first-child, .framer-j1QvZ .framer-86ukyx > :first-child, .framer-j1QvZ .framer-1sq95m3 > :first-child, .framer-j1QvZ .framer-oxf64j > :first-child, .framer-j1QvZ .framer-16fv7q3 > :first-child, .framer-j1QvZ .framer-1noceeb > :first-child, .framer-j1QvZ .framer-ep2kzb > :first-child, .framer-j1QvZ .framer-1dfiw0y > :first-child, .framer-j1QvZ .framer-s2yjgn > :first-child, .framer-j1QvZ .framer-4b2e9s > :first-child { margin-left: 0px; } .framer-j1QvZ .framer-8emjmr > :last-child, .framer-j1QvZ .framer-mfodda > :last-child, .framer-j1QvZ .framer-acka54 > :last-child, .framer-j1QvZ .framer-86ukyx > :last-child, .framer-j1QvZ .framer-1sq95m3 > :last-child, .framer-j1QvZ .framer-oxf64j > :last-child, .framer-j1QvZ .framer-16fv7q3 > :last-child, .framer-j1QvZ .framer-1noceeb > :last-child, .framer-j1QvZ .framer-ep2kzb > :last-child, .framer-j1QvZ .framer-1dfiw0y > :last-child, .framer-j1QvZ .framer-s2yjgn > :last-child, .framer-j1QvZ .framer-4b2e9s > :last-child { margin-right: 0px; } .framer-j1QvZ .framer-mfodda > *, .framer-j1QvZ .framer-acka54 > *, .framer-j1QvZ .framer-oxf64j > *, .framer-j1QvZ .framer-16fv7q3 > *, .framer-j1QvZ .framer-1noceeb > *, .framer-j1QvZ .framer-ep2kzb > *, .framer-j1QvZ .framer-1dfiw0y > *, .framer-j1QvZ .framer-s2yjgn > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-j1QvZ .framer-1f4dv0k > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-j1QvZ .framer-1oy8ivd > *, .framer-j1QvZ .framer-1fdrk1b > *, .framer-j1QvZ .framer-c0d7p1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-j1QvZ .framer-177crkz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-j1QvZ .framer-4b2e9s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\"@media (min-width: 1200px) { .framer-j1QvZ .hidden-s74ypc { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-j1QvZ .hidden-1gx68nm { display: none !important; } .${metadata.bodyClassName}-framer-j1QvZ { background: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, rgb(255, 255, 255)); } .framer-j1QvZ.framer-s74ypc { gap: 80px; width: 810px; } .framer-j1QvZ .framer-8emjmr { padding: 0px 16px 0px 16px; } .framer-j1QvZ .framer-3hdlty { gap: 80px; } .framer-j1QvZ .framer-mfodda { flex-direction: column; } .framer-j1QvZ .framer-acka54 { align-self: unset; flex: none; width: 100%; } .framer-j1QvZ .framer-oxf64j, .framer-j1QvZ .framer-c0d7p1 { flex: none; width: 100%; } .framer-j1QvZ .framer-1fxqd03-container { height: var(--framer-aspect-ratio-supported, 418px); } .framer-j1QvZ .framer-1dfiw0y { flex: 3 0 0px; } .framer-j1QvZ .framer-s2yjgn { flex-direction: column; gap: 40px; } .framer-j1QvZ .framer-177crkz { flex: none; gap: 16px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-j1QvZ.framer-s74ypc, .framer-j1QvZ .framer-3hdlty, .framer-j1QvZ .framer-mfodda, .framer-j1QvZ .framer-s2yjgn, .framer-j1QvZ .framer-177crkz { gap: 0px; } .framer-j1QvZ.framer-s74ypc > *, .framer-j1QvZ .framer-3hdlty > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-j1QvZ.framer-s74ypc > :first-child, .framer-j1QvZ .framer-3hdlty > :first-child, .framer-j1QvZ .framer-mfodda > :first-child, .framer-j1QvZ .framer-s2yjgn > :first-child, .framer-j1QvZ .framer-177crkz > :first-child { margin-top: 0px; } .framer-j1QvZ.framer-s74ypc > :last-child, .framer-j1QvZ .framer-3hdlty > :last-child, .framer-j1QvZ .framer-mfodda > :last-child, .framer-j1QvZ .framer-s2yjgn > :last-child, .framer-j1QvZ .framer-177crkz > :last-child { margin-bottom: 0px; } .framer-j1QvZ .framer-mfodda > *, .framer-j1QvZ .framer-177crkz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-j1QvZ .framer-s2yjgn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,`@media (max-width: 809px) { .framer-j1QvZ .hidden-1ih7vkc { display: none !important; } .${metadata.bodyClassName}-framer-j1QvZ { background: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, rgb(255, 255, 255)); } .framer-j1QvZ.framer-s74ypc { gap: 60px; width: 390px; } .framer-j1QvZ .framer-8emjmr { padding: 0px; } .framer-j1QvZ .framer-3hdlty { gap: 60px; padding: 0px 16px 0px 16px; } .framer-j1QvZ .framer-mfodda, .framer-j1QvZ .framer-16fv7q3, .framer-j1QvZ .framer-1noceeb, .framer-j1QvZ .framer-ep2kzb { flex-direction: column; } .framer-j1QvZ .framer-acka54 { align-self: unset; flex: none; flex-direction: column; gap: 0px; order: 0; width: 100%; } .framer-j1QvZ .framer-86ukyx, .framer-j1QvZ .framer-1sq95m3, .framer-j1QvZ .framer-1kp325p-container, .framer-j1QvZ .framer-1xt741m-container, .framer-j1QvZ .framer-4tb9fs-container, .framer-j1QvZ .framer-1jzd348-container, .framer-j1QvZ .framer-imsxk9-container, .framer-j1QvZ .framer-1fdrk1b { flex: none; width: 100%; } .framer-j1QvZ .framer-oxf64j { flex: none; order: 1; width: 100%; } .framer-j1QvZ .framer-1fxqd03-container { height: var(--framer-aspect-ratio-supported, 112px); } .framer-j1QvZ .framer-1dfiw0y { flex: none; flex-direction: column; width: 100%; } .framer-j1QvZ .framer-1locivh, .framer-j1QvZ .framer-c0d7p1 { flex: none; order: 0; width: 100%; } .framer-j1QvZ .framer-s2yjgn { flex-direction: column; flex-wrap: wrap; gap: 40px; } .framer-j1QvZ .framer-177crkz { flex: none; gap: 16px; order: 1; width: 100%; } .framer-j1QvZ .framer-naevr2 { gap: 40px; grid-template-columns: repeat(1, minmax(200px, 1fr)); order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-j1QvZ.framer-s74ypc, .framer-j1QvZ .framer-3hdlty, .framer-j1QvZ .framer-mfodda, .framer-j1QvZ .framer-acka54, .framer-j1QvZ .framer-16fv7q3, .framer-j1QvZ .framer-1noceeb, .framer-j1QvZ .framer-ep2kzb, .framer-j1QvZ .framer-1dfiw0y, .framer-j1QvZ .framer-s2yjgn, .framer-j1QvZ .framer-177crkz, .framer-j1QvZ .framer-naevr2 { gap: 0px; } .framer-j1QvZ.framer-s74ypc > *, .framer-j1QvZ .framer-3hdlty > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-j1QvZ.framer-s74ypc > :first-child, .framer-j1QvZ .framer-3hdlty > :first-child, .framer-j1QvZ .framer-mfodda > :first-child, .framer-j1QvZ .framer-acka54 > :first-child, .framer-j1QvZ .framer-16fv7q3 > :first-child, .framer-j1QvZ .framer-1noceeb > :first-child, .framer-j1QvZ .framer-ep2kzb > :first-child, .framer-j1QvZ .framer-1dfiw0y > :first-child, .framer-j1QvZ .framer-s2yjgn > :first-child, .framer-j1QvZ .framer-177crkz > :first-child { margin-top: 0px; } .framer-j1QvZ.framer-s74ypc > :last-child, .framer-j1QvZ .framer-3hdlty > :last-child, .framer-j1QvZ .framer-mfodda > :last-child, .framer-j1QvZ .framer-acka54 > :last-child, .framer-j1QvZ .framer-16fv7q3 > :last-child, .framer-j1QvZ .framer-1noceeb > :last-child, .framer-j1QvZ .framer-ep2kzb > :last-child, .framer-j1QvZ .framer-1dfiw0y > :last-child, .framer-j1QvZ .framer-s2yjgn > :last-child, .framer-j1QvZ .framer-177crkz > :last-child { margin-bottom: 0px; } .framer-j1QvZ .framer-mfodda > *, .framer-j1QvZ .framer-16fv7q3 > *, .framer-j1QvZ .framer-1noceeb > *, .framer-j1QvZ .framer-ep2kzb > *, .framer-j1QvZ .framer-1dfiw0y > *, .framer-j1QvZ .framer-177crkz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-j1QvZ .framer-acka54 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-j1QvZ .framer-s2yjgn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-j1QvZ .framer-naevr2 > *, .framer-j1QvZ .framer-naevr2 > :first-child, .framer-j1QvZ .framer-naevr2 > :last-child { margin: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-j1QvZ[data-border=\"true\"]::after, .framer-j1QvZ [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4756\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TBpsqCGcO\":{\"layout\":[\"fixed\",\"auto\"]},\"vHLU9R77O\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerade69bFoI=withCSS(Component,css,\"framer-j1QvZ\");export default Framerade69bFoI;Framerade69bFoI.displayName=\"Page\";Framerade69bFoI.defaultProps={height:4756,width:1200};addFonts(Framerade69bFoI,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...NavigationFonts,...ImageAspectRatioFonts,...VideoFonts,...WorkItemFonts,...SmoothScrollFonts,...FramerButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerade69bFoI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4756\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TBpsqCGcO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vHLU9R77O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\"}},\"__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", "NavigationFonts", "getFonts", "a7rhR3dn7_default", "ImageAspectRatioFonts", "gtTB3sfvP_default", "VideoFonts", "Video", "WorkItemFonts", "BNUDwMFl6_default", "SmoothScrollFonts", "SmoothScroll", "FramerButtonFonts", "FramerButton", "FooterFonts", "STQt2b579_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "isSet", "value", "transition4", "animation7", "animation8", "toResponsiveImage", "QueryData", "query", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "CiGJbYnE3_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "UsZbOstXi", "cjerbeg0k", "HYsvORKzG", "AgQAAvKb0", "fpnSYN2Kh", "j4Y2f4s4m", "xffv2XAbO", "stWJbydqa", "HYVahnfNk", "UYtTzNGIY", "uOxpDzAQO", "UsZbOstXiExwu4HLvF", "HYsvORKzGExwu4HLvF", "cjerbeg0kExwu4HLvF", "ZvJgb0TpAExwu4HLvF", "pu4GsmxwpExwu4HLvF", "idExwu4HLvF", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "a7rhR3dn7_default", "optimizeAppear", "RichText2", "x", "gtTB3sfvP_default", "Video", "collection", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "BNUDwMFl6_default", "SmoothScroll", "FramerButton", "STQt2b579_default", "css", "Framerade69bFoI", "withCSS", "ade69bFoI_default", "addFonts", "NavigationFonts", "ImageAspectRatioFonts", "VideoFonts", "WorkItemFonts", "SmoothScrollFonts", "FramerButtonFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
