{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/w78f7EK09OP3SK9f2vmx/H72KKPlYNju3W6TyQcdl/PAJDgtDyD.js", "ssg:https://framerusercontent.com/modules/Svgd6kLHnDfXvlRWk85C/sgp4bS07tTtPMfDXHIIN/DXnJCV2Je.js", "ssg:https://framerusercontent.com/modules/a77oDQSBSc7dyI1dGxgo/AS1BTrmYi5rSWk5b4suc/SNU0yzm8_.js", "ssg:https://framerusercontent.com/modules/zO8FkpR6hikI6MotLvSV/TdAzLUCnCfq29ONoJ0r3/Swv_mGqjY.js", "ssg:https://framerusercontent.com/modules/iSqpxkFKsFE7gGVdOgWS/lWNWo5X3m6RKW522xUF1/kYvud9gwo.js", "ssg:https://framerusercontent.com/modules/yb1I7OL36g0eRi6ZED6z/SDEeNZoi8IPJLpo3YjW4/YckFIlg3V.js", "ssg:https://framerusercontent.com/modules/628xJykAlss9tJxXw0hN/DbdHYSwjZ2A6jWUNcYMw/cRf69tzJG.js"],
  "sourcesContent": ["import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";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});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);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();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (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&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)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:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,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,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};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:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// 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\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (8563fcd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7k8aQelGMN4p5TydzMvw/Jtfh9CyGxaT1tE21btN1/DEn7o9iqR.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lFxp3OwDSc2IyH5cwoQj/76kHrjQXWjJiMVPXb7sB/GTZwY3IjV.js\";const cycleOrder=[\"jfzNwns1H\"];const variantClassNames={jfzNwns1H:\"framer-v-7yygz9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"jfzNwns1H\",title:I0UGk_2DE=\"Title\",copy:FyFGNmg8t=\"Copy\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"jfzNwns1H\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Ma2Fb\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-7yygz9\",className),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jfzNwns1H\",ref:ref,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-e1eadf3e-b40f-4a65-af80-c91f7090c8d8, rgba(0, 0, 0, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",...style},children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-8oa4rd\",\"data-styles-preset\":\"GTZwY3IjV\",children:\"Title\"})}),className:\"framer-tc5b42\",\"data-framer-name\":\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",layoutDependency:layoutDependency,layoutId:\"RNwPyGMRa\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:I0UGk_2DE,transformTemplate:transformTemplate,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-16d66u2\",\"data-styles-preset\":\"DEn7o9iqR\",children:\"Copy\"})}),className:\"framer-qbpfuz\",\"data-framer-name\":\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",layoutDependency:layoutDependency,layoutId:\"DTvHH5Csz\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:FyFGNmg8t,transformTemplate:transformTemplate,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-Ma2Fb [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ma2Fb .framer-ujvc90 { display: block; }\",\".framer-Ma2Fb .framer-7yygz9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 233px; }\",\".framer-Ma2Fb .framer-tc5b42, .framer-Ma2Fb .framer-qbpfuz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ma2Fb .framer-7yygz9 { gap: 0px; } .framer-Ma2Fb .framer-7yygz9 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Ma2Fb .framer-7yygz9 > :first-child { margin-top: 0px; } .framer-Ma2Fb .framer-7yygz9 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 67\n * @framerIntrinsicWidth 232.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"I0UGk_2DE\":\"title\",\"FyFGNmg8t\":\"copy\"}\n */ const FramerPAJDgtDyD=withCSS(Component,css,\"framer-Ma2Fb\");export default FramerPAJDgtDyD;FramerPAJDgtDyD.displayName=\"Work Details\";FramerPAJDgtDyD.defaultProps={height:67,width:232.5};addPropertyControls(FramerPAJDgtDyD,{I0UGk_2DE:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},FyFGNmg8t:{defaultValue:\"Copy\",displayTextArea:false,title:\"Copy\",type:ControlType.String}});addFonts(FramerPAJDgtDyD,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPAJDgtDyD\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"67\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"I0UGk_2DE\\\":\\\"title\\\",\\\"FyFGNmg8t\\\":\\\"copy\\\"}\",\"framerIntrinsicWidth\":\"232.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2add0ca)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={wmtiwC4M7:{hover:true}};const cycleOrder=[\"wmtiwC4M7\"];const variantClassNames={wmtiwC4M7:\"framer-v-lr16ve\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"wmtiwC4M7\",tap:YRuWA_apQ,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"wmtiwC4M7\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10dm9wz=activeVariantCallback(async(...args)=>{if(YRuWA_apQ){const res=await YRuWA_apQ(...args);if(res===false)return false;}});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-wHPeX\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(Link,{href:{hash:\":jVFvj9IS7\",webPageId:\"augiA20Il\"},openInNewTab:false,children:/*#__PURE__*/ _jsx(motion.a,{...restProps,className:`${cx(\"framer-lr16ve\",className)} framer-1objfp`,\"data-framer-name\":\"Back\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wmtiwC4M7\",onTap:onTap10dm9wz,ref:ref,style:{...style},...addPropertyOverrides({\"wmtiwC4M7-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-1jz5iyf\",\"data-framer-name\":\"Shape\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tLavxW79R\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 16\"><path d=\"M 8.707 2.707 C 9.098 2.317 9.098 1.683 8.707 1.293 C 8.317 0.902 7.683 0.902 7.293 1.293 L 1.293 7.293 C 0.902 7.683 0.902 8.317 1.293 8.707 L 7.293 14.707 C 7.683 15.098 8.317 15.098 8.707 14.707 C 9.098 14.317 9.098 13.683 8.707 13.293 L 4.414 9 L 18 9 C 18.552 9 19 8.552 19 8 C 19 7.448 18.552 7 18 7 L 4.414 7 Z\" fill=\"var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, rgb(0, 0, 0))\"></path></svg>',svgContentId:1766961018,withExternalLayout:true,...addPropertyOverrides({\"wmtiwC4M7-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 16\"><path d=\"M 8.707 2.707 C 9.098 2.317 9.098 1.683 8.707 1.293 C 8.317 0.902 7.683 0.902 7.293 1.293 L 1.293 7.293 C 0.902 7.683 0.902 8.317 1.293 8.707 L 7.293 14.707 C 7.683 15.098 8.317 15.098 8.707 14.707 C 9.098 14.317 9.098 13.683 8.707 13.293 L 4.414 9 L 18 9 C 18.552 9 19 8.552 19 8 C 19 7.448 18.552 7 18 7 L 4.414 7 Z\" fill=\"var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, rgb(0, 0, 0))\" opacity=\"0.5\"></path></svg>',svgContentId:3391075744}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-wHPeX [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wHPeX .framer-1objfp { display: block; }\",\".framer-wHPeX .framer-lr16ve { cursor: pointer; height: 24px; overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-wHPeX .framer-1jz5iyf { flex: none; height: 16px; left: 2px; position: absolute; top: 4px; width: 20px; }\",\".framer-wHPeX .framer-v-lr16ve .framer-lr16ve { cursor: pointer; }\",\".framer-wHPeX.framer-v-lr16ve.hover .framer-lr16ve { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dKGM4B9m1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"YRuWA_apQ\":\"tap\"}\n */ const FramerDXnJCV2Je=withCSS(Component,css,\"framer-wHPeX\");export default FramerDXnJCV2Je;FramerDXnJCV2Je.displayName=\"Icon / 24x24 / Arrow (left)\";FramerDXnJCV2Je.defaultProps={height:24,width:24};addPropertyControls(FramerDXnJCV2Je,{YRuWA_apQ:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerDXnJCV2Je,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDXnJCV2Je\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerVariables\":\"{\\\"YRuWA_apQ\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dKGM4B9m1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DXnJCV2Je.map", "// Generated by Framer (2add0ca)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Icon24x24ArrowLeft from\"https://framerusercontent.com/modules/Svgd6kLHnDfXvlRWk85C/sgp4bS07tTtPMfDXHIIN/DXnJCV2Je.js\";import Menu from\"https://framerusercontent.com/modules/pJF5TdQDmXLdSBPzAoBe/3wbCv4LTK1IdmeOaXaHO/UcT4Q8pX7.js\";const Icon24x24ArrowLeftFonts=getFonts(Icon24x24ArrowLeft);const MenuFonts=getFonts(Menu);const cycleOrder=[\"Q2u12mehZ\",\"SBS10uE6L\",\"f3sTfHlF_\",\"oZOBJ9SFi\"];const variantClassNames={f3sTfHlF_:\"framer-v-3dkuy9\",oZOBJ9SFi:\"framer-v-1m268h0\",Q2u12mehZ:\"framer-v-1k3dghk\",SBS10uE6L:\"framer-v-lsxofd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Navbar - Mobile Clicked\":\"oZOBJ9SFi\",\"Navbar - Mobile\":\"f3sTfHlF_\",\"Navbar - Tablet\":\"SBS10uE6L\",\"Navbar - Web \":\"Q2u12mehZ\"};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"Q2u12mehZ\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Q2u12mehZ\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap14rsnk1=activeVariantCallback(async(...args)=>{setVariant(\"oZOBJ9SFi\");});const tapsfssqk=activeVariantCallback(async(...args)=>{setVariant(\"f3sTfHlF_\");});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-ZPdzW\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1k3dghk\",className),\"data-framer-name\":\"Navbar - Web \",layoutDependency:layoutDependency,layoutId:\"Q2u12mehZ\",ref:ref,style:{backdropFilter:\"blur(20px)\",backgroundColor:\"var(--token-09c1c295-100b-4404-b0f3-271ad5607bc6, rgba(255, 255, 255, 0.75))\",WebkitBackdropFilter:\"blur(20px)\",...style},variants:{SBS10uE6L:{backgroundColor:\"var(--token-09c1c295-100b-4404-b0f3-271ad5607bc6, rgba(255, 255, 255, 0.5))\"}},...addPropertyOverrides({f3sTfHlF_:{\"data-framer-name\":\"Navbar - Mobile\"},oZOBJ9SFi:{\"data-framer-name\":\"Navbar - Mobile Clicked\"},SBS10uE6L:{\"data-framer-name\":\"Navbar - Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-3d5l5i\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"RgVISo5Up\",children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1nbz3qn-container\",layoutDependency:layoutDependency,layoutId:\"JK8du50BN-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/ _jsx(Icon24x24ArrowLeft,{height:\"100%\",id:\"JK8du50BN\",layoutId:\"JK8du50BN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1we7yxm\",\"data-framer-name\":\"Nav Options\",layoutDependency:layoutDependency,layoutId:\"Zc3zh0b3e\",children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-tzsrfb-container\",layoutDependency:layoutDependency,layoutId:\"tLuQ87fFS-container\",children:/*#__PURE__*/ _jsx(Menu,{height:\"100%\",id:\"tLuQ87fFS\",layoutId:\"tLuQ87fFS\",variant:\"R8Z65acle\",width:\"100%\",...addPropertyOverrides({f3sTfHlF_:{style:{width:\"100%\"},tap:tap14rsnk1},oZOBJ9SFi:{tap:tapsfssqk,variant:\"WsIGLMZWk\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=['.framer-ZPdzW [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZPdzW .framer-42t3kg { display: block; }\",\".framer-ZPdzW .framer-1k3dghk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 18px 40px 18px 40px; position: relative; width: 1200px; }\",\".framer-ZPdzW .framer-3d5l5i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 960px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ZPdzW .framer-1nbz3qn-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-ZPdzW .framer-1we7yxm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ZPdzW .framer-tzsrfb-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZPdzW .framer-1k3dghk, .framer-ZPdzW .framer-1we7yxm { gap: 0px; } .framer-ZPdzW .framer-1k3dghk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZPdzW .framer-1k3dghk > :first-child { margin-top: 0px; } .framer-ZPdzW .framer-1k3dghk > :last-child { margin-bottom: 0px; } .framer-ZPdzW .framer-1we7yxm > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-ZPdzW .framer-1we7yxm > :first-child { margin-left: 0px; } .framer-ZPdzW .framer-1we7yxm > :last-child { margin-right: 0px; } }\",\".framer-ZPdzW.framer-v-lsxofd .framer-1k3dghk { padding: 16px 40px 16px 40px; width: 810px; }\",\".framer-ZPdzW.framer-v-lsxofd .framer-3d5l5i, .framer-ZPdzW.framer-v-3dkuy9 .framer-3d5l5i { max-width: unset; }\",\".framer-ZPdzW.framer-v-3dkuy9 .framer-1k3dghk, .framer-ZPdzW.framer-v-1m268h0 .framer-1k3dghk { padding: 18px 20px 18px 20px; width: 390px; }\",\".framer-ZPdzW.framer-v-3dkuy9 .framer-tzsrfb-container { width: 101px; }\",\".framer-ZPdzW.framer-v-1m268h0 .framer-3d5l5i { gap: 819px; justify-content: flex-end; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZPdzW.framer-v-1m268h0 .framer-3d5l5i { gap: 0px; } .framer-ZPdzW.framer-v-1m268h0 .framer-3d5l5i > * { margin: 0px; margin-left: calc(819px / 2); margin-right: calc(819px / 2); } .framer-ZPdzW.framer-v-1m268h0 .framer-3d5l5i > :first-child { margin-left: 0px; } .framer-ZPdzW.framer-v-1m268h0 .framer-3d5l5i > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SBS10uE6L\":{\"layout\":[\"fixed\",\"auto\"]},\"f3sTfHlF_\":{\"layout\":[\"fixed\",\"auto\"]},\"oZOBJ9SFi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */ const FramerSNU0yzm8_=withCSS(Component,css,\"framer-ZPdzW\");export default FramerSNU0yzm8_;FramerSNU0yzm8_.displayName=\"Navbar Drill-in\";FramerSNU0yzm8_.defaultProps={height:70,width:1200};addPropertyControls(FramerSNU0yzm8_,{variant:{options:[\"Q2u12mehZ\",\"SBS10uE6L\",\"f3sTfHlF_\",\"oZOBJ9SFi\"],optionTitles:[\"Navbar - Web \",\"Navbar - Tablet\",\"Navbar - Mobile\",\"Navbar - Mobile Clicked\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSNU0yzm8_,[...Icon24x24ArrowLeftFonts,...MenuFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSNU0yzm8_\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"70\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SBS10uE6L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f3sTfHlF_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oZOBJ9SFi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5ac62b5)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as a,addPropertyControls as t,ControlType as o,cx as i,getFonts as n,Link as l,RichText as d,useLocaleInfo as s,useVariantState as c,withCSS as m}from\"framer\";import{LayoutGroup as f,motion as p,MotionConfigContext as u}from\"framer-motion\";import*as b from\"react\";import{Icon as h}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as y from\"https://framerusercontent.com/modules/61dNtXgANXe2YQQbWTEk/zTYs6ypJP81h2rxF08Ag/kcPv8jkGl.js\";let v=n(h),g={euk3VUd2x:{hover:!0}},x=[\"euk3VUd2x\"],k=\"framer-qZTE8\",j={euk3VUd2x:\"framer-v-37y9bj\"};function w(e,...r){let a={};return null==r||r.forEach(r=>r&&Object.assign(a,e[r])),a;}let T={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},q=({value:r,children:a})=>{let t=b.useContext(u),o=null!=r?r:t.transition,i=b.useMemo(()=>({...t,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(u.Provider,{value:i,children:a});},E=({height:e,id:r,link:a,linkLabel:t,width:o,...i})=>{var n;return{...i,fT9QOcTjw:null!==(n=null!=t?t:i.fT9QOcTjw)&&void 0!==n?n:\"Live product\",uqNQXp9i4:null!=a?a:i.uqNQXp9i4};},N=(e,r)=>r.join(\"-\")+e.layoutDependency,Z=/*#__PURE__*/b.forwardRef(function(a,t){let{activeLocale:o}=s(),{style:n,className:m,layoutId:u,variant:v,uqNQXp9i4:k,fT9QOcTjw:Z,...L}=E(a),{baseVariant:V,classNames:P,gestureVariant:R,setGestureState:U,setVariant:B,transition:Q,variants:C}=c({cycleOrder:x,defaultVariant:\"euk3VUd2x\",enabledGestures:g,transitions:T,variant:v,variantClassNames:j}),D=N(a,C),I=b.useRef(null),O=b.useId(),S=[y.className];return /*#__PURE__*/e(f,{id:null!=u?u:O,children:/*#__PURE__*/e(p.div,{initial:v,animate:C,onHoverStart:()=>U({isHovered:!0}),onHoverEnd:()=>U({isHovered:!1}),onTapStart:()=>U({isPressed:!0}),onTap:()=>U({isPressed:!1}),onTapCancel:()=>U({isPressed:!1}),className:i(\"framer-qZTE8\",...S,P),style:{display:\"contents\"},children:/*#__PURE__*/e(q,{value:Q,children:/*#__PURE__*/e(l,{href:k,children:/*#__PURE__*/r(p.a,{...L,className:`${i(\"framer-37y9bj\",m)} framer-13243k1`,\"data-framer-name\":\"Variant 1\",layoutDependency:D,layoutId:\"euk3VUd2x\",ref:null!=t?t:I,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-8cf4d1a1-5a68-49a3-bc3d-ff3f124e4d6e, rgba(212, 194, 255, 0.75))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(10px)\",...n},variants:{\"euk3VUd2x-hover\":{backgroundColor:\"var(--token-8f2da595-aa85-4430-a8b4-d80520378e1a, rgba(195, 171, 252, 0.15))\"}},...w({\"euk3VUd2x-hover\":{\"data-framer-name\":void 0}},V,R),children:[/*#__PURE__*/e(d,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(b.Fragment,{children:/*#__PURE__*/e(p.p,{className:\"framer-styles-preset-lf1tzn\",\"data-styles-preset\":\"kcPv8jkGl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, rgb(0, 0, 0)))\"},children:\"Link\"})}),className:\"framer-1jyeqau\",\"data-framer-name\":\"Mobile app desig\",layoutDependency:D,layoutId:\"ctiGaEVMd\",style:{\"--extracted-r6o4lv\":\"var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},text:Z,verticalAlignment:\"top\",withExternalLayout:!0,...w({\"euk3VUd2x-hover\":{children:/*#__PURE__*/e(b.Fragment,{children:/*#__PURE__*/e(p.p,{className:\"framer-styles-preset-lf1tzn\",\"data-styles-preset\":\"kcPv8jkGl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, rgb(0, 0, 0)))\"},children:\"Live product\"})})}},V,R)}),/*#__PURE__*/e(p.div,{className:\"framer-115ex8y-container\",layoutDependency:D,layoutId:\"RUlNPl2kp-container\",children:/*#__PURE__*/e(h,{color:'var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, rgb(0, 0, 0)) /* {\"name\":\"White/Black (Dark/Light)\"} */',height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"RUlNPl2kp\",layoutId:\"RUlNPl2kp\",mirrored:!1,selectByList:!0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})})})})});}),L=['.framer-qZTE8 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qZTE8 .framer-13243k1 { display: block; }\",\".framer-qZTE8 .framer-37y9bj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 2px 8px 2px 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qZTE8 .framer-1jyeqau { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qZTE8 .framer-115ex8y-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-qZTE8 .framer-v-37y9bj .framer-37y9bj { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qZTE8 .framer-37y9bj { gap: 0px; } .framer-qZTE8 .framer-37y9bj > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-qZTE8 .framer-37y9bj > :first-child { margin-left: 0px; } .framer-qZTE8 .framer-37y9bj > :last-child { margin-right: 0px; } }\",...y.css],V=m(Z,L,\"framer-qZTE8\");export default V;V.displayName=\"Badge\",V.defaultProps={height:23.5,width:112.5},t(V,{uqNQXp9i4:{title:\"Link\",type:o.Link},fT9QOcTjw:{defaultValue:\"Live product\",title:\"Link Label\",type:o.String}}),a(V,[...v,...y.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSwv_mGqjY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VE0fSv3gV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"112.5\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"uqNQXp9i4\\\":\\\"link\\\",\\\"fT9QOcTjw\\\":\\\"linkLabel\\\"}\",\"framerIntrinsicHeight\":\"23.5\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Swv_mGqjY.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter\"]);export const fonts=[];export const css=['.framer-tfLvg .framer-styles-preset-4q07l1:not(.rich-text-wrapper), .framer-tfLvg .framer-styles-preset-4q07l1.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-tfLvg .framer-styles-preset-4q07l1:not(.rich-text-wrapper), .framer-tfLvg .framer-styles-preset-4q07l1.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 37px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tfLvg .framer-styles-preset-4q07l1:not(.rich-text-wrapper), .framer-tfLvg .framer-styles-preset-4q07l1.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-tfLvg\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import { fontStore } from \"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Inter Medium Italic\"]);export const fonts = [{ family: \"Inter Medium Italic\", moduleAsset: { localModuleIdentifier: \"local-module:css/YckFIlg3V:default\", url: \"assets/idCmzKRcGsHLMMGVe5UgtwPEKTM.otf\" }, url: new URL(\"https://framerusercontent.com/modules/assets/idCmzKRcGsHLMMGVe5UgtwPEKTM~hB9WSPNLEHgDT-q_URqKjUU_hXIPyDpZBW6AVeLTj4w.otf\").href }];export const css = ['.framer-TkQtO .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-TkQtO .framer-styles-preset-12lj5ox.rich-text-wrapper h3, .framer-TkQtO .framer-styles-preset-12lj5ox.rich-text-wrapper [data-preset-tag=\"h3\"] { --framer-font-family: \"Inter Medium Italic\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, #ffffff); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className = \"framer-TkQtO\";\nexport const __FramerMetadata__ = { \"exports\": { \"fonts\": { \"type\": \"variable\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"css\": { \"type\": \"variable\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"className\": { \"type\": \"variable\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,optimizeAppear,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import WorkCard from\"#framer/local/canvasComponent/aVhXWzCBB/aVhXWzCBB.js\";import Footer from\"#framer/local/canvasComponent/JCXRU6SRd/JCXRU6SRd.js\";import WorkDetails from\"#framer/local/canvasComponent/PAJDgtDyD/PAJDgtDyD.js\";import NavbarDrillIn from\"#framer/local/canvasComponent/SNU0yzm8_/SNU0yzm8_.js\";import Badge from\"#framer/local/canvasComponent/Swv_mGqjY/Swv_mGqjY.js\";import Works from\"#framer/local/collection/OOVhxQ5_8/OOVhxQ5_8.js\";import*as sharedStyle2 from\"#framer/local/css/DEn7o9iqR/DEn7o9iqR.js\";import*as sharedStyle1 from\"#framer/local/css/kcPv8jkGl/kcPv8jkGl.js\";import*as sharedStyle from\"#framer/local/css/kYvud9gwo/kYvud9gwo.js\";import*as sharedStyle4 from\"#framer/local/css/TaYXQgbWs/TaYXQgbWs.js\";import*as sharedStyle3 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/cRf69tzJG/cRf69tzJG.js\";const NavbarDrillInFonts=getFonts(NavbarDrillIn);const BadgeFonts=getFonts(Badge);const WorkDetailsFonts=getFonts(WorkDetails);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const WorkCardFonts=getFonts(WorkCard);const FooterFonts=getFonts(Footer);const cycleOrder=[\"cf5lEbGl0\",\"aRLIiWu7N\",\"RVGGyj3eX\"];const breakpoints={aRLIiWu7N:\"(min-width: 810px) and (max-width: 1199px)\",cf5lEbGl0:\"(min-width: 1200px)\",RVGGyj3eX:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-0GvLX\";const variantClassNames={aRLIiWu7N:\"framer-v-xp0rw9\",cf5lEbGl0:\"framer-v-2hs794\",RVGGyj3eX:\"framer-v-1iekt5x\"};const transition1={damping:60,delay:0,mass:1,stiffness:210,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};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:150};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"cf5lEbGl0\",Phone:\"RVGGyj3eX\",Tablet:\"aRLIiWu7N\"};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:\"cf5lEbGl0\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Works,type:\"Collection\"},select:[{name:\"jThh8qXPM\",type:\"Identifier\"},{name:\"ZnlE7Dum7\",type:\"Identifier\"},{name:\"J10xzEPS_\",type:\"Identifier\"},{name:\"bOylYfbVS\",type:\"Identifier\"},{name:\"bOw8WHTvm\",type:\"Identifier\"},{name:\"klLSi6TLG\",type:\"Identifier\"},{name:\"pDl0GAcOA\",type:\"Identifier\"},{name:\"P1ykkaxe5\",type:\"Identifier\"},{name:\"hFCPK3mmm\",type:\"Identifier\"},{name:\"a3mLBU1TN\",type:\"Identifier\"},{name:\"RxE56SWYX\",type:\"Identifier\"},{name:\"b8BVnNLKy\",type:\"Identifier\"},{name:\"itJO9TUvY\",type:\"Identifier\"},{name:\"hMGo0shB1\",type:\"Identifier\"},{name:\"YGtWsnSKu\",type:\"Identifier\"},{name:\"IbBetu3ba\",type:\"Identifier\"},{name:\"f7Xzvy6cx\",type:\"Identifier\"},{name:\"McfRHmK9i\",type:\"Identifier\"},{name:\"ykjven_Of\",type:\"Identifier\"},{name:\"W2zUEO3GV\",type:\"Identifier\"},{name:\"uIYNSJBAQ\",type:\"Identifier\"},{name:\"dx1EFlAcH\",type:\"Identifier\"},{name:\"RWOdKUzwp\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Works\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,jThh8qXPM=getFromCurrentRouteData(\"jThh8qXPM\"),ZnlE7Dum7=getFromCurrentRouteData(\"ZnlE7Dum7\"),dx1EFlAcH=getFromCurrentRouteData(\"dx1EFlAcH\"),RWOdKUzwp=getFromCurrentRouteData(\"RWOdKUzwp\"),P1ykkaxe5=getFromCurrentRouteData(\"P1ykkaxe5\"),bOw8WHTvm=getFromCurrentRouteData(\"bOw8WHTvm\"),bOylYfbVS=getFromCurrentRouteData(\"bOylYfbVS\"),J10xzEPS_=getFromCurrentRouteData(\"J10xzEPS_\"),klLSi6TLG=getFromCurrentRouteData(\"klLSi6TLG\"),pDl0GAcOA=getFromCurrentRouteData(\"pDl0GAcOA\"),hFCPK3mmm=getFromCurrentRouteData(\"hFCPK3mmm\"),b8BVnNLKy=getFromCurrentRouteData(\"b8BVnNLKy\"),IbBetu3ba=getFromCurrentRouteData(\"IbBetu3ba\"),f7Xzvy6cx=getFromCurrentRouteData(\"f7Xzvy6cx\"),itJO9TUvY=getFromCurrentRouteData(\"itJO9TUvY\"),ivR7Vz4tD,McfRHmK9i=getFromCurrentRouteData(\"McfRHmK9i\"),ykjven_Of=getFromCurrentRouteData(\"ykjven_Of\"),hMGo0shB1=getFromCurrentRouteData(\"hMGo0shB1\"),a3mLBU1TN=getFromCurrentRouteData(\"a3mLBU1TN\"),RxE56SWYX=getFromCurrentRouteData(\"RxE56SWYX\"),W2zUEO3GV=getFromCurrentRouteData(\"W2zUEO3GV\"),uIYNSJBAQ=getFromCurrentRouteData(\"uIYNSJBAQ\"),YGtWsnSKu=getFromCurrentRouteData(\"YGtWsnSKu\"),GboNJY_QYREZ9KgN_p,bOw8WHTvmREZ9KgN_p,exC0Ug15GREZ9KgN_p,ZnlE7Dum7REZ9KgN_p,jThh8qXPMREZ9KgN_p,idREZ9KgN_p,...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-0GvLX`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-0GvLX`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTapzn6atv=overlay=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const visible=isSet(dx1EFlAcH);const router=useRouter();const visible1=isSet(klLSi6TLG);const visible2=negate(b8BVnNLKy);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"cf5lEbGl0\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2hs794\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dnhyrp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RVGGyj3eX:{variant:\"f3sTfHlF_\"}},children:/*#__PURE__*/_jsx(NavbarDrillIn,{height:\"100%\",id:\"NLQ652rND\",layoutId:\"NLQ652rND\",style:{width:\"100%\"},variant:\"Q2u12mehZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e66fij\",\"data-framer-name\":\"Section 1 - About Project\",name:\"Section 1 - About Project\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e0r9dw\",\"data-framer-name\":\"Intro\",name:\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zicqc3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{\"data-framer-appear-id\":\"1c3kh47\",animate:optimizeAppear(\"animate\",\"1c3kh47\",animation1,\"xp0rw9\"),initial:optimizeAppear(\"initial\",\"1c3kh47\",animation2,\"xp0rw9\")},RVGGyj3eX:{\"data-framer-appear-id\":\"19ob2y\",animate:optimizeAppear(\"animate\",\"19ob2y\",animation1,\"1iekt5x\"),initial:optimizeAppear(\"initial\",\"19ob2y\",animation2,\"1iekt5x\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1czrmtf\",animation1,\"2hs794\"),className:\"framer-1czrmtf\",\"data-framer-appear-id\":\"1czrmtf\",exit:animation,initial:optimizeAppear(\"initial\",\"1czrmtf\",animation2,\"2hs794\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4q07l1\",\"data-styles-preset\":\"kYvud9gwo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Bilt Rewards Website\"})}),className:\"framer-1yzuguw\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",text:jThh8qXPM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e34pu6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ti0vl\",\"data-framer-name\":\"Badge\",name:\"Badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lf1tzn\",\"data-styles-preset\":\"kcPv8jkGl\",style:{\"--framer-text-color\":\"var(--token-bbec02ec-348a-49e3-95a5-06651d4bb3d9, rgb(0, 0, 0))\"},children:\"Web\"})}),className:\"framer-u861nn\",\"data-framer-name\":\"Mobile app desig\",fonts:[\"Inter\"],name:\"Mobile app desig\",text:ZnlE7Dum7,verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:dx1EFlAcH,implicitPathVariables:undefined},{href:dx1EFlAcH,implicitPathVariables:undefined},{href:dx1EFlAcH,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-103k3js-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{uqNQXp9i4:resolvedLinks[1]},RVGGyj3eX:{uqNQXp9i4:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Badge,{fT9QOcTjw:RWOdKUzwp,height:\"100%\",id:\"Ucfr7Ul0G\",layoutId:\"Ucfr7Ul0G\",uqNQXp9i4:resolvedLinks[0],width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{\"data-framer-appear-id\":\"1am0tg8\",animate:optimizeAppear(\"animate\",\"1am0tg8\",animation1,\"xp0rw9\"),initial:optimizeAppear(\"initial\",\"1am0tg8\",animation2,\"xp0rw9\")},RVGGyj3eX:{\"data-framer-appear-id\":\"1omw8up\",animate:optimizeAppear(\"animate\",\"1omw8up\",animation1,\"1iekt5x\"),initial:optimizeAppear(\"initial\",\"1omw8up\",animation2,\"1iekt5x\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"ifjdo4\",animation1,\"2hs794\"),className:\"framer-ifjdo4\",\"data-framer-appear-id\":\"ifjdo4\",exit:animation,initial:optimizeAppear(\"initial\",\"ifjdo4\",animation2,\"2hs794\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:P1ykkaxe5,className:\"framer-11gs17k\",\"data-framer-name\":\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",fonts:[\"Inter\"],name:\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",p:\"framer-styles-preset-16d66u2\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0hpd0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3w63db-container\",children:/*#__PURE__*/_jsx(WorkDetails,{copy:bOw8WHTvm,height:\"100%\",id:\"ILgltM2PI\",layoutId:\"ILgltM2PI\",style:{width:\"100%\"},title:\"Client\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ew93i3-container\",children:/*#__PURE__*/_jsx(WorkDetails,{copy:bOylYfbVS,height:\"100%\",id:\"xgODmUXlN\",layoutId:\"xgODmUXlN\",style:{width:\"100%\"},title:\"Role\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-po40hv-container\",children:/*#__PURE__*/_jsx(WorkDetails,{copy:J10xzEPS_,height:\"100%\",id:\"D1kDbnfd0\",layoutId:\"D1kDbnfd0\",style:{width:\"100%\"},title:\"Year\",width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1on72wy-container\",children:/*#__PURE__*/_jsx(WorkDetails,{copy:pDl0GAcOA,height:\"100%\",id:\"N1rX6XAsd\",layoutId:\"N1rX6XAsd\",style:{width:\"100%\"},title:klLSi6TLG,width:\"100%\"})})})]})]})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hg9lp0\",\"data-framer-name\":\"Content 1\",name:\"Content 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hvelw9\",\"data-framer-name\":\"Text Container\",name:\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:hFCPK3mmm,className:\"framer-111e99o\",\"data-framer-name\":\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",fonts:[\"Inter\"],name:\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-12lj5ox\",p:\"framer-styles-preset-16d66u2\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-boq7hl\",\"data-framer-name\":\"Sub Images\",name:\"Sub Images\",children:[visible2&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 960px) - 160px)\",...toResponsiveImage(IbBetu3ba)}},RVGGyj3eX:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 960px) - 40px)\",...toResponsiveImage(IbBetu3ba)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"472px\",...toResponsiveImage(IbBetu3ba)},className:\"framer-18uz144\",\"data-framer-name\":\"Sub Image 1\",id:\"18uz144\",name:\"Sub Image 1\",onTap:onTap42m929(overlay),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1a71m9o\",\"data-framer-portal-id\":\"18uz144\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"NwbnQ3dpl\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(IbBetu3ba)},className:\"framer-1n9oj0n\",\"data-framer-name\":\"Sub Image 1\",\"data-framer-portal-id\":\"18uz144\",name:\"Sub Image 1\",onTap:onTapzn6atv(overlay)})]}),document.querySelector(\"#overlay\"))})})})})})}),visible2&&/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 160px)\",...toResponsiveImage(f7Xzvy6cx)}},RVGGyj3eX:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 960px) - 40px)\",...toResponsiveImage(f7Xzvy6cx)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"472px\",...toResponsiveImage(f7Xzvy6cx)},className:\"framer-fj8za4\",\"data-framer-name\":\"Sub Image 2\",id:\"fj8za4\",name:\"Sub Image 2\",onTap:onTap42m929(overlay1),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-151q89i\",\"data-framer-portal-id\":\"fj8za4\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"Vh80hc0Ac\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(f7Xzvy6cx)},className:\"framer-1q1pxun\",\"data-framer-name\":\"Sub Image 1\",\"data-framer-portal-id\":\"fj8za4\",name:\"Sub Image 1\",onTap:onTapzn6atv(overlay1)})]}),document.querySelector(\"#overlay\"))})})})})})}),b8BVnNLKy&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-104f6dw-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,canvasPlay:false,controls:false,height:\"100%\",id:\"YqI9c1Peh\",isMixedBorderRadius:false,layoutId:\"YqI9c1Peh\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:ivR7Vz4tD,srcType:\"URL\",srcUrl:itJO9TUvY,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p6qnxp\",\"data-framer-name\":\"Content 3\",name:\"Content 3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ac6qf2\",\"data-framer-name\":\"Sub Images\",name:\"Sub Images\",children:[visible2&&/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 160px)\",...toResponsiveImage(McfRHmK9i)}},RVGGyj3eX:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 40px)\",...toResponsiveImage(McfRHmK9i)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"472px\",...toResponsiveImage(McfRHmK9i)},className:\"framer-8opkhq\",\"data-framer-name\":\"Sub Image 1\",id:\"8opkhq\",name:\"Sub Image 1\",onTap:onTap42m929(overlay2),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-furp2t\",\"data-framer-portal-id\":\"8opkhq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"htliUFx_G\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(McfRHmK9i)},className:\"framer-1i96mfz\",\"data-framer-name\":\"Sub Image 1\",\"data-framer-portal-id\":\"8opkhq\",name:\"Sub Image 1\",onTap:onTapzn6atv(overlay2)})]}),document.querySelector(\"#overlay\"))})})})})})}),visible2&&/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 160px)\",...toResponsiveImage(ykjven_Of)}},RVGGyj3eX:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 40px)\",...toResponsiveImage(ykjven_Of)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"472px\",...toResponsiveImage(ykjven_Of)},className:\"framer-ts66zw\",\"data-framer-name\":\"Sub Image 2\",id:\"ts66zw\",name:\"Sub Image 2\",onTap:onTap42m929(overlay3),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-llm9ss\",\"data-framer-portal-id\":\"ts66zw\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"cwC0RkQvW\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(ykjven_Of)},className:\"framer-1be0t0h\",\"data-framer-name\":\"Sub Image 1\",\"data-framer-portal-id\":\"ts66zw\",name:\"Sub Image 1\",onTap:onTapzn6atv(overlay3)})]}),document.querySelector(\"#overlay\"))})})})})})}),b8BVnNLKy&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-134m9z-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,canvasPlay:false,controls:false,height:\"100%\",id:\"HTjctWB2B\",isMixedBorderRadius:false,layoutId:\"HTjctWB2B\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:hMGo0shB1,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bfkvcy\",\"data-framer-name\":\"Text Container\",name:\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:a3mLBU1TN,className:\"framer-1dm3t1n\",\"data-framer-name\":\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",fonts:[\"Inter\"],name:\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-12lj5ox\",p:\"framer-styles-preset-16d66u2\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wkvuo9\",\"data-framer-name\":\"Content 2\",name:\"Content 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-159au5u\",\"data-framer-name\":\"Text Container\",name:\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:RxE56SWYX,className:\"framer-42ca6r\",\"data-framer-name\":\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",fonts:[\"Inter\"],name:\"\u201CLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-12lj5ox\",p:\"framer-styles-preset-16d66u2\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pn55ec\",\"data-framer-name\":\"Sub Images\",name:\"Sub Images\",children:[visible2&&/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 160px)\",...toResponsiveImage(W2zUEO3GV)}},RVGGyj3eX:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 40px)\",...toResponsiveImage(W2zUEO3GV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"472px\",...toResponsiveImage(W2zUEO3GV)},className:\"framer-1vnqtck\",\"data-framer-name\":\"Sub Image 1\",id:\"1vnqtck\",name:\"Sub Image 1\",onTap:onTap42m929(overlay4),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-ueycsn\",\"data-framer-portal-id\":\"1vnqtck\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"kuuoaFrEG\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(W2zUEO3GV)},className:\"framer-1wdvi4g\",\"data-framer-name\":\"Sub Image 1\",\"data-framer-portal-id\":\"1vnqtck\",name:\"Sub Image 1\",onTap:onTapzn6atv(overlay4)})]}),document.querySelector(\"#overlay\"))})})})})})}),visible2&&/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 160px)\",...toResponsiveImage(uIYNSJBAQ)}},RVGGyj3eX:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(100vw, 960px) - 40px)\",...toResponsiveImage(uIYNSJBAQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"472px\",...toResponsiveImage(uIYNSJBAQ)},className:\"framer-jn6t6x\",\"data-framer-name\":\"Sub Image 2\",id:\"jn6t6x\",name:\"Sub Image 2\",onTap:onTap42m929(overlay5),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1keesvb\",\"data-framer-portal-id\":\"jn6t6x\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"ioFcTGslI\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(uIYNSJBAQ)},className:\"framer-4pr1rn\",\"data-framer-name\":\"Sub Image 1\",\"data-framer-portal-id\":\"jn6t6x\",name:\"Sub Image 1\",onTap:onTapzn6atv(overlay5)})]}),document.querySelector(\"#overlay\"))})})})})})}),b8BVnNLKy&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6w2gt2-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,canvasPlay:false,controls:false,height:\"100%\",id:\"qcIJpsloT\",isMixedBorderRadius:false,layoutId:\"qcIJpsloT\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:YGtWsnSKu,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-779ka4\",\"data-framer-name\":\"Section  3 - Recent Works\",name:\"Section  3 - Recent Works\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3r9nuz\",\"data-styles-preset\":\"TaYXQgbWs\",children:\"More works\"})}),className:\"framer-7vwhdc\",\"data-framer-name\":\"Sub heading medium\",fonts:[\"Inter\"],name:\"Sub heading medium\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-rosxqh\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Works,type:\"Collection\"},select:[{name:\"GboNJY_QY\",type:\"Identifier\"},{name:\"bOw8WHTvm\",type:\"Identifier\"},{name:\"exC0Ug15G\",type:\"Identifier\"},{name:\"ZnlE7Dum7\",type:\"Identifier\"},{name:\"jThh8qXPM\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{name:\"SyIWvxY1R\",type:\"Identifier\"}},children:collection=>collection.map(({GboNJY_QY:GboNJY_QYREZ9KgN_p,bOw8WHTvm:bOw8WHTvmREZ9KgN_p,exC0Ug15G:exC0Ug15GREZ9KgN_p,ZnlE7Dum7:ZnlE7Dum7REZ9KgN_p,jThh8qXPM:jThh8qXPMREZ9KgN_p,id:idREZ9KgN_p},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`REZ9KgN_p-${idREZ9KgN_p}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{GboNJY_QY:GboNJY_QYREZ9KgN_p},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{GboNJY_QY:GboNJY_QYREZ9KgN_p},webPageId:\"cRf69tzJG\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-ik1ojl framer-14kp35u\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19y9ji5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RVGGyj3eX:{variant:\"ResqT4B35\"}},children:/*#__PURE__*/_jsx(WorkCard,{height:\"100%\",id:\"M31nYw_mu\",layoutId:\"M31nYw_mu\",OJneDPl6f:ZnlE7Dum7REZ9KgN_p,qdoud29EX:toResponsiveImage(exC0Ug15GREZ9KgN_p),rJSXzmz1i:jThh8qXPMREZ9KgN_p,style:{height:\"100%\",width:\"100%\"},variant:\"ecVlyCDK1\",width:\"100%\",XMmOsFSI3:bOw8WHTvmREZ9KgN_p})})})})})})})},idREZ9KgN_p);})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4fy3d6-container\",\"data-framer-name\":\"Section 5 - Footer\",name:\"Section 5 - Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aRLIiWu7N:{variant:\"HHHO19X9n\"},RVGGyj3eX:{variant:\"MLEwzbzBF\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BQ664RAiU\",layoutId:\"BQ664RAiU\",name:\"Section 5 - Footer\",style:{width:\"100%\"},variant:\"N73pPCqcW\",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-0GvLX { background: var(--token-a6d06f43-3929-4a3e-a65f-291be55bf81a, rgb(255, 255, 255)); }`,\".framer-0GvLX.framer-14kp35u, .framer-0GvLX .framer-14kp35u { display: block; }\",\".framer-0GvLX.framer-2hs794 { align-content: center; align-items: center; background-color: var(--token-a6d06f43-3929-4a3e-a65f-291be55bf81a, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-0GvLX .framer-1dnhyrp-container, .framer-0GvLX .framer-3w63db-container, .framer-0GvLX .framer-ew93i3-container, .framer-0GvLX .framer-po40hv-container, .framer-0GvLX .framer-1on72wy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-0GvLX .framer-1e66fij { 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; max-width: 960px; padding: 0px; position: relative; width: 100%; }\",\".framer-0GvLX .framer-e0r9dw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 960px; }\",\".framer-0GvLX .framer-zicqc3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-0GvLX .framer-1czrmtf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0GvLX .framer-1yzuguw, .framer-0GvLX .framer-111e99o, .framer-0GvLX .framer-1dm3t1n, .framer-0GvLX .framer-42ca6r { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0GvLX .framer-1e34pu6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0GvLX .framer-2ti0vl { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: var(--token-e1eadf3e-b40f-4a65-af80-c91f7090c8d8, rgba(0, 0, 0, 0.2)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 2px 8px 2px 8px; position: relative; width: min-content; }\",\".framer-0GvLX .framer-u861nn, .framer-0GvLX .framer-7vwhdc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0GvLX .framer-103k3js-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0GvLX .framer-ifjdo4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0GvLX .framer-11gs17k { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0GvLX .framer-n0hpd0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0GvLX .framer-1hg9lp0, .framer-0GvLX .framer-p6qnxp, .framer-0GvLX .framer-wkvuo9 { 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: 0px; position: relative; width: 100%; }\",\".framer-0GvLX .framer-hvelw9, .framer-0GvLX .framer-1bfkvcy, .framer-0GvLX .framer-159au5u { align-content: center; align-items: center; background-color: var(--token-65f1084b-bb90-468a-8b8e-fe384c0d7676, rgba(0, 0, 0, 0.1)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 450px; justify-content: flex-start; overflow: hidden; padding: 20px; position: sticky; top: 60px; width: 472px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0GvLX .framer-boq7hl, .framer-0GvLX .framer-ac6qf2, .framer-0GvLX .framer-1pn55ec { 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: 472px; }\",\".framer-0GvLX .framer-18uz144, .framer-0GvLX .framer-fj8za4, .framer-0GvLX .framer-8opkhq, .framer-0GvLX .framer-ts66zw, .framer-0GvLX .framer-1vnqtck, .framer-0GvLX .framer-jn6t6x { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; flex: none; height: 450px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0GvLX .framer-1a71m9o, .framer-0GvLX .framer-151q89i, .framer-0GvLX .framer-furp2t, .framer-0GvLX .framer-llm9ss, .framer-0GvLX .framer-ueycsn, .framer-0GvLX .framer-1keesvb { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-0GvLX .framer-1n9oj0n, .framer-0GvLX .framer-1q1pxun, .framer-0GvLX .framer-1i96mfz, .framer-0GvLX .framer-1be0t0h, .framer-0GvLX .framer-1wdvi4g, .framer-0GvLX .framer-4pr1rn { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; flex: none; height: 90%; left: calc(50.00000000000002% - 70% / 2); overflow: hidden; position: fixed; top: calc(50.00000000000002% - 90% / 2); width: 70%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0GvLX .framer-104f6dw-container, .framer-0GvLX .framer-6w2gt2-container { flex: none; height: 450px; position: relative; width: 100%; }\",\".framer-0GvLX .framer-134m9z-container { flex: none; height: 900px; position: relative; width: 100%; }\",\".framer-0GvLX .framer-779ka4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0GvLX .framer-rosxqh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 450px; justify-content: flex-start; padding: 0px; position: relative; width: 960px; }\",\".framer-0GvLX .framer-ik1ojl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 450px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 472px; }\",\".framer-0GvLX .framer-19y9ji5-container { flex: none; height: 450px; position: relative; width: 472px; }\",\".framer-0GvLX .framer-4fy3d6-container { flex: none; height: auto; position: relative; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0GvLX.framer-2hs794, .framer-0GvLX .framer-1e66fij, .framer-0GvLX .framer-e0r9dw, .framer-0GvLX .framer-zicqc3, .framer-0GvLX .framer-1czrmtf, .framer-0GvLX .framer-1e34pu6, .framer-0GvLX .framer-2ti0vl, .framer-0GvLX .framer-ifjdo4, .framer-0GvLX .framer-n0hpd0, .framer-0GvLX .framer-1hg9lp0, .framer-0GvLX .framer-hvelw9, .framer-0GvLX .framer-boq7hl, .framer-0GvLX .framer-p6qnxp, .framer-0GvLX .framer-ac6qf2, .framer-0GvLX .framer-1bfkvcy, .framer-0GvLX .framer-wkvuo9, .framer-0GvLX .framer-159au5u, .framer-0GvLX .framer-1pn55ec, .framer-0GvLX .framer-779ka4, .framer-0GvLX .framer-rosxqh, .framer-0GvLX .framer-ik1ojl { gap: 0px; } .framer-0GvLX.framer-2hs794 > *, .framer-0GvLX .framer-zicqc3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0GvLX.framer-2hs794 > :first-child, .framer-0GvLX .framer-1e66fij > :first-child, .framer-0GvLX .framer-e0r9dw > :first-child, .framer-0GvLX .framer-zicqc3 > :first-child, .framer-0GvLX .framer-1czrmtf > :first-child, .framer-0GvLX .framer-n0hpd0 > :first-child, .framer-0GvLX .framer-hvelw9 > :first-child, .framer-0GvLX .framer-boq7hl > :first-child, .framer-0GvLX .framer-ac6qf2 > :first-child, .framer-0GvLX .framer-1bfkvcy > :first-child, .framer-0GvLX .framer-159au5u > :first-child, .framer-0GvLX .framer-1pn55ec > :first-child, .framer-0GvLX .framer-779ka4 > :first-child { margin-top: 0px; } .framer-0GvLX.framer-2hs794 > :last-child, .framer-0GvLX .framer-1e66fij > :last-child, .framer-0GvLX .framer-e0r9dw > :last-child, .framer-0GvLX .framer-zicqc3 > :last-child, .framer-0GvLX .framer-1czrmtf > :last-child, .framer-0GvLX .framer-n0hpd0 > :last-child, .framer-0GvLX .framer-hvelw9 > :last-child, .framer-0GvLX .framer-boq7hl > :last-child, .framer-0GvLX .framer-ac6qf2 > :last-child, .framer-0GvLX .framer-1bfkvcy > :last-child, .framer-0GvLX .framer-159au5u > :last-child, .framer-0GvLX .framer-1pn55ec > :last-child, .framer-0GvLX .framer-779ka4 > :last-child { margin-bottom: 0px; } .framer-0GvLX .framer-1e66fij > *, .framer-0GvLX .framer-boq7hl > *, .framer-0GvLX .framer-ac6qf2 > *, .framer-0GvLX .framer-1pn55ec > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-0GvLX .framer-e0r9dw > *, .framer-0GvLX .framer-1czrmtf > *, .framer-0GvLX .framer-779ka4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0GvLX .framer-1e34pu6 > *, .framer-0GvLX .framer-ik1ojl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0GvLX .framer-1e34pu6 > :first-child, .framer-0GvLX .framer-2ti0vl > :first-child, .framer-0GvLX .framer-ifjdo4 > :first-child, .framer-0GvLX .framer-1hg9lp0 > :first-child, .framer-0GvLX .framer-p6qnxp > :first-child, .framer-0GvLX .framer-wkvuo9 > :first-child, .framer-0GvLX .framer-rosxqh > :first-child, .framer-0GvLX .framer-ik1ojl > :first-child { margin-left: 0px; } .framer-0GvLX .framer-1e34pu6 > :last-child, .framer-0GvLX .framer-2ti0vl > :last-child, .framer-0GvLX .framer-ifjdo4 > :last-child, .framer-0GvLX .framer-1hg9lp0 > :last-child, .framer-0GvLX .framer-p6qnxp > :last-child, .framer-0GvLX .framer-wkvuo9 > :last-child, .framer-0GvLX .framer-rosxqh > :last-child, .framer-0GvLX .framer-ik1ojl > :last-child { margin-right: 0px; } .framer-0GvLX .framer-2ti0vl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0GvLX .framer-ifjdo4 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-0GvLX .framer-n0hpd0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0GvLX .framer-1hg9lp0 > *, .framer-0GvLX .framer-p6qnxp > *, .framer-0GvLX .framer-wkvuo9 > *, .framer-0GvLX .framer-rosxqh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-0GvLX .framer-hvelw9 > *, .framer-0GvLX .framer-1bfkvcy > *, .framer-0GvLX .framer-159au5u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 1200px) { .framer-0GvLX .hidden-2hs794 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-0GvLX .hidden-xp0rw9 { display: none !important; } .${metadata.bodyClassName}-framer-0GvLX { background: var(--token-a6d06f43-3929-4a3e-a65f-291be55bf81a, rgb(255, 255, 255)); } .framer-0GvLX.framer-2hs794, .framer-0GvLX .framer-4fy3d6-container { width: 810px; } .framer-0GvLX .framer-e0r9dw { padding: 0px 80px 60px 80px; width: 100%; } .framer-0GvLX .framer-zicqc3, .framer-0GvLX .framer-ik1ojl { width: 100%; } .framer-0GvLX .framer-ifjdo4 { flex-direction: column; } .framer-0GvLX .framer-11gs17k, .framer-0GvLX .framer-n0hpd0 { flex: none; width: 100%; } .framer-0GvLX .framer-1hg9lp0, .framer-0GvLX .framer-p6qnxp, .framer-0GvLX .framer-wkvuo9 { flex-direction: column; padding: 0px 80px 0px 80px; } .framer-0GvLX .framer-hvelw9, .framer-0GvLX .framer-1bfkvcy, .framer-0GvLX .framer-159au5u { order: 1; position: relative; top: unset; width: 100%; } .framer-0GvLX .framer-boq7hl, .framer-0GvLX .framer-ac6qf2, .framer-0GvLX .framer-1pn55ec { order: 0; width: 100%; } .framer-0GvLX .framer-18uz144, .framer-0GvLX .framer-1vnqtck { height: 500px; order: 1; } .framer-0GvLX .framer-1n9oj0n, .framer-0GvLX .framer-1q1pxun, .framer-0GvLX .framer-1i96mfz, .framer-0GvLX .framer-1be0t0h, .framer-0GvLX .framer-1wdvi4g, .framer-0GvLX .framer-4pr1rn { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 800px; left: calc(50.00000000000002% - 100% / 2); top: calc(50.00000000000002% - 800px / 2); width: 100%; } .framer-0GvLX .framer-fj8za4, .framer-0GvLX .framer-jn6t6x { height: 500px; order: 2; } .framer-0GvLX .framer-104f6dw-container, .framer-0GvLX .framer-6w2gt2-container { height: 500px; order: 0; } .framer-0GvLX .framer-8opkhq, .framer-0GvLX .framer-ts66zw, .framer-0GvLX .framer-134m9z-container { height: 500px; } .framer-0GvLX .framer-779ka4 { max-width: 960px; padding: 0px 80px 0px 80px; width: 100%; } .framer-0GvLX .framer-rosxqh { flex-direction: column; height: 920px; width: 100%; } .framer-0GvLX .framer-19y9ji5-container { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0GvLX .framer-ifjdo4, .framer-0GvLX .framer-1hg9lp0, .framer-0GvLX .framer-p6qnxp, .framer-0GvLX .framer-wkvuo9, .framer-0GvLX .framer-rosxqh { gap: 0px; } .framer-0GvLX .framer-ifjdo4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0GvLX .framer-ifjdo4 > :first-child, .framer-0GvLX .framer-1hg9lp0 > :first-child, .framer-0GvLX .framer-p6qnxp > :first-child, .framer-0GvLX .framer-wkvuo9 > :first-child, .framer-0GvLX .framer-rosxqh > :first-child { margin-top: 0px; } .framer-0GvLX .framer-ifjdo4 > :last-child, .framer-0GvLX .framer-1hg9lp0 > :last-child, .framer-0GvLX .framer-p6qnxp > :last-child, .framer-0GvLX .framer-wkvuo9 > :last-child, .framer-0GvLX .framer-rosxqh > :last-child { margin-bottom: 0px; } .framer-0GvLX .framer-1hg9lp0 > *, .framer-0GvLX .framer-p6qnxp > *, .framer-0GvLX .framer-wkvuo9 > *, .framer-0GvLX .framer-rosxqh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,`@media (max-width: 809px) { .framer-0GvLX .hidden-1iekt5x { display: none !important; } .${metadata.bodyClassName}-framer-0GvLX { background: var(--token-a6d06f43-3929-4a3e-a65f-291be55bf81a, rgb(255, 255, 255)); } .framer-0GvLX.framer-2hs794 { width: 390px; } .framer-0GvLX .framer-e0r9dw { padding: 0px 20px 40px 20px; width: 100%; } .framer-0GvLX .framer-zicqc3 { width: 100%; } .framer-0GvLX .framer-1czrmtf { gap: 10px; } .framer-0GvLX .framer-ifjdo4 { flex-direction: column; } .framer-0GvLX .framer-11gs17k, .framer-0GvLX .framer-n0hpd0 { flex: none; width: 100%; } .framer-0GvLX .framer-1hg9lp0, .framer-0GvLX .framer-p6qnxp, .framer-0GvLX .framer-wkvuo9 { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-0GvLX .framer-hvelw9, .framer-0GvLX .framer-1bfkvcy, .framer-0GvLX .framer-159au5u { height: auto; min-height: 300px; order: 1; position: relative; top: unset; width: 100%; } .framer-0GvLX .framer-boq7hl, .framer-0GvLX .framer-ac6qf2, .framer-0GvLX .framer-1pn55ec { order: 0; width: 100%; } .framer-0GvLX .framer-18uz144, .framer-0GvLX .framer-fj8za4, .framer-0GvLX .framer-104f6dw-container, .framer-0GvLX .framer-8opkhq, .framer-0GvLX .framer-ts66zw, .framer-0GvLX .framer-134m9z-container, .framer-0GvLX .framer-1vnqtck, .framer-0GvLX .framer-jn6t6x, .framer-0GvLX .framer-6w2gt2-container { height: 350px; } .framer-0GvLX .framer-1n9oj0n, .framer-0GvLX .framer-1q1pxun, .framer-0GvLX .framer-1i96mfz, .framer-0GvLX .framer-1be0t0h, .framer-0GvLX .framer-1wdvi4g, .framer-0GvLX .framer-4pr1rn { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 400px; left: calc(50.00000000000002% - 100% / 2); top: calc(50.00000000000002% - 400px / 2); width: 100%; } .framer-0GvLX .framer-779ka4 { padding: 0px 20px 0px 20px; width: 100%; } .framer-0GvLX .framer-rosxqh { flex-direction: column; height: 690px; width: 100%; } .framer-0GvLX .framer-ik1ojl { height: min-content; width: 100%; } .framer-0GvLX .framer-19y9ji5-container { flex: 1 0 0px; height: 334px; width: 1px; } .framer-0GvLX .framer-4fy3d6-container { width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0GvLX .framer-1czrmtf, .framer-0GvLX .framer-ifjdo4, .framer-0GvLX .framer-1hg9lp0, .framer-0GvLX .framer-p6qnxp, .framer-0GvLX .framer-wkvuo9, .framer-0GvLX .framer-rosxqh { gap: 0px; } .framer-0GvLX .framer-1czrmtf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0GvLX .framer-1czrmtf > :first-child, .framer-0GvLX .framer-ifjdo4 > :first-child, .framer-0GvLX .framer-1hg9lp0 > :first-child, .framer-0GvLX .framer-p6qnxp > :first-child, .framer-0GvLX .framer-wkvuo9 > :first-child, .framer-0GvLX .framer-rosxqh > :first-child { margin-top: 0px; } .framer-0GvLX .framer-1czrmtf > :last-child, .framer-0GvLX .framer-ifjdo4 > :last-child, .framer-0GvLX .framer-1hg9lp0 > :last-child, .framer-0GvLX .framer-p6qnxp > :last-child, .framer-0GvLX .framer-wkvuo9 > :last-child, .framer-0GvLX .framer-rosxqh > :last-child { margin-bottom: 0px; } .framer-0GvLX .framer-ifjdo4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0GvLX .framer-1hg9lp0 > *, .framer-0GvLX .framer-p6qnxp > *, .framer-0GvLX .framer-wkvuo9 > *, .framer-0GvLX .framer-rosxqh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3123\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aRLIiWu7N\":{\"layout\":[\"fixed\",\"auto\"]},\"RVGGyj3eX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramercRf69tzJG=withCSS(Component,css,\"framer-0GvLX\");export default FramercRf69tzJG;FramercRf69tzJG.displayName=\"Work\";FramercRf69tzJG.defaultProps={height:3123,width:1200};addFonts(FramercRf69tzJG,[{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\"}]},...NavbarDrillInFonts,...BadgeFonts,...WorkDetailsFonts,...VideoFonts,...WorkCardFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercRf69tzJG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"3123\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aRLIiWu7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RVGGyj3eX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "I0UGk_2DE", "FyFGNmg8t", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "css", "FramerPAJDgtDyD", "withCSS", "PAJDgtDyD_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "YRuWA_apQ", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10dm9wz", "args", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Link", "SVG", "css", "FramerDXnJCV2Je", "withCSS", "DXnJCV2Je_default", "addPropertyControls", "ControlType", "addFonts", "Icon24x24ArrowLeftFonts", "getFonts", "DXnJCV2Je_default", "MenuFonts", "UcT4Q8pX7_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap14rsnk1", "args", "tapsfssqk", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "css", "FramerSNU0yzm8_", "withCSS", "SNU0yzm8_default", "addPropertyControls", "ControlType", "addFonts", "v", "getFonts", "Icon", "g", "x", "j", "w", "e", "r", "a", "T", "q", "re", "MotionConfigContext", "i", "se", "p", "E", "t", "o", "N", "Z", "useLocaleInfo", "n", "u", "v", "k", "L", "V", "P", "R", "U", "B", "Q", "C", "useVariantState", "x", "g", "D", "I", "pe", "O", "ae", "S", "className", "LayoutGroup", "motion", "cx", "Link", "RichText", "Icon", "css", "withCSS", "Swv_mGqjY_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbarDrillInFonts", "getFonts", "SNU0yzm8_default", "BadgeFonts", "Swv_mGqjY_default", "WorkDetailsFonts", "PAJDgtDyD_default", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "WorkCardFonts", "aVhXWzCBB_default", "FooterFonts", "JCXRU6SRd_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "isSet", "value", "animation3", "transition2", "animation4", "negate", "toResponsiveImage", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "OOVhxQ5_8_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "jThh8qXPM", "ZnlE7Dum7", "dx1EFlAcH", "RWOdKUzwp", "P1ykkaxe5", "bOw8WHTvm", "bOylYfbVS", "J10xzEPS_", "klLSi6TLG", "pDl0GAcOA", "hFCPK3mmm", "b8BVnNLKy", "IbBetu3ba", "f7Xzvy6cx", "itJO9TUvY", "ivR7Vz4tD", "McfRHmK9i", "ykjven_Of", "hMGo0shB1", "a3mLBU1TN", "RxE56SWYX", "W2zUEO3GV", "uIYNSJBAQ", "YGtWsnSKu", "GboNJY_QYREZ9KgN_p", "bOw8WHTvmREZ9KgN_p", "exC0Ug15GREZ9KgN_p", "ZnlE7Dum7REZ9KgN_p", "jThh8qXPMREZ9KgN_p", "idREZ9KgN_p", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap42m929", "overlay", "args", "onTapzn6atv", "ref1", "pe", "router", "useRouter", "visible1", "visible2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides", "SNU0yzm8_default", "optimizeAppear", "RichText", "x", "ResolveLinks", "resolvedLinks", "Swv_mGqjY_default", "PAJDgtDyD_default", "MotionDivWithFX", "l", "Image2", "AnimatePresence", "Ga", "overlay1", "Video", "overlay2", "overlay3", "overlay4", "overlay5", "collection", "i", "PathVariablesContext", "Link", "aVhXWzCBB_default", "JCXRU6SRd_default", "css", "FramercRf69tzJG", "withCSS", "cRf69tzJG_default", "addFonts", "NavbarDrillInFonts", "BadgeFonts", "WorkDetailsFonts", "VideoFonts", "WorkCardFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
