{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/p3zBEnsjPXzAyNlnv6S8/h7vckyI8GKpubhLYwMjX/EqphU1N3f.js", "ssg:https://framerusercontent.com/modules/xkxGeGRIQNfkxuV2XAw8/cNtAQKsR443SFog38Frd/dPJ3UoO_3.js", "ssg:https://framerusercontent.com/modules/YMmT8dWinKqP7bJynRzL/Ez2wfWFedECXutpvenf9/fkR7DrELt.js", "ssg:https://framerusercontent.com/modules/aM8JNV7hlc7TjijZwZO5/ddCRKLigsHm87Gpj3QzA/PxPxOELXy.js", "ssg:https://framerusercontent.com/modules/75VStQA7dLfzbwR7bZZT/kmhC7Yb1rXS5sEPlhtYI/sN6UsNGzE.js", "ssg:https://framerusercontent.com/modules/3ptrQ1AEOYZNiUSiGmqE/FTGBrUAWXGD1POpGcWQz/augiA20Il.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "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", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (ab6b6d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"zS7YjrONM\",\"N1Ck7RqqL\",\"ykpctwsCb\"];const serializationHash=\"framer-HWhS5\";const variantClassNames={N1Ck7RqqL:\"framer-v-4e8lpg\",ykpctwsCb:\"framer-v-b5kb54\",zS7YjrONM:\"framer-v-cxep85\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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 humanReadableVariantMap={Dektop:\"zS7YjrONM\",Mobile:\"ykpctwsCb\",Tablet:\"N1Ck7RqqL\"};const getProps=({heading,heading1,height,id,title,title1,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,DpKg_4RDt:(_ref=title!==null&&title!==void 0?title:props.DpKg_4RDt)!==null&&_ref!==void 0?_ref:true,rZlInkDBu:(_ref1=title1!==null&&title1!==void 0?title1:props.rZlInkDBu)!==null&&_ref1!==void 0?_ref1:\"Clients\",sQwz5OMsT:(_ref2=heading1!==null&&heading1!==void 0?heading1:props.sQwz5OMsT)!==null&&_ref2!==void 0?_ref2:\"Clients\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"zS7YjrONM\",ywbVTjRMA:(_ref4=heading!==null&&heading!==void 0?heading:props.ywbVTjRMA)!==null&&_ref4!==void 0?_ref4:true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DpKg_4RDt,rZlInkDBu,ywbVTjRMA,sQwz5OMsT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zS7YjrONM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-cxep85\",className,classNames),\"data-framer-name\":\"Dektop\",layoutDependency:layoutDependency,layoutId:\"zS7YjrONM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({N1Ck7RqqL:{\"data-framer-name\":\"Tablet\"},ykpctwsCb:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f9g22g\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"po0FSq9dm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z59f0q\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"kT3zBgOtY\",children:ywbVTjRMA&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Clients\"})}),className:\"framer-14rh0nh\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"ZCn_uSqdI\",style:{\"--extracted-a0htzi\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},text:sQwz5OMsT,verticalAlignment:\"top\",withExternalLayout:true})}),DpKg_4RDt&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Clients\"})}),className:\"framer-u34ozw\",\"data-framer-name\":\"Title\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Ce_2Xe14x\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},text:rZlInkDBu,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ykpctwsCb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Clients\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HWhS5.framer-1bnt9qn, .framer-HWhS5 .framer-1bnt9qn { display: block; }\",\".framer-HWhS5.framer-cxep85 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HWhS5 .framer-1f9g22g { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-HWhS5 .framer-z59f0q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HWhS5 .framer-14rh0nh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HWhS5 .framer-u34ozw { 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-HWhS5.framer-cxep85, .framer-HWhS5 .framer-1f9g22g, .framer-HWhS5 .framer-z59f0q { gap: 0px; } .framer-HWhS5.framer-cxep85 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HWhS5.framer-cxep85 > :first-child, .framer-HWhS5 .framer-1f9g22g > :first-child, .framer-HWhS5 .framer-z59f0q > :first-child { margin-top: 0px; } .framer-HWhS5.framer-cxep85 > :last-child, .framer-HWhS5 .framer-1f9g22g > :last-child, .framer-HWhS5 .framer-z59f0q > :last-child { margin-bottom: 0px; } .framer-HWhS5 .framer-1f9g22g > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-HWhS5 .framer-z59f0q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-HWhS5.framer-v-4e8lpg .framer-1f9g22g { align-self: unset; width: min-content; }\",\".framer-HWhS5.framer-v-4e8lpg .framer-u34ozw { white-space: pre; width: auto; }\",\".framer-HWhS5.framer-v-b5kb54.framer-cxep85 { width: 390px; }\",\".framer-HWhS5.framer-v-b5kb54 .framer-1f9g22g { align-self: unset; width: 100%; }\",\".framer-HWhS5.framer-v-b5kb54 .framer-z59f0q { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 110\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"N1Ck7RqqL\":{\"layout\":[\"auto\",\"auto\"]},\"ykpctwsCb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DpKg_4RDt\":\"title\",\"rZlInkDBu\":\"title1\",\"ywbVTjRMA\":\"heading\",\"sQwz5OMsT\":\"heading1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEqphU1N3f=withCSS(Component,css,\"framer-HWhS5\");export default FramerEqphU1N3f;FramerEqphU1N3f.displayName=\"Section Title Copy 3\";FramerEqphU1N3f.defaultProps={height:88,width:110};addPropertyControls(FramerEqphU1N3f,{variant:{options:[\"zS7YjrONM\",\"N1Ck7RqqL\",\"ykpctwsCb\"],optionTitles:[\"Dektop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},DpKg_4RDt:{defaultValue:true,title:\"Title\",type:ControlType.Boolean},rZlInkDBu:{defaultValue:\"Clients\",displayTextArea:false,placeholder:\"Clients\",title:\"Title\",type:ControlType.String},ywbVTjRMA:{defaultValue:true,title:\"Heading\",type:ControlType.Boolean},sQwz5OMsT:{defaultValue:\"Clients\",displayTextArea:true,placeholder:\"Clients\",title:\"Heading\",type:ControlType.String}});addFonts(FramerEqphU1N3f,[{explicitInter:true,fonts:[{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYASsJuXFGVOQ.woff2\",weight:\"700\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEASsJuXFGVOQ.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEqphU1N3f\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"110\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N1Ck7RqqL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ykpctwsCb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"DpKg_4RDt\\\":\\\"title\\\",\\\"rZlInkDBu\\\":\\\"title1\\\",\\\"ywbVTjRMA\\\":\\\"heading\\\",\\\"sQwz5OMsT\\\":\\\"heading1\\\"}\",\"framerIntrinsicHeight\":\"88\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EqphU1N3f.map", "// Generated by Framer (bc39543)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SectionTitleCopy3 from\"https://framerusercontent.com/modules/p3zBEnsjPXzAyNlnv6S8/h7vckyI8GKpubhLYwMjX/EqphU1N3f.js\";const SectionTitleCopy3Fonts=getFonts(SectionTitleCopy3);const cycleOrder=[\"NNuqrDPnf\",\"EDhg24U6F\",\"xT3nqlabB\"];const serializationHash=\"framer-2ZDvQ\";const variantClassNames={EDhg24U6F:\"framer-v-f9eu1f\",NNuqrDPnf:\"framer-v-1x7wslj\",xT3nqlabB:\"framer-v-bukp3r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"NNuqrDPnf\",Phone:\"xT3nqlabB\",Tablet:\"EDhg24U6F\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NNuqrDPnf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NNuqrDPnf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapvle6om=activeVariantCallback(async(...args)=>{setVariant(\"X8lMmnmbC\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1x7wslj\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NNuqrDPnf\",ref:refBinding,style:{...style},...addPropertyOverrides({EDhg24U6F:{\"data-framer-name\":\"Tablet\"},xT3nqlabB:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`max((${componentViewport?.width||\"100vw\"} - 95px) * 0.45 - 40px, 1px)`,y:(componentViewport?.y||0)+0,...addPropertyOverrides({EDhg24U6F:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+0+0)},xT3nqlabB:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2qmm00-container\",\"data-framer-name\":\"Clients Title\",layoutDependency:layoutDependency,layoutId:\"NzDafNcdK-container\",name:\"Clients Title\",nodeId:\"NzDafNcdK\",rendersWithMotion:true,scopeId:\"dPJ3UoO_3\",children:/*#__PURE__*/_jsx(SectionTitleCopy3,{DpKg_4RDt:true,height:\"100%\",id:\"NzDafNcdK\",layoutId:\"NzDafNcdK\",name:\"Clients Title\",rZlInkDBu:\"Empowering visionary clients to bring their digital dreams to life.\",sQwz5OMsT:\"Our Clients\",style:{width:\"100%\"},variant:\"zS7YjrONM\",width:\"100%\",ywbVTjRMA:true,...addPropertyOverrides({xT3nqlabB:{variant:\"ykpctwsCb\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k6fg0d\",layoutDependency:layoutDependency,layoutId:\"u0nGh6oF5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9vn2ly\",layoutDependency:layoutDependency,layoutId:\"XLp56sysX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yukhvb\",layoutDependency:layoutDependency,layoutId:\"lkk3V9yyY\",style:{backgroundColor:\"rgb(231, 29, 42)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+3.6667),pixelHeight:99,pixelWidth:311,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Ccw6l4MuOHdNolhT3L3mNKidM.png\"},className:\"framer-700nj7\",layoutDependency:layoutDependency,layoutId:\"EDIR8Eo1m\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+0+3.6667),pixelHeight:99,pixelWidth:311,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Ccw6l4MuOHdNolhT3L3mNKidM.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+3.0833),pixelHeight:99,pixelWidth:311,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Ccw6l4MuOHdNolhT3L3mNKidM.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18aqu7n\",layoutDependency:layoutDependency,layoutId:\"rjsFe2nQy\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+5),pixelHeight:136,pixelWidth:267,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jOeKDdjSohJQZAI9nqdBGwRco.png\"},className:\"framer-1x3kb0u\",layoutDependency:layoutDependency,layoutId:\"UiOP8CJbJ\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+0+5),pixelHeight:136,pixelWidth:267,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jOeKDdjSohJQZAI9nqdBGwRco.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+5),pixelHeight:136,pixelWidth:267,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jOeKDdjSohJQZAI9nqdBGwRco.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-llops\",layoutDependency:layoutDependency,layoutId:\"bP5byTmdu\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:168,pixelWidth:429,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H8ImBTAxPnzyYdWi6JpvjM0uQNI.png\"},className:\"framer-us63a3\",layoutDependency:layoutDependency,layoutId:\"yFa796fIp\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+0+0),pixelHeight:168,pixelWidth:429,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H8ImBTAxPnzyYdWi6JpvjM0uQNI.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+0),pixelHeight:168,pixelWidth:429,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H8ImBTAxPnzyYdWi6JpvjM0uQNI.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:194,pixelWidth:394,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/72TOgCKUcTMYOlrbLxuSxgk5gRY.png\"},className:\"framer-988mut\",layoutDependency:layoutDependency,layoutId:\"gmkmqQZqO\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+0),pixelHeight:194,pixelWidth:394,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/72TOgCKUcTMYOlrbLxuSxgk5gRY.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0),pixelHeight:194,pixelWidth:394,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/72TOgCKUcTMYOlrbLxuSxgk5gRY.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p2dmxj\",layoutDependency:layoutDependency,layoutId:\"yVTiDmpqM\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),pixelHeight:60,pixelWidth:394,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xAH2YsnycYHGgAHeeSFsxjpg4.png\"},className:\"framer-11vjiaf\",layoutDependency:layoutDependency,layoutId:\"Jn0QRvgcK\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+0+0+0),pixelHeight:60,pixelWidth:394,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xAH2YsnycYHGgAHeeSFsxjpg4.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+0+0),pixelHeight:60,pixelWidth:394,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xAH2YsnycYHGgAHeeSFsxjpg4.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+60.3333),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oDBPXMdZpfHY58QhHSEK6VcfiGU.png\"},className:\"framer-1l9dzni\",layoutDependency:layoutDependency,layoutId:\"lmpKDH3n_\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+60.3333),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oDBPXMdZpfHY58QhHSEK6VcfiGU.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+39.1667),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oDBPXMdZpfHY58QhHSEK6VcfiGU.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+60.3333),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cto53svztlH4rFUk95jOagP0.png\"},className:\"framer-n46znb\",layoutDependency:layoutDependency,layoutId:\"wszRq_hYE\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+60.3333),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cto53svztlH4rFUk95jOagP0.png\"}},xT3nqlabB:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+39.1667),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cto53svztlH4rFUk95jOagP0.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+60.3333),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SqTLBg6PNKfKSdiw0j3NZFEWVg.png\"},className:\"framer-ehcp0w\",layoutDependency:layoutDependency,layoutId:\"ZVQSLykDE\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+60.3333),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SqTLBg6PNKfKSdiw0j3NZFEWVg.png\"}},xT3nqlabB:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+39.1667),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SqTLBg6PNKfKSdiw0j3NZFEWVg.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+60.3333),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 95px) * 0.55 - 55px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png\",srcSet:\"https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png?scale-down-to=512 512w,https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png 1732w\"},className:\"framer-ben8yo\",layoutDependency:layoutDependency,layoutId:\"AzUTCI09t\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+60.3333),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 60px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png\",srcSet:\"https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png?scale-down-to=512 512w,https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png 1732w\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+39.1667),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png\",srcSet:\"https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png?scale-down-to=512 512w,https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UMexUPiaSMnuT92zz6aLR0zsckM.png 1732w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+60.3333),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/Pc7EtdQBgoO5ugWE3av7deCAs.png\"},className:\"framer-n2fvc8\",layoutDependency:layoutDependency,layoutId:\"Vzeef_2AZ\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+60.3333),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/Pc7EtdQBgoO5ugWE3av7deCAs.png\"}},xT3nqlabB:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+39.1667),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/Pc7EtdQBgoO5ugWE3av7deCAs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120.6666),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/RvhBBEA2VZQlntWc1dDAC0TNR5U.png\"},className:\"framer-cdi2zu\",\"data-framer-name\":\"Frame_pwc\",layoutDependency:layoutDependency,layoutId:\"Y4m7vzBA_\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+120.6666),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/RvhBBEA2VZQlntWc1dDAC0TNR5U.png\"}},xT3nqlabB:{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+78.3334),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/RvhBBEA2VZQlntWc1dDAC0TNR5U.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120.6666),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N4zvmD8v96gWtEfu2QDjnRR9Y.png\"},className:\"framer-1aw2vau\",layoutDependency:layoutDependency,layoutId:\"P49u3bga0\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+120.6666),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N4zvmD8v96gWtEfu2QDjnRR9Y.png\"}},xT3nqlabB:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+78.3334),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N4zvmD8v96gWtEfu2QDjnRR9Y.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120.6666),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 95px) * 0.55 - 55px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png\",srcSet:\"https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png 1732w\"},className:\"framer-11neqae\",layoutDependency:layoutDependency,layoutId:\"WZFRtxw8d\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+120.6666),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 60px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png\",srcSet:\"https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png 1732w\"}},xT3nqlabB:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+78.3334),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png\",srcSet:\"https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S59Rbn0Bp7XMXeFepSJ3B6BOwM4.png 1732w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zvqafo\",layoutDependency:layoutDependency,layoutId:\"nvrXymJbf\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120.6666+6.6667),pixelHeight:168,pixelWidth:271,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8Ww6s90HzpfO9h7Na7gCe4sJavU.png\"},className:\"framer-1wfbuvt\",layoutDependency:layoutDependency,layoutId:\"irfcCeI4p\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+120.6666+6.6667),pixelHeight:168,pixelWidth:271,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8Ww6s90HzpfO9h7Na7gCe4sJavU.png\"}},xT3nqlabB:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+78.3334+-3.9166),pixelHeight:168,pixelWidth:271,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8Ww6s90HzpfO9h7Na7gCe4sJavU.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Zoom\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120.6666),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 95px) * 0.55 - 55px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png\",srcSet:\"https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png 1732w\"},className:\"framer-1hmtr4e\",layoutDependency:layoutDependency,layoutId:\"EOKqLtS8u\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Zoom\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+120.6666),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 60px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png\",srcSet:\"https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png 1732w\"}},xT3nqlabB:{background:{alt:\"Zoom\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+78.3334),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png\",srcSet:\"https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BC8p7EKbAo2vBLWKSvhBG039t2o.png 1732w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Wdzn17YiXYtJDYu8nKvh6Jgr2g.png\"},className:\"framer-1f7c3ru\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ak0MM6ItJ\",onTap:onTapvle6om,...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Wdzn17YiXYtJDYu8nKvh6Jgr2g.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+117.5001),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Wdzn17YiXYtJDYu8nKvh6Jgr2g.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KuPuOhsDxDug18NeJAyQR4ziU5w.png\"},className:\"framer-1mt5kby\",layoutDependency:layoutDependency,layoutId:\"utk8roGKX\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KuPuOhsDxDug18NeJAyQR4ziU5w.png\"}},xT3nqlabB:{background:{alt:\"LexisNexis Risk Solutions\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+117.5001),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KuPuOhsDxDug18NeJAyQR4ziU5w.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nkrHheRM1uA9cqiQgAreGov9hlI.png\"},className:\"framer-4jpwl8\",layoutDependency:layoutDependency,layoutId:\"kDSpN4Lc_\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nkrHheRM1uA9cqiQgAreGov9hlI.png\"}},xT3nqlabB:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+117.5001),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nkrHheRM1uA9cqiQgAreGov9hlI.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+180.9999),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/rqqJzKLSvSOlRMRkVSRxIyLT1o.png\"},className:\"framer-82m1lb\",layoutDependency:layoutDependency,layoutId:\"jZaZPmOmP\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+180.9999),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/rqqJzKLSvSOlRMRkVSRxIyLT1o.png\"}},xT3nqlabB:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+117.5001),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/rqqJzKLSvSOlRMRkVSRxIyLT1o.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Zoom\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4tatiGfzLgjnHTFDsylQwqiDylE.png\"},className:\"framer-9ehw1w\",layoutDependency:layoutDependency,layoutId:\"SJrRUcG1n\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Zoom\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+180.9999),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4tatiGfzLgjnHTFDsylQwqiDylE.png\"}},xT3nqlabB:{background:{alt:\"Zoom\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+117.5001),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4tatiGfzLgjnHTFDsylQwqiDylE.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+241.3332),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/3gvjG0o8LeHq564dWD1EUUTDHQ.png\"},className:\"framer-s95rk1\",\"data-framer-name\":\"Frame_pwc\",layoutDependency:layoutDependency,layoutId:\"cR7eXRKNq\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+241.3332),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/3gvjG0o8LeHq564dWD1EUUTDHQ.png\"}},xT3nqlabB:{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+156.6668),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/3gvjG0o8LeHq564dWD1EUUTDHQ.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+241.3332),pixelHeight:932,pixelWidth:1732,sizes:`max((max((${componentViewport?.width||\"100vw\"} - 95px) * 0.55 - 55px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png\",srcSet:\"https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png 1732w\"},className:\"framer-1p4p21a\",layoutDependency:layoutDependency,layoutId:\"a_XoBdc9f\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+241.3332),pixelHeight:932,pixelWidth:1732,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 60px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png\",srcSet:\"https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png 1732w\"}},xT3nqlabB:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+156.6668),pixelHeight:932,pixelWidth:1732,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png\",srcSet:\"https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KXYHN7TWuju7xHTColjoRlAw7s.png 1732w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+241.3332),pixelHeight:276,pixelWidth:532,sizes:`max((max((${componentViewport?.width||\"100vw\"} - 95px) * 0.55 - 55px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png\",srcSet:\"https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png 532w\"},className:\"framer-1n6a24g\",layoutDependency:layoutDependency,layoutId:\"RdOLifesV\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+241.3332),pixelHeight:276,pixelWidth:532,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 60px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png\",srcSet:\"https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png 532w\"}},xT3nqlabB:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+156.6668),pixelHeight:276,pixelWidth:532,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png\",srcSet:\"https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/GBGGYms3cFntdvNsKqMXRTpCW4s.png 532w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+241.3332),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fma2Rz1j7Ucnrjvc84PFFCHREVc.png\"},className:\"framer-pug9c1\",layoutDependency:layoutDependency,layoutId:\"oFrxhLU1u\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+241.3332),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fma2Rz1j7Ucnrjvc84PFFCHREVc.png\"}},xT3nqlabB:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+156.6668),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fma2Rz1j7Ucnrjvc84PFFCHREVc.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+241.3332),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max((${componentViewport?.width||\"100vw\"} - 95px) * 0.55 - 55px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png\",srcSet:\"https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png 1732w\"},className:\"framer-158yn3g\",layoutDependency:layoutDependency,layoutId:\"AeZNgIUZ5\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+241.3332),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 60px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png\",srcSet:\"https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png 1732w\"}},xT3nqlabB:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+156.6668),pixelHeight:932,pixelWidth:1732,positionX:\"center\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 20px) / 5, 50px)`,src:\"https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png\",srcSet:\"https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mwcvu8ybiBOZajkHDm9DQx5JrB4.png 1732w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+301.6665),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/2gfAep3KmqDzK8ZsTDhvKQRaZ9E.png\"},className:\"framer-1y9h5q3\",\"data-framer-name\":\"Frame_pwc\",layoutDependency:layoutDependency,layoutId:\"aJRT8Fz3p\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+301.6665),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/2gfAep3KmqDzK8ZsTDhvKQRaZ9E.png\"}},xT3nqlabB:{background:{alt:\"PwC\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+195.8335),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/2gfAep3KmqDzK8ZsTDhvKQRaZ9E.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+301.6665),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/QkHZ5H0hRHNgeUvWX5eUX7k4.png\"},className:\"framer-1dnfj8m\",layoutDependency:layoutDependency,layoutId:\"PuIPpo9B9\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+301.6665),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/QkHZ5H0hRHNgeUvWX5eUX7k4.png\"}},xT3nqlabB:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+195.8335),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/QkHZ5H0hRHNgeUvWX5eUX7k4.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+301.6665),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/3K8GWwuJVa7HdybA84q3zyFu5o.png\"},className:\"framer-1fy43vo\",layoutDependency:layoutDependency,layoutId:\"apwwsDo0a\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+301.6665),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/3K8GWwuJVa7HdybA84q3zyFu5o.png\"}},xT3nqlabB:{background:{alt:\"Children's Cancer Foundation\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+195.8335),pixelHeight:276,pixelWidth:512,src:\"https://framerusercontent.com/images/3K8GWwuJVa7HdybA84q3zyFu5o.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+301.6665),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dKijE9X2qt8y3eQpefgMBqboaac.png\"},className:\"framer-rwoeue\",layoutDependency:layoutDependency,layoutId:\"svFyVtObT\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+301.6665),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dKijE9X2qt8y3eQpefgMBqboaac.png\"}},xT3nqlabB:{background:{alt:\"TikTok\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+195.8335),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dKijE9X2qt8y3eQpefgMBqboaac.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+301.6665),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0kdfPOilFHVOPrZta6YrGaejFh0.png\"},className:\"framer-1dofzc3\",layoutDependency:layoutDependency,layoutId:\"wsccwuhnY\",...addPropertyOverrides({EDhg24U6F:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||475)-0-475)/2+88+30)+0+0+301.6665),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0kdfPOilFHVOPrZta6YrGaejFh0.png\"}},xT3nqlabB:{background:{alt:\"HSBC\",fit:\"fit\",intrinsicHeight:932,intrinsicWidth:1732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+195.8335),pixelHeight:276,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0kdfPOilFHVOPrZta6YrGaejFh0.png\"}}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2ZDvQ.framer-10edu14, .framer-2ZDvQ .framer-10edu14 { display: block; }\",\".framer-2ZDvQ.framer-1x7wslj { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 95px 0px 0px; position: relative; width: 1170px; }\",\".framer-2ZDvQ .framer-2qmm00-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-2ZDvQ .framer-k6fg0d { 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: visible; padding: 0px 15px 0px 40px; position: relative; width: 55%; z-index: 1; }\",\".framer-2ZDvQ .framer-9vn2ly { display: grid; flex: 1 0 0px; gap: 5px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 357px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-2ZDvQ .framer-yukhvb { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 0px; position: relative; width: 93px; }\",\".framer-2ZDvQ .framer-700nj7 { flex: none; height: 48px; position: relative; width: 78px; }\",\".framer-2ZDvQ .framer-18aqu7n { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 5px; position: relative; width: 1fr; }\",\".framer-2ZDvQ .framer-1x3kb0u { flex: none; height: 100%; position: relative; width: 81px; }\",\".framer-2ZDvQ .framer-llops { align-content: center; align-items: center; align-self: end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 0px; position: relative; width: 1fr; }\",\".framer-2ZDvQ .framer-us63a3 { flex: none; height: 100%; position: relative; width: 93px; }\",\".framer-2ZDvQ .framer-988mut, .framer-2ZDvQ .framer-1l9dzni, .framer-2ZDvQ .framer-n46znb, .framer-2ZDvQ .framer-ehcp0w, .framer-2ZDvQ .framer-ben8yo, .framer-2ZDvQ .framer-n2fvc8, .framer-2ZDvQ .framer-1aw2vau, .framer-2ZDvQ .framer-11neqae, .framer-2ZDvQ .framer-1hmtr4e, .framer-2ZDvQ .framer-1mt5kby, .framer-2ZDvQ .framer-4jpwl8, .framer-2ZDvQ .framer-82m1lb, .framer-2ZDvQ .framer-9ehw1w, .framer-2ZDvQ .framer-1p4p21a, .framer-2ZDvQ .framer-1n6a24g, .framer-2ZDvQ .framer-pug9c1, .framer-2ZDvQ .framer-158yn3g, .framer-2ZDvQ .framer-1dnfj8m, .framer-2ZDvQ .framer-1fy43vo, .framer-2ZDvQ .framer-rwoeue, .framer-2ZDvQ .framer-1dofzc3 { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-2ZDvQ .framer-1p2dmxj { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 0px; position: relative; width: 105px; }\",\".framer-2ZDvQ .framer-11vjiaf { flex: none; height: 100%; position: relative; width: 94px; }\",\".framer-2ZDvQ .framer-cdi2zu, .framer-2ZDvQ .framer-s95rk1 { align-self: start; flex: none; height: 100%; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-2ZDvQ .framer-zvqafo { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 0px; position: relative; width: 104px; }\",\".framer-2ZDvQ .framer-1wfbuvt { flex: none; height: 42px; position: relative; width: 86px; }\",\".framer-2ZDvQ .framer-1f7c3ru { align-self: start; cursor: pointer; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-2ZDvQ .framer-1y9h5q3 { align-self: start; aspect-ratio: 1.8583690987124464 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); justify-self: start; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2ZDvQ.framer-1x7wslj, .framer-2ZDvQ .framer-k6fg0d, .framer-2ZDvQ .framer-yukhvb, .framer-2ZDvQ .framer-18aqu7n, .framer-2ZDvQ .framer-llops, .framer-2ZDvQ .framer-1p2dmxj, .framer-2ZDvQ .framer-zvqafo { gap: 0px; } .framer-2ZDvQ.framer-1x7wslj > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-2ZDvQ.framer-1x7wslj > :first-child, .framer-2ZDvQ .framer-k6fg0d > :first-child, .framer-2ZDvQ .framer-yukhvb > :first-child, .framer-2ZDvQ .framer-18aqu7n > :first-child, .framer-2ZDvQ .framer-llops > :first-child, .framer-2ZDvQ .framer-zvqafo > :first-child { margin-left: 0px; } .framer-2ZDvQ.framer-1x7wslj > :last-child, .framer-2ZDvQ .framer-k6fg0d > :last-child, .framer-2ZDvQ .framer-yukhvb > :last-child, .framer-2ZDvQ .framer-18aqu7n > :last-child, .framer-2ZDvQ .framer-llops > :last-child, .framer-2ZDvQ .framer-zvqafo > :last-child { margin-right: 0px; } .framer-2ZDvQ .framer-k6fg0d > *, .framer-2ZDvQ .framer-yukhvb > *, .framer-2ZDvQ .framer-18aqu7n > *, .framer-2ZDvQ .framer-llops > *, .framer-2ZDvQ .framer-zvqafo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2ZDvQ .framer-1p2dmxj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2ZDvQ .framer-1p2dmxj > :first-child { margin-top: 0px; } .framer-2ZDvQ .framer-1p2dmxj > :last-child { margin-bottom: 0px; } }\",\".framer-2ZDvQ.framer-v-f9eu1f.framer-1x7wslj { flex-direction: column; gap: 30px; padding: 0px; width: 760px; }\",\".framer-2ZDvQ.framer-v-f9eu1f .framer-2qmm00-container, .framer-2ZDvQ.framer-v-bukp3r .framer-2qmm00-container { flex: none; order: 0; width: 100%; }\",\".framer-2ZDvQ.framer-v-f9eu1f .framer-k6fg0d { order: 1; padding: 0px 30px 0px 30px; width: 100%; }\",\".framer-2ZDvQ.framer-v-f9eu1f .framer-1y9h5q3 { height: var(--framer-aspect-ratio-supported, 73px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2ZDvQ.framer-v-f9eu1f.framer-1x7wslj { gap: 0px; } .framer-2ZDvQ.framer-v-f9eu1f.framer-1x7wslj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-2ZDvQ.framer-v-f9eu1f.framer-1x7wslj > :first-child { margin-top: 0px; } .framer-2ZDvQ.framer-v-f9eu1f.framer-1x7wslj > :last-child { margin-bottom: 0px; } }\",\".framer-2ZDvQ.framer-v-bukp3r.framer-1x7wslj { flex-direction: column; gap: 20px; justify-content: flex-start; padding: 0px; width: 390px; }\",\".framer-2ZDvQ.framer-v-bukp3r .framer-k6fg0d { order: 1; padding: 0px 15px 0px 15px; width: 100%; }\",\".framer-2ZDvQ.framer-v-bukp3r .framer-9vn2ly { height: 230px; }\",\".framer-2ZDvQ.framer-v-bukp3r .framer-yukhvb, .framer-2ZDvQ.framer-v-bukp3r .framer-1x3kb0u, .framer-2ZDvQ.framer-v-bukp3r .framer-zvqafo, .framer-2ZDvQ.framer-v-bukp3r .framer-1wfbuvt { width: 56px; }\",\".framer-2ZDvQ.framer-v-bukp3r .framer-700nj7 { height: 28px; width: 52px; }\",\".framer-2ZDvQ.framer-v-bukp3r .framer-us63a3 { width: 54px; }\",\".framer-2ZDvQ.framer-v-bukp3r .framer-1p2dmxj, .framer-2ZDvQ.framer-v-bukp3r .framer-11vjiaf { width: 60px; }\",\".framer-2ZDvQ.framer-v-bukp3r .framer-1y9h5q3 { height: var(--framer-aspect-ratio-supported, 36px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2ZDvQ.framer-v-bukp3r.framer-1x7wslj { gap: 0px; } .framer-2ZDvQ.framer-v-bukp3r.framer-1x7wslj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-2ZDvQ.framer-v-bukp3r.framer-1x7wslj > :first-child { margin-top: 0px; } .framer-2ZDvQ.framer-v-bukp3r.framer-1x7wslj > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 357\n * @framerIntrinsicWidth 1170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EDhg24U6F\":{\"layout\":[\"fixed\",\"auto\"]},\"xT3nqlabB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdPJ3UoO_3=withCSS(Component,css,\"framer-2ZDvQ\");export default FramerdPJ3UoO_3;FramerdPJ3UoO_3.displayName=\"Sections / Clients Copy 3\";FramerdPJ3UoO_3.defaultProps={height:357,width:1170};addPropertyControls(FramerdPJ3UoO_3,{variant:{options:[\"NNuqrDPnf\",\"EDhg24U6F\",\"xT3nqlabB\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdPJ3UoO_3,[{explicitInter:true,fonts:[]},...SectionTitleCopy3Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdPJ3UoO_3\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1170\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"357\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EDhg24U6F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xT3nqlabB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dPJ3UoO_3.map", "// Generated by Framer (f074239)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SectionsClientsCopy3 from\"https://framerusercontent.com/modules/xkxGeGRIQNfkxuV2XAw8/cNtAQKsR443SFog38Frd/dPJ3UoO_3.js\";const SectionsClientsCopy3Fonts=getFonts(SectionsClientsCopy3);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"SmjbB_d7w\",\"t4HbvBuhe\",\"oT1AAkJzL\"];const serializationHash=\"framer-75DqV\";const variantClassNames={oT1AAkJzL:\"framer-v-1eqxfzp\",SmjbB_d7w:\"framer-v-3owi6c\",t4HbvBuhe:\"framer-v-18hq4k9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:4,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Desktop:\"SmjbB_d7w\",Phone:\"oT1AAkJzL\",Tablet:\"t4HbvBuhe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SmjbB_d7w\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SmjbB_d7w\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1cxz6ps=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"SmjbB_d7w\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3owi6c\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SmjbB_d7w\",onTap:onTap1cxz6ps,ref:ref??ref1,style:{...style},...addPropertyOverrides({oT1AAkJzL:{\"data-framer-name\":\"Phone\"},t4HbvBuhe:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||354)-0-354)/2),...addPropertyOverrides({oT1AAkJzL:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-354)/2)},t4HbvBuhe:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||472)-0-354)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1403o4x-container\",layoutDependency:layoutDependency,layoutId:\"kK7TgP0VH-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionsClientsCopy3,{height:\"100%\",id:\"kK7TgP0VH\",layoutId:\"kK7TgP0VH\",style:{width:\"100%\"},variant:\"NNuqrDPnf\",width:\"100%\",...addPropertyOverrides({oT1AAkJzL:{variant:\"xT3nqlabB\"},t4HbvBuhe:{variant:\"EDhg24U6F\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-75DqV.framer-1atln69, .framer-75DqV .framer-1atln69 { display: block; }\",\".framer-75DqV.framer-3owi6c { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-75DqV .framer-1403o4x-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-75DqV.framer-3owi6c { gap: 0px; } .framer-75DqV.framer-3owi6c > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-75DqV.framer-3owi6c > :first-child { margin-left: 0px; } .framer-75DqV.framer-3owi6c > :last-child { margin-right: 0px; } }\",\".framer-75DqV.framer-v-18hq4k9.framer-3owi6c { flex-direction: column; gap: 16px; width: 810px; }\",\".framer-75DqV.framer-v-18hq4k9 .framer-1403o4x-container { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-75DqV.framer-v-18hq4k9.framer-3owi6c { gap: 0px; } .framer-75DqV.framer-v-18hq4k9.framer-3owi6c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-75DqV.framer-v-18hq4k9.framer-3owi6c > :first-child { margin-top: 0px; } .framer-75DqV.framer-v-18hq4k9.framer-3owi6c > :last-child { margin-bottom: 0px; } }\",\".framer-75DqV.framer-v-1eqxfzp.framer-3owi6c { gap: 16px; width: 390px; }\",\".framer-75DqV.framer-v-1eqxfzp .framer-1403o4x-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-75DqV.framer-v-1eqxfzp.framer-3owi6c { gap: 0px; } .framer-75DqV.framer-v-1eqxfzp.framer-3owi6c > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-75DqV.framer-v-1eqxfzp.framer-3owi6c > :first-child { margin-left: 0px; } .framer-75DqV.framer-v-1eqxfzp.framer-3owi6c > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 354\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"t4HbvBuhe\":{\"layout\":[\"fixed\",\"auto\"]},\"oT1AAkJzL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfkR7DrELt=withCSS(Component,css,\"framer-75DqV\");export default FramerfkR7DrELt;FramerfkR7DrELt.displayName=\"Sections / Clients 3\";FramerfkR7DrELt.defaultProps={height:354,width:1200};addPropertyControls(FramerfkR7DrELt,{variant:{options:[\"SmjbB_d7w\",\"t4HbvBuhe\",\"oT1AAkJzL\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfkR7DrELt,[{explicitInter:true,fonts:[]},...SectionsClientsCopy3Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfkR7DrELt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"354\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t4HbvBuhe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oT1AAkJzL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1a75323)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,addPropertyControls as t,ControlType as a,cx as o,Link as n,RichText as i,useLocaleInfo as l,useVariantState as d,withCSS as s}from\"framer\";import{LayoutGroup as m,motion as f,MotionConfigContext as p}from\"framer-motion\";import*as c from\"react\";let h={T8Kpjshg4:{hover:!0}},u=[\"T8Kpjshg4\"],g=\"framer-m1nZv\",v={T8Kpjshg4:\"framer-v-17mn4b6\"};function b(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let y={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},x=({value:r,children:t})=>{let a=c.useContext(p),o=null!=r?r:a.transition,n=c.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(p.Provider,{value:n,children:t});},w=({height:e,id:r,link:t,title:a,width:o,...n})=>{var i;return{...n,GZgkvPJP6:null!=t?t:n.GZgkvPJP6,U4y3evk1y:null!==(i=null!=a?a:n.U4y3evk1y)&&void 0!==i?i:\"Augmented Reality\"};},k=(e,r)=>r.join(\"-\")+e.layoutDependency,T=/*#__PURE__*/c.forwardRef(function(r,t){let{activeLocale:a}=l(),{style:s,className:p,layoutId:g,variant:T,GZgkvPJP6:P,U4y3evk1y:R,...Z}=w(r),{baseVariant:G,classNames:J,gestureVariant:S,setGestureState:j,setVariant:z,transition:A,variants:K}=d({cycleOrder:u,defaultVariant:\"T8Kpjshg4\",enabledGestures:h,transitions:y,variant:T,variantClassNames:v}),N=k(r,K),C=c.useRef(null),U=c.useId();return /*#__PURE__*/e(m,{id:null!=g?g:U,children:/*#__PURE__*/e(f.div,{initial:T,animate:K,onHoverStart:()=>j({isHovered:!0}),onHoverEnd:()=>j({isHovered:!1}),onTapStart:()=>j({isPressed:!0}),onTap:()=>j({isPressed:!1}),onTapCancel:()=>j({isPressed:!1}),className:o(\"framer-m1nZv\",...[],J),style:{display:\"contents\"},children:/*#__PURE__*/e(x,{value:A,children:/*#__PURE__*/e(n,{href:P,children:/*#__PURE__*/e(f.a,{...Z,className:`${o(\"framer-17mn4b6\",p)} framer-vlpdzm`,\"data-border\":!0,\"data-framer-name\":\"Variant 1\",layoutDependency:N,layoutId:\"T8Kpjshg4\",ref:null!=t?t:C,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:128,borderBottomRightRadius:128,borderTopLeftRadius:128,borderTopRightRadius:128,...s},variants:{\"T8Kpjshg4-hover\":{backgroundColor:\"rgb(117, 117, 117)\"}},...b({\"T8Kpjshg4-hover\":{\"data-framer-name\":void 0}},G,S),children:/*#__PURE__*/e(i,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(c.Fragment,{children:/*#__PURE__*/e(f.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Augmented Reality\"})}),className:\"framer-vzf4iv\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:N,layoutId:\"tXo02tudB\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:R,verticalAlignment:\"top\",withExternalLayout:!0,...b({\"T8Kpjshg4-hover\":{children:/*#__PURE__*/e(c.Fragment,{children:/*#__PURE__*/e(f.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\"},children:\"Augmented Reality\"})})}},G,S)})})})})})});}),P=['.framer-m1nZv [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-m1nZv .framer-vlpdzm { display: block; }\",\".framer-m1nZv .framer-17mn4b6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 12px 12px 12px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-m1nZv .framer-vzf4iv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-m1nZv .framer-v-17mn4b6 .framer-17mn4b6 { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-m1nZv .framer-17mn4b6 { gap: 0px; } .framer-m1nZv .framer-17mn4b6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-m1nZv .framer-17mn4b6 > :first-child { margin-left: 0px; } .framer-m1nZv .framer-17mn4b6 > :last-child { margin-right: 0px; } }\"],R=s(T,P,\"framer-m1nZv\");export default R;R.displayName=\"AR Tag\",R.defaultProps={height:32,width:154},t(R,{GZgkvPJP6:{title:\"Link\",type:a.Link},U4y3evk1y:{defaultValue:\"Augmented Reality\",displayTextArea:!1,title:\"Title\",type:a.String}}),r(R,[{family:\"Schibsted Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/PxPxOELXy:default\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf\",weight:\"700\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPxPxOELXy\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"GZgkvPJP6\\\":\\\"link\\\",\\\"U4y3evk1y\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WnYRcqWbT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"154\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PxPxOELXy.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ARTag1 from\"https://framerusercontent.com/modules/4V924qxtedKszrwFquYJ/oOPrBttkqpWcf8Z2hSBY/PxPxOELXy.js\";import ARTag from\"https://framerusercontent.com/modules/aM8JNV7hlc7TjijZwZO5/ddCRKLigsHm87Gpj3QzA/PxPxOELXy.js\";import VirtualSpaceTagCopy2 from\"https://framerusercontent.com/modules/bvqGKhhiJ5M5lu1W7GCY/LiBbAJEe6kyHzPJ3yqzO/B0JoF7LnC.js\";import CardsProjectCardCopy4 from\"https://framerusercontent.com/modules/DAbZTNIjWzMQEPiI1Yhm/Ni7pRZjxTbPBnzKMNTW1/BtQJb4KAc.js\";import CardsProjectCard from\"https://framerusercontent.com/modules/li8yxfoHUptpnGq7fVOH/97rw9lBtceKPKG3hIOzf/XarVV9L9h.js\";import IconButtonMedium from\"https://framerusercontent.com/modules/odYfnAnD52aAhPkM02rb/c2WFAmvhTyzfRJFp0thK/ywDS_cJaX.js\";import ButtonLarge from\"https://framerusercontent.com/modules/oql8RImZLOW6nRQs4Mir/fjZNbqxnJowsENCWbBaa/mkhfj13sI.js\";import VRTag from\"https://framerusercontent.com/modules/PAC88r9eZUU1ir6upCyk/jJEVFDscvZ2pONwYKYGZ/BdlZyYryx.js\";import SectionTitle from\"https://framerusercontent.com/modules/qdRslQTyl0lfPzY0iCS9/Sx3he5Hzo5o0bpTjwxia/C0YtMqVlM.js\";import VirtualSpaceTag from\"https://framerusercontent.com/modules/t03zoia2FWBSwAU9SJNd/VepIDwaqE2kGeNSRY5Cz/OyOsOY8ho.js\";import VRTag1 from\"https://framerusercontent.com/modules/urXwXeMVd3RPAeNLflJZ/qswhz7H3JE1WJWuhtvEY/BdlZyYryx.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jc8cg2bG50R97ZQpKqRG/M8anQWI9iuTBaZ1JNxGA/oCZvti39f.js\";const SectionTitleFonts=getFonts(SectionTitle);const VirtualSpaceTagCopy2Fonts=getFonts(VirtualSpaceTagCopy2);const MotionSectionWithFX=withFX(motion.section);const CardsProjectCardFonts=getFonts(CardsProjectCard);const IconButtonMediumFonts=getFonts(IconButtonMedium);const VRTagFonts=getFonts(VRTag);const VRTag1Fonts=getFonts(VRTag1);const VirtualSpaceTagFonts=getFonts(VirtualSpaceTag);const CardsProjectCardCopy4Fonts=getFonts(CardsProjectCardCopy4);const ARTagFonts=getFonts(ARTag);const ARTag1Fonts=getFonts(ARTag1);const ButtonLargeFonts=getFonts(ButtonLarge);const cycleOrder=[\"juefN1fGz\",\"IvrA3l4jv\",\"qAq98Zipt\",\"Mf6dVh02y\",\"LzqmhSlsF\",\"mEN3mMb75\",\"jLubNOVOy\",\"FjZkqM0mS\",\"XOeqn6wd3\",\"hjqV5Anxq\"];const serializationHash=\"framer-PjEs8\";const variantClassNames={FjZkqM0mS:\"framer-v-7auoiw\",hjqV5Anxq:\"framer-v-1hgdb8l\",IvrA3l4jv:\"framer-v-jmwodf\",jLubNOVOy:\"framer-v-rc8921\",juefN1fGz:\"framer-v-cy1nm\",LzqmhSlsF:\"framer-v-4svfhf\",mEN3mMb75:\"framer-v-1kuj4s4\",Mf6dVh02y:\"framer-v-1f47p03\",qAq98Zipt:\"framer-v-ila7xm\",XOeqn6wd3:\"framer-v-1k3qv0o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition1={damping:30,delay:0,mass:4,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,x:0,y:100};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,transition:transition1,x:0,y:100};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"juefN1fGz\",\"Variant ar mobile\":\"jLubNOVOy\",\"Variant AR\":\"IvrA3l4jv\",\"Variant DT\":\"LzqmhSlsF\",\"Variant event tech mobile\":\"hjqV5Anxq\",\"Variant mv mobile\":\"XOeqn6wd3\",\"Variant MV\":\"Mf6dVh02y\",\"Variant Primary mobile\":\"mEN3mMb75\",\"Variant vr mobile\":\"FjZkqM0mS\",\"Variant VR\":\"qAq98Zipt\"};const getProps=({height,id,link,width,...props})=>{return{...props,JaVe4n8g3:link??props.JaVe4n8g3,variant:humanReadableVariantMap[props.variant]??props.variant??\"juefN1fGz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,JaVe4n8g3,jU5kfKgp4XarVV9L9h,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"juefN1fGz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const uWD9LyBnX11bbrx5=activeVariantCallback(async(...args)=>{setVariant(\"mEN3mMb75\");});const uWD9LyBnX1yc83ec=activeVariantCallback(async(...args)=>{setVariant(\"jLubNOVOy\");});const uWD9LyBnX1jgunv9=activeVariantCallback(async(...args)=>{setVariant(\"FjZkqM0mS\");});const uWD9LyBnX1rt7z2=activeVariantCallback(async(...args)=>{setVariant(\"XOeqn6wd3\");});const uWD9LyBnX1e40p8c=activeVariantCallback(async(...args)=>{setVariant(\"hjqV5Anxq\");});const uWD9LyBnX1us64sb=activeVariantCallback(async(...args)=>{setVariant(\"juefN1fGz\");});const uWD9LyBnX1v0l3qo=activeVariantCallback(async(...args)=>{setVariant(\"IvrA3l4jv\");});const uWD9LyBnX1qsnf38=activeVariantCallback(async(...args)=>{setVariant(\"qAq98Zipt\");});const uWD9LyBnXbnmxmx=activeVariantCallback(async(...args)=>{setVariant(\"Mf6dVh02y\");});const uWD9LyBnX66ye21=activeVariantCallback(async(...args)=>{setVariant(\"LzqmhSlsF\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"hjqV5Anxq\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"XOeqn6wd3\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"FjZkqM0mS\")return true;return false;};const isDisplayed3=()=>{if([\"FjZkqM0mS\",\"XOeqn6wd3\",\"hjqV5Anxq\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"jLubNOVOy\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"jLubNOVOy\")return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"mEN3mMb75\")return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"mEN3mMb75\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"LzqmhSlsF\")return true;return false;};const router=useRouter();const isDisplayed9=()=>{if(baseVariant===\"LzqmhSlsF\")return false;return true;};const isDisplayed10=()=>{if(baseVariant===\"Mf6dVh02y\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"Mf6dVh02y\")return false;return true;};const isDisplayed12=()=>{if([\"qAq98Zipt\",\"FjZkqM0mS\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if([\"qAq98Zipt\",\"FjZkqM0mS\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if(baseVariant===\"qAq98Zipt\")return false;return true;};const isDisplayed15=()=>{if(baseVariant===\"FjZkqM0mS\")return false;return true;};const isDisplayed16=()=>{if([\"IvrA3l4jv\",\"jLubNOVOy\"].includes(baseVariant))return true;return false;};const isDisplayed17=()=>{if([\"IvrA3l4jv\",\"qAq98Zipt\",\"Mf6dVh02y\",\"LzqmhSlsF\",\"jLubNOVOy\",\"FjZkqM0mS\",\"XOeqn6wd3\",\"hjqV5Anxq\"].includes(baseVariant))return false;return true;};const isDisplayed18=()=>{if([\"IvrA3l4jv\",\"qAq98Zipt\",\"Mf6dVh02y\",\"LzqmhSlsF\",\"jLubNOVOy\",\"XOeqn6wd3\",\"hjqV5Anxq\"].includes(baseVariant))return false;return true;};const isDisplayed19=()=>{if([\"jLubNOVOy\",\"XOeqn6wd3\",\"hjqV5Anxq\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-cy1nm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"juefN1fGz\",ref:refBinding,style:{...style},...addPropertyOverrides({FjZkqM0mS:{\"data-framer-name\":\"Variant vr mobile\"},hjqV5Anxq:{\"data-framer-name\":\"Variant event tech mobile\"},IvrA3l4jv:{\"data-framer-name\":\"Variant AR\"},jLubNOVOy:{\"data-framer-name\":\"Variant ar mobile\"},LzqmhSlsF:{\"data-framer-name\":\"Variant DT\"},mEN3mMb75:{\"data-framer-name\":\"Variant Primary mobile\"},Mf6dVh02y:{\"data-framer-name\":\"Variant MV\"},qAq98Zipt:{\"data-framer-name\":\"Variant VR\"},XOeqn6wd3:{\"data-framer-name\":\"Variant mv mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:138,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+0+0),...addPropertyOverrides({FjZkqM0mS:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+0+0)},hjqV5Anxq:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+0+0)},IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+0+0)},jLubNOVOy:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+0+0)},LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+0+0)},mEN3mMb75:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+0+0)},Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+0+0)},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+0+0)},XOeqn6wd3:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tz7fjv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DCN4cM3G4-container\",nodeId:\"DCN4cM3G4\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(SectionTitle,{DpKg_4RDt:true,height:\"100%\",id:\"DCN4cM3G4\",layoutId:\"DCN4cM3G4\",rZlInkDBu:\"Our Top Projects\",sQwz5OMsT:\"Featured works\",style:{width:\"100%\"},variant:\"Ypkg2Yh9z\",width:\"100%\",ywbVTjRMA:false,...addPropertyOverrides({IvrA3l4jv:{rZlInkDBu:\"Our AR Projects\"},LzqmhSlsF:{rZlInkDBu:\"Our Event Tech Solutions\"},Mf6dVh02y:{rZlInkDBu:\"Our Product Based Solutions\"},qAq98Zipt:{rZlInkDBu:\"Our VR Projects\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18vk3bt\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"xoUr_EKkL\",style:{transformPerspective:500},children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1ow3u7o\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"V1AfhRcD5\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n31sdi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"tfonq3FtM\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({hjqV5Anxq:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cedws9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LfmCBiImi-container\",nodeId:\"LfmCBiImi\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"LfmCBiImi\",KPv3NeVnR:\"All Projects\",layoutId:\"LfmCBiImi\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX11bbrx5,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({hjqV5Anxq:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p7lhe2-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Rric9wd6O-container\",nodeId:\"Rric9wd6O\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"Rric9wd6O\",KPv3NeVnR:\"AR Projects\",layoutId:\"Rric9wd6O\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1yc83ec,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({hjqV5Anxq:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1beqi84-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zGe2_MQ15-container\",nodeId:\"zGe2_MQ15\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"zGe2_MQ15\",KPv3NeVnR:\"VR Projects\",layoutId:\"zGe2_MQ15\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1jgunv9,variant:\"x_144p6bU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nh0z6a\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"IQI_OGXYP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({hjqV5Anxq:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f612w-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XZDQjDPJN-container\",nodeId:\"XZDQjDPJN\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"XZDQjDPJN\",KPv3NeVnR:\"Product Based Solution\",layoutId:\"XZDQjDPJN\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1rt7z2,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({hjqV5Anxq:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xlkine-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Iy6CuY5X5-container\",nodeId:\"Iy6CuY5X5\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"Iy6CuY5X5\",KPv3NeVnR:\"Event Tech Solution\",layoutId:\"Iy6CuY5X5\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1e40p8c,variant:\"x_144p6bU\",width:\"100%\"})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-veldac\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"U74DjAaII\",style:{transformPerspective:500},children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-wbe0ca\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"G10ktOEJ6\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ms1hq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"QgK4e4hKP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({XOeqn6wd3:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hs6l39-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ph637elT4-container\",nodeId:\"ph637elT4\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"ph637elT4\",KPv3NeVnR:\"All Projects\",layoutId:\"ph637elT4\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX11bbrx5,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({XOeqn6wd3:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-toq67k-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"gTRViDtqC-container\",nodeId:\"gTRViDtqC\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"gTRViDtqC\",KPv3NeVnR:\"AR Projects\",layoutId:\"gTRViDtqC\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1yc83ec,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({XOeqn6wd3:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15njvil-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XK5VH_6i8-container\",nodeId:\"XK5VH_6i8\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"XK5VH_6i8\",KPv3NeVnR:\"VR Projects\",layoutId:\"XK5VH_6i8\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1jgunv9,variant:\"x_144p6bU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2b6ygw\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"aQwksDzep\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({XOeqn6wd3:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ugk0vr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QsZFlaVjB-container\",nodeId:\"QsZFlaVjB\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"QsZFlaVjB\",KPv3NeVnR:\"Product Based Solution\",layoutId:\"QsZFlaVjB\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1rt7z2,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({XOeqn6wd3:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1scyqzs-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dfR7exW4x-container\",nodeId:\"dfR7exW4x\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"dfR7exW4x\",KPv3NeVnR:\"Event Tech Solution\",layoutId:\"dfR7exW4x\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1e40p8c,variant:\"x_144p6bU\",width:\"100%\"})})})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vj0j5i\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"uWmc2anKA\",style:{transformPerspective:500},children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1ffc6eb\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"XnVmqFV5t\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wjfyxw\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"FLXWOLiqL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({FjZkqM0mS:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cblrl7-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sCYqr7jRE-container\",nodeId:\"sCYqr7jRE\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"sCYqr7jRE\",KPv3NeVnR:\"All Projects\",layoutId:\"sCYqr7jRE\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX11bbrx5,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({FjZkqM0mS:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yg1aqf-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IafyRLvs6-container\",nodeId:\"IafyRLvs6\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"IafyRLvs6\",KPv3NeVnR:\"AR Projects\",layoutId:\"IafyRLvs6\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1yc83ec,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({FjZkqM0mS:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qr93wa-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oUzBwSe3C-container\",nodeId:\"oUzBwSe3C\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"oUzBwSe3C\",KPv3NeVnR:\"VR Projects\",layoutId:\"oUzBwSe3C\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1jgunv9,variant:\"x_144p6bU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rtngc\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"BMWSHmkbL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({FjZkqM0mS:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fg833m-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ty9f5MjL4-container\",nodeId:\"Ty9f5MjL4\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"Ty9f5MjL4\",KPv3NeVnR:\"Product Based Solution\",layoutId:\"Ty9f5MjL4\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1rt7z2,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({FjZkqM0mS:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dzr5n5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ltnAqGvdB-container\",nodeId:\"ltnAqGvdB\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"ltnAqGvdB\",KPv3NeVnR:\"Event Tech Solution\",layoutId:\"ltnAqGvdB\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1e40p8c,variant:\"x_144p6bU\",width:\"100%\"})})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-l6yhz4\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"LEMVuANlx\",style:{transformPerspective:500},children:[isDisplayed4()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1tgt6wc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"F3gklM48z\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ctky35\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"zGvIwV9CU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({jLubNOVOy:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6j4ehf-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nUx753_AZ-container\",nodeId:\"nUx753_AZ\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"nUx753_AZ\",KPv3NeVnR:\"All Projects\",layoutId:\"nUx753_AZ\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX11bbrx5,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({jLubNOVOy:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q2x8d4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v9jLmTMdg-container\",nodeId:\"v9jLmTMdg\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"v9jLmTMdg\",KPv3NeVnR:\"AR Projects\",layoutId:\"v9jLmTMdg\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1yc83ec,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({jLubNOVOy:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6116 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+138+23)+0+0+0+14+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-or6d0v-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"k2KN48A4H-container\",nodeId:\"k2KN48A4H\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"k2KN48A4H\",KPv3NeVnR:\"VR Projects\",layoutId:\"k2KN48A4H\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1jgunv9,variant:\"x_144p6bU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6pf7yn\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"SRTANfHNn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({jLubNOVOy:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w8tdyt-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fe2VNF4Wa-container\",nodeId:\"fe2VNF4Wa\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"fe2VNF4Wa\",KPv3NeVnR:\"Product Based Solution\",layoutId:\"fe2VNF4Wa\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1e40p8c,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({jLubNOVOy:{width:`max((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.6427 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+138+23)+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u2n3tv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"F6MVSppOY-container\",nodeId:\"F6MVSppOY\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"F6MVSppOY\",KPv3NeVnR:\"Event Tech Solution\",layoutId:\"F6MVSppOY\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1e40p8c,variant:\"x_144p6bU\",width:\"100%\"})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-14xm84b\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Mrzj_MiQs\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{mEN3mMb75:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gr9eyn\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Nj4sv9wc4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"109.4459px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+138+23)+0+0+6+0,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+138+23)+0+0+6+0},LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+138+23)+0+0+6+0},mEN3mMb75:{width:`max(((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.8146 - 30px) * 0.9936 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+138+23)+0+0+15+-1+0+0},Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+138+23)+0+0+6+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+138+23)+0+0+6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-msm70r-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"u1cxGYOyw-container\",nodeId:\"u1cxGYOyw\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"u1cxGYOyw\",KPv3NeVnR:\"All Projects\",layoutId:\"u1cxGYOyw\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1us64sb,variant:\"mpxfaSDZ1\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{uWD9LyBnX:uWD9LyBnX11bbrx5,variant:\"x_144p6bU\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"110.5085px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+138+23)+0+0+6+0,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+138+23)+0+0+6+0},LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+138+23)+0+0+6+0},mEN3mMb75:{width:`max(((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.8146 - 30px) * 0.9936 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+138+23)+0+0+15+-1+0+0},Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+138+23)+0+0+6+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+138+23)+0+0+6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dd9317-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uSJ45G4Zj-container\",nodeId:\"uSJ45G4Zj\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"uSJ45G4Zj\",KPv3NeVnR:\"AR Projects\",layoutId:\"uSJ45G4Zj\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1v0l3qo,variant:\"mpxfaSDZ1\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{uWD9LyBnX:uWD9LyBnX1yc83ec,variant:\"x_144p6bU\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"110.5085px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+138+23)+0+0+6+0,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+138+23)+0+0+6+0},LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+138+23)+0+0+6+0},mEN3mMb75:{width:`max(((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.8146 - 30px) * 0.9936 - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+138+23)+0+0+15+-1+0+0},Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+138+23)+0+0+6+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+138+23)+0+0+6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pfchwt-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PKkWVaVzN-container\",nodeId:\"PKkWVaVzN\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"PKkWVaVzN\",KPv3NeVnR:\"VR Projects\",layoutId:\"PKkWVaVzN\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1qsnf38,variant:\"mpxfaSDZ1\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{uWD9LyBnX:uWD9LyBnX1jgunv9,variant:\"x_144p6bU\"}},baseVariant,gestureVariant)})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"204.0157px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+138+23)+0+0+6+0,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+138+23)+0+0+6+0},LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+138+23)+0+0+6+0},Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+138+23)+0+0+6+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+138+23)+0+0+6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mwua8e-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ohX06NsFl-container\",nodeId:\"ohX06NsFl\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"ohX06NsFl\",KPv3NeVnR:\"Product Based Solutions\",layoutId:\"ohX06NsFl\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnXbnmxmx,variant:\"mpxfaSDZ1\",width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"176.3886px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+138+23)+0+0+6+0,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+138+23)+0+0+6+0},LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+138+23)+0+0+6+0},Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+138+23)+0+0+6+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+138+23)+0+0+6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11k6kd1-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"C2YvRHtZa-container\",nodeId:\"C2YvRHtZa\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"C2YvRHtZa\",KPv3NeVnR:\"Event Tech Solutions\",layoutId:\"C2YvRHtZa\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX66ye21,variant:\"mpxfaSDZ1\",width:\"100%\"})})})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2bqren\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"HPdlyQSdX\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uwmj1b-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ewcMmcGSD-container\",nodeId:\"ewcMmcGSD\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"ewcMmcGSD\",KPv3NeVnR:\"All Projects\",layoutId:\"ewcMmcGSD\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1us64sb,variant:\"mpxfaSDZ1\",width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iy7d55-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wdomM4Pof-container\",nodeId:\"wdomM4Pof\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"wdomM4Pof\",KPv3NeVnR:\"AR Projects\",layoutId:\"wdomM4Pof\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1v0l3qo,variant:\"mpxfaSDZ1\",width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7d79k-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qWoQQJ7GV-container\",nodeId:\"qWoQQJ7GV\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"qWoQQJ7GV\",KPv3NeVnR:\"VR Projects\",layoutId:\"qWoQQJ7GV\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1qsnf38,variant:\"mpxfaSDZ1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({mEN3mMb75:{width:`max(((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.8146 - 30px) * 1.0128 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+138+23)+0+0+15+49+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g5wyrd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vrbC1iyNk-container\",nodeId:\"vrbC1iyNk\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"vrbC1iyNk\",KPv3NeVnR:\"Product Based Solution\",layoutId:\"vrbC1iyNk\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX1rt7z2,variant:\"x_144p6bU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,...addPropertyOverrides({mEN3mMb75:{width:`max(((((${componentViewport?.width||\"100vw\"} - 64px) * 1.0061 - 150px) * 1.8146 - 30px) * 1.0128 - 34px) / 2, 50px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+138+23)+0+0+15+49+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ne6677-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"olQk4Xzo0-container\",nodeId:\"olQk4Xzo0\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTagCopy2,{height:\"100%\",id:\"olQk4Xzo0\",KPv3NeVnR:\"Event Tech Solution\",layoutId:\"olQk4Xzo0\",style:{height:\"100%\",width:\"100%\"},uWD9LyBnX:uWD9LyBnX66ye21,variant:\"x_144p6bU\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{uWD9LyBnX:uWD9LyBnX1e40p8c}},baseVariant,gestureVariant)})})})]})]})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-fu3i36\",\"data-framer-name\":\"Articles\",layoutDependency:layoutDependency,layoutId:\"sOAzydTzz\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ev246w\",layoutDependency:layoutDependency,layoutId:\"n4oHikdvr\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1lo6d2d\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Hy2nti_ER\",children:[/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1i1gmxd\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"esVkcOOQf\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WVwjPqsAj\"},implicitPathVariables:undefined},{href:{webPageId:\"WVwjPqsAj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,...addPropertyOverrides({LzqmhSlsF:{width:\"496px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18ko7pr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XIec3Wzho-container\",nodeId:\"XIec3Wzho\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(CardsProjectCard,{d3dSbB23_:\"NXT Interactive developed a cutting-edge interactive touch table application. This innovative solution transforms the traditional exhibition experience, allowing visitors to explore the selected island cities in a visually stunning and informative way.\",Dh0qw0gD6:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png\",srcSet:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png 1920w\"},\"Interactive Table App Exhibit\"),fW3AX6Ici:\"Marketing\",ggUqffW5q:false,height:\"100%\",id:\"XIec3Wzho\",jU5kfKgp4:resolvedLinks[0],K2Oeb_NQp:false,layoutId:\"XIec3Wzho\",LlMZcyhHX:\"Interactive Table App Exhibit\",mhlUl8lmj:false,MNAn86e_r:\"Design\",MPn7TWu6s:false,R5619Grpa:false,rseHb4u6z:false,style:{width:\"100%\"},TdgVxKEtU:\"Tag\",ThtLhM9ZA:\"Event Tech Solutions\",variant:\"zIQFAGqTb\",veGjw3jDh:\"Tag\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{jU5kfKgp4:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u0z4vw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xa0hD6PkJ-container\",nodeId:\"xa0hD6PkJ\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"xa0hD6PkJ\",layoutId:\"xa0hD6PkJ\",variant:\"Mb6I11U05\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+0+0+0+431}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rmpqxj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"u6EvThVBv-container\",nodeId:\"u6EvThVBv\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks1[0],height:\"100%\",id:\"u6EvThVBv\",layoutId:\"u6EvThVBv\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-9a517t\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Lphw_fyHM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d7e7xl\",layoutDependency:layoutDependency,layoutId:\"C8XjXOaNK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fl5bba-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bX2HfWOgU-container\",nodeId:\"bX2HfWOgU\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"bX2HfWOgU\",layoutId:\"bX2HfWOgU\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GCLcRcs5k\"},motionChild:true,nodeId:\"tA9yrcCZK\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1081,pixelWidth:1921,src:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg\",srcSet:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg 1921w\"},className:\"framer-1nl9l8y framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tA9yrcCZK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+0+0+0+0+0+0),pixelHeight:1081,pixelWidth:1921,sizes:\"496px\",src:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg\",srcSet:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bze7r9\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"f3DjH6HDA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-150it71\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"TYD7xZUpt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Facial Tracking Innovative Solution\"})}),className:\"framer-177eax9\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"kDYiq82nn\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're committed to pushing the boundaries of digital engagement. Our latest innovation, a personalized experience solution, goes beyond traditional face expression tracking to offer a more immersive and engaging user experience.\"})}),className:\"framer-1vo7ce0\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"L4BxeR8oC\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-171npd4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZyKAdlprX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+0+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uiglql-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"N8829zIGL-container\",nodeId:\"N8829zIGL\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks2[0],height:\"100%\",id:\"N8829zIGL\",layoutId:\"N8829zIGL\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kq3vxs\",layoutDependency:layoutDependency,layoutId:\"HD7pOi7If\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1rbpc3u\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"PigMnbQrd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mcfsi8\",layoutDependency:layoutDependency,layoutId:\"Of7pmb4TE\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cpimy9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zbxmD5uvv-container\",nodeId:\"zbxmD5uvv\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"zbxmD5uvv\",layoutId:\"zbxmD5uvv\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l3ck4M3uD\"},motionChild:true,nodeId:\"MlgUsiofQ\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:900,pixelWidth:1600,src:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg\",srcSet:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg 1600w\"},className:\"framer-1pho1ff framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MlgUsiofQ\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+728+0+0+0+0+0),pixelHeight:900,pixelWidth:1600,sizes:\"496px\",src:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg\",srcSet:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg 1600w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lz7er3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"m34kNeVIJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qf634s\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"V5kbrOSyF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Runner Gesture-Controlled Game\"})}),className:\"framer-5ecduw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Jga0q7UdX\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're all about pushing the boundaries of digital experiences. We don't just create games, we create immersive worlds that blur the lines between the physical and digital. \"})}),className:\"framer-18srqhh\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"RtQXxfK0L\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nep0bd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Ucy2N47bP\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+728+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cwdt7h-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"twSaIdLxv-container\",nodeId:\"twSaIdLxv\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks3[0],height:\"100%\",id:\"twSaIdLxv\",layoutId:\"twSaIdLxv\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1f6zlja\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"g46J3boEd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zt4nyb\",layoutDependency:layoutDependency,layoutId:\"sWvAgZxm6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xcl287-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"d540XWG5S-container\",nodeId:\"d540XWG5S\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"d540XWG5S\",layoutId:\"d540XWG5S\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"w5phwdISY\"},motionChild:true,nodeId:\"yQBHVRoXX\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1081,pixelWidth:1920,src:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg\",srcSet:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg 1920w\"},className:\"framer-hmlv1f framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yQBHVRoXX\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+728+0+0+0+0+0),pixelHeight:1081,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg\",srcSet:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pp3jq4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"IPG4CT0nH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d9jjke\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"j8YRXg0u9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Experiential and Interactive Cycle Exhibit\"})}),className:\"framer-tl8nc9\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"hOA4LaZDi\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Get ready to revolutionize your workout with NXT Interactive's latest project - the Interactive Cycle Exhibit! \"})}),className:\"framer-1wmvz8x\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"XTshmaLVF\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnmn55\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZtqA5OT9u\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+728+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q4lfw8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EQUKBOYkU-container\",nodeId:\"EQUKBOYkU\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks4[0],height:\"100%\",id:\"EQUKBOYkU\",layoutId:\"EQUKBOYkU\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ae94k\",layoutDependency:layoutDependency,layoutId:\"V6oyEBYwW\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1gw7k9d\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"vWPeM48O9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n7pkh2\",layoutDependency:layoutDependency,layoutId:\"KcQHqVd0X\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-159omac-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FOPeMO7zL-container\",nodeId:\"FOPeMO7zL\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"FOPeMO7zL\",layoutId:\"FOPeMO7zL\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RmGNGRF2q\"},motionChild:true,nodeId:\"jjOoxDDon\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:4524,pixelWidth:7916,src:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png 7916w\"},className:\"framer-c6pqpx framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jjOoxDDon\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+1456+0+0+0+0+0),pixelHeight:4524,pixelWidth:7916,sizes:\"496px\",src:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png 7916w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4xgxxl\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"tq_Mih8MM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k8kzq9\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"dDy2jSV6p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Touchscreen Memory \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Based Games\"})]}),className:\"framer-4u3pzq\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"lMIiahdZE\",style:{\"--extracted-2gxw0f\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're passionate about creating innovative digital solutions that bridge the gap between the online and offline worlds. Our recent project for Mimecast, a cybersecurity company, is a perfect example of how we leverage emerging technologies to deliver engaging and impactful experiences.\"})}),className:\"framer-1ebp6nx\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"xfLgkPciw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-me84oh\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"XLsNlv8aX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+1456+0+0+280+0+568+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u586o-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tbBTZFeqU-container\",nodeId:\"tbBTZFeqU\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks5[0],height:\"100%\",id:\"tbBTZFeqU\",layoutId:\"tbBTZFeqU\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-cht24m\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"h1CKL5KE2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w2q1ou\",layoutDependency:layoutDependency,layoutId:\"LWo8CFIUz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17knxts-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bCxBwM279-container\",nodeId:\"bCxBwM279\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"bCxBwM279\",layoutId:\"bCxBwM279\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yzEUgkFLj\"},motionChild:true,nodeId:\"dXx09JLI4\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1427,pixelWidth:2537,src:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png\",srcSet:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png 2537w\"},className:\"framer-1w840mx framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"dXx09JLI4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+1456+0+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:\"496px\",src:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png\",srcSet:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png 2537w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jqk3e\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"g9DproH7j\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kxuktc\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"sP0zzCrAH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive activities for Townhall\"})}),className:\"framer-12jkrxn\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"DVSrqyt1W\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we specialize in creating innovative and engaging digital solutions for events of all sizes. Our recent project for RWS Sentosa is a perfect example of how we can transform traditional townhall meetings into memorable and interactive experiences.\"})}),className:\"framer-8li42y\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"d9wORos2Q\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16jsiam\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"YLdz2cY4k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+1456+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xm87tx-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"D8SOzBuUf-container\",nodeId:\"D8SOzBuUf\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks6[0],height:\"100%\",id:\"D8SOzBuUf\",layoutId:\"D8SOzBuUf\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b3mgbp\",layoutDependency:layoutDependency,layoutId:\"qhaI2BxJU\",children:[isDisplayed9()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-met313\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"jcNKg02IU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ryvnwv\",layoutDependency:layoutDependency,layoutId:\"Uu2PKb7GB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hw0z71-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ehg2z4sJ7-container\",nodeId:\"ehg2z4sJ7\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"ehg2z4sJ7\",layoutId:\"ehg2z4sJ7\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WZVjTBJYd\"},motionChild:true,nodeId:\"JDFVwL8hN\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1427,pixelWidth:2537,src:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png\",srcSet:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png 2537w\"},className:\"framer-14ct6x2 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JDFVwL8hN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i1zccb\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"j4GEPV8wZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h8ioa0\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"emmGOPguR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Revolutionizing Events with AI Emcee\"})}),className:\"framer-zuertn\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"CyNqiHTvR\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"The future of event hosting is here, and it's powered by artificial intelligence. NXT Interactive is proud to introduce our groundbreaking AI Emcee, a virtual host designed to redefine event experiences.\"})}),className:\"framer-xxjlm2\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"r0PyhNXeM\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j6ict7\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"HQzULs23B\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HExRZpJ6Z\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5751le-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aG6QiytrW-container\",nodeId:\"aG6QiytrW\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks7[0],height:\"100%\",id:\"aG6QiytrW\",layoutId:\"aG6QiytrW\",style:{height:\"100%\"},vgA964TAm:\"Event Experiential\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HExRZpJ6Z\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4buj4s-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HHUq2dECw-container\",nodeId:\"HHUq2dECw\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks8[0],height:\"100%\",id:\"HHUq2dECw\",layoutId:\"HHUq2dECw\",style:{height:\"100%\"},vgA964TAm:\"Generative AI\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-14a091d\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"EWbDOTQTw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10s1vzs\",layoutDependency:layoutDependency,layoutId:\"fwSsXfQ_x\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jyao4t-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qYJIsEBA3-container\",nodeId:\"qYJIsEBA3\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"qYJIsEBA3\",layoutId:\"qYJIsEBA3\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DBveFMrFH\"},motionChild:true,nodeId:\"Vp2kdJZ4f\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:719,pixelWidth:1280,src:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg\",srcSet:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg 1280w\"},className:\"framer-xbere9 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Vp2kdJZ4f\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4036+0+0+0+0+0),pixelHeight:719,pixelWidth:1280,sizes:\"496px\",src:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg\",srcSet:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg 1280w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19b9r2w\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"o1gx7EPPp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zukgi5\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"bdQ19rx1P\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive Rotoscope Wall\"})}),className:\"framer-vkroq9\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"vxoVKJxXH\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive recently unveiled its experiential technology, Rotoscope our their recent event. This innovative exhibit captivated attendees with its unique blend interactive elements, and stunning visuals.\"})}),className:\"framer-iqrsuo\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"kUpyb7N3X\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17yma99\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"HptoNJYji\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4036+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uou46-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CkGMj6BBl-container\",nodeId:\"CkGMj6BBl\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks9[0],height:\"100%\",id:\"CkGMj6BBl\",layoutId:\"CkGMj6BBl\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-19du5a8\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"BrqjBvX6a\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-alw82y\",layoutDependency:layoutDependency,layoutId:\"inWUCoKfY\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TjQnbLZEy\"},motionChild:true,nodeId:\"ETF_cyth_\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Digital library\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png\",srcSet:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png 1031w\"},className:\"framer-14q25oc framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ETF_cyth_\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"Digital library\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4036+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"496px\",src:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png\",srcSet:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r3e8vm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"hFwLPGWSW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lo0bul\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qeKqtCase\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TjQnbLZEy\"},motionChild:true,nodeId:\"V97codOk0\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Interactive Digital Library\"})})})}),className:\"framer-17sxtfh\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"V97codOk0\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"HSBC is a leading global bank came up with some new services specifically designed for Women Entrepreneurs. In order to market the new services, we developed a touchscreen-based interactive digital library with flip-book hotspots.\"})}),className:\"framer-y12lvt\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"M1YlhYHRO\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1up1cvh\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"FPeq_l6EK\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4036+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j3sap8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CuzeyfmDR-container\",nodeId:\"CuzeyfmDR\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks10[0],height:\"100%\",id:\"CuzeyfmDR\",layoutId:\"CuzeyfmDR\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ipnxup\",layoutDependency:layoutDependency,layoutId:\"keeDxo6Kw\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-190tas1\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"QSYiQqQRD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eczqh5\",layoutDependency:layoutDependency,layoutId:\"Bp4I3LV3N\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1njxdrg-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yIVi0leva-container\",nodeId:\"yIVi0leva\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"yIVi0leva\",layoutId:\"yIVi0leva\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EiPEfpiEF\"},motionChild:true,nodeId:\"jPi58kJG8\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1081,pixelWidth:1920,src:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg\",srcSet:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg 1920w\"},className:\"framer-s2e16m framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jPi58kJG8\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4764+0+0+0+0+0),pixelHeight:1081,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg\",srcSet:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18d9ma\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZV6pyyU4z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dws98\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"zbtcGtnRQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Sling Your Message to the Sky: A Fun and Interactive Game\"})}),className:\"framer-13hv1j3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"tgR4Upcmn\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"The interactive slingshot game is a prime example of how technology can be used to create engaging and memorable experiences. By blending physical and digital elements, we can tap into the power of human interaction and create lasting connections.\"})}),className:\"framer-4rw3d2\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"zG5TA_FiB\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rwvzgj\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"KkiiTwU1k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4764+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lb10y3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AhwaQL0e2-container\",nodeId:\"AhwaQL0e2\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks11[0],height:\"100%\",id:\"AhwaQL0e2\",layoutId:\"AhwaQL0e2\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1i4xv8s\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"evWk_hptg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9cjmfv\",layoutDependency:layoutDependency,layoutId:\"iWWfOTrqu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q5408p-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oU_0uARM9-container\",nodeId:\"oU_0uARM9\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"oU_0uARM9\",layoutId:\"oU_0uARM9\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tQaU0b_Qs\"},motionChild:true,nodeId:\"tv9h9gLZA\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1921,src:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg\",srcSet:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg 1921w\"},className:\"framer-9hqv5z framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tv9h9gLZA\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4764+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:\"496px\",src:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg\",srcSet:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-95g435\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"If029gubX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y745dl\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"D5TNKxuQS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Phygital Twin Runner Game\"})}),className:\"framer-11hrlq4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"g0WeKUqBM\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Our innovative solution represents the future of fitness, where technology and human performance converge. By leveraging cutting-edge technology, we are redefining the way we approach health and wellness.\"})}),className:\"framer-ybyw21\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"aDOGRQESs\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1989342\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"snMcgNFtR\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+4764+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bpdns5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YVsj4FSL_-container\",nodeId:\"YVsj4FSL_\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks12[0],height:\"100%\",id:\"YVsj4FSL_\",layoutId:\"YVsj4FSL_\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uks6uq\",layoutDependency:layoutDependency,layoutId:\"ZDGzf7o78\",children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-t93zam\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"XB56SiRhN\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1wq5yis\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"NH6IJpYTs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1vn5j\",layoutDependency:layoutDependency,layoutId:\"B47FYsp_V\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UbHwUb_LY\"},motionChild:true,nodeId:\"Yri34oc5m\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"HSBC digital transformation\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png\",srcSet:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png 1031w\"},className:\"framer-1d4rntl framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Yri34oc5m\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"HSBC digital transformation\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+5492+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"496px\",src:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png\",srcSet:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-inysdw\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"tbL5utUOU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13xfku4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"RhlQdnNuu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UbHwUb_LY\"},motionChild:true,nodeId:\"aeJqaiiLo\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"HSBC Digital Transformation\"})})})}),className:\"framer-vn75x1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"aeJqaiiLo\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an interactive multi-lingual touch-app based quiz to collect real-time user feedback from credit card users of HSBC, a leading global bank that offers a variety of financial products and services.\"})}),className:\"framer-1qndayn\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"vgr9UrH3C\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jf8d40\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"NfOi0wjNi\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+5492+0+0+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-olljlf-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"F1SJrkAU4-container\",nodeId:\"F1SJrkAU4\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks13[0],height:\"100%\",id:\"F1SJrkAU4\",layoutId:\"F1SJrkAU4\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1kjnzh8\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"yc6FHAZGr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dlp4qy\",layoutDependency:layoutDependency,layoutId:\"zpDbnQjMQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.thoughtsequalresults.com/?r_done=1\",motionChild:true,nodeId:\"NVPL6nYQX\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"skeleton tracker\",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png\",srcSet:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png 902w\"},className:\"framer-f9gyuw framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NVPL6nYQX\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"skeleton tracker\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+5492+0+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:\"496px\",src:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png\",srcSet:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szclkl\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"EFoNwrw7Z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mw3k2a\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"keiRlZBU2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.thoughtsequalresults.com/?r_done=1\",motionChild:true,nodeId:\"HaYfUw_ly\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Skeleton Tracking Game\"})})})}),className:\"framer-u8m5m1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"HaYfUw_ly\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an interactive game for users to control the avatar on the large screen by running and jumping body actions. A Kinect camera would track the body movements in real-time and move the Avatar on screen accordingly.\"})}),className:\"framer-xaeolm\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"RejyHbqWY\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bu9jv5\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qokfvO8bq\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+5492+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xs2ssw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"duS8LiiYb-container\",nodeId:\"duS8LiiYb\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks14[0],height:\"100%\",id:\"duS8LiiYb\",layoutId:\"duS8LiiYb\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18dd08r\",layoutDependency:layoutDependency,layoutId:\"kYGFMiMn7\",children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-1xgkn4j\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"GX5vDClkG\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1o5vpdk\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"TbxTx7PxJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16rejml\",layoutDependency:layoutDependency,layoutId:\"yLO5mQ2L1\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZLabJi8vy\"},motionChild:true,nodeId:\"p2FObrT8o\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"flip disks canva\",fit:\"fill\",pixelHeight:384,pixelWidth:512,src:\"https://framerusercontent.com/images/kWNEgWSILDuChtDuKF1zKZoiIo.webp\"},className:\"framer-1ul6msc framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"p2FObrT8o\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"flip disks canva\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+6220+0+0+0+0+0+0+0),pixelHeight:384,pixelWidth:512,src:\"https://framerusercontent.com/images/kWNEgWSILDuChtDuKF1zKZoiIo.webp\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dlvfn8\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"jn8U9iDYh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fxnsbb\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"uJW3SEZDn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZLabJi8vy\"},motionChild:true,nodeId:\"PFH5EYUMq\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Flip Discs Canvas\"})})})}),className:\"framer-pfrdda\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"PFH5EYUMq\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed a custom interactive gesture game for a security company to teach their potential clients about the different types of security threats that businesses face, and how their security solutions can protect the businesses.\"})}),className:\"framer-1qq7bd4\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"J45LQ2nUT\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ftcz73\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"PY1q0jOfe\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+6220+0+0+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-udwjlr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WNrGZWMBd-container\",nodeId:\"WNrGZWMBd\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks15[0],height:\"100%\",id:\"WNrGZWMBd\",layoutId:\"WNrGZWMBd\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1drikcc\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"rp8hrP3ox\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-124fpdx\",layoutDependency:layoutDependency,layoutId:\"tuJgcMDkV\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vxbicq-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sHGVwtvJf-container\",nodeId:\"sHGVwtvJf\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"sHGVwtvJf\",layoutId:\"sHGVwtvJf\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tcgXhoinx\"},motionChild:true,nodeId:\"wKzfzXu3q\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png\",srcSet:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png 1920w\"},className:\"framer-1q17nxo framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wKzfzXu3q\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+6220+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png\",srcSet:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m4vukr\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"H1zwC0KuF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v6w8re\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"k8OhsXymB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive Exhibits for events/conferences\"})}),className:\"framer-bg54xe\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"H0y_sx0d6\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"In today's fast-paced digital world, conferences must go beyond traditional lectures and presentations to capture the attention of attendees. Interactive exhibits offer a unique opportunity to engage participants, spark discussions, and create memorable experiences.\"})}),className:\"framer-1sbxxu6\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"zQolVOcyy\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ck0icw\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"fJYIAvSkk\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+6220+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13l7jdi-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Njz9UgTqf-container\",nodeId:\"Njz9UgTqf\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks16[0],height:\"100%\",id:\"Njz9UgTqf\",layoutId:\"Njz9UgTqf\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks16[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-118zcak\",layoutDependency:layoutDependency,layoutId:\"r9h0u1Pzg\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-9iciuh\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"HBf9PFgtG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qxz9nt\",layoutDependency:layoutDependency,layoutId:\"Cx3tlGtMZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-179200k-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kPymcnyDV-container\",nodeId:\"kPymcnyDV\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"kPymcnyDV\",layoutId:\"kPymcnyDV\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fna_DgboI\"},motionChild:true,nodeId:\"JAC19WTXX\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:900,pixelWidth:1600,src:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg\",srcSet:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg 1600w\"},className:\"framer-1vycdf9 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JAC19WTXX\",...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+2384+0+0+0+0+0),pixelHeight:900,pixelWidth:1600,sizes:\"496px\",src:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg\",srcSet:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg 1600w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zfb58j\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"CHDbGzfo6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7253db\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"jFHo8ySUR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"nqiaQwcsr\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Question-Based AI Avatar \"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"nqiaQwcsr\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Photobooth\"})})})]}),className:\"framer-qftmyn\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"nqiaQwcsr\",style:{\"--extracted-2gxw0f\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We're all about crafting unforgettable digital experiences that bridge the gap between online and offline worlds. Now, we're thrilled to partner with Aluxe to bring you a magical AI photobooth experience featuring your favorite Disney princesses!\"})}),className:\"framer-qb4v8d\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"IBCWlItWo\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ykdtkd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"iCAzf9tM3\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+2384+0+0+276+0+568+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s8oz0b-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sB_FoP5QM-container\",nodeId:\"sB_FoP5QM\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks17[0],height:\"100%\",id:\"sB_FoP5QM\",layoutId:\"sB_FoP5QM\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks17[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-17e8aqx\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"EoXEpSjJZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xepv21\",layoutDependency:layoutDependency,layoutId:\"IOksvt7Hb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z5gybj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mtyHjqifr-container\",nodeId:\"mtyHjqifr\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"mtyHjqifr\",layoutId:\"mtyHjqifr\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zUO7i3z3F\"},motionChild:true,nodeId:\"QoN2yoTa4\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1219,pixelWidth:2362,src:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png\",srcSet:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png 2362w\"},className:\"framer-r84410 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QoN2yoTa4\",style:{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(173, 40, 171, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(173, 40, 171, 0.16), 0px 10px 10px -3.75px rgba(173, 40, 171, 0.06)\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+2384+0+0+0+0+0),pixelHeight:1219,pixelWidth:2362,sizes:\"496px\",src:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png\",srcSet:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png 2362w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yimce1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"y2G5GbAtP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j24lvg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"QWxLrw2U1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"AI Avatar Photobooth\"})}),className:\"framer-1q81yhc\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Vd5S0m9H3\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We, at NXT Interactive, have made this imagination a reality with our revolutionary AI Photobooth solution. Harnessing the power of generative AI, we've unlocked a portal where your personal dreams become your stunning, personalized portraits.\"})}),className:\"framer-1j6z8zl\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Bdc0CQjvD\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5t3fkl\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"nowXljfgY\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+2384+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uu4sc6-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"m3Jm9fKJa-container\",nodeId:\"m3Jm9fKJa\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks18[0],height:\"100%\",id:\"m3Jm9fKJa\",layoutId:\"m3Jm9fKJa\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks18[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-150i2wv\",layoutDependency:layoutDependency,layoutId:\"OSviBlkI_\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-b3qtds\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"nbkA7ytqS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qg5d7e\",layoutDependency:layoutDependency,layoutId:\"ht4T4gGiN\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1halpas-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iqvXsyV5e-container\",nodeId:\"iqvXsyV5e\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"iqvXsyV5e\",layoutId:\"iqvXsyV5e\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XkH6LO8aj\"},motionChild:true,nodeId:\"y4jpxJpc2\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1427,pixelWidth:2537,src:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png\",srcSet:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png 2537w\"},className:\"framer-rh09y2 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"y4jpxJpc2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+3308+0+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:\"496px\",src:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png\",srcSet:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png 2537w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2zy3o8\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"vLEKF3M5Y\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7akqst\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Hv5jNAwDP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Revolutionizing Events with AI Emcee\"})}),className:\"framer-204kk8\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"C48aL5lyd\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"The future of event hosting is here, and it's powered by artificial intelligence. NXT Interactive is proud to introduce our groundbreaking AI Emcee, a virtual host designed to redefine event experiences.\"})}),className:\"framer-3fhv7t\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"kxIHv44Jy\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wibbf6\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Pu_7EPc5_\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+3308+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dauy0r-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PBXsc5ucd-container\",nodeId:\"PBXsc5ucd\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks19[0],height:\"100%\",id:\"PBXsc5ucd\",layoutId:\"PBXsc5ucd\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks19[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1t69wl8\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"CmgvLDPZ7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xe1ni5\",layoutDependency:layoutDependency,layoutId:\"MFrxZcp5d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iin9db-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E_qaOvHL8-container\",nodeId:\"E_qaOvHL8\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"E_qaOvHL8\",layoutId:\"E_qaOvHL8\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bYarPO2Uo\"},motionChild:true,nodeId:\"ClYCDi_vS\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:714,pixelWidth:1269,src:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png\",srcSet:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png 1269w\"},className:\"framer-1upes60 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ClYCDi_vS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({LzqmhSlsF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+3308+0+0+0+0+0),pixelHeight:714,pixelWidth:1269,sizes:\"496px\",src:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png\",srcSet:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png 1269w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pmk7ey\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"b_THxeKfe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ulr1ev\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"DkBhMFkFE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Sustainability AI Photobooth\"})}),className:\"framer-ypnou8\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"bMw_ooFL5\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're committed to creating digital experiences that not only entertain but also inspire positive change. That's why we're thrilled to partner with the Singapore Business Federation (SBF) to introduce an innovative AI photobooth.\"})}),className:\"framer-gwcn7b\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"vbhqOYGcJ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mux3hp\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"xRmsfHDGQ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+184+46)+32+3308+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1axu817-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"U8Pb8Auuc-container\",nodeId:\"U8Pb8Auuc\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks20[0],height:\"100%\",id:\"U8Pb8Auuc\",layoutId:\"U8Pb8Auuc\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({LzqmhSlsF:{bDG7N3o0z:resolvedLinks20[1]}},baseVariant,gestureVariant)})})})})})]})]})]})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ju0913\",\"data-framer-name\":\"Articles mv\",layoutDependency:layoutDependency,layoutId:\"qYyaXdhh9\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w2g8bx\",layoutDependency:layoutDependency,layoutId:\"lkZWgwi0L\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-5cby5r\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"z6vq3RzjN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lt7lfr\",layoutDependency:layoutDependency,layoutId:\"JgZfzXJpa\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tH67z_PAx\"},motionChild:true,nodeId:\"t_vhf8xFF\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"shiseido cosmetics\",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png\",srcSet:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png 902w\"},className:\"framer-lkqebp framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"t_vhf8xFF\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"shiseido cosmetics\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+728+0+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:\"496px\",src:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png\",srcSet:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q08ghq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Gtx4B9xZf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-664sft\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"EI6LnVDID\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hz0um0\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"T_VFWP7ij\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10adaau\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LfjLhOLgb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tH67z_PAx\"},motionChild:true,nodeId:\"XtYg6dFzI\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Product Launch\"})})})}),className:\"framer-yazynk\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"XtYg6dFzI\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown Metaverse solution for Shiseido to introduce new cosmetic products. Inclusive of features like custom 3D spaces, custom games, live calls/chats, spatial audio, photobooth, live-streaming and much more.\"})}),className:\"framer-1mjqrn1\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"bwO1bbuss\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zvl4u5\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"dvVBl0jii\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rq2m3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KxrK4mdd6-container\",nodeId:\"KxrK4mdd6\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks21[0],height:\"100%\",id:\"KxrK4mdd6\",layoutId:\"KxrK4mdd6\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{bDG7N3o0z:resolvedLinks21[1]}},baseVariant,gestureVariant)})})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x183ov\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"TLM1iSEx1\"})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1ayjyde\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"pRGZlc1vL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ymw89\",layoutDependency:layoutDependency,layoutId:\"E6xx4d_Cl\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iLDLreXzX\"},motionChild:true,nodeId:\"fjuPndfnN\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Hopescaoe meta\",fit:\"fill\",pixelHeight:1010,pixelWidth:2062,src:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png\",srcSet:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=512 512w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png 2062w\"},className:\"framer-54wjs2 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fjuPndfnN\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"Hopescaoe meta\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+728+0+0+0+0+0),pixelHeight:1010,pixelWidth:2062,sizes:\"496px\",src:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png\",srcSet:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=512 512w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png 2062w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jl98p3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"bs1JvvHwN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yfd1z1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"JxYpVIOz3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iLDLreXzX\"},motionChild:true,nodeId:\"eJwpw_R_G\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Hopescape Metaverse\"})})})}),className:\"framer-1er8bq2\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"eJwpw_R_G\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown Metaverse solution for Children's Cancer Foundation (CCF). Inclusive of features like custom 3D spaces, custom games, custom avatars, photobooth, live-streaming, exhibition space and much more.\"})}),className:\"framer-2ofz19\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"zo5sPTNbS\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kkzfv6\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"yAuNLDuPn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks22=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h47w79-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kYeOnTCIz-container\",nodeId:\"kYeOnTCIz\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks22[0],height:\"100%\",id:\"kYeOnTCIz\",layoutId:\"kYeOnTCIz\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{bDG7N3o0z:resolvedLinks22[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x64xc8\",layoutDependency:layoutDependency,layoutId:\"mDC6WEG_K\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1oirblu\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ML4DBrN1W\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13rn8or\",layoutDependency:layoutDependency,layoutId:\"CEBO3JrtS\",children:/*#__PURE__*/_jsx(Link,{href:JaVe4n8g3,motionChild:true,nodeId:\"AD8tso4H9\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1010,pixelWidth:2062,src:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png\",srcSet:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png 2062w\"},className:\"framer-1wpwuvr framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"AD8tso4H9\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+1476+0+0+0+0+0),pixelHeight:1010,pixelWidth:2062,sizes:\"496px\",src:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png\",srcSet:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png 2062w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ptdkyb\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WfJfVbRIo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wtvrp7\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"cZqc8ddfq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c8jtpg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"yZDpkuYUw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"qm17seQFc\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Fashion  Metaverse Event\"})})})}),className:\"framer-10g259o\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"qm17seQFc\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown Metaverse solution for Bangkok International Fashion Week (BIFW). Inclusive of features like custom 3D spaces, custom games, live calls, spatial audio, photobooth, live-streaming and much more.\"})}),className:\"framer-1o7gzu7\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"ktpcUg5OE\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kaki6z\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LApJleiEE\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks23=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hgkl6z-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LOTck0MKl-container\",nodeId:\"LOTck0MKl\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks23[0],height:\"100%\",id:\"LOTck0MKl\",layoutId:\"LOTck0MKl\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{bDG7N3o0z:resolvedLinks23[1]}},baseVariant,gestureVariant)})})})})})]})]}),isDisplayed11()&&/*#__PURE__*/_jsx(motion.button,{className:\"framer-6vezyn\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Q5Ioutdcs\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cx6b55\",layoutDependency:layoutDependency,layoutId:\"MGo6glY9_\"})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-p010sw\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ZcTdjXAvH\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pg8s29\",layoutDependency:layoutDependency,layoutId:\"w_amyNXXY\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"MELIwXl4F\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png\",srcSet:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png 1920w\"},className:\"framer-1097v5c framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MELIwXl4F\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+1476+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png\",srcSet:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png 1920w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eql1f1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LX2DaAfF6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vg1rst\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WzO1ERMZI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:[\"Theme Based \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"G5KLFSPwT\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Space \"})})]})}),className:\"framer-dfby93\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"G5KLFSPwT\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We transformed Durex's year-end party into an immersive experience by designing a thematic venue, incorporating interactive workshops, and integrating games that subtly conveyed product messages. \"})}),className:\"framer-6w53p5\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"p08hthWOM\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8tovdi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"AA_2JHzy5\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks24=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t71o4j-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tBFutrFUU-container\",nodeId:\"tBFutrFUU\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks24[0],height:\"100%\",id:\"tBFutrFUU\",layoutId:\"tBFutrFUU\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{bDG7N3o0z:resolvedLinks24[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a3whe5\",layoutDependency:layoutDependency,layoutId:\"Hnt5Q_8eU\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1369tbc\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"VF1gARS5l\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t86rct\",layoutDependency:layoutDependency,layoutId:\"F_qnWMizJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zmpy5d-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a7EiNl4Qy-container\",nodeId:\"a7EiNl4Qy\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"a7EiNl4Qy\",layoutId:\"a7EiNl4Qy\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GWW47JIBp\"},motionChild:true,nodeId:\"hk0OJjI9A\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png\",srcSet:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png 1920w\"},className:\"framer-xmtbq5 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hk0OJjI9A\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png\",srcSet:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13sjra1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"fkC11COJq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14o1700\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"RIghQ3M6w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"UD4Eo4k_F\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Theme Based Metaverse\"})})})}),className:\"framer-1xr2put\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"UD4Eo4k_F\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Nanyang Polytechnic (NYP) is pioneering a novel approach to Pre-Freshmen Orientation (FMO) by incorporating the Metaverse and the fantastical world of Pandora. This immersive experience reimagines the physical campus and transforms FMO into an unforgettable journey.\"})}),className:\"framer-xrm4m3\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"JBO6ycTbx\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19kkrwi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"nKCHfcA8y\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks25=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+0+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xm5szr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NYvVKqF_O-container\",nodeId:\"NYvVKqF_O\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks25[0],height:\"100%\",id:\"NYvVKqF_O\",layoutId:\"NYvVKqF_O\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{bDG7N3o0z:resolvedLinks25[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-warjhg\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"mcrtTlXC2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-41hzgn\",layoutDependency:layoutDependency,layoutId:\"D94LpXH_9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ka0fyz-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jsHUSaexr-container\",nodeId:\"jsHUSaexr\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"jsHUSaexr\",layoutId:\"jsHUSaexr\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PCs8W2UIF\"},motionChild:true,nodeId:\"Erq3yicZi\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1427,pixelWidth:2537,src:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png 2537w\"},className:\"framer-1139g1z framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Erq3yicZi\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+0+0+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:\"496px\",src:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png 2537w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14t3i1g\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"vPMQi3k1F\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pkxqsy\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qcJIlLChG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"zxcFcdPdw\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Gamified Metaverse\"})})})}),className:\"framer-sm40d8\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"zxcFcdPdw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive has stepped onto the pitch with a groundbreaking project for Singapore Pools - the world's first metaverse experience featuring a football game! This innovative approach to user education goes beyond the traditional and dives into the immersive world of the metaverse, making learning about responsible betting fun and engaging.\"})}),className:\"framer-1w5s731\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"zCn53Ir8n\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-edj4yl\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"fRC18fKZQ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks26=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+0+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wqoyoj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wLKk4CNMo-container\",nodeId:\"wLKk4CNMo\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks26[0],height:\"100%\",id:\"wLKk4CNMo\",layoutId:\"wLKk4CNMo\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{bDG7N3o0z:resolvedLinks26[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h50pth\",layoutDependency:layoutDependency,layoutId:\"V9IR1Gv3_\",children:[isDisplayed11()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1cefy9a\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"WMaAY9SpV\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mu8zb2\",layoutDependency:layoutDependency,layoutId:\"hTFdZYnnM\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"TCr7DRWHl\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png\",srcSet:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png 1920w\"},className:\"framer-13vjbw framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TCr7DRWHl\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p2qdaq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"sDpaRKgru\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xdf346\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"kOb8tPTVx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"MbNvATKGc\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Space For Durex Year End Campaign\"})})})}),className:\"framer-13p4zm7\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"MbNvATKGc\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We transformed Durex's year-end party into an immersive experience by designing a thematic venue, incorporating interactive workshops, and integrating games that subtly conveyed product messages. \"})}),className:\"framer-9bnu7p\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"cDh8yLrGG\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r6k2hw\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LFyq34ZqT\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks27=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zabysg-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BBNwXcVSI-container\",nodeId:\"BBNwXcVSI\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks27[0],height:\"100%\",id:\"BBNwXcVSI\",layoutId:\"BBNwXcVSI\",style:{height:\"100%\"},vgA964TAm:\"Virtual Spaces\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1tzt6fp\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"njP6IpdGs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-atzcok\",layoutDependency:layoutDependency,layoutId:\"hxXGE2bme\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"juiuKBJQX\"},motionChild:true,nodeId:\"A5gemfmtE\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Penfolds \",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png\",srcSet:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png 902w\"},className:\"framer-v9kclw framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"A5gemfmtE\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"Penfolds \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+2204+0+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:\"496px\",src:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png\",srcSet:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mje7oy\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"u5LvsK6vp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1izwd4n\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"PU4CQ6BiG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"juiuKBJQX\"},motionChild:true,nodeId:\"Vr_mrVcHg\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Tech Interactive Website\"})})})}),className:\"framer-ffcjtv\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Vr_mrVcHg\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive virtual site for Penfolds Wines, where users can experience the journey of wine making. Addtionally users can learn about the history of the vineyards, the founders of Penfolds and the chef introductions before buying one from the retail side of the website.\"})}),className:\"framer-amv2tf\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"ykvkQ1EZc\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-go1hfm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Pa2f03BTk\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks28=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12v9zzv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Y3iSot3rW-container\",nodeId:\"Y3iSot3rW\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"Y3iSot3rW\",iTrJ_SjbG:resolvedLinks28[0],KPv3NeVnR:\"Product Based Solutions\",layoutId:\"Y3iSot3rW\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{iTrJ_SjbG:resolvedLinks28[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-10ssoj1\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"m8L28img9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wsp3l\",layoutDependency:layoutDependency,layoutId:\"FmiH_o77y\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BA4mkZZZ2\"},motionChild:true,nodeId:\"Ld7haHPp9\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sephora virtual event\",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png\",srcSet:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png 902w\"},className:\"framer-hs1k7r framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ld7haHPp9\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"Sephora virtual event\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+2204+0+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:\"496px\",src:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png\",srcSet:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b4w1jm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"AlTxS5pLq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9200n\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"dvCod5C_n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vcXzPxvSZ\"},motionChild:true,nodeId:\"gYCtnsacx\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"360-Degree Virtual Event\"})})})}),className:\"framer-1p16kfm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"gYCtnsacx\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive 360-degree virtual platform for Sephora Dance & Dinner Event. Inclusive of features like Memory lane, Treasure hunt, Instagram filters and games, photobooth and much more.\"})}),className:\"framer-r0lyh1\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"xQeWEGbq5\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i7weua\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"JlFraOWmM\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks29=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sg5mui-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eJ9DAwzjK-container\",nodeId:\"eJ9DAwzjK\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"eJ9DAwzjK\",iTrJ_SjbG:resolvedLinks29[0],KPv3NeVnR:\"Product Based Solutions\",layoutId:\"eJ9DAwzjK\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{iTrJ_SjbG:resolvedLinks29[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jolphy\",layoutDependency:layoutDependency,layoutId:\"X7UPDeXCD\",children:[isDisplayed11()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-dl5j9t\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"IrJb7N5JE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kw8f3b\",layoutDependency:layoutDependency,layoutId:\"cr3LnqNOZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BA4mkZZZ2\"},motionChild:true,nodeId:\"VhgV_58xe\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sephora virtual event\",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png\",srcSet:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png 902w\"},className:\"framer-jiktzq framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VhgV_58xe\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184sj3t\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"EbuYDSSHo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jnt8t7\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"VeIiTfIem\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vcXzPxvSZ\"},motionChild:true,nodeId:\"bIT6zwgqw\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Sephora D&D Virtual Event\"})})})}),className:\"framer-ghzht9\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"bIT6zwgqw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive 360-degree virtual platform for Sephora Dance & Dinner Event. Inclusive of features like Memory lane, Treasure hunt, Instagram filters and games, photobooth and much more.\"})}),className:\"framer-1hb2uq3\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"OAwJEF_kL\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kklinq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"C_Ff7UJiF\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sVbhYY8Pu\"},implicitPathVariables:undefined}],children:resolvedLinks30=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ykhqhy-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SDO2ut8tC-container\",nodeId:\"SDO2ut8tC\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"SDO2ut8tC\",iTrJ_SjbG:resolvedLinks30[0],KPv3NeVnR:\"Virtual Spaces\",layoutId:\"SDO2ut8tC\",style:{height:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-za7xg0\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"fSX4SEju1\",children:/*#__PURE__*/_jsx(motion.section,{className:\"framer-1fndhoc\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"wel_y34g2\",children:/*#__PURE__*/_jsxs(motion.section,{className:\"framer-sus039\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"GEdup4pFX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-34c3ib\",layoutDependency:layoutDependency,layoutId:\"htkSN2S1n\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JnN4hNC_l\"},motionChild:true,nodeId:\"BjScOFLp4\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Formica\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png\",srcSet:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png 1031w\"},className:\"framer-1335lte framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BjScOFLp4\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"Formica\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+2932+0+0+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"496px\",src:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png\",srcSet:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cvpo5d\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"yKwJPxXJH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m53bz8\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"rVbJojMRt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Digital Twin: 360-Degree Virtual Tour\"})}),className:\"framer-1be9um7\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"j9MAgo6y4\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown 360-degree virtual shorwoom for Formica\\xae Brand Laminate to introduce their new physical showroom without the need of a physical visit. Inclusive of features like 360-degree panoramic view, interactive hotspots and much more.\"})}),className:\"framer-10lcde\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"KbAvE7pAi\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g219h7\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"b5HcIrzo1\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks31=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iit0nm-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"T31AVt_Z8-container\",nodeId:\"T31AVt_Z8\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"T31AVt_Z8\",iTrJ_SjbG:resolvedLinks31[0],KPv3NeVnR:\"Product Based Solutions\",layoutId:\"T31AVt_Z8\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{iTrJ_SjbG:resolvedLinks31[1]}},baseVariant,gestureVariant)})})})})})]})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m16ieIx_Y\"},implicitPathVariables:undefined},{href:{webPageId:\"m16ieIx_Y\"},implicitPathVariables:undefined}],children:resolvedLinks32=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,...addPropertyOverrides({Mf6dVh02y:{width:\"496px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+2932+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13cqnmn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RjVVi3dJq-container\",nodeId:\"RjVVi3dJq\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(CardsProjectCardCopy4,{d3dSbB23_:\"Designed and developed an exclusive lifestyle mobile app for Asia's greatest innovators and experts in art, finance, technology and mixology. Members and non-members can easily enjoy the services or book events at various MAVEN outlets and merchants with MAVEN credit system.\",Dh0qw0gD6:addImageAlt({pixelHeight:466,pixelWidth:902,src:\"https://framerusercontent.com/images/m8ugDzuFtqBXBH0lAwMdOZECKmw.png\",srcSet:\"https://framerusercontent.com/images/m8ugDzuFtqBXBH0lAwMdOZECKmw.png?scale-down-to=512 512w,https://framerusercontent.com/images/m8ugDzuFtqBXBH0lAwMdOZECKmw.png 902w\"},\"MAVEN Global Retail App\"),height:\"100%\",id:\"RjVVi3dJq\",jU5kfKgp4:resolvedLinks32[0],K2Oeb_NQp:false,layoutId:\"RjVVi3dJq\",LlMZcyhHX:\"Global Retail App\",style:{width:\"100%\"},variant:\"GPah7LxOU\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{jU5kfKgp4:resolvedLinks32[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c3eu08\",layoutDependency:layoutDependency,layoutId:\"gT8C7pE0O\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-s8jfpa\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"V1LTuIM1c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ue6ni4\",layoutDependency:layoutDependency,layoutId:\"bJDGU8OPO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cuxwtp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kXrD5pOU1-container\",nodeId:\"kXrD5pOU1\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"kXrD5pOU1\",layoutId:\"kXrD5pOU1\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"h1KFWLcqd\"},motionChild:true,nodeId:\"LCXl1cIbg\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1219,pixelWidth:2362,src:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png\",srcSet:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png 2362w\"},className:\"framer-xqu9n4 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LCXl1cIbg\",...addPropertyOverrides({Mf6dVh02y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+3660+0+0+0+0+0),pixelHeight:1219,pixelWidth:2362,sizes:\"496px\",src:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png\",srcSet:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png 2362w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xsvn9z\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"dTnWbYNOC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t9vvc4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LcTk8Qqfy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"Gk46NFKEz\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Web based Interactive Games\"})})})}),className:\"framer-1nlti4f\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Gk46NFKEz\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Zeiss is an engaging and informative web project created by NXT Interactive. It's designed to be a one-stop shop for learning and testing your knowledge through a combination of educational videos and interactive games.\"})}),className:\"framer-kt5ok2\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"YT5brfVHg\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w75dvx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ELes0eeh1\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uJaIWlw8M\"},implicitPathVariables:undefined},{href:{webPageId:\"uJaIWlw8M\"},implicitPathVariables:undefined}],children:resolvedLinks33=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+184+46)+32+3660+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3snf3y-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uzrNgzAaE-container\",nodeId:\"uzrNgzAaE\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks33[0],height:\"100%\",id:\"uzrNgzAaE\",layoutId:\"uzrNgzAaE\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({Mf6dVh02y:{bDG7N3o0z:resolvedLinks33[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-usxze7\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Ix2lHzERt\"})]})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1unfnpk\",\"data-framer-name\":\"Articles vr\",layoutDependency:layoutDependency,layoutId:\"UNK4gC93B\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v9m9q3\",layoutDependency:layoutDependency,layoutId:\"Z6qvqlTMJ\",children:[isDisplayed13()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-jz0df8\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"lT03hIs_Z\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19uo7fv\",layoutDependency:layoutDependency,layoutId:\"FWJvm6tAc\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"SM7FJTapu\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png\",srcSet:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png 1920w\"},className:\"framer-197lmfo framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SM7FJTapu\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e2mtk9\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ukHNkt4Px\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u9ovb0\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"eSxBp6rfs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"QWxe5kvsT\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual  Space For Durex Year End Campaign\"})})})}),className:\"framer-1cuucpk\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"QWxe5kvsT\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We transformed Durex's year-end party into an immersive experience by designing a thematic venue, incorporating interactive workshops, and integrating games that subtly conveyed product messages. \"})}),className:\"framer-1cgrq15\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"ZAlmsTf6D\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f0eueu\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"pCvDP5kOd\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks34=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14emmks-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WHKl38SkW-container\",nodeId:\"WHKl38SkW\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks34[0],height:\"100%\",id:\"WHKl38SkW\",layoutId:\"WHKl38SkW\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-4j685u\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"UBgo8f7ac\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-jogy3x\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"hC1iJsLGB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nh09uh\",layoutDependency:layoutDependency,layoutId:\"YgOS6yhBy\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IF3SDKFdg\"},motionChild:true,nodeId:\"idFBkP914\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"VR Airport\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png\",srcSet:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png 1031w\"},className:\"framer-1hfczct framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"idFBkP914\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"VR Airport\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+0+0+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png\",srcSet:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png 1031w\"}},qAq98Zipt:{background:{alt:\"VR Airport\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+0+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"496px\",src:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png\",srcSet:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pps98f\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"EoDdW14KX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4owpot\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"APp9EbFN9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IF3SDKFdg\"},motionChild:true,nodeId:\"HiSKTJDgD\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Airport VR Terminal\"})})})}),className:\"framer-1eu3rq1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"HiSKTJDgD\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FjZkqM0mS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IF3SDKFdg\"},motionChild:true,nodeId:\"HiSKTJDgD\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Airport VR Terminal\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Virtual travel is a new and exciting way to experience the world without leaving your home. With virtual travel, you can explore popular destinations via. 360-degree videos, which allow you to look around in any direction as if you were actually there.\"})}),className:\"framer-1aglt39\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"QeGZ6ER9o\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fzv3g8\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"IGjy6NIXh\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks35=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-elbrws-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"auGr8b_3i-container\",nodeId:\"auGr8b_3i\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks35[0],height:\"100%\",id:\"auGr8b_3i\",layoutId:\"auGr8b_3i\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks35[2]},qAq98Zipt:{bDG7N3o0z:resolvedLinks35[1]}},baseVariant,gestureVariant)})})})})})]})]})}),isDisplayed13()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-xz6o83\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"vb1RGuRFj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5rcqlp\",layoutDependency:layoutDependency,layoutId:\"QYZeg9AmQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"juiuKBJQX\"},motionChild:true,nodeId:\"K55boywIt\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Penfolds \",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png\",srcSet:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png 902w\"},className:\"framer-9k6usf framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"K55boywIt\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fr1l19\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"poRX0ej9K\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ybxu5w\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"QpicGIuh4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"juiuKBJQX\"},motionChild:true,nodeId:\"Ae2l9qTq6\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Penfolds Interactive Website\"})})})}),className:\"framer-1eecwy7\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Ae2l9qTq6\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive virtual site for Penfolds Wines, where users can experience the journey of wine making. Addtionally users can learn about the history of the vineyards, the founders of Penfolds and the chef introductions before buying one from the retail side of the website.\"})}),className:\"framer-cth6tb\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Yf4dRkG_e\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s5teqm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"gysvAacVG\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sVbhYY8Pu\"},implicitPathVariables:undefined}],children:resolvedLinks36=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4j21ht-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"b0d26RPuN-container\",nodeId:\"b0d26RPuN\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"b0d26RPuN\",iTrJ_SjbG:resolvedLinks36[0],KPv3NeVnR:\"Virtual Spaces\",layoutId:\"b0d26RPuN\",style:{height:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-x650as\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"kswMYz4Ai\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q57di3\",layoutDependency:layoutDependency,layoutId:\"cSn4Bpwcq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mtetz8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"c99lf5bOx-container\",nodeId:\"c99lf5bOx\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"c99lf5bOx\",layoutId:\"c99lf5bOx\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fv9YwqFnt\"},motionChild:true,nodeId:\"D07qQkPtO\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({FjZkqM0mS:{href:{webPageId:\"SJoEotV5n\"}},qAq98Zipt:{href:{webPageId:\"SJoEotV5n\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png\",srcSet:\"https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png 1920w\"},className:\"framer-1dfeytd framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"D07qQkPtO\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+0+0+570+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png\",srcSet:\"https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png 1920w\"}},qAq98Zipt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png\",srcSet:\"https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cCwxHoejFK7GhUUZwWk5mY.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12357l0\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"PMnV6fmtb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g0h2is\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"xVlrvjmAs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"hMdb6CXr9\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Development and Learning         VR Training\"})})})}),className:\"framer-s1gxly\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"hMdb6CXr9\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FjZkqM0mS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"hMdb6CXr9\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Development and Learning VR Training\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive is shaking things up in eLearning with a brand new VR training solution. This innovative project tackles washroom maintenance, transforming how staff learn and remember essential cleaning procedures.\"})}),className:\"framer-1lioree\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"nCjDo9r2F\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-abga7i\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"aiZow9m5H\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HExRZpJ6Z\"},implicitPathVariables:undefined},{href:{webPageId:\"HExRZpJ6Z\"},implicitPathVariables:undefined},{href:{webPageId:\"HExRZpJ6Z\"},implicitPathVariables:undefined}],children:resolvedLinks37=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({FjZkqM0mS:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+0+0+570+0+181+0+318+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+0+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x23p69-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JIyhRNHHI-container\",nodeId:\"JIyhRNHHI\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks37[0],height:\"100%\",id:\"JIyhRNHHI\",layoutId:\"JIyhRNHHI\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks37[2]},qAq98Zipt:{bDG7N3o0z:resolvedLinks37[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed13()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-131do3s\",layoutDependency:layoutDependency,layoutId:\"gdcQvmlTd\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-14jqq31\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"mQjqWtiU3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-erf81d\",layoutDependency:layoutDependency,layoutId:\"fw1FSYlTV\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JnN4hNC_l\"},motionChild:true,nodeId:\"Ci6hnNIxw\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Formica\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png\",srcSet:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png 1031w\"},className:\"framer-rdchwn framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ci6hnNIxw\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13td28g\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"CCrAUhHtv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13bhbqx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"MCeBn7mLd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JnN4hNC_l\"},motionChild:true,nodeId:\"XiwRdyO8y\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Formica Virtual Showroom\"})})})}),className:\"framer-vg97ab\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"XiwRdyO8y\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown 360-degree virtual shorwoom for Formica\\xae Brand Laminate to introduce their new physical showroom without the need of a physical visit. Inclusive of features like 360-degree panoramic view, interactive hotspots and much more.\"})}),className:\"framer-1tufxs6\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"T5pM8_9Cp\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nxe392\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Yq_50QUO2\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sVbhYY8Pu\"},implicitPathVariables:undefined}],children:resolvedLinks38=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iexcm2-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bt3BRcpzm-container\",nodeId:\"bt3BRcpzm\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"bt3BRcpzm\",iTrJ_SjbG:resolvedLinks38[0],KPv3NeVnR:\"Virtual Spaces\",layoutId:\"bt3BRcpzm\",style:{height:\"100%\"},width:\"100%\"})})})})})]})]})}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14p5uco\",layoutDependency:layoutDependency,layoutId:\"yLMoyMQ9f\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-18ngdwx\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"FopAaiVro\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-q5b53\",layoutDependency:layoutDependency,layoutId:\"NL0_yFzuq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A5hMpJngm\"},motionChild:true,nodeId:\"C9w1jqKn6\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Walk the plank\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png\",srcSet:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=512 512w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png 1031w\"},className:\"framer-73ridh framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"C9w1jqKn6\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"Walk the plank\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+1121+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png\",srcSet:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=512 512w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ux6k1c\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Zn0e0L132\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1whd8to\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"TbXM87AWo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A5hMpJngm\"},motionChild:true,nodeId:\"GZeMjfka1\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Walk The Plank VR Game\"})})})}),className:\"framer-1l0jcaw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"GZeMjfka1\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive Walk The Plank/Ricjie's Plank VR game for X-Press Feeders, where users have to balance and walk on a wooden plank hanging out of the balcony on the 12th floor of a building and experience the vertigo.\"})}),className:\"framer-jb9jah\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"ls4_MJKvu\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rvzqr0\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WsoEsFhbg\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks39=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qu6lb0-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wVaS0DmKE-container\",nodeId:\"wVaS0DmKE\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks39[0],height:\"100%\",id:\"wVaS0DmKE\",layoutId:\"wVaS0DmKE\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks39[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-1u6wyej\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"UpKBseAEh\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-5z47k9\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Tf4e4LXl2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yd6gyv\",layoutDependency:layoutDependency,layoutId:\"mb_ruF7Jo\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrcvcRUbs\"},motionChild:true,nodeId:\"PEeIrHums\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"VR induatrial training\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,src:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg\",srcSet:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg 1280w\"},className:\"framer-oovnwt framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PEeIrHums\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"VR induatrial training\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+1121+0+558+0+0+0+0+0+0),pixelHeight:720,pixelWidth:1280,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg\",srcSet:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg 1280w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6z43ux\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Lw6kppHxd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iyac5x\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qgctJvNhF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrcvcRUbs\"},motionChild:true,nodeId:\"W1_q1zNI8\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Reality Industrial Training\"})})})}),className:\"framer-i8r5wa\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"W1_q1zNI8\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"VR-based training has the potential to open new vistas for the industrial workforce. Early adopters have exhibited the technology\u2019s unique and fascinating ways of training frontline workers, which is increasing the demand for immersive learning.\"})}),className:\"framer-9137mp\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"D66aqP5qZ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pn98fb\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"l_LLokvme\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks40=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bw828p-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AwyM12WIn-container\",nodeId:\"AwyM12WIn\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks40[0],height:\"100%\",id:\"AwyM12WIn\",layoutId:\"AwyM12WIn\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks40[1]}},baseVariant,gestureVariant)})})})})})]})]})})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kpy1w9\",layoutDependency:layoutDependency,layoutId:\"GyJCFXlFG\",children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-hthbiu\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"qePYnJrZk\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-90x8qf\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"YcMuEs7EH\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-piw9zr\",layoutDependency:layoutDependency,layoutId:\"EAuhwdorU\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNpMUop0s\"},motionChild:true,nodeId:\"mP7_e74jU\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Virtual reality training\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png\",srcSet:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png 1031w\"},className:\"framer-cej9rr framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mP7_e74jU\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"Virtual reality training\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+2228+0+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png\",srcSet:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-41jbmq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"vGy9KsB1l\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jmqqb3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"JeTXCfP0f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNpMUop0s\"},motionChild:true,nodeId:\"vY0mHryr1\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Reality Retail Training\"})})})}),className:\"framer-19l0d2h\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"vY0mHryr1\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"VR training allows retail employees to walk in the shoes of their customers so they\u2019re better prepared to provide excellent, empathetic service. In the headset, associates are transported from the store or contact center to inside the home of the customer.\"})}),className:\"framer-1po6zkq\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"BisvtH5wJ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t60r3t\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"mrVzVmJ4L\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks41=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jnk4mv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Bh2kKtC2m-container\",nodeId:\"Bh2kKtC2m\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks41[0],height:\"100%\",id:\"Bh2kKtC2m\",layoutId:\"Bh2kKtC2m\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks41[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1ewsztu\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"OKOql8jCS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s96g30\",layoutDependency:layoutDependency,layoutId:\"MCG1jjktc\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EZzexqhkU\"},motionChild:true,nodeId:\"wnmRszE5d\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"virtual Reality real estate\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png\",srcSet:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=512 512w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png 1031w\"},className:\"framer-1vne75f framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wnmRszE5d\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"virtual Reality real estate\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+2228+0+546+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png\",srcSet:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=512 512w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nd4wrj\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LFHa1hplr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18ztot6\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WFFW1kwS9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EZzexqhkU\"},motionChild:true,nodeId:\"XUoEluHnJ\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Reality Real Estate\"})})})}),className:\"framer-14j097y\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"XUoEluHnJ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Thanks to the benefits of virtual reality, end-customers achieve what they want through an immersive experience. After visualizing real estate products and sometimes even interacting with them, clients are more likely to make a purchase.\"})}),className:\"framer-145c0im\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"drO2uu0Rw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gon6pd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"YFPCeSZCh\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks42=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h7zso2-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"d7ptV5faO-container\",nodeId:\"d7ptV5faO\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks42[0],height:\"100%\",id:\"d7ptV5faO\",layoutId:\"d7ptV5faO\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks42[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lskmg8\",layoutDependency:layoutDependency,layoutId:\"pfLYFNmqw\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-acjn9g\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"oP2DJKlJT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m3yfg7\",layoutDependency:layoutDependency,layoutId:\"TLrX76BpJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ouuefb-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AJ68G4gZM-container\",nodeId:\"AJ68G4gZM\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"AJ68G4gZM\",layoutId:\"AJ68G4gZM\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YomjEFB02\"},motionChild:true,nodeId:\"HhVWeubsS\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({FjZkqM0mS:{href:{webPageId:\"q5_6ChxyZ\"}},qAq98Zipt:{href:{webPageId:\"q5_6ChxyZ\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg\",srcSet:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg 1920w\"},className:\"framer-env674 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HhVWeubsS\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+3336+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg\",srcSet:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg 1920w\"}},qAq98Zipt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+728+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg\",srcSet:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k4dgo1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WaHrYaWOm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1akt7mm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"XVBhfnDlM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Elevating the Game with VR Basketball\"})}),className:\"framer-d719p9\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"n8_Asi3b2\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FjZkqM0mS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Elevating the Game with VR Basketball\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"In today's digital age, the line between the virtual and the real world is blurring. At NXT Interactive, we're at the forefront of this technological revolution, pushing the boundaries of interactive experiences. One such innovative project is our VR Basketball game, a testament to our commitment to creating immersive and engaging experiences.\"})}),className:\"framer-1lyg9oo\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"naZ5EqCZ9\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3mu2o\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"YVkZv7lRE\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks43=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({FjZkqM0mS:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+250+46)+20+3336+0+0+0+181+0+318+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+728+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19excoz-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pfsorgjDS-container\",nodeId:\"pfsorgjDS\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks43[0],height:\"100%\",id:\"pfsorgjDS\",layoutId:\"pfsorgjDS\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks43[2]},qAq98Zipt:{bDG7N3o0z:resolvedLinks43[1]}},baseVariant,gestureVariant)})})})})})]})]}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1lf4kph\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"U2cxomQMG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-972brz\",layoutDependency:layoutDependency,layoutId:\"jbmQh9XFz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dpxit1-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UX1q8BBNz-container\",nodeId:\"UX1q8BBNz\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"UX1q8BBNz\",layoutId:\"UX1q8BBNz\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mXLIp30sC\"},motionChild:true,nodeId:\"CZF1xpQVF\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png\",srcSet:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=512 512w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png 1920w\"},className:\"framer-rb6mvh framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CZF1xpQVF\",...addPropertyOverrides({qAq98Zipt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+728+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:\"496px\",src:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png\",srcSet:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=512 512w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9qm2yt\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"FQDSax1Bw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10rvayo\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"iYhHjYcY_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"ZabGhEVQq\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"HealthCare VR Training Solution\"})})})}),className:\"framer-1jk4lnm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"ZabGhEVQq\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive has recently created a virtual reality (VR) training solution developed for the National Environment Agency (NEA) in Singapore. This innovative tool aims to revolutionize education on proper disinfection practices, particularly during pandemics.\"})}),className:\"framer-9eifo8\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Wjm5JyP6T\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-25hkyb\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"pkzwTKNZ3\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks44=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+728+0+0+280+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-op3mc2-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"r1AfjKU1G-container\",nodeId:\"r1AfjKU1G\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks44[0],height:\"100%\",id:\"r1AfjKU1G\",layoutId:\"r1AfjKU1G\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({qAq98Zipt:{bDG7N3o0z:resolvedLinks44[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t84jii\",layoutDependency:layoutDependency,layoutId:\"noYlHO_Jc\",children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-10wczh2\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"LJKZ8beSq\",children:/*#__PURE__*/_jsxs(motion.section,{className:\"framer-64pvsj\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"P3aLmJK7j\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ku96wj\",layoutDependency:layoutDependency,layoutId:\"CkkOOVUWg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vcXzPxvSZ\"},motionChild:true,nodeId:\"H7w1a6kHi\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Zoom Formula\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png\",srcSet:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png 1031w\"},className:\"framer-1wfsppf framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"H7w1a6kHi\",...addPropertyOverrides({qAq98Zipt:{background:{alt:\"Zoom Formula\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+1456+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"496px\",src:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png\",srcSet:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pb3m3l\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"oy1gN8hyI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ugb4la\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"lJUUU2VcS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vcXzPxvSZ\"},motionChild:true,nodeId:\"Lk5KRVkkI\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"VR PitStop Game\"})})})}),className:\"framer-1kub507\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Lk5KRVkkI\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed a multiplayer F1 VR game for Zoom Communications, where users can enter a 3D PitStop and compete against each other to change the wheels on a Formual 1 car in record time.\"})}),className:\"framer-1cbbenz\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"gZO88d6Qo\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vj7v6g\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"jzCpL1UO5\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks45=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7scp2z-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KnO03zP32-container\",nodeId:\"KnO03zP32\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks45[0],height:\"100%\",id:\"KnO03zP32\",layoutId:\"KnO03zP32\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({qAq98Zipt:{bDG7N3o0z:resolvedLinks45[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1s5i6wn\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"xFG53rpgh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sohr4a\",layoutDependency:layoutDependency,layoutId:\"jsq5wH4_O\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EZzexqhkU\"},motionChild:true,nodeId:\"KJeoJQvZj\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"virtual Reality real estate\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png\",srcSet:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=512 512w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png 1031w\"},className:\"framer-1tx3eyi framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KJeoJQvZj\",...addPropertyOverrides({qAq98Zipt:{background:{alt:\"virtual Reality real estate\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+1456+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"496px\",src:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png\",srcSet:\"https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=512 512w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fkEDGB1G65MzOBn5ChKyidYBS4.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gzatsk\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WJv46ZHse\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x6p1sp\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"paQUN7Hak\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EZzexqhkU\"},motionChild:true,nodeId:\"noxNsUvRd\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Reality Real Estate\"})})})}),className:\"framer-1hpkfks\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"noxNsUvRd\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Thanks to the benefits of virtual reality, end-customers achieve what they want through an immersive experience. After visualizing real estate products and sometimes even interacting with them, clients are more likely to make a purchase.\"})}),className:\"framer-w49dkk\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"gsJ_K5zVw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bdzjv5\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"znokyTzgo\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks46=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f8ek27-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KzpL40skI-container\",nodeId:\"KzpL40skI\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks46[0],height:\"100%\",id:\"KzpL40skI\",layoutId:\"KzpL40skI\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({qAq98Zipt:{bDG7N3o0z:resolvedLinks46[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-soiryy\",layoutDependency:layoutDependency,layoutId:\"I6XZYenrh\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-w5h9yj\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"lREXwa5sY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ktqvw7\",layoutDependency:layoutDependency,layoutId:\"JE9tYQClB\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A5hMpJngm\"},motionChild:true,nodeId:\"O9vvOgc7Q\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Walk the plank\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png\",srcSet:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=512 512w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png 1031w\"},className:\"framer-10r640r framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"O9vvOgc7Q\",...addPropertyOverrides({qAq98Zipt:{background:{alt:\"Walk the plank\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+2184+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"496px\",src:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png\",srcSet:\"https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=512 512w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0tXFaXRDA3tZKR2nZ0a41LJik.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xu1mf2\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"p45SslMbC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5xctp2\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Rk266_PLO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A5hMpJngm\"},motionChild:true,nodeId:\"wRqLLmNY0\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Walk The Plank VR Game\"})})})}),className:\"framer-bozoia\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"wRqLLmNY0\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive Walk The Plank/Ricjie's Plank VR game for X-Press Feeders, where users have to balance and walk on a wooden plank hanging out of the balcony on the 12th floor of a building and experience the vertigo.\"})}),className:\"framer-354p9k\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"FCDDemE24\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qjr4pg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"BQBz3NbLf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks47=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cki3yo-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FCfVOtukO-container\",nodeId:\"FCfVOtukO\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks47[0],height:\"100%\",id:\"FCfVOtukO\",layoutId:\"FCfVOtukO\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({qAq98Zipt:{bDG7N3o0z:resolvedLinks47[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-16twcf9\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"OmhL_OzJ6\",children:/*#__PURE__*/_jsxs(motion.section,{className:\"framer-10cbwl2\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"nYYivTrCk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12uj7yi\",layoutDependency:layoutDependency,layoutId:\"bEqnPU360\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrcvcRUbs\"},motionChild:true,nodeId:\"b3ijHlK9w\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"VR induatrial training\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,src:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg\",srcSet:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg 1280w\"},className:\"framer-3jcxn9 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"b3ijHlK9w\",...addPropertyOverrides({qAq98Zipt:{background:{alt:\"VR induatrial training\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+2184+0+0+0+0+0+0+0),pixelHeight:720,pixelWidth:1280,sizes:\"496px\",src:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg\",srcSet:\"https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eS175TALYx2DS9QOKOdmx0om40o.jpeg 1280w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qz2p6k\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"jlm7Dun7N\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ce99n1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"xoz9OQM4H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WrcvcRUbs\"},motionChild:true,nodeId:\"ZYmwr2qre\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Reality Industrial Training\"})})})}),className:\"framer-hbmbum\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"ZYmwr2qre\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"VR-based training has the potential to open new vistas for the industrial workforce. Early adopters have exhibited the technology\u2019s unique and fascinating ways of training frontline workers, which is increasing the demand for immersive learning.\"})}),className:\"framer-v6agww\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"l0Uv1dIkk\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rwde9u\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"YsQWCww9U\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks48=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ghf4j6-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BT_eoELCz-container\",nodeId:\"BT_eoELCz\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks48[0],height:\"100%\",id:\"BT_eoELCz\",layoutId:\"BT_eoELCz\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({qAq98Zipt:{bDG7N3o0z:resolvedLinks48[1]}},baseVariant,gestureVariant)})})})})})]})]})})]}),isDisplayed15()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wxo3cu\",layoutDependency:layoutDependency,layoutId:\"TfnYIeH8q\",children:/*#__PURE__*/_jsxs(motion.section,{className:\"framer-16es52m\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"FrYY21H1Z\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vcsut3\",layoutDependency:layoutDependency,layoutId:\"K6IH4VXId\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNpMUop0s\"},motionChild:true,nodeId:\"nf8DdkKhL\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Virtual reality training\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png\",srcSet:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png 1031w\"},className:\"framer-oswy5k framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nf8DdkKhL\",...addPropertyOverrides({qAq98Zipt:{background:{alt:\"Virtual reality training\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+184+46)+32+2912+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"1008px\",src:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png\",srcSet:\"https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IFxh1qKRsNzXxmsj0XqYZS7Esg.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13y5p18\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"YG2EcSo98\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17jh9ve\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"fUo8zSdLP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNpMUop0s\"},motionChild:true,nodeId:\"qKNFf0cTY\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Reality Retail Training\"})})})}),className:\"framer-4yze3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"qKNFf0cTY\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"VR training allows retail employees to walk in the shoes of their customers so they\u2019re better prepared to provide excellent, empathetic service. In the headset, associates are transported from the store or contact center to inside the home of the customer.\"})}),className:\"framer-1r5f9f6\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"yzIfI7TFW\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pykwfj\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"y0WXt2EUI\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks49=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gr9dio-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QJAOwMH7z-container\",nodeId:\"QJAOwMH7z\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks49[0],height:\"100%\",id:\"QJAOwMH7z\",layoutId:\"QJAOwMH7z\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({qAq98Zipt:{bDG7N3o0z:resolvedLinks49[1]}},baseVariant,gestureVariant)})})})})})]})]})}),isDisplayed13()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qo2uja\",layoutDependency:layoutDependency,layoutId:\"NBl2RxSJh\",children:/*#__PURE__*/_jsx(motion.section,{className:\"framer-l9yscg\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"trIW5kY6i\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-sbf779\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"XP8qRLBC1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9lwxag\",layoutDependency:layoutDependency,layoutId:\"dDVvS9fiF\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IF3SDKFdg\"},motionChild:true,nodeId:\"cXRzmKUIx\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"VR Airport\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png\",srcSet:\"https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MNqcA7XSKyilieLFE2LYGWjOH4.png 1031w\"},className:\"framer-1mkoi3t framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cXRzmKUIx\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10v535l\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"z2i6JcEw_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18m1ues\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"E_m5VbEu4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IF3SDKFdg\"},motionChild:true,nodeId:\"yDbkSCjp6\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Airport VR Terminal\"})})})}),className:\"framer-yccebk\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"yDbkSCjp6\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Virtual travel is a new and exciting way to experience the world without leaving your home. With virtual travel, you can explore popular destinations via. 360-degree videos, which allow you to look around in any direction as if you were actually there.\"})}),className:\"framer-txc743\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"xZgIBl3l7\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o7snvp\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Sd3WtGcnA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks50=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11cdzu4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fWrlN7P81-container\",nodeId:\"fWrlN7P81\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks50[0],height:\"100%\",id:\"fWrlN7P81\",layoutId:\"fWrlN7P81\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\"})})})})})]})]})})})]}),isDisplayed16()&&/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1kz53jk\",\"data-framer-name\":\"Articles AR\",layoutDependency:layoutDependency,layoutId:\"I1siL51uk\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fepxj8\",layoutDependency:layoutDependency,layoutId:\"xoLSaAA9z\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-oap3pf\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"wMBue_OOB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cm8fba\",layoutDependency:layoutDependency,layoutId:\"YYEBTkuQf\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LJ1cam8Gl\"},motionChild:true,nodeId:\"Xor4iCwjL\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"web AR\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png\",srcSet:\"https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png 1031w\"},className:\"framer-bs9wfm framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Xor4iCwjL\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"web AR\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+720+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"494px\",src:\"https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png\",srcSet:\"https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png 1031w\"}},jLubNOVOy:{background:{alt:\"web AR\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png\",srcSet:\"https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fFM8za1BmL2v7YPsKSDi6YkcvKE.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wvm7gx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"f9TfCdKMS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r1cgd2\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"uN2eIAf1D\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"QVrVuKqgQ\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Web AR Furniture Experience\"})})})}),className:\"framer-ah1li1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"QVrVuKqgQ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"QVrVuKqgQ\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Web AR Furniture Experience\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed a furniture retail app for Gervasoni 1882, with added functionality of Web AR, where users can augment a furniture piece on their space in real-time before placing the order.\"})}),className:\"framer-1q0mo6z\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"J61Bzp6yS\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jj8tzi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"v6F97zmEn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks51=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kuqrga-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mqjv8AxBd-container\",nodeId:\"mqjv8AxBd\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ARTag,{GZgkvPJP6:resolvedLinks51[0],height:\"100%\",id:\"mqjv8AxBd\",layoutId:\"mqjv8AxBd\",style:{height:\"100%\"},U4y3evk1y:\"Augmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{GZgkvPJP6:resolvedLinks51[1]},jLubNOVOy:{GZgkvPJP6:resolvedLinks51[2]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1dsp7jo\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Sv9zB1uqA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jb2rpw\",layoutDependency:layoutDependency,layoutId:\"nidR9wNuM\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rGRtZSjUt\"},motionChild:true,nodeId:\"uAncV0aag\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Web AR dart game\",fit:\"fill\",pixelHeight:747,pixelWidth:1353,src:\"https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png\",srcSet:\"https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png 1353w\"},className:\"framer-1fgntlr framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"uAncV0aag\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"Web AR dart game\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+720+0+0+0+0+0),pixelHeight:747,pixelWidth:1353,sizes:\"494px\",src:\"https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png\",srcSet:\"https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png 1353w\"}},jLubNOVOy:{background:{alt:\"Web AR dart game\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+0+0+554+0+0+0+0),pixelHeight:747,pixelWidth:1353,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png\",srcSet:\"https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oWv3460CIHKXcDaYEPVSDOCIXWo.png 1353w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzh8xe\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"EalBRBh3Z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4v0f7a\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"t8FZf7LXM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"OK0p3Cm9w\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Web-AR Dart Game\"})})})}),className:\"framer-1wc9qmq\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"OK0p3Cm9w\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"OK0p3Cm9w\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Web-AR Dart Game\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an interactive web-based augmented reality dartboard game for LexisNexis, with real life game mechanics. Users must score a combination of 100 to win, if they go above they'll go bust.\"})}),className:\"framer-al7gfb\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"gpo8hdJ7t\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1td5avd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"kCYvuYvvX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks52=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1npsuf5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vaja8UeVw-container\",nodeId:\"vaja8UeVw\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ARTag,{GZgkvPJP6:resolvedLinks52[0],height:\"100%\",id:\"vaja8UeVw\",layoutId:\"vaja8UeVw\",style:{height:\"100%\"},U4y3evk1y:\"Augmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{GZgkvPJP6:resolvedLinks52[1]},jLubNOVOy:{GZgkvPJP6:resolvedLinks52[2]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wvwr86\",layoutDependency:layoutDependency,layoutId:\"A3jQia15E\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1i476zc\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"SJwgBusZN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hw60t8\",layoutDependency:layoutDependency,layoutId:\"avGlfgdUN\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Vk5Hdui9k\"},motionChild:true,nodeId:\"YKi0i0s2n\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"PwC web AR\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png\",srcSet:\"https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png 1031w\"},className:\"framer-ahxiwd framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YKi0i0s2n\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"PwC web AR\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+1448+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:\"494px\",src:\"https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png\",srcSet:\"https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png 1031w\"}},jLubNOVOy:{background:{alt:\"PwC web AR\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+1115+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png\",srcSet:\"https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ZLD0t6n8aizlO3TvnAhS0G0XCc.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k6si9c\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"bfbqT4rGb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-289tkg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZLet2Mzu3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5gkfm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"bNaXtGDCZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11a9qim\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"nDz2HbBXQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"E7eruq47A\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"PwC Web-AR Phygital Game\"})})})}),className:\"framer-razxs5\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"E7eruq47A\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IvrA3l4jv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"E7eruq47A\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Web-AR Phygital Game\"})})})})},jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"E7eruq47A\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"PwC Web-AR Phygital Game\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"PwC Web AR quiz experience is a new and exciting way to engage your audience and improve brand awareness. Users play a a quiz with a series of ten questions by scanning ten QR codes in a row with their smartphone to experience the quiz in AR.\"})}),className:\"framer-1cekued\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"GbZzvqrUI\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ny8zvf\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"TNRIIQsW9\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks53=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cen19d-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rQwzwAYOC-container\",nodeId:\"rQwzwAYOC\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ARTag,{GZgkvPJP6:resolvedLinks53[0],height:\"100%\",id:\"rQwzwAYOC\",layoutId:\"rQwzwAYOC\",style:{height:\"100%\"},U4y3evk1y:\"Augmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{GZgkvPJP6:resolvedLinks53[1]},jLubNOVOy:{GZgkvPJP6:resolvedLinks53[2]}},baseVariant,gestureVariant)})})})})})]})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t3zas7\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"mxyKpvd_5\"})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-ftrdre\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"xyaU4nUsc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16fi83j\",layoutDependency:layoutDependency,layoutId:\"n16VuCztm\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jOJAIsrb2\"},motionChild:true,nodeId:\"V3qj1tQM2\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({IvrA3l4jv:{href:{webPageId:\"k_cgObDVx\"}},jLubNOVOy:{href:{webPageId:\"k_cgObDVx\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/XjUvnXf6wydkhAxYkGUzHs1kBHs.png?scale-down-to=512\"},className:\"framer-1mqc1wy framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"V3qj1tQM2\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+1448+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/XjUvnXf6wydkhAxYkGUzHs1kBHs.png?scale-down-to=512\"}},jLubNOVOy:{background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+1115+0+554+0+0+0+0),pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/XjUvnXf6wydkhAxYkGUzHs1kBHs.png?scale-down-to=512\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-voq8ix\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"cdlvcf5lF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jy1t3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"eo4A4zjsA\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p4n0us\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"PgZ3eRewR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"WebAR Solution UOB Finlab SFF2023\"})}),className:\"framer-fsak7w\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"AhaFiBMY9\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IvrA3l4jv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"WebAR Solution \"})})},jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"WebAR Solution UOB Finlab SFF2023\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Developed a WebAR (Web-based Augmented Reality) solution for UOB Finlab that seamlessly integrates with all the aforementioned projects to a new and exciting way to engage your audience\"})}),className:\"framer-5yiqbw\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"jorHE_9Ya\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-185gut2\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"lQ0Bs1try\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks54=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+1448+0+0+280+0+368+0},jLubNOVOy:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+1115+0+554+0+226+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m3uz2p-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K99lRBDrH-container\",nodeId:\"K99lRBDrH\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks54[0],height:\"100%\",id:\"K99lRBDrH\",layoutId:\"K99lRBDrH\",style:{height:\"100%\"},vgA964TAm:\"AUgmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{bDG7N3o0z:resolvedLinks54[1],vgA964TAm:\"Augmented Reality\"},jLubNOVOy:{bDG7N3o0z:resolvedLinks54[2]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mn71tm\",layoutDependency:layoutDependency,layoutId:\"Ka7SJUKz_\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1fyegq1\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"jSM5yxZZ8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c36rig\",layoutDependency:layoutDependency,layoutId:\"MWZZT26XT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1to0mm5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"gkucZE3HB-container\",nodeId:\"gkucZE3HB\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"gkucZE3HB\",layoutId:\"gkucZE3HB\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uzFuuhDkd\"},motionChild:true,nodeId:\"IRL4CAxxk\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({IvrA3l4jv:{href:{webPageId:\"bP7XvZxkA\"}},jLubNOVOy:{href:{webPageId:\"bP7XvZxkA\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1921,src:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg\",srcSet:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg 1921w\"},className:\"framer-3yzcon framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IRL4CAxxk\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2196+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:\"494px\",src:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg\",srcSet:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg 1921w\"}},jLubNOVOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+2265+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg\",srcSet:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10dw7dm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"T4S12BOnD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18alcba\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"zPi65S9Z4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Savory Web AR Product App Marketing Campaign\"})}),className:\"framer-5o7q7x\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"CnA3VR4CZ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Savory Web AR Product App Marketing Campaign\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"To address this challenge, NXT Interactive developed an innovative Augmented Reality (AR) mobile application, the Oterra AR Savory App. This app allows users to visualize how different food color solutions can impact the look and feel of ten popular food items.\"})}),className:\"framer-icxc8v\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"cwRv2LQwU\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dpjovg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qYXgltbgi\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks55=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2196+0+0+280+0+368+0},jLubNOVOy:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+2265+0+0+0+200+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o08n8z-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"t7cDFdBgN-container\",nodeId:\"t7cDFdBgN\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks55[0],height:\"100%\",id:\"t7cDFdBgN\",layoutId:\"t7cDFdBgN\",style:{height:\"100%\"},vgA964TAm:\"AUgmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{bDG7N3o0z:resolvedLinks55[1],vgA964TAm:\"Augmented Reality\"},jLubNOVOy:{bDG7N3o0z:resolvedLinks55[2]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-dms0cr\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ibMqRr7QT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q7og9n\",layoutDependency:layoutDependency,layoutId:\"UpPIX7Llv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ra1j-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"l7u7RgyOs-container\",nodeId:\"l7u7RgyOs\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"l7u7RgyOs\",layoutId:\"l7u7RgyOs\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MHPLCqjeC\"},motionChild:true,nodeId:\"t4hPqauMw\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({IvrA3l4jv:{href:{webPageId:\"jqZn3ytXs\"}},jLubNOVOy:{href:{webPageId:\"jqZn3ytXs\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:4379,pixelWidth:7784,src:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png\",srcSet:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png 7784w\"},className:\"framer-t4055y framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"t4hPqauMw\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2196+0+0+0+0+0),pixelHeight:4379,pixelWidth:7784,sizes:\"494px\",src:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png\",srcSet:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png 7784w\"}},jLubNOVOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+2265+0+566+0+0+0+0),pixelHeight:4379,pixelWidth:7784,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png\",srcSet:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png 7784w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xhoz1d\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"IaJ3vHlDg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fwhzfo\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"HywufQ87p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Exciting AR Treasure Hunt Game\"})}),className:\"framer-982v6j\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Nw8TXX8O8\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Exciting AR Treasure Hunt Game\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"An innovative solution that would blend the physical and digital worlds, creating a truly unique shopping experience. To fulfill this vision, we developed an AR-powered treasure hunt that transported users into a captivating virtual world.\"})}),className:\"framer-6x2uku\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"TZLnTetXc\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kg85wt\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"naAysmQCm\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks56=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2196+0+0+280+0+368+0},jLubNOVOy:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+2265+0+566+0+204+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6dwjpv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"InY1ECyGA-container\",nodeId:\"InY1ECyGA\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks56[0],height:\"100%\",id:\"InY1ECyGA\",layoutId:\"InY1ECyGA\",style:{height:\"100%\"},vgA964TAm:\"AUgmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{bDG7N3o0z:resolvedLinks56[1],vgA964TAm:\"Augmented Reality\"},jLubNOVOy:{bDG7N3o0z:resolvedLinks56[2]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1txfqm6\",layoutDependency:layoutDependency,layoutId:\"w3pHVeLil\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1b27os9\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"tHua8OxS4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jh7hx6\",layoutDependency:layoutDependency,layoutId:\"C7jIVJTcu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tyk5vm-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DW_38vqOX-container\",nodeId:\"DW_38vqOX\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"DW_38vqOX\",layoutId:\"DW_38vqOX\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"THVHA0zst\"},motionChild:true,nodeId:\"LBk_zvY6M\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({IvrA3l4jv:{href:{webPageId:\"ZcCtqU6_t\"}},jLubNOVOy:{href:{webPageId:\"ZcCtqU6_t\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:4593,pixelWidth:7089,src:\"https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png 7089w\"},className:\"framer-1nn2ch8 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LBk_zvY6M\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2924+0+0+0+0+0),pixelHeight:4593,pixelWidth:7089,sizes:\"494px\",src:\"https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png 7089w\"}},jLubNOVOy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+3405+0+0+0+0+0+0),pixelHeight:4593,pixelWidth:7089,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/nOVvroCzoW5Xeakn0G6pl0BHS4g.png 7089w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i95jas\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"TM8jVefZE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qswz5q\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LFC5spq9I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"An Immersive AR Experience \"})})}),className:\"framer-1feczz1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-regular\",\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"JqUIgC8z1\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"An Immersive AR Experience \"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Imagine being able to trace the journey of a water droplet, from its source high in the mountains to its eventual return to the sea. With the power of AR, we've created an immersive experience that allows you to do just that.\"})}),className:\"framer-xgypw6\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"vj8lvZNP_\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k9gi1r\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ndI7fne83\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks57=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2924+0+0+280+0+368+0},jLubNOVOy:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+3405+0+0+0+199+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cpyg62-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QVOWJNbuz-container\",nodeId:\"QVOWJNbuz\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks57[0],height:\"100%\",id:\"QVOWJNbuz\",layoutId:\"QVOWJNbuz\",style:{height:\"100%\"},vgA964TAm:\"AUgmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{bDG7N3o0z:resolvedLinks57[1],vgA964TAm:\"Augmented Reality\"},jLubNOVOy:{bDG7N3o0z:resolvedLinks57[2]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-l5rte0\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"x9X5ZEv4X\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ipo78i\",layoutDependency:layoutDependency,layoutId:\"Eyg9sP3xs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m5dt0l-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E6lVV3YOA-container\",nodeId:\"E6lVV3YOA\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"E6lVV3YOA\",layoutId:\"E6lVV3YOA\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D08Qs8LEy\"},motionChild:true,nodeId:\"VCX2iRlQi\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({IvrA3l4jv:{href:{webPageId:\"rNI9shFAG\"}},jLubNOVOy:{href:{webPageId:\"rNI9shFAG\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:736,pixelHeight:552,pixelWidth:736,src:\"https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png\",srcSet:\"https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png 736w\"},className:\"framer-1bf6zps framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VCX2iRlQi\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:736,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2924+0+0+0+0+0),pixelHeight:552,pixelWidth:736,sizes:\"494px\",src:\"https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png\",srcSet:\"https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png 736w\"}},jLubNOVOy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:552,intrinsicWidth:736,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+3405+0+565+0+0+0+0),pixelHeight:552,pixelWidth:736,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png\",srcSet:\"https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8FgRuLOfOD4V7UkL7iHS7Yo.png 736w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dkosuc\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"oR8MCYPB1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q517v4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LgREWdL00\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"BC7xSzpwg\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"AR Virtual Fitting Room\"})})})}),className:\"framer-9gv54b\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"BC7xSzpwg\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"BC7xSzpwg\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"AR Virtual Fitting Room\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"The future of retail is personalized, convenient, and immersive. With our AR virtual fitting room, you're not just shopping, you're experiencing fashion in a whole new light. So, step into the future and embrace the magic of AR retail today!  Remember, this is just the beginning. The possibilities of AR retail are endless, and we're excited to be at the forefront of this exciting journey.\"})}),className:\"framer-eva0vn\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"xonjlkies\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h64cwj\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"xTbv2NEvV\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks58=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+2924+0+0+280+0+368+0},jLubNOVOy:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+3405+0+565+0+222+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p2hsf8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NFNy5vQwS-container\",nodeId:\"NFNy5vQwS\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks58[0],height:\"100%\",id:\"NFNy5vQwS\",layoutId:\"NFNy5vQwS\",style:{height:\"100%\"},vgA964TAm:\"AUgmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{bDG7N3o0z:resolvedLinks58[1],vgA964TAm:\"Augmented Reality\"},jLubNOVOy:{bDG7N3o0z:resolvedLinks58[2]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yim80z\",\"data-framer-name\":\"Stack AR\",layoutDependency:layoutDependency,layoutId:\"ymsfOSx_g\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1epzd4o\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"TUHvt9PzD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t6i9ss\",layoutDependency:layoutDependency,layoutId:\"vQtYSDU6Z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tt2spj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PbIjJO1Hs-container\",nodeId:\"PbIjJO1Hs\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"PbIjJO1Hs\",layoutId:\"PbIjJO1Hs\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"P6h_2bYqd\"},motionChild:true,nodeId:\"muYp2mj4q\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,...addPropertyOverrides({IvrA3l4jv:{href:{webPageId:\"gvBAR52zk\"}},jLubNOVOy:{href:{webPageId:\"gvBAR52zk\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Ar Glasses\",fit:\"fill\",intrinsicHeight:502,intrinsicWidth:1024,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png 1920w\"},className:\"framer-a4vzqn framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"muYp2mj4q\",...addPropertyOverrides({IvrA3l4jv:{background:{alt:\"Ar Glasses\",fit:\"fill\",intrinsicHeight:502,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:\"1004px\",src:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png 1920w\"}},jLubNOVOy:{background:{alt:\"Ar Glasses\",fit:\"fill\",intrinsicHeight:502,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+4562+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"} - 104px, 1px)`,src:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bg5j2v\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"zq9hIPENc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l1hahi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"F9xz8CNID\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"XovTksNp8\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"iContact AR Glasses Solution for Autistic Children\"})})})}),className:\"framer-1ylbatn\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"XovTksNp8\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jLubNOVOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"XovTksNp8\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"iContact AR Glasses Solution for Autistic Children\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive's revolutionary AR glasses software, in collaboration with Project iContact and BLKJ Havas, features the first-ever AR glass software tailored specifically for autistic children and adults.\"})}),className:\"framer-aeky0p\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"ahRRT0e59\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s5pz6u\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"MRzaZsD32\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks59=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+184+46)+32+0+0+0+272+0+368+0},jLubNOVOy:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+250+46)+20+4562+0+0+213+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nay6p3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DhrGvFBrD-container\",nodeId:\"DhrGvFBrD\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ARTag1,{GZgkvPJP6:resolvedLinks59[0],height:\"100%\",id:\"DhrGvFBrD\",layoutId:\"DhrGvFBrD\",style:{height:\"100%\"},U4y3evk1y:\"Augmented Reality\",width:\"100%\",...addPropertyOverrides({IvrA3l4jv:{GZgkvPJP6:resolvedLinks59[1]},jLubNOVOy:{GZgkvPJP6:resolvedLinks59[2]}},baseVariant,gestureVariant)})})})})})]})]})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined}],children:resolvedLinks60=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({jLubNOVOy:{height:56,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5540)/2+5415+69)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lgnoca-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fY8gK2hug-container\",nodeId:\"fY8gK2hug\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ButtonLarge,{apqsCktfb:\"View More\",haPb8DtW8:\"ArrowForward\",height:\"100%\",id:\"fY8gK2hug\",layoutId:\"fY8gK2hug\",RZT9SNG2g:resolvedLinks60[0],style:{height:\"100%\",width:\"100%\"},variant:\"XvAldi6_m\",width:\"100%\",...addPropertyOverrides({jLubNOVOy:{RZT9SNG2g:resolvedLinks60[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-gxvo7b\",\"data-framer-name\":\"Articles\",layoutDependency:layoutDependency,layoutId:\"QuXT5Je8e\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17pj3de\",layoutDependency:layoutDependency,layoutId:\"dzYnHBfvD\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-f8d1nc\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"mLuCHSXZS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qpm1vg\",layoutDependency:layoutDependency,layoutId:\"MYzzUFZ4E\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uvgpws-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kgLxLfP6L-container\",nodeId:\"kgLxLfP6L\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"kgLxLfP6L\",layoutId:\"kgLxLfP6L\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GCLcRcs5k\"},motionChild:true,nodeId:\"yZmUkCxqV\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1081,pixelWidth:1921,src:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg\",srcSet:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg 1921w\"},className:\"framer-1p1uokh framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yZmUkCxqV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+0+0+0+0+0+0+0),pixelHeight:1081,pixelWidth:1921,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg\",srcSet:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o6ezou\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"K6JixLZDC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h28dm9\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"KANP3KQWp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Facial Tracking Innovative Solution\"})}),className:\"framer-12u04lm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"TezIgx8rK\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're committed to pushing the boundaries of digital engagement. Our latest innovation, a personalized experience solution, goes beyond traditional face expression tracking to offer a more immersive and engaging user experience.\"})}),className:\"framer-15mpxxq\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"pqpF99c7s\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sy89yc\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"cY78cYJCm\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks61=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+0+0+0+0+187+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11w7m3l-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v0dnLrWSp-container\",nodeId:\"v0dnLrWSp\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks61[0],height:\"100%\",id:\"v0dnLrWSp\",layoutId:\"v0dnLrWSp\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks61[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1ucb2gy\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"gTJx9K636\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f37baa\",layoutDependency:layoutDependency,layoutId:\"jlg5sS3qo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-atinde-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UMJIXGLz0-container\",nodeId:\"UMJIXGLz0\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"UMJIXGLz0\",layoutId:\"UMJIXGLz0\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WVwjPqsAj\"},motionChild:true,nodeId:\"X_Z2cKPAs\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Shiseido Product Launch\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png\",srcSet:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png 1920w\"},className:\"framer-1c49mgk framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"X_Z2cKPAs\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"Shiseido Product Launch\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+0+0+553+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png\",srcSet:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4o9j8a\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"N7gWtuCup\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ho48n9\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Wkd6EEoIQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive Table App Exhibit\"})}),className:\"framer-1erssfm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"zpERfeyVu\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive developed a cutting-edge interactive touch table application. This innovative solution transforms the traditional exhibition experience, allowing visitors to explore the selected island cities in a visually stunning and informative way.\"})}),className:\"framer-1uxdp4j\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Yjn5amX9E\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9olb07\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"y7sKhCsoh\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks62=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+0+0+553+0+189+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lnyb5s-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"U9IbxZGhk-container\",nodeId:\"U9IbxZGhk\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks62[0],height:\"100%\",id:\"U9IbxZGhk\",layoutId:\"U9IbxZGhk\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks62[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kornw8\",layoutDependency:layoutDependency,layoutId:\"zyCASxlTM\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-no5poh\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"RHJ79nIH9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a32gcg\",layoutDependency:layoutDependency,layoutId:\"jxtSGdKF7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e9fe0b-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MeSUvRnN_-container\",nodeId:\"MeSUvRnN_\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"MeSUvRnN_\",layoutId:\"MeSUvRnN_\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l3ck4M3uD\"},motionChild:true,nodeId:\"ePe477oNY\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:900,pixelWidth:1600,src:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg\",srcSet:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg 1600w\"},className:\"framer-1hibwc1 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ePe477oNY\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+1140+0+0+0+0+0+0),pixelHeight:900,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg\",srcSet:\"https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bBxuk040IC2nwLQl29ZYqOQB40Y.jpeg 1600w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i62pmj\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"auwHk3D3z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y6vu60\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"RTlRMlbrX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Runner Gesture-Controlled Game\"})}),className:\"framer-e90dyt\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"WwaR9UrIU\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're all about pushing the boundaries of digital experiences. We don't just create games, we create immersive worlds that blur the lines between the physical and digital. \"})}),className:\"framer-g568lu\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"tslTQbSkP\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufwmat\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"IVJHD7c6n\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks63=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+1140+0+0+0+160+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12rw9im-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PwJTjQiJ0-container\",nodeId:\"PwJTjQiJ0\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks63[0],height:\"100%\",id:\"PwJTjQiJ0\",layoutId:\"PwJTjQiJ0\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks63[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-2nucuk\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"K__4exuP2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yl1zhr\",layoutDependency:layoutDependency,layoutId:\"sE1Ue8Qem\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ochbqr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R0lOvBUfx-container\",nodeId:\"R0lOvBUfx\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"R0lOvBUfx\",layoutId:\"R0lOvBUfx\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"w5phwdISY\"},motionChild:true,nodeId:\"jWdeoLKei\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1081,pixelWidth:1920,src:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg\",srcSet:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg 1920w\"},className:\"framer-axgydg framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jWdeoLKei\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+1140+0+526+0+0+0+0),pixelHeight:1081,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg\",srcSet:\"https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyQSE4TJqAymkDXfDBqkc3Hvc.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1510i7i\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"OoKPOqq0g\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kaw6oi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZzT1oxO9H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Experiential and Interactive Cycle Exhibit\"})}),className:\"framer-zapwa7\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"zpRwUHkNV\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Get ready to revolutionize your workout with NXT Interactive's latest project - the Interactive Cycle Exhibit! \"})}),className:\"framer-jefua2\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"AqPkPgZx2\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-139g38z\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"JxdZFReSP\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks64=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+1140+0+526+0+207+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q7fx5c-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RXgnf60W6-container\",nodeId:\"RXgnf60W6\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks64[0],height:\"100%\",id:\"RXgnf60W6\",layoutId:\"RXgnf60W6\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks64[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hclao7\",layoutDependency:layoutDependency,layoutId:\"U61HsDAql\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1qg94xh\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"mXSznXLeb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oo9av6\",layoutDependency:layoutDependency,layoutId:\"wyMw8gYOY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hn8ot9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Td6QlRhF6-container\",nodeId:\"Td6QlRhF6\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"Td6QlRhF6\",layoutId:\"Td6QlRhF6\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RmGNGRF2q\"},motionChild:true,nodeId:\"nXVr2Zh2n\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:4524,pixelWidth:7916,src:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png 7916w\"},className:\"framer-628a58 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nXVr2Zh2n\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+2271+0+0+0+0+0+0),pixelHeight:4524,pixelWidth:7916,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7d1T5pIXGEfJBQQJvuOxiJhmdRs.png 7916w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oxpgzx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"XsEOmKkiT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l5tt5p\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"AeiqNZi9B\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Touchscreen Memory \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Based Games\"})]}),className:\"framer-1eewmj4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"ImF_fY3Kp\",style:{\"--extracted-2gxw0f\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're passionate about creating innovative digital solutions that bridge the gap between the online and offline worlds. Our recent project for Mimecast, a cybersecurity company, is a perfect example of how we leverage emerging technologies to deliver engaging and impactful experiences.\"})}),className:\"framer-1bqv4z0\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"FU1NvB18q\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wi6iyz\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZRYuo8ybU\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks65=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+2271+0+0+0+207+0+468+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sb4w4u-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sC1aoYfEf-container\",nodeId:\"sC1aoYfEf\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks65[0],height:\"100%\",id:\"sC1aoYfEf\",layoutId:\"sC1aoYfEf\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks65[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1xoestl\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Jelv_R9vE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nf5i0\",layoutDependency:layoutDependency,layoutId:\"HMIvaEGM5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qatpxo-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oDrhDYnHr-container\",nodeId:\"oDrhDYnHr\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"oDrhDYnHr\",layoutId:\"oDrhDYnHr\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yzEUgkFLj\"},motionChild:true,nodeId:\"Y_T8IxFfz\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1427,pixelWidth:2537,src:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png\",srcSet:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png 2537w\"},className:\"framer-fvak53 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Y_T8IxFfz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+2271+0+723+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png\",srcSet:\"https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9JdUJqDKUPP7Qpf4sT1I34lcA8.png 2537w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vlskbc\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"nJY7sMNqr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s78l7n\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"cH8ZEw0qL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive activities for Townhall\"})}),className:\"framer-wvlags\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"usOK1VO4E\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we specialize in creating innovative and engaging digital solutions for events of all sizes. Our recent project for RWS Sentosa is a perfect example of how we can transform traditional townhall meetings into memorable and interactive experiences.\"})}),className:\"framer-1yfwazb\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"pLa2TA1K6\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5n1zx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"EiDN2rrlP\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks66=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+2271+0+723+0+187+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s7m1mw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JbyJchiK4-container\",nodeId:\"JbyJchiK4\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks66[0],height:\"100%\",id:\"JbyJchiK4\",layoutId:\"JbyJchiK4\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks66[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ma0c7w\",layoutDependency:layoutDependency,layoutId:\"CcFVFq9al\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-wahkmt\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"cjWhf1ac4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7iaxah\",layoutDependency:layoutDependency,layoutId:\"ogOaNfkQI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wmu6da-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dSjlPi_Re-container\",nodeId:\"dSjlPi_Re\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"dSjlPi_Re\",layoutId:\"dSjlPi_Re\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DBveFMrFH\"},motionChild:true,nodeId:\"euw1uAvVP\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:719,pixelWidth:1280,src:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg\",srcSet:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg 1280w\"},className:\"framer-1dpduzm framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"euw1uAvVP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+6009+0+0+0+0+0+0),pixelHeight:719,pixelWidth:1280,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg\",srcSet:\"https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0jN3Igz4XjKqUX5jcP1kCataEo.jpeg 1280w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xbplw0\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qQnRV1zDx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epvrtr\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"v7uyNgFae\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive Rotoscope Wall\"})}),className:\"framer-nm1h8a\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"LBeCKxdUl\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive recently unveiled its experiential technology, Rotoscope our their recent event. This innovative exhibit captivated attendees with its unique blend interactive elements, and stunning visuals.\"})}),className:\"framer-zlayg5\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"T6WqNc5t4\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b1sl0e\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"uHKCbzVJd\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks67=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+6009+0+0+0+185+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n498oy-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qreX9OfXn-container\",nodeId:\"qreX9OfXn\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks67[0],height:\"100%\",id:\"qreX9OfXn\",layoutId:\"qreX9OfXn\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks67[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-12ml1ib\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"U1BKZRsed\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-69epcy\",layoutDependency:layoutDependency,layoutId:\"QqupHuUN_\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TjQnbLZEy\"},motionChild:true,nodeId:\"XrF2a3vka\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Digital library\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png\",srcSet:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png 1031w\"},className:\"framer-17rh626 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XrF2a3vka\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"Digital library\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+6009+0+551+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png\",srcSet:\"https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zfeIVy9Pq5BHqUmxqy9V6CBH0dU.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-spk4vx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"LTYAnCFK4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xrldhe\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZNFzhNBF8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TjQnbLZEy\"},motionChild:true,nodeId:\"z6AGy8yyz\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Interactive Digital Library\"})})})}),className:\"framer-1ls8wd7\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"z6AGy8yyz\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"HSBC is a leading global bank came up with some new services specifically designed for Women Entrepreneurs. In order to market the new services, we developed a touchscreen-based interactive digital library with flip-book hotspots.\"})}),className:\"framer-16nft4n\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"XUk95tgdb\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wcxl4b\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"hryBcEDUu\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks68=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+6009+0+551+0+185+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ojqw55-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"h5zSMwZeM-container\",nodeId:\"h5zSMwZeM\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks68[0],height:\"100%\",id:\"h5zSMwZeM\",layoutId:\"h5zSMwZeM\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks68[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gvkgr7\",layoutDependency:layoutDependency,layoutId:\"xe7_zYWDL\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-14ftmm5\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"PBuvPclPH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18n0etx\",layoutDependency:layoutDependency,layoutId:\"xfBO7zNFK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19pcc07-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hG5hIKR2S-container\",nodeId:\"hG5hIKR2S\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"hG5hIKR2S\",layoutId:\"hG5hIKR2S\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OGOcBhumx\"},motionChild:true,nodeId:\"TI04sY5MQ\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1081,pixelWidth:1920,src:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg\",srcSet:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg 1920w\"},className:\"framer-1fzwsrz framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TI04sY5MQ\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+7143+0+0+0+0+0+0),pixelHeight:1081,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg\",srcSet:\"https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nwDkr6eKbUZW7qymo5V57TTj4o.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pnsfrv\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Cie00rnqd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xphn9i\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"vHkqrkjNj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Sling Your Message to the Sky: A Fun and Interactive Game\"})}),className:\"framer-vgguq1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"SyWBXoOl4\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"The interactive slingshot game is a prime example of how technology can be used to create engaging and memorable experiences. By blending physical and digital elements, we can tap into the power of human interaction and create lasting connections.\"})}),className:\"framer-zt2u8b\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"M35HPiids\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-twwum6\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"KUz09uy0a\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks69=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+7143+0+0+0+196+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-187uiso-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v9qQFgeQy-container\",nodeId:\"v9qQFgeQy\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks69[0],height:\"100%\",id:\"v9qQFgeQy\",layoutId:\"v9qQFgeQy\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks69[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-4z0wd1\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"YNYDZoFvg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tgkp1f\",layoutDependency:layoutDependency,layoutId:\"zwnRBlH3e\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19zzw63-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xquUAi0om-container\",nodeId:\"xquUAi0om\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"xquUAi0om\",layoutId:\"xquUAi0om\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tQaU0b_Qs\"},motionChild:true,nodeId:\"kcnXMv_YD\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1921,src:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg\",srcSet:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg 1921w\"},className:\"framer-1caddp2 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kcnXMv_YD\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+7143+0+562+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg\",srcSet:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-51lee6\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"gO8shFEMd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9c7zlh\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"KtZWpoX7I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Phygital Twin Runner Game\"})}),className:\"framer-hwfx05\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"EJ72C6eni\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Our innovative solution represents the future of fitness, where technology and human performance converge. By leveraging cutting-edge technology, we are redefining the way we approach health and wellness.\"})}),className:\"framer-1t6uc7t\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"PBGYHQujL\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jc89sk\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"VXIvt5c6V\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks70=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+7143+0+562+0+179+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fi5o17-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kL6vKLc_g-container\",nodeId:\"kL6vKLc_g\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks70[0],height:\"100%\",id:\"kL6vKLc_g\",layoutId:\"kL6vKLc_g\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks70[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19stsrf\",layoutDependency:layoutDependency,layoutId:\"enQnY4QYv\",children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-dd47vu\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"zBw1nFv1w\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-29hasd\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"g300J3PpB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ge57y1\",layoutDependency:layoutDependency,layoutId:\"iDDgHd4Fu\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UbHwUb_LY\"},motionChild:true,nodeId:\"s_MGYbnFx\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"HSBC digital transformation\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png\",srcSet:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png 1031w\"},className:\"framer-16xgdud framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"s_MGYbnFx\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"HSBC digital transformation\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+8282+0+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png\",srcSet:\"https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EfRPAIZ0b0Mv4wPU9582UcKw4pk.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mrv8i\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"xzsQj9ocH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tu5z4g\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"q5uYD5ogB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UbHwUb_LY\"},motionChild:true,nodeId:\"XeEkCyj_7\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"HSBC Digital Transformation\"})})})}),className:\"framer-1fkeip4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"XeEkCyj_7\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an interactive multi-lingual touch-app based quiz to collect real-time user feedback from credit card users of HSBC, a leading global bank that offers a variety of financial products and services.\"})}),className:\"framer-j2x9zc\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Il2eXiPff\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emftwl\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"hnBDeCKxs\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks71=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+8282+0+0+0+0+0+166+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dxvwpk-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lSTZjRAZn-container\",nodeId:\"lSTZjRAZn\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks71[0],height:\"100%\",id:\"lSTZjRAZn\",layoutId:\"lSTZjRAZn\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks71[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-bi44gr\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"tw7HM7Cu0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w7rglr\",layoutDependency:layoutDependency,layoutId:\"i7IT4kOPu\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.thoughtsequalresults.com/?r_done=1\",motionChild:true,nodeId:\"ZThb8tfqE\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"skeleton tracker\",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png\",srcSet:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png 902w\"},className:\"framer-zhqykl framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZThb8tfqE\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"skeleton tracker\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+8282+0+532+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png\",srcSet:\"https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/G4iwD5kDA1aJUStHJaB26qERSfM.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m6evd2\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"PZbD1RZjm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xl64ss\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"vgyfLUpqz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.thoughtsequalresults.com/?r_done=1\",motionChild:true,nodeId:\"qHv_vVwhA\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Skeleton Tracking Game\"})})})}),className:\"framer-j37pqb\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"qHv_vVwhA\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an interactive game for users to control the avatar on the large screen by running and jumping body actions. A Kinect camera would track the body movements in real-time and move the Avatar on screen accordingly.\"})}),className:\"framer-1hp1mqt\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"JoMW7LNvK\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ckvswo\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"fXeXEEEn8\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks72=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+8282+0+532+0+185+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-189hl1c-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QGYWm4QX4-container\",nodeId:\"QGYWm4QX4\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks72[0],height:\"100%\",id:\"QGYWm4QX4\",layoutId:\"QGYWm4QX4\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks72[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mf0asn\",layoutDependency:layoutDependency,layoutId:\"fLpWXsnCy\",children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-spkttc\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"tpRzzT9Fh\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-stc3ex\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"fRdYHOGzF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wz479f\",layoutDependency:layoutDependency,layoutId:\"nxnTjZLd0\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZLabJi8vy\"},motionChild:true,nodeId:\"afMme9A2m\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"flip disks canva\",fit:\"fill\",pixelHeight:384,pixelWidth:512,src:\"https://framerusercontent.com/images/kWNEgWSILDuChtDuKF1zKZoiIo.webp\"},className:\"framer-oligjo framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"afMme9A2m\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"flip disks canva\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+9397+0+0+0+0+0+0+0+0),pixelHeight:384,pixelWidth:512,src:\"https://framerusercontent.com/images/kWNEgWSILDuChtDuKF1zKZoiIo.webp\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14x0z1t\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"yBhf7WYAE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2jlmz6\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZCUhcQ2Ex\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZLabJi8vy\"},motionChild:true,nodeId:\"QHez_ySEN\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Flip Discs Canvas\"})})})}),className:\"framer-19osgqh\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"QHez_ySEN\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed a custom interactive gesture game for a security company to teach their potential clients about the different types of security threats that businesses face, and how their security solutions can protect the businesses.\"})}),className:\"framer-qpugco\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"IsivFPmoY\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jsi7ap\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WerSrPPt5\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks73=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+9397+0+0+0+0+0+195+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mcg76t-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"umkGdopcw-container\",nodeId:\"umkGdopcw\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks73[0],height:\"100%\",id:\"umkGdopcw\",layoutId:\"umkGdopcw\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks73[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1n866n1\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"m9YB_gD2H\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g5p4fg\",layoutDependency:layoutDependency,layoutId:\"zXoTnDfo4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cSlXetDaG\"},motionChild:true,nodeId:\"ZZsXAZh2H\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon says\",fit:\"fill\",pixelHeight:468,pixelWidth:512,src:\"https://framerusercontent.com/images/vqKZjarZIy7NijWEVed3xxGwQQ.webp\"},className:\"framer-1hqc61u framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZZsXAZh2H\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"Simon says\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+9397+0+561+0+0+0+0),pixelHeight:468,pixelWidth:512,src:\"https://framerusercontent.com/images/vqKZjarZIy7NijWEVed3xxGwQQ.webp\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-127roj3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"U_A8a0cBD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12gt5gg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"y50Ry1j57\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cSlXetDaG\"},motionChild:true,nodeId:\"Zv8qLomlf\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Simon Says Game\"})})})}),className:\"framer-7dwdg5\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"Zv8qLomlf\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"In the game, the digital mupi handed out three color sequences that, once the player guessed correctly, the muppi dispensed vouchers with discounts and the chance to win a weekend getaway. Hence, reinforcing the brand's logo.\"})}),className:\"framer-jhwzjg\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"xvNzr65Oc\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b40iea\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"RxWSnIqof\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks74=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+9397+0+561+0+176+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18c4m4y-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"c88y6uWjW-container\",nodeId:\"c88y6uWjW\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks74[0],height:\"100%\",id:\"c88y6uWjW\",layoutId:\"c88y6uWjW\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks74[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1taxiua\",layoutDependency:layoutDependency,layoutId:\"kqfNlSrIC\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1tnbkye\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"umXB7OrUz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-110qoo8\",layoutDependency:layoutDependency,layoutId:\"GSBuYgAfv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8xzodn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iVsWU9udN-container\",nodeId:\"iVsWU9udN\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"iVsWU9udN\",layoutId:\"iVsWU9udN\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zUO7i3z3F\"},motionChild:true,nodeId:\"rIFvJxcZX\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:900,pixelWidth:1600,src:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg\",srcSet:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg 1600w\"},className:\"framer-15gd78s framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rIFvJxcZX\",...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+3579+0+0+0+0+0+0),pixelHeight:900,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg\",srcSet:\"https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yd3QY0OPYEsJ3ARENspB97ClCo.jpeg 1600w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x6w821\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"bRKbtbxGU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-74a7cg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"VO62vdZL5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"A16GMkM2E\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"AI Avatar \"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"A16GMkM2E\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Photobooth\"})})})]}),className:\"framer-qbc8ha\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"A16GMkM2E\",style:{\"--extracted-2gxw0f\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We're all about crafting unforgettable digital experiences that bridge the gap between online and offline worlds. Now, we're thrilled to partner with Aluxe to bring you a magical AI photobooth experience featuring your favorite Disney princesses!\"})}),className:\"framer-iu81a0\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"OFc4Wzc_r\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f91a6b\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"rDnlxSMuC\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks75=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+3579+0+0+0+187+0+468+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w8jsfa-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"O72m5vCrH-container\",nodeId:\"O72m5vCrH\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks75[0],height:\"100%\",id:\"O72m5vCrH\",layoutId:\"O72m5vCrH\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks75[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-721fn3\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"zdgLtC4OM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ldtw9\",layoutDependency:layoutDependency,layoutId:\"yQ_Q3bXbP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ripolu-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NEkLuLX9j-container\",nodeId:\"NEkLuLX9j\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"NEkLuLX9j\",layoutId:\"NEkLuLX9j\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zUO7i3z3F\"},motionChild:true,nodeId:\"M0BtOlPDj\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1219,pixelWidth:2362,src:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png\",srcSet:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png 2362w\"},className:\"framer-1dvdjo7 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"M0BtOlPDj\",style:{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(173, 40, 171, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(173, 40, 171, 0.16), 0px 10px 10px -3.75px rgba(173, 40, 171, 0.06)\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+3579+0+703+0+0+0+0),pixelHeight:1219,pixelWidth:2362,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png\",srcSet:\"https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2h2WR5uB9tZCk6FxnTMiX5JgWQ.png 2362w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ma3kwt\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"x6hjCL_Ig\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bwax78\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"GKrSwei79\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"AI Avatar Photobooth\"})}),className:\"framer-1dmoszy\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"io88M7Wr8\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We, at NXT Interactive, have made this imagination a reality with our revolutionary AI Photobooth solution. Harnessing the power of generative AI, we've unlocked a portal where your personal dreams become your stunning, personalized portraits.\"})}),className:\"framer-eqzgl2\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"iNNlY6pM6\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w0avyu\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"OrI5BGiHe\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks76=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+3579+0+703+0+178+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7d70jh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jMRhwJaPm-container\",nodeId:\"jMRhwJaPm\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks76[0],height:\"100%\",id:\"jMRhwJaPm\",layoutId:\"jMRhwJaPm\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks76[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jfgttk\",layoutDependency:layoutDependency,layoutId:\"IomG0b7Xu\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-12p436j\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"PAW0MMDOz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gxpfr3\",layoutDependency:layoutDependency,layoutId:\"WZdZOU0Qj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qa30fb-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cpiL_j_WK-container\",nodeId:\"cpiL_j_WK\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"cpiL_j_WK\",layoutId:\"cpiL_j_WK\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XkH6LO8aj\"},motionChild:true,nodeId:\"PPMyB5JlK\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1427,pixelWidth:2537,src:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png\",srcSet:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png 2537w\"},className:\"framer-15ecx5m framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PPMyB5JlK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+4858+0+0+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png\",srcSet:\"https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HkYfWx6CHy24n86J0SnIdQoYk.png 2537w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2szwco\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"H4RL1Gvnw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xq3q6v\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"pyg0PrBqV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Revolutionizing Events with AI Emcee\"})}),className:\"framer-61sbi8\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"zSf4IPJFK\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"The future of event hosting is here, and it's powered by artificial intelligence. NXT Interactive is proud to introduce our groundbreaking AI Emcee, a virtual host designed to redefine event experiences.\"})}),className:\"framer-14w4b0v\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"jkizSSbyd\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ok87n\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"GQCnY52F6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks77=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+4858+0+0+0+195+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z0nza0-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K9axZEzya-container\",nodeId:\"K9axZEzya\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks77[0],height:\"100%\",id:\"K9axZEzya\",layoutId:\"K9axZEzya\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks77[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-17yneek\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ddF_F98yC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k9z83s\",layoutDependency:layoutDependency,layoutId:\"dB40IAmIS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1knvshn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R6TfJpbze-container\",nodeId:\"R6TfJpbze\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"R6TfJpbze\",layoutId:\"R6TfJpbze\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bYarPO2Uo\"},motionChild:true,nodeId:\"H4oXd6spw\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:714,pixelWidth:1269,src:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png\",srcSet:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png 1269w\"},className:\"framer-ofkjaf framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"H4oXd6spw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+4858+0+561+0+0+0+0),pixelHeight:714,pixelWidth:1269,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png\",srcSet:\"https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LK98mzJuW3gIpsxWsNB3z8EPT1I.png 1269w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nztqjv\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qJE936OYd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7s2eg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"b0hZBTpcZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Sustainability AI Photobooth\"})}),className:\"framer-5bwf6p\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"RBbgMgexA\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're committed to creating digital experiences that not only entertain but also inspire positive change. That's why we're thrilled to partner with the Singapore Business Federation (SBF) to introduce an innovative AI photobooth.\"})}),className:\"framer-a0rekv\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"NWCkwC2AV\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15qb5a4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"I5r9mxxlL\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks78=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+4858+0+561+0+192+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kctlr9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K8y6WL0jN-container\",nodeId:\"K8y6WL0jN\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks78[0],height:\"100%\",id:\"K8y6WL0jN\",layoutId:\"K8y6WL0jN\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks78[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10389of\",layoutDependency:layoutDependency,layoutId:\"pWPdTBpoI\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1d901ea\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"YH82Z_anu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t39tiw\",layoutDependency:layoutDependency,layoutId:\"j9uCTiLC4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-440up4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AiBnsHtEQ-container\",nodeId:\"AiBnsHtEQ\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"AiBnsHtEQ\",layoutId:\"AiBnsHtEQ\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tcgXhoinx\"},motionChild:true,nodeId:\"a6JIL8SG_\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png\",srcSet:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png 1920w\"},className:\"framer-1c8nsd5 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"a6JIL8SG_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({hjqV5Anxq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+10532+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"} - 104px, 1px)`,src:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png\",srcSet:\"https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZFFyfDP6AOz1DbLq9FDpCKWFts.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pdl55m\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"QWdu1BLhb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rz4qan\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Sw5dUVRHJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive Exhibits for events/conferences\"})}),className:\"framer-tefxhs\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"XTZ5F4LC8\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"In today's fast-paced digital world, conferences must go beyond traditional lectures and presentations to capture the attention of attendees. Interactive exhibits offer a unique opportunity to engage participants, spark discussions, and create memorable experiences.\"})}),className:\"framer-1myvfoh\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Bcv26qMsw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17un5jq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"TL3phNF5m\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks79=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({hjqV5Anxq:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+10532+0+0+196+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b9lr4h-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JV6NsTNzd-container\",nodeId:\"JV6NsTNzd\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks79[0],height:\"100%\",id:\"JV6NsTNzd\",layoutId:\"JV6NsTNzd\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{bDG7N3o0z:resolvedLinks79[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined}],children:resolvedLinks80=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,...addPropertyOverrides({hjqV5Anxq:{width:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-11518)/2+250+46)+20+11126}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pm2e8i-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mHrmp5r85-container\",nodeId:\"mHrmp5r85\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ButtonLarge,{apqsCktfb:\"View More\",haPb8DtW8:\"ArrowForward\",height:\"100%\",id:\"mHrmp5r85\",layoutId:\"mHrmp5r85\",RZT9SNG2g:resolvedLinks80[0],style:{height:\"100%\",width:\"100%\"},variant:\"XvAldi6_m\",width:\"100%\",...addPropertyOverrides({hjqV5Anxq:{RZT9SNG2g:resolvedLinks80[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed17()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15t6qse\",layoutDependency:layoutDependency,layoutId:\"YowBXrldx\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-vx7bsm\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"t6TGKo8Nj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3bvt9c\",layoutDependency:layoutDependency,layoutId:\"wU93eua9h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pr6i8c-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"B2EMRGcBN-container\",nodeId:\"B2EMRGcBN\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"B2EMRGcBN\",layoutId:\"B2EMRGcBN\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gvBAR52zk\"},motionChild:true,nodeId:\"fUNA1J_D6\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Ar Glasses\",fit:\"fill\",intrinsicHeight:502,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+184+46)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"} - 188px, 1px)`,src:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png 1920w\"},className:\"framer-pmze1b framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fUNA1J_D6\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"Ar Glasses\",fit:\"fill\",intrinsicHeight:502,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+250+46)+10+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"} - 104px, 1px)`,src:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQuh0z2c1OwRyPvUrYCXNGEx4.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11khc9c\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"cXGsY2qlR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14syr2q\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"P5qbMZKyo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"SGZUTlGdw\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"iContact AR Glasses Solution for Autistic Children\"})})})}),className:\"framer-v8ppd1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"SGZUTlGdw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gvBAR52zk\"},motionChild:true,nodeId:\"SGZUTlGdw\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"iContact AR Glasses Solution for Autistic Children\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive's revolutionary AR glasses software, in collaboration with Project iContact and BLKJ Havas, features the first-ever AR glass software tailored specifically for autistic children and adults.\"})}),className:\"framer-g8ny1r\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Z_RTS18pp\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ve6i1y\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"bjtwBoiH9\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks81=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+184+46)+0+0+272+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+250+46)+10+0+184+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-179olhn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"adjitYczi-container\",nodeId:\"adjitYczi\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ARTag1,{GZgkvPJP6:resolvedLinks81[0],height:\"100%\",id:\"adjitYczi\",layoutId:\"adjitYczi\",style:{height:\"100%\"},U4y3evk1y:\"Augmented Reality\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{GZgkvPJP6:resolvedLinks81[1]}},baseVariant,gestureVariant)})})})})})]})]})}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1stwjw4\",layoutDependency:layoutDependency,layoutId:\"tereR8Zso\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-qa14of\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"qaIagJYIv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b9wzpc\",layoutDependency:layoutDependency,layoutId:\"tgJ76MCEw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4b0bwq-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rLLMc9JXP-container\",nodeId:\"rLLMc9JXP\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"rLLMc9JXP\",layoutId:\"rLLMc9JXP\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n9zZ_3wsi\"},motionChild:true,nodeId:\"zUlRAW_kE\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Shiseido Product Launch\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+856+69)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg\",srcSet:\"https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg 1920w\"},className:\"framer-fsizh3 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zUlRAW_kE\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"Shiseido Product Launch\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+804+69)+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg\",srcSet:\"https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HMMmUru9YEgdrOsq5FE5YEVxVz4.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tebmcx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Oio6kxvW5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cg3rhd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"XrWHPJrsw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Gen AI-powered Photobooth\"})}),className:\"framer-1si2283\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"SGSJ43OUi\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At the heart of this project was the desire to understand individual taste preferences and deliver a unique, shareable moment. We envisioned a system that could not only generate eye-catching billboard-style outputs but also tap into what makes each person's taste buds tick.\"})}),className:\"framer-j1yo1j\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Vh2DCJmHx\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z1ren\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"O829BnFaU\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks82=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+856+69)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+804+69)+0+0+0+183+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i8x3sk-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RtE4Gt_a0-container\",nodeId:\"RtE4Gt_a0\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks82[0],height:\"100%\",id:\"RtE4Gt_a0\",layoutId:\"RtE4Gt_a0\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks82[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-jh8p37\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"k8MvF_z9q\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mmvc8k\",layoutDependency:layoutDependency,layoutId:\"Fqznr7_sg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ggby7c-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aoo2_ZnLg-container\",nodeId:\"aoo2_ZnLg\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"aoo2_ZnLg\",layoutId:\"aoo2_ZnLg\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zyi9xtMGW\"},motionChild:true,nodeId:\"f2b_1htlg\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Shiseido Product Launch\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+856+69)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png\",srcSet:\"https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png 1920w\"},className:\"framer-62nynt framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"f2b_1htlg\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"Shiseido Product Launch\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+804+69)+0+599+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png\",srcSet:\"https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4TTpbOUbQeCZQYvj5t1x48PBp4.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s0b7xd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ljlGimSQa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yvkput\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ecDP5bUtD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Digital Mosaic for a Larger-Than-Life Message\"})}),className:\"framer-tim1i3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"wz69DXNl7\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Digital Mosaic for a Larger-Than-Life Message\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive conceptualized and developed a bespoke digital mosaic application designed to capture individual participation and culminate in a grand, visually compelling display.\"})}),className:\"framer-m7ozxg\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"GzK_NW0yc\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ta51mg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"YWoVzSl21\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks83=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+856+69)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+804+69)+0+599+0+183+0+368+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3gi6xo-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aH5j3dc7o-container\",nodeId:\"aH5j3dc7o\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks83[0],height:\"100%\",id:\"aH5j3dc7o\",layoutId:\"aH5j3dc7o\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks83[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vcspm3\",layoutDependency:layoutDependency,layoutId:\"xL6v7yZWS\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-zj8ivq\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ou4msbIe9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dp6my6\",layoutDependency:layoutDependency,layoutId:\"fjb6EKnQN\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19j5l7g-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fqQD1Biq1-container\",nodeId:\"fqQD1Biq1\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"fqQD1Biq1\",layoutId:\"fqQD1Biq1\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OqA_3NiQ4\"},motionChild:true,nodeId:\"GZaz6jzOM\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+1536+92)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg\",srcSet:\"https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg 1921w\"},className:\"framer-hh4u60 framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GZaz6jzOM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+1986+92)+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg\",srcSet:\"https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LqPJmDvwWRJxvaW2FT1Hy46488.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6qw0bh\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"mDxhSIUNh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gxgjsu\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"mTSc8CsB1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive AFL Game Experiences in Australia\"})}),className:\"framer-zbkipr\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"ZGaaphYGZ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive AFL Game Experiences in Australia\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Chemist Warehouse sought to create engaging and interactive experiences for fans around the Australian Football League (AFL) games.\"})}),className:\"framer-1cilul4\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"RysYFUJ1k\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m3y8uq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"nrndsoVg2\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks84=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+1536+92)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+1986+92)+0+0+0+181+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c5ij3r-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nXYdBREe7-container\",nodeId:\"nXYdBREe7\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks84[0],height:\"100%\",id:\"nXYdBREe7\",layoutId:\"nXYdBREe7\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks84[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1mtdbxf\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"KS2ShYSP6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2m41cq\",layoutDependency:layoutDependency,layoutId:\"OultTzNJp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14pqszh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yl2kn2nKc-container\",nodeId:\"yl2kn2nKc\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"yl2kn2nKc\",layoutId:\"yl2kn2nKc\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XkH6LO8aj\"},motionChild:true,nodeId:\"zCzSAieHF\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+1536+92)+0+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png\",srcSet:\"https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png 2537w\"},className:\"framer-uzouzm framer-1bu50wz\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zCzSAieHF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+1986+92)+0+547+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png\",srcSet:\"https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KisSOiCsNy4FO9G2KYkc2dpzfWE.png 2537w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ld9snd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"zTypOBg1L\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2eqokx\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"jVv3pVKpY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Revolutionizing Events with AI Emcee\"})}),className:\"framer-vlqyzc\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"jCkbD_mAx\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Revolutionizing Events with AI Emcee\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"The future of event hosting is here, and it's powered by artificial intelligence. NXT Interactive is proud to introduce our groundbreaking AI Emcee, a virtual host designed to redefine event experiences.\"})}),className:\"framer-1kzy47g\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"C_m2mCe74\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tniuuu\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Lc7I1V45a\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks85=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+1536+92)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+1986+92)+0+547+0+181+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n8yyhl-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"gsjn7wroB-container\",nodeId:\"gsjn7wroB\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks85[0],height:\"100%\",id:\"gsjn7wroB\",layoutId:\"gsjn7wroB\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks85[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-oepjwv\",\"data-framer-name\":\"Articles mv\",layoutDependency:layoutDependency,layoutId:\"LzfOtngBe\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-169x7o7\",layoutDependency:layoutDependency,layoutId:\"qOYGJYKRh\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-hx352t\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Mo8MeZwcl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c8sewc\",layoutDependency:layoutDependency,layoutId:\"HdYUl7vPN\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tH67z_PAx\"},motionChild:true,nodeId:\"bjVTxrYiC\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"shiseido cosmetics\",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png\",srcSet:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png 902w\"},className:\"framer-1snzakc framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bjVTxrYiC\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"shiseido cosmetics\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+1092+0+0+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png\",srcSet:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ptnti4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"DgFi13OzL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xuhts9\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"DkTiHmahD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bjsqg\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"k6YFT5p9f\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b832ay\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"zDvCJ8dlB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tH67z_PAx\"},motionChild:true,nodeId:\"rjuX6VnqH\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Shiseido Product Launch\"})})})}),className:\"framer-sioe7o\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"rjuX6VnqH\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown Metaverse solution for Shiseido to introduce new cosmetic products. Inclusive of features like custom 3D spaces, custom games, live calls/chats, spatial audio, photobooth, live-streaming and much more.\"})}),className:\"framer-1tnq9xb\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"AmV4cQWb8\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o6xlac\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"CBQJEnm6u\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks86=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ygpata-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cCvbxI3wI-container\",nodeId:\"cCvbxI3wI\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks86[0],height:\"100%\",id:\"cCvbxI3wI\",layoutId:\"cCvbxI3wI\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{bDG7N3o0z:resolvedLinks86[1]}},baseVariant,gestureVariant)})})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zqf9d4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"zC_YJ27pK\"})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-x2dee6\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Y4qyZiLxP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10oe3hp\",layoutDependency:layoutDependency,layoutId:\"Q_AN4106B\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iLDLreXzX\"},motionChild:true,nodeId:\"Sk7uKbSGP\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Hopescaoe meta\",fit:\"fill\",pixelHeight:1010,pixelWidth:2062,src:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png\",srcSet:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=512 512w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png 2062w\"},className:\"framer-4gzbr8 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Sk7uKbSGP\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"Hopescaoe meta\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+1092+0+550+0+0+0+0),pixelHeight:1010,pixelWidth:2062,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png\",srcSet:\"https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=512 512w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aahktrM7rwFEBxGzfJljCSAfk.png 2062w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5voe0q\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"nLyCwGfCg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iepkga\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"d7wqVzc9b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iLDLreXzX\"},motionChild:true,nodeId:\"dVacXap4i\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Hopescape Metaverse\"})})})}),className:\"framer-1k27wvk\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"dVacXap4i\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown Metaverse solution for Children's Cancer Foundation (CCF). Inclusive of features like custom 3D spaces, custom games, custom avatars, photobooth, live-streaming, exhibition space and much more.\"})}),className:\"framer-n43e84\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"XScmiGeeb\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-380vz7\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Zm86nm3eX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks87=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kpk32y-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TJLVCA6iJ-container\",nodeId:\"TJLVCA6iJ\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks87[0],height:\"100%\",id:\"TJLVCA6iJ\",layoutId:\"TJLVCA6iJ\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{bDG7N3o0z:resolvedLinks87[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t93081\",layoutDependency:layoutDependency,layoutId:\"x9ehM3oLC\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1d4pim3\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ahAd_sDKh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17d6wa1\",layoutDependency:layoutDependency,layoutId:\"ZPQLUvJHZ\",children:/*#__PURE__*/_jsx(Link,{href:JaVe4n8g3,motionChild:true,nodeId:\"mI5IRLy79\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1010,pixelWidth:2062,src:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png\",srcSet:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png 2062w\"},className:\"framer-gxodip framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mI5IRLy79\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+2196+0+0+0+0+0+0),pixelHeight:1010,pixelWidth:2062,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png\",srcSet:\"https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCLgqVfXm9tzZnvpbIJQuXLCLzo.png 2062w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d1eyel\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"AkONfLQDl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i8u88q\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"hIUdpdtkL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pdsdku\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"bBAcJL73l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"L8nb8ADAX\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Bangkok International Fashion Week (BIFW) Metaverse Event\"})})})}),className:\"framer-1b76i67\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"L8nb8ADAX\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown Metaverse solution for Bangkok International Fashion Week (BIFW). Inclusive of features like custom 3D spaces, custom games, live calls, spatial audio, photobooth, live-streaming and much more.\"})}),className:\"framer-r5sfn8\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"QnrBPHe5W\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lvo1m\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"xpn_6RuLs\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks88=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15282m1-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YNtVMRprf-container\",nodeId:\"YNtVMRprf\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks88[0],height:\"100%\",id:\"YNtVMRprf\",layoutId:\"YNtVMRprf\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{bDG7N3o0z:resolvedLinks88[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-ek9o2b\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"LdJYO9Fvx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19m4gai\",layoutDependency:layoutDependency,layoutId:\"oHtLa1eVN\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"MZY4w1Lws\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png\",srcSet:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png 1920w\"},className:\"framer-sdy0kk framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MZY4w1Lws\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"Digital library\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+2196+0+535+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png\",srcSet:\"https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q0S0Dq9VjLkqAlNhFzhcF8of3w.png 1920w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mpdif1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"govXLTaIc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rnvq2d\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"SFYEqTrCZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r95IahKkz\"},motionChild:true,nodeId:\"I4Un4SO3k\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Virtual Space For Durex Year End Campaign\"})})})}),className:\"framer-eu8c93\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"I4Un4SO3k\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"We transformed Durex's year-end party into an immersive experience by designing a thematic venue, incorporating interactive workshops, and integrating games that subtly conveyed product messages. \"})}),className:\"framer-1w68t7t\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"OoDfK08MI\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qcdox1\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"WzlhLTHiK\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks89=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2e1nv9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xgN1oW3aA-container\",nodeId:\"xgN1oW3aA\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag1,{bDG7N3o0z:resolvedLinks89[0],height:\"100%\",id:\"xgN1oW3aA\",layoutId:\"xgN1oW3aA\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{bDG7N3o0z:resolvedLinks89[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7maeif\",layoutDependency:layoutDependency,layoutId:\"MUTxvhITX\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-eosfey\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"LDNVhoC8u\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ao5ke7\",layoutDependency:layoutDependency,layoutId:\"Pao9k7_Q5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1prsg9j-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XU_LJPJXK-container\",nodeId:\"XU_LJPJXK\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"XU_LJPJXK\",layoutId:\"XU_LJPJXK\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GWW47JIBp\"},motionChild:true,nodeId:\"WV9pLYZJG\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png\",srcSet:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png 1920w\"},className:\"framer-1v6m4vs framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"WV9pLYZJG\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+0+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png\",srcSet:\"https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/59tSzXrZ0VUu0CG7cT7t1d1tLRs.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176sxda\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"wy4oF7k8z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11biph4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"nj6GlxQUd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"dB51BR5i8\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Theme Based Metaverse\"})})})}),className:\"framer-14gnqgd\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"dB51BR5i8\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Nanyang Polytechnic (NYP) is pioneering a novel approach to Pre-Freshmen Orientation (FMO) by incorporating the Metaverse and the fantastical world of Pandora. This immersive experience reimagines the physical campus and transforms FMO into an unforgettable journey.\"})}),className:\"framer-1efjc93\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"EbS9tBA1z\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j4ka9v\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"dLEnyFXt0\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks90=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({XOeqn6wd3:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+0+0+0+0+178+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bmeee4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iaVRxn4JZ-container\",nodeId:\"iaVRxn4JZ\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks90[0],height:\"100%\",id:\"iaVRxn4JZ\",layoutId:\"iaVRxn4JZ\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{bDG7N3o0z:resolvedLinks90[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1bc20sw\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"uQ2bPgODW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jl95jr\",layoutDependency:layoutDependency,layoutId:\"cj6pUCjyd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-26hzmj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"h5juPQVmp-container\",nodeId:\"h5juPQVmp\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"h5juPQVmp\",layoutId:\"h5juPQVmp\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PCs8W2UIF\"},motionChild:true,nodeId:\"ycOIdjcxi\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1427,pixelWidth:2537,src:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png 2537w\"},className:\"framer-108idpr framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ycOIdjcxi\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+0+0+544+0+0+0+0),pixelHeight:1427,pixelWidth:2537,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f3eoPPALffMt7TIytoHy0t7aCEo.png 2537w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jpdxte\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"wQjElwGw0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jsi6de\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"njNaiK9G6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"pXvLtMXrn\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Gamified Metaverse\"})})})}),className:\"framer-8noohk\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"pXvLtMXrn\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive has stepped onto the pitch with a groundbreaking project for Singapore Pools - the world's first metaverse experience featuring a football game! This innovative approach to user education goes beyond the traditional and dives into the immersive world of the metaverse, making learning about responsible betting fun and engaging.\"})}),className:\"framer-bnij9l\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"TnE7anJsA\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jhwjq3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"MLQtDyUVT\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks91=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({XOeqn6wd3:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+0+0+544+0+173+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12snpck-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RJv0y9_k7-container\",nodeId:\"RJv0y9_k7\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks91[0],height:\"100%\",id:\"RJv0y9_k7\",layoutId:\"RJv0y9_k7\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{bDG7N3o0z:resolvedLinks91[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i8m1m0\",layoutDependency:layoutDependency,layoutId:\"auHEbgM21\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1f8zf3v\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"wovTKojHd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ao757w\",layoutDependency:layoutDependency,layoutId:\"z_q4RxBOB\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"juiuKBJQX\"},motionChild:true,nodeId:\"LNnaQ0Bvw\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Penfolds \",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png\",srcSet:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png 902w\"},className:\"framer-1jio5y2 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LNnaQ0Bvw\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"Penfolds \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+3294+0+0+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png\",srcSet:\"https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYibojNXFbDY4LtsNLlavPBPhGY.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bdl88v\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"vbbSNvojM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fwntji\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"OwXpzwtzB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"juiuKBJQX\"},motionChild:true,nodeId:\"QhJJjnW_d\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Penfolds Interactive Website\"})})})}),className:\"framer-1m7h6ag\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"QhJJjnW_d\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive virtual site for Penfolds Wines, where users can experience the journey of wine making. Addtionally users can learn about the history of the vineyards, the founders of Penfolds and the chef introductions before buying one from the retail side of the website.\"})}),className:\"framer-1816t43\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"rC3tMocAJ\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t1d3yd\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"apvOoOYgO\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks92=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bi4r8k-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lDUxqsVi1-container\",nodeId:\"lDUxqsVi1\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"lDUxqsVi1\",iTrJ_SjbG:resolvedLinks92[0],KPv3NeVnR:\"Product Based Solutions\",layoutId:\"lDUxqsVi1\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{iTrJ_SjbG:resolvedLinks92[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-5eblru\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"x6qgGVLkl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rfh925\",layoutDependency:layoutDependency,layoutId:\"jvJ_eCNBZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BA4mkZZZ2\"},motionChild:true,nodeId:\"B2QFx3UmZ\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sephora virtual event\",fit:\"fill\",pixelHeight:498,pixelWidth:902,src:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png\",srcSet:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png 902w\"},className:\"framer-j3gmyp framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"B2QFx3UmZ\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"Sephora virtual event\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+3294+0+567+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png\",srcSet:\"https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/w7kEIaoqEXpSe7T2oCoJBRYxXc.png 902w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19jza4n\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"rxJtOFDlV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xgd1f0\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qnCoHZRkx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vcXzPxvSZ\"},motionChild:true,nodeId:\"w__lFdR8O\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Sephora D&D Virtual Event\"})})})}),className:\"framer-19qfj97\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"w__lFdR8O\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed an immersive 360-degree virtual platform for Sephora Dance & Dinner Event. Inclusive of features like Memory lane, Treasure hunt, Instagram filters and games, photobooth and much more.\"})}),className:\"framer-vv89br\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"ajw4g6P4m\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17os2w9\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ALx6K6TTz\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks93=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fouh5z-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DBhPABsDY-container\",nodeId:\"DBhPABsDY\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"DBhPABsDY\",iTrJ_SjbG:resolvedLinks93[0],KPv3NeVnR:\"Product Based Solutions\",layoutId:\"DBhPABsDY\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{iTrJ_SjbG:resolvedLinks93[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3s5w06\",layoutDependency:layoutDependency,layoutId:\"ZM983mGRj\",children:[/*#__PURE__*/_jsx(motion.button,{className:\"framer-10rqnoo\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"CUeCfn_kR\",children:/*#__PURE__*/_jsx(motion.section,{className:\"framer-ahrlln\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"jqsdh3fCj\",children:/*#__PURE__*/_jsxs(motion.section,{className:\"framer-3io6hu\",\"data-framer-name\":\"Cards / Project Card\",layoutDependency:layoutDependency,layoutId:\"lQ7KoEnbd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vnw4ql\",layoutDependency:layoutDependency,layoutId:\"ZlCoiP3fx\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JnN4hNC_l\"},motionChild:true,nodeId:\"EMXl7jGi4\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Formica\",fit:\"fill\",pixelHeight:505,pixelWidth:1031,src:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png\",srcSet:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png 1031w\"},className:\"framer-foyyaa framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EMXl7jGi4\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"Formica\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+4408+0+0+0+0+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png\",srcSet:\"https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/raLodmczfoY8lJCXvPzbovBFY4U.png 1031w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1419kht\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"UPXeenG93\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u2p5db\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"GVzvQDs2a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JnN4hNC_l\"},motionChild:true,nodeId:\"n4dm77Od9\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Formica Virtual Showroom\"})})})}),className:\"framer-nwez6p\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"n4dm77Od9\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown 360-degree virtual shorwoom for Formica\\xae Brand Laminate to introduce their new physical showroom without the need of a physical visit. Inclusive of features like 360-degree panoramic view, interactive hotspots and much more.\"})}),className:\"framer-vv8l39\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"vlq2MV4Zp\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qb5uvp\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"VUxSp_5Zx\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks94=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-89t3wp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wOOZLqopg-container\",nodeId:\"wOOZLqopg\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VirtualSpaceTag,{height:\"100%\",id:\"wOOZLqopg\",iTrJ_SjbG:resolvedLinks94[0],KPv3NeVnR:\"Product Based Solutions\",layoutId:\"wOOZLqopg\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{iTrJ_SjbG:resolvedLinks94[1]}},baseVariant,gestureVariant)})})})})})]})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m16ieIx_Y\"},implicitPathVariables:undefined},{href:{webPageId:\"m16ieIx_Y\"},implicitPathVariables:undefined}],children:resolvedLinks95=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,...addPropertyOverrides({XOeqn6wd3:{width:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+4408+0+572}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dtltv5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yM56isD8j-container\",nodeId:\"yM56isD8j\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(CardsProjectCardCopy4,{d3dSbB23_:\"Designed and developed an exclusive lifestyle mobile app for Asia's greatest innovators and experts in art, finance, technology and mixology. Members and non-members can easily enjoy the services or book events at various MAVEN outlets and merchants with MAVEN credit system.\",Dh0qw0gD6:addImageAlt({pixelHeight:466,pixelWidth:902,src:\"https://framerusercontent.com/images/m8ugDzuFtqBXBH0lAwMdOZECKmw.png\",srcSet:\"https://framerusercontent.com/images/m8ugDzuFtqBXBH0lAwMdOZECKmw.png?scale-down-to=512 512w,https://framerusercontent.com/images/m8ugDzuFtqBXBH0lAwMdOZECKmw.png 902w\"},\"MAVEN Global Retail App\"),height:\"100%\",id:\"yM56isD8j\",jU5kfKgp4:resolvedLinks95[0],K2Oeb_NQp:false,layoutId:\"yM56isD8j\",LlMZcyhHX:\"MAVEN Global Retail App\",style:{width:\"100%\"},variant:\"GPah7LxOU\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{jU5kfKgp4:resolvedLinks95[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x1rnbf\",layoutDependency:layoutDependency,layoutId:\"oCRd1Lm9I\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1odv6in\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"EaroktI4f\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-164ve74\",layoutDependency:layoutDependency,layoutId:\"v1Z9aH5IV\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2rbpof-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KPblebORR-container\",nodeId:\"KPblebORR\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"KPblebORR\",layoutId:\"KPblebORR\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"h1KFWLcqd\"},motionChild:true,nodeId:\"gBSPVvn73\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,pixelHeight:1219,pixelWidth:2362,src:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png\",srcSet:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png 2362w\"},className:\"framer-13lhq3g framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gBSPVvn73\",...addPropertyOverrides({XOeqn6wd3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+5413+0+0+0+0+0),pixelHeight:1219,pixelWidth:2362,sizes:`max(${componentViewport?.width||\"100vw\"} - 104px, 1px)`,src:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png\",srcSet:\"https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1Gh3iZt4vbLu92g1l3C6nIWE4.png 2362w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11k4qk3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"OjdXCgMqe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w3d01d\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"sRHUuQfqx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"LntKbmf0U\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"Web based Interactive Games\"})})})}),className:\"framer-1ohipuf\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"LntKbmf0U\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Zeiss is an engaging and informative web project created by NXT Interactive. It's designed to be a one-stop shop for learning and testing your knowledge through a combination of educational videos and interactive games.\"})}),className:\"framer-o9297b\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"EoNQVkyY_\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tl2oih\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"T5nfp8Vxe\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uJaIWlw8M\"},implicitPathVariables:undefined},{href:{webPageId:\"uJaIWlw8M\"},implicitPathVariables:undefined}],children:resolvedLinks96=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({XOeqn6wd3:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+5413+0+0+192+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18pxd25-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EvTB7W87A-container\",nodeId:\"EvTB7W87A\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks96[0],height:\"100%\",id:\"EvTB7W87A\",layoutId:\"EvTB7W87A\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{bDG7N3o0z:resolvedLinks96[1]}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined}],children:resolvedLinks97=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,...addPropertyOverrides({XOeqn6wd3:{width:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-6372)/2+250+46)+20+5980}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r85xkv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ULbzUDaly-container\",nodeId:\"ULbzUDaly\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ButtonLarge,{apqsCktfb:\"View More\",haPb8DtW8:\"ArrowForward\",height:\"100%\",id:\"ULbzUDaly\",layoutId:\"ULbzUDaly\",RZT9SNG2g:resolvedLinks97[0],style:{height:\"100%\",width:\"100%\"},variant:\"XvAldi6_m\",width:\"100%\",...addPropertyOverrides({XOeqn6wd3:{RZT9SNG2g:resolvedLinks97[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-euf68e\",layoutDependency:layoutDependency,layoutId:\"ecHhp_Xac\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-114ft8z\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"pplZaXRCn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7k7cjm\",layoutDependency:layoutDependency,layoutId:\"qhHqCfWGb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-47n3vv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bF5oxcnrw-container\",nodeId:\"bF5oxcnrw\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"bF5oxcnrw\",layoutId:\"bF5oxcnrw\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GCLcRcs5k\"},motionChild:true,nodeId:\"dIQLIDY2b\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2216+115)+0+0+0+0+0),pixelHeight:1081,pixelWidth:1921,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg\",srcSet:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg 1921w\"},className:\"framer-yv3rr0 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"dIQLIDY2b\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1219,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+3064+115)+0+0+0+0+0+0),pixelHeight:1081,pixelWidth:1921,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg\",srcSet:\"https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s3RvOfckKvb3qLr2cAcISlRv5mw.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z77n6a\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"FGNK4WEwn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d26d8s\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"QGsdHMocb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Facial Tracking Innovative Solution\"})}),className:\"framer-1xzhkk3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"wf3q9poBw\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Facial Tracking Innovative Solution\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"At NXT Interactive, we're committed to pushing the boundaries of digital engagement. Our latest innovation, a personalized experience solution, goes beyond traditional face expression tracking to offer a more immersive and engaging user experience.\"})}),className:\"framer-18hbosg\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"KALZWiTLh\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c1scb2\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"oOPFrt6zf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks98=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2216+115)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+3064+115)+0+0+0+190+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-icv98q-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"keyFRxS5P-container\",nodeId:\"keyFRxS5P\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks98[0],height:\"100%\",id:\"keyFRxS5P\",layoutId:\"keyFRxS5P\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks98[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-19vdwwl\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"pLYyr8fVi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-188ys4i\",layoutDependency:layoutDependency,layoutId:\"ZdbsBjoxC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ans8cg-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v8x9_5Rq8-container\",nodeId:\"v8x9_5Rq8\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"v8x9_5Rq8\",layoutId:\"v8x9_5Rq8\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WVwjPqsAj\"},motionChild:true,nodeId:\"aW01eOzRb\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Shiseido Product Launch\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2216+115)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png\",srcSet:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png 1920w\"},className:\"framer-a6vd27 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aW01eOzRb\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"Shiseido Product Launch\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+3064+115)+0+556+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png\",srcSet:\"https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nf7PILXlLDV2fser7uEezsTtY.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tiya9q\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"U68edr69j\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yub4zw\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"JU4LYkgsa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive Table App Exhibit\"})}),className:\"framer-1em8wy2\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"GgJuMKBYn\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Interactive Table App Exhibit\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive developed a cutting-edge interactive touch table application. This innovative solution transforms the traditional exhibition experience, allowing visitors to explore the selected island cities in a visually stunning and informative way.\"})}),className:\"framer-lg541f\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"sFO1FzE6O\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kps3p3\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"VvPYDf0QX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks99=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2216+115)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+3064+115)+0+556+0+189+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1akzt3x-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JkyGqMqGI-container\",nodeId:\"JkyGqMqGI\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks99[0],height:\"100%\",id:\"JkyGqMqGI\",layoutId:\"JkyGqMqGI\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks99[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed18()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xzr9rz\",layoutDependency:layoutDependency,layoutId:\"WDzkBdN4D\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-12ovgnj\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"YnAtiblTG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j2xbrl\",layoutDependency:layoutDependency,layoutId:\"vH3_dEl89\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bttjd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iOouWqhgl-container\",nodeId:\"iOouWqhgl\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"iOouWqhgl\",layoutId:\"iOouWqhgl\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vcXzPxvSZ\"},motionChild:true,nodeId:\"eIQuT9DPK\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2896+138)+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png\",srcSet:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png 1031w\"},className:\"framer-j0e9t0 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eIQuT9DPK\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+4157+69)+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png\",srcSet:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png 1031w\"}},mEN3mMb75:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+4159+138)+0+0+0+0+0+0),pixelHeight:505,pixelWidth:1031,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png\",srcSet:\"https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqD8109ZtIqrlxheSOTvcDnZm8.png 1031w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1twvjtj\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"qLRVZhEBK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1krg047\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"Nb9vofpdA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"NhOCn3rL0\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"VR PitStop Game\"})})})}),className:\"framer-1a4hc6a\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"NhOCn3rL0\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FjZkqM0mS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"NhOCn3rL0\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"VR PitStop Game\"})})})})},mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"NhOCn3rL0\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"VR PitStop Game\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Designed and developed a multiplayer F1 VR game for Zoom Communications, where users can enter a 3D PitStop and compete against each other to change the wheels on a Formual 1 car in record time.\"})}),className:\"framer-1p112ks\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"hijt4ZFil\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qgsctt\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"leJQq4yyp\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks100=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2896+138)+0+0+280+0+368+0,...addPropertyOverrides({FjZkqM0mS:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+4157+69)+0+0+0+203+0+318+0},mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+4159+138)+0+0+0+203+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ku5bfz-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MtfxqTZ9f-container\",nodeId:\"MtfxqTZ9f\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks100[0],height:\"100%\",id:\"MtfxqTZ9f\",layoutId:\"MtfxqTZ9f\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks100[2]},mEN3mMb75:{bDG7N3o0z:resolvedLinks100[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1t2aa5k\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"w60EhXvcy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-448hz8\",layoutDependency:layoutDependency,layoutId:\"QzcrGgZBs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dj8e19-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dwS3ICeL2-container\",nodeId:\"dwS3ICeL2\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"dwS3ICeL2\",layoutId:\"dwS3ICeL2\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mXLIp30sC\"},motionChild:true,nodeId:\"V0zf9obKc\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2896+138)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png\",srcSet:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=512 512w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png 1920w\"},className:\"framer-9pw6ho framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"V0zf9obKc\",...addPropertyOverrides({FjZkqM0mS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+4157+69)+0+569+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png\",srcSet:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=512 512w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png 1920w\"}},mEN3mMb75:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+4159+138)+0+569+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png\",srcSet:\"https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=512 512w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/th1vBfBCyqKEXMs5w7dRIZj94.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b75hjp\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"uPyopXpr7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-151rzed\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"ZUDcBPtR7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"ag6WhGWHt\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"VR Disinfectant Training Solution\"})})})}),className:\"framer-1mebi4w\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"ag6WhGWHt\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FjZkqM0mS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"ag6WhGWHt\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"VR Disinfectant Training Solution\"})})})})},mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jU5kfKgp4XarVV9L9h,motionChild:true,nodeId:\"ag6WhGWHt\",openInNewTab:true,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18qpa4i\",\"data-styles-preset\":\"oCZvti39f\",children:\"VR Disinfectant Training Solution\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"NXT Interactive has recently created a virtual reality (VR) training solution developed for the National Environment Agency (NEA) in Singapore. This innovative tool aims to revolutionize education on proper disinfection practices, particularly during pandemics.\"})}),className:\"framer-eio6vr\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"EoUDgbvlF\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jtrfdo\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"mnnnFyPZ0\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined},{href:{webPageId:\"QP2Ri34x8\"},implicitPathVariables:undefined}],children:resolvedLinks101=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+2896+138)+0+0+280+0+368+0,...addPropertyOverrides({FjZkqM0mS:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+4157+69)+0+569+0+190+0+318+0},mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+4159+138)+0+569+0+190+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cma21n-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BcL774LbF-container\",nodeId:\"BcL774LbF\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks101[0],height:\"100%\",id:\"BcL774LbF\",layoutId:\"BcL774LbF\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{bDG7N3o0z:resolvedLinks101[2]},mEN3mMb75:{bDG7N3o0z:resolvedLinks101[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c25a8r\",layoutDependency:layoutDependency,layoutId:\"WuwXcwxAY\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-fnuvab\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"jWD9nzjRd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vf2gmz\",layoutDependency:layoutDependency,layoutId:\"Cx0qpEsYj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j9t3fw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lLqqlckKQ-container\",nodeId:\"lLqqlckKQ\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"lLqqlckKQ\",layoutId:\"lLqqlckKQ\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tH67z_PAx\"},motionChild:true,nodeId:\"JsXPIEiEI\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+3576+161)+0+0+0+0+0),pixelHeight:498,pixelWidth:902,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png\",srcSet:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png 902w\"},className:\"framer-42b98e framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JsXPIEiEI\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+5268+161)+0+0+0+0+0+-49.5),pixelHeight:498,pixelWidth:902,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png\",srcSet:\"https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qrpWpXKVRp4R5nyIW7LFu3ni4.png 902w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jyiy8s\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"QtzzAzYOI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b4f55k\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"lOc8KCv3l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Virtual Tech Event Platform\"})}),className:\"framer-16rkcm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"YjagA4kh0\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Virtual Tech Event Platform\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"A full-blown Metaverse solution for Shiseido to introduce new cosmetic products. Inclusive of features like custom 3D spaces, custom games, live calls/chats, spatial audio, photobooth, live-streaming and much more.\"})}),className:\"framer-17bgakh\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"Ht5IIvTY4\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oejqqe\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"CF2LbGNiM\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks102=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+3576+161)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+5268+161)+0+0+0+181+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-puliiw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mYHJUNYJo-container\",nodeId:\"mYHJUNYJo\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks102[0],height:\"100%\",id:\"mYHJUNYJo\",layoutId:\"mYHJUNYJo\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks102[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1brgd1i\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"yPmCLb_JC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oomz4g\",layoutDependency:layoutDependency,layoutId:\"seL7O68N_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a1l362-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"b03AxgukP-container\",nodeId:\"b03AxgukP\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"b03AxgukP\",layoutId:\"b03AxgukP\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GWW47JIBp\"},motionChild:true,nodeId:\"tctm9qeof\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+3576+161)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png\",srcSet:\"https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png 1920w\"},className:\"framer-1g7uah5 framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tctm9qeof\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+5268+161)+0+547+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png\",srcSet:\"https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EVv9iFMVd2uvMvm0HSeDkzBG0tM.png 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14r86oz\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"cgW_AmoHw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fms7bi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"wcOe440PQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Theme Based Metaverse\"})}),className:\"framer-1d15qvh\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"GO1PTsM_0\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Theme Based Metaverse\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Nanyang Polytechnic (NYP) is pioneering a novel approach to Pre-Freshmen Orientation (FMO) by incorporating the Metaverse and the fantastical world of Pandora. This immersive experience reimagines the physical campus and transforms FMO into an unforgettable journey.\"})}),className:\"framer-wxaws0\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"sd88NAHMg\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f193zm\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"pYuvnoP2S\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined},{href:{webPageId:\"vwXqt1tMq\"},implicitPathVariables:undefined}],children:resolvedLinks103=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+3576+161)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+5268+161)+0+547+0+193+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-aziek4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K7WIP85Qx-container\",nodeId:\"K7WIP85Qx\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks103[0],height:\"100%\",id:\"K7WIP85Qx\",layoutId:\"K7WIP85Qx\",style:{height:\"100%\"},vgA964TAm:\"Product Based Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks103[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u6cq9t\",layoutDependency:layoutDependency,layoutId:\"YcuyHF4Xi\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1xe9bii\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"eZF17RiDE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-35xjic\",layoutDependency:layoutDependency,layoutId:\"yQFSgbLbz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sakb2s-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PN_JigpIA-container\",nodeId:\"PN_JigpIA\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"PN_JigpIA\",layoutId:\"PN_JigpIA\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bP7XvZxkA\"},motionChild:true,nodeId:\"uxqmq2O5H\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4256+184)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg\",srcSet:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg 1921w\"},className:\"framer-lnilpp framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"uxqmq2O5H\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+6358+184)+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg\",srcSet:\"https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqeWb7DK6OaaOh4IWaIRDvQnxFg.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hj7yiq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"PKyMH9QxS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kh5hwy\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"FmONCnpaL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Savory Web AR Product App Marketing Campaign\"})}),className:\"framer-2h6maa\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"YkbhlbF_x\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Savory Web AR Product App Marketing Campaign\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"To address this challenge, NXT Interactive developed an innovative Augmented Reality (AR) mobile application. This app allows users to visualize how different food color solutions can impact the look and feel of ten popular food items.\"})}),className:\"framer-1pp6a0j\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"xFmXEwxsM\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fxi1ug\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"tqrPCNr4q\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks104=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4256+184)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+6358+184)+0+0+0+189+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10ayzvh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Gdak_yi_n-container\",nodeId:\"Gdak_yi_n\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks104[0],height:\"100%\",id:\"Gdak_yi_n\",layoutId:\"Gdak_yi_n\",style:{height:\"100%\"},vgA964TAm:\"Augmented Reality\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks104[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1eaxydk\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"SVa4P4dKc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qq9ry0\",layoutDependency:layoutDependency,layoutId:\"r6P5wcCLw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bt4dtz-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AFmwjvSii-container\",nodeId:\"AFmwjvSii\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"AFmwjvSii\",layoutId:\"AFmwjvSii\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tQaU0b_Qs\"},motionChild:true,nodeId:\"OYXkMb_PJ\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4256+184)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg\",srcSet:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg 1921w\"},className:\"framer-h6gjed framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OYXkMb_PJ\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+6358+184)+0+555+0+0+0+0),pixelHeight:1080,pixelWidth:1921,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg\",srcSet:\"https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HP7eoifOv72VPVaUdjAJGiwgBo.jpg 1921w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xxk0kq\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"wENvcQ9nA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-135dk2o\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"wvZE5jVbC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Phygital Twin Runner Game\"})}),className:\"framer-1v3084n\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"vY25z6t_9\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Phygital Twin Runner Game\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Our innovative solution represents the future of fitness, where technology and human performance converge. By leveraging cutting-edge technology, we are redefining the way we approach health and wellness.\"})}),className:\"framer-1qmq4xq\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"M4PRvDsXO\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xm12m2\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"gdAXsrugk\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined},{href:{webPageId:\"i5P2WREbL\"},implicitPathVariables:undefined}],children:resolvedLinks105=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4256+184)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+6358+184)+0+555+0+183+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kb9ls7-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Jd5_2ykbx-container\",nodeId:\"Jd5_2ykbx\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks105[0],height:\"100%\",id:\"Jd5_2ykbx\",layoutId:\"Jd5_2ykbx\",style:{height:\"100%\"},vgA964TAm:\"Event Tech Solutions\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks105[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t6oqy0\",layoutDependency:layoutDependency,layoutId:\"fLiBp7Awz\",children:[/*#__PURE__*/_jsxs(motion.button,{className:\"framer-19l4anq\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"MivqSqhu2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18l74lb\",layoutDependency:layoutDependency,layoutId:\"vxwpsu2IZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gowohx-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"flk7YgTnh-container\",nodeId:\"flk7YgTnh\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"flk7YgTnh\",layoutId:\"flk7YgTnh\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jqZn3ytXs\"},motionChild:true,nodeId:\"uefGYeXMD\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4936+207)+0+0+0+0+0),pixelHeight:4379,pixelWidth:7784,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png\",srcSet:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png 7784w\"},className:\"framer-ggavkj framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"uefGYeXMD\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+7446+207)+0+0+0+0+0+0),pixelHeight:4379,pixelWidth:7784,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png\",srcSet:\"https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/DFUJYGPRYZa6yP45ma4f3MJvH48.png 7784w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-102cubs\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"TVe2Dq3X_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4hb4kk\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"n8WDsqEn4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Exciting AR Treasure Hunt Game\"})}),className:\"framer-nlf1u4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"M2pJhBwVL\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Exciting AR Treasure Hunt Game\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"An innovative solution that would blend the physical and digital worlds, creating a truly unique shopping experience. To fulfill this vision, we developed an AR-powered treasure hunt that transported users into a captivating virtual world.\"})}),className:\"framer-168cnq6\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"g65CLnHW5\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14esery\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"AZCwnZz0A\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined},{href:{webPageId:\"hhTxvi17Z\"},implicitPathVariables:undefined}],children:resolvedLinks106=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4936+207)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+7446+207)+0+0+0+209+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gbols1-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E7g0AcTFy-container\",nodeId:\"E7g0AcTFy\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks106[0],height:\"100%\",id:\"E7g0AcTFy\",layoutId:\"E7g0AcTFy\",style:{height:\"100%\"},vgA964TAm:\"Augmented Reality\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks106[1]}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1qj610\",\"data-framer-name\":\"Cards / Project Card\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"GNylwFHJJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sf37hu\",layoutDependency:layoutDependency,layoutId:\"BEPX61_Uz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13qct0c-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"O90GBdXnW-container\",nodeId:\"O90GBdXnW\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(IconButtonMedium,{height:\"100%\",icon:\"CallMade\",id:\"O90GBdXnW\",layoutId:\"O90GBdXnW\",variant:\"Mb6I11U05\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q5_6ChxyZ\"},motionChild:true,nodeId:\"W8NNqLu8Q\",openInNewTab:false,scopeId:\"sN6UsNGzE\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4936+207)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 204px) / 2, 1px)`,src:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg\",srcSet:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg 1920w\"},className:\"framer-mzn03w framer-1bu50wz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"W8NNqLu8Q\",...addPropertyOverrides({mEN3mMb75:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+7446+207)+0+575+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg\",srcSet:\"https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrlfYdhOj9YOEOrO6GXhnAmKDT4.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1my8jvi\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"FUKhRxS1S\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14zwum4\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"GeKcT_jYS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Elevating the Game with VR Basketball\"})}),className:\"framer-1x81hz5\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Schibsted Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"LnGQtFlAm\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mEN3mMb75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"Elevating the Game with VR Basketball\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0)))\"},children:\"In today's digital age, the line between the virtual and the real world is blurring. At NXT Interactive, we're at the forefront of this technological revolution, pushing the boundaries of interactive experiences. One such innovative project is our VR Basketball game, a testament to our commitment to creating immersive and engaging experiences.\"})}),className:\"framer-14qd8os\",\"data-framer-name\":\"Paragraph 1\",fonts:[\"GF;Schibsted Grotesk-regular\"],layoutDependency:layoutDependency,layoutId:\"ocPYJQKoK\",style:{\"--extracted-r6o4lv\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nec09v\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"np76WRLFL\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KuW9zjZC7\"},implicitPathVariables:undefined},{href:{webPageId:\"KuW9zjZC7\"},implicitPathVariables:undefined}],children:resolvedLinks107=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+4936+207)+0+0+280+0+368+0,...addPropertyOverrides({mEN3mMb75:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+7446+207)+0+575+0+199+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ogvmaz-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xukzobenD-container\",nodeId:\"xukzobenD\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(VRTag,{bDG7N3o0z:resolvedLinks107[0],height:\"100%\",id:\"xukzobenD\",layoutId:\"xukzobenD\",style:{height:\"100%\"},vgA964TAm:\"Virtual Reality\",width:\"100%\",...addPropertyOverrides({mEN3mMb75:{bDG7N3o0z:resolvedLinks107[1]}},baseVariant,gestureVariant)})})})})})]})]})]}),isDisplayed19()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-u1jord\",layoutDependency:layoutDependency,layoutId:\"qDnO6Or5k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined}],children:resolvedLinks108=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`max(${componentViewport?.width||\"100vw\"} - 188px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||4996.5)-60-5902)/2+5616+230)+0,...addPropertyOverrides({FjZkqM0mS:{width:`max(${componentViewport?.width||\"100vw\"} - 104px, 1px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-5414)/2+5266+92)+0},IvrA3l4jv:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||3493.5)-60-3993)/2+3868+69)+0},LzqmhSlsF:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-7289)/2+7164+69)+0},mEN3mMb75:{width:`max(${componentViewport?.width||\"100vw\"} - 104px, 1px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||200)-64-8856)/2+8570+230)+0},Mf6dVh02y:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-4729)/2+4604+69)+0},qAq98Zipt:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-3981)/2+3856+69)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ehnup5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ery5YSPwd-container\",nodeId:\"ery5YSPwd\",rendersWithMotion:true,scopeId:\"sN6UsNGzE\",children:/*#__PURE__*/_jsx(ButtonLarge,{apqsCktfb:\"View More\",haPb8DtW8:\"ArrowForward\",height:\"100%\",id:\"ery5YSPwd\",layoutId:\"ery5YSPwd\",RZT9SNG2g:resolvedLinks108[0],style:{height:\"100%\",width:\"100%\"},variant:\"XvAldi6_m\",width:\"100%\",...addPropertyOverrides({FjZkqM0mS:{RZT9SNG2g:resolvedLinks108[6]},IvrA3l4jv:{RZT9SNG2g:resolvedLinks108[1]},LzqmhSlsF:{RZT9SNG2g:resolvedLinks108[4]},mEN3mMb75:{RZT9SNG2g:resolvedLinks108[5]},Mf6dVh02y:{RZT9SNG2g:resolvedLinks108[3]},qAq98Zipt:{RZT9SNG2g:resolvedLinks108[2]}},baseVariant,gestureVariant)})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PjEs8.framer-1bu50wz, .framer-PjEs8 .framer-1bu50wz { display: block; }\",\".framer-PjEs8.framer-cy1nm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 1200px; }\",\".framer-PjEs8 .framer-1tz7fjv-container, .framer-PjEs8 .framer-18ko7pr-container, .framer-PjEs8 .framer-dtltv5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-18vk3bt, .framer-PjEs8 .framer-veldac, .framer-PjEs8 .framer-1vj0j5i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 112px; justify-content: center; overflow: hidden; padding: 0px 75px 0px 75px; position: relative; width: 101%; z-index: 6; }\",\".framer-PjEs8 .framer-1ow3u7o, .framer-PjEs8 .framer-wbe0ca, .framer-PjEs8 .framer-1ffc6eb, .framer-PjEs8 .framer-1tgt6wc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 112px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 162%; }\",\".framer-PjEs8 .framer-n31sdi, .framer-PjEs8 .framer-7ms1hq, .framer-PjEs8 .framer-1wjfyxw, .framer-PjEs8 .framer-1ctky35 { display: grid; flex: none; gap: 14px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 99%; }\",\".framer-PjEs8 .framer-cedws9-container, .framer-PjEs8 .framer-p7lhe2-container, .framer-PjEs8 .framer-1beqi84-container, .framer-PjEs8 .framer-f612w-container, .framer-PjEs8 .framer-xlkine-container, .framer-PjEs8 .framer-hs6l39-container, .framer-PjEs8 .framer-toq67k-container, .framer-PjEs8 .framer-15njvil-container, .framer-PjEs8 .framer-ugk0vr-container, .framer-PjEs8 .framer-1scyqzs-container, .framer-PjEs8 .framer-1cblrl7-container, .framer-PjEs8 .framer-yg1aqf-container, .framer-PjEs8 .framer-1qr93wa-container, .framer-PjEs8 .framer-fg833m-container, .framer-PjEs8 .framer-dzr5n5-container, .framer-PjEs8 .framer-6j4ehf-container, .framer-PjEs8 .framer-q2x8d4-container, .framer-PjEs8 .framer-or6d0v-container, .framer-PjEs8 .framer-1w8tdyt-container, .framer-PjEs8 .framer-u2n3tv-container, .framer-PjEs8 .framer-uwmj1b-container, .framer-PjEs8 .framer-iy7d55-container, .framer-PjEs8 .framer-7d79k-container, .framer-PjEs8 .framer-1g5wyrd-container, .framer-PjEs8 .framer-1ne6677-container { align-self: start; flex: none; height: 34px; justify-self: start; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1nh0z6a, .framer-PjEs8 .framer-2b6ygw, .framer-PjEs8 .framer-rtngc, .framer-PjEs8 .framer-6pf7yn, .framer-PjEs8 .framer-2bqren { display: grid; flex: none; gap: 14px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 101%; }\",\".framer-PjEs8 .framer-l6yhz4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 75px 0px 75px; position: relative; width: 105%; z-index: 6; }\",\".framer-PjEs8 .framer-14xm84b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: 1142px; }\",\".framer-PjEs8 .framer-1gr9eyn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-msm70r-container, .framer-PjEs8 .framer-1dd9317-container, .framer-PjEs8 .framer-1pfchwt-container { flex: none; height: 34px; position: relative; width: 10%; }\",\".framer-PjEs8 .framer-mwua8e-container { flex: none; height: 34px; position: relative; width: 19%; }\",\".framer-PjEs8 .framer-11k6kd1-container { flex: none; height: 34px; position: relative; width: 16%; }\",\".framer-PjEs8 .framer-fu3i36, .framer-PjEs8 .framer-ju0913, .framer-PjEs8 .framer-1unfnpk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 96px 48px 96px; position: relative; width: 1200px; z-index: 1; }\",\".framer-PjEs8 .framer-ev246w, .framer-PjEs8 .framer-kq3vxs, .framer-PjEs8 .framer-19ae94k, .framer-PjEs8 .framer-1b3mgbp, .framer-PjEs8 .framer-1ipnxup, .framer-PjEs8 .framer-uks6uq, .framer-PjEs8 .framer-18dd08r, .framer-PjEs8 .framer-118zcak, .framer-PjEs8 .framer-150i2wv, .framer-PjEs8 .framer-1w2g8bx, .framer-PjEs8 .framer-x64xc8, .framer-PjEs8 .framer-a3whe5, .framer-PjEs8 .framer-h50pth, .framer-PjEs8 .framer-jolphy, .framer-PjEs8 .framer-1c3eu08, .framer-PjEs8 .framer-v9m9q3, .framer-PjEs8 .framer-131do3s, .framer-PjEs8 .framer-1lskmg8, .framer-PjEs8 .framer-t84jii, .framer-PjEs8 .framer-soiryy, .framer-PjEs8 .framer-1wxo3cu, .framer-PjEs8 .framer-1qo2uja, .framer-PjEs8 .framer-fepxj8, .framer-PjEs8 .framer-wvwr86, .framer-PjEs8 .framer-mn71tm, .framer-PjEs8 .framer-1txfqm6, .framer-PjEs8 .framer-10389of, .framer-PjEs8 .framer-1x1rnbf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1lo6d2d, .framer-PjEs8 .framer-9a517t, .framer-PjEs8 .framer-1rbpc3u, .framer-PjEs8 .framer-1f6zlja, .framer-PjEs8 .framer-1gw7k9d, .framer-PjEs8 .framer-cht24m, .framer-PjEs8 .framer-met313, .framer-PjEs8 .framer-14a091d, .framer-PjEs8 .framer-19du5a8, .framer-PjEs8 .framer-190tas1, .framer-PjEs8 .framer-1i4xv8s, .framer-PjEs8 .framer-t93zam, .framer-PjEs8 .framer-1kjnzh8, .framer-PjEs8 .framer-1xgkn4j, .framer-PjEs8 .framer-1drikcc, .framer-PjEs8 .framer-17e8aqx, .framer-PjEs8 .framer-b3qtds, .framer-PjEs8 .framer-1t69wl8, .framer-PjEs8 .framer-5cby5r, .framer-PjEs8 .framer-1ayjyde, .framer-PjEs8 .framer-1oirblu, .framer-PjEs8 .framer-6vezyn, .framer-PjEs8 .framer-p010sw, .framer-PjEs8 .framer-1369tbc, .framer-PjEs8 .framer-warjhg, .framer-PjEs8 .framer-1cefy9a, .framer-PjEs8 .framer-1tzt6fp, .framer-PjEs8 .framer-10ssoj1, .framer-PjEs8 .framer-dl5j9t, .framer-PjEs8 .framer-za7xg0, .framer-PjEs8 .framer-s8jfpa, .framer-PjEs8 .framer-jz0df8, .framer-PjEs8 .framer-4j685u, .framer-PjEs8 .framer-xz6o83, .framer-PjEs8 .framer-x650as, .framer-PjEs8 .framer-14jqq31, .framer-PjEs8 .framer-acjn9g, .framer-PjEs8 .framer-1lf4kph, .framer-PjEs8 .framer-10wczh2, .framer-PjEs8 .framer-1s5i6wn, .framer-PjEs8 .framer-w5h9yj, .framer-PjEs8 .framer-16twcf9, .framer-PjEs8 .framer-16es52m, .framer-PjEs8 .framer-l9yscg, .framer-PjEs8 .framer-oap3pf, .framer-PjEs8 .framer-1dsp7jo, .framer-PjEs8 .framer-1i476zc, .framer-PjEs8 .framer-ftrdre, .framer-PjEs8 .framer-1fyegq1, .framer-PjEs8 .framer-dms0cr, .framer-PjEs8 .framer-1b27os9, .framer-PjEs8 .framer-l5rte0, .framer-PjEs8 .framer-1d901ea, .framer-PjEs8 .framer-qa14of, .framer-PjEs8 .framer-jh8p37, .framer-PjEs8 .framer-zj8ivq, .framer-PjEs8 .framer-1mtdbxf, .framer-PjEs8 .framer-1odv6in, .framer-PjEs8 .framer-114ft8z, .framer-PjEs8 .framer-19vdwwl, .framer-PjEs8 .framer-1t2aa5k, .framer-PjEs8 .framer-fnuvab, .framer-PjEs8 .framer-1brgd1i, .framer-PjEs8 .framer-1xe9bii, .framer-PjEs8 .framer-1eaxydk, .framer-PjEs8 .framer-19l4anq, .framer-PjEs8 .framer-1qj610 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PjEs8 .framer-1i1gmxd, .framer-PjEs8 .framer-1wq5yis, .framer-PjEs8 .framer-1o5vpdk, .framer-PjEs8 .framer-1fndhoc, .framer-PjEs8 .framer-sus039, .framer-PjEs8 .framer-jogy3x, .framer-PjEs8 .framer-18ngdwx, .framer-PjEs8 .framer-1u6wyej, .framer-PjEs8 .framer-5z47k9, .framer-PjEs8 .framer-hthbiu, .framer-PjEs8 .framer-90x8qf, .framer-PjEs8 .framer-1ewsztu, .framer-PjEs8 .framer-64pvsj, .framer-PjEs8 .framer-10cbwl2, .framer-PjEs8 .framer-sbf779, .framer-PjEs8 .framer-f8d1nc, .framer-PjEs8 .framer-1ucb2gy, .framer-PjEs8 .framer-no5poh, .framer-PjEs8 .framer-2nucuk, .framer-PjEs8 .framer-1qg94xh, .framer-PjEs8 .framer-1xoestl, .framer-PjEs8 .framer-wahkmt, .framer-PjEs8 .framer-12ml1ib, .framer-PjEs8 .framer-14ftmm5, .framer-PjEs8 .framer-4z0wd1, .framer-PjEs8 .framer-dd47vu, .framer-PjEs8 .framer-29hasd, .framer-PjEs8 .framer-bi44gr, .framer-PjEs8 .framer-spkttc, .framer-PjEs8 .framer-stc3ex, .framer-PjEs8 .framer-1n866n1, .framer-PjEs8 .framer-721fn3, .framer-PjEs8 .framer-12p436j, .framer-PjEs8 .framer-17yneek, .framer-PjEs8 .framer-hx352t, .framer-PjEs8 .framer-x2dee6, .framer-PjEs8 .framer-1d4pim3, .framer-PjEs8 .framer-ek9o2b, .framer-PjEs8 .framer-eosfey, .framer-PjEs8 .framer-1bc20sw, .framer-PjEs8 .framer-1f8zf3v, .framer-PjEs8 .framer-5eblru, .framer-PjEs8 .framer-10rqnoo, .framer-PjEs8 .framer-ahrlln, .framer-PjEs8 .framer-3io6hu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-u0z4vw-container, .framer-PjEs8 .framer-1njxdrg-container, .framer-PjEs8 .framer-1q5408p-container, .framer-PjEs8 .framer-z5gybj-container, .framer-PjEs8 .framer-ouuefb-container, .framer-PjEs8 .framer-1to0mm5-container, .framer-PjEs8 .framer-ra1j-container, .framer-PjEs8 .framer-1tt2spj-container, .framer-PjEs8 .framer-atinde-container, .framer-PjEs8 .framer-19pcc07-container, .framer-PjEs8 .framer-19zzw63-container, .framer-PjEs8 .framer-1ripolu-container, .framer-PjEs8 .framer-1pr6i8c-container, .framer-PjEs8 .framer-4b0bwq-container, .framer-PjEs8 .framer-1ggby7c-container, .framer-PjEs8 .framer-1ans8cg-container, .framer-PjEs8 .framer-bttjd-container, .framer-PjEs8 .framer-1j9t3fw-container, .framer-PjEs8 .framer-sakb2s-container, .framer-PjEs8 .framer-gowohx-container { flex: none; height: auto; position: absolute; right: 16px; top: 16px; width: auto; z-index: 1; }\",\".framer-PjEs8 .framer-rmpqxj-container, .framer-PjEs8 .framer-1uiglql-container, .framer-PjEs8 .framer-cwdt7h-container, .framer-PjEs8 .framer-1q4lfw8-container, .framer-PjEs8 .framer-1u586o-container, .framer-PjEs8 .framer-xm87tx-container, .framer-PjEs8 .framer-5751le-container, .framer-PjEs8 .framer-4buj4s-container, .framer-PjEs8 .framer-uou46-container, .framer-PjEs8 .framer-j3sap8-container, .framer-PjEs8 .framer-lb10y3-container, .framer-PjEs8 .framer-bpdns5-container, .framer-PjEs8 .framer-olljlf-container, .framer-PjEs8 .framer-1xs2ssw-container, .framer-PjEs8 .framer-udwjlr-container, .framer-PjEs8 .framer-13l7jdi-container, .framer-PjEs8 .framer-s8oz0b-container, .framer-PjEs8 .framer-uu4sc6-container, .framer-PjEs8 .framer-dauy0r-container, .framer-PjEs8 .framer-1axu817-container, .framer-PjEs8 .framer-rq2m3-container, .framer-PjEs8 .framer-h47w79-container, .framer-PjEs8 .framer-1hgkl6z-container, .framer-PjEs8 .framer-1t71o4j-container, .framer-PjEs8 .framer-xm5szr-container, .framer-PjEs8 .framer-wqoyoj-container, .framer-PjEs8 .framer-zabysg-container, .framer-PjEs8 .framer-12v9zzv-container, .framer-PjEs8 .framer-1sg5mui-container, .framer-PjEs8 .framer-ykhqhy-container, .framer-PjEs8 .framer-iit0nm-container, .framer-PjEs8 .framer-3snf3y-container, .framer-PjEs8 .framer-14emmks-container, .framer-PjEs8 .framer-elbrws-container, .framer-PjEs8 .framer-4j21ht-container, .framer-PjEs8 .framer-x23p69-container, .framer-PjEs8 .framer-iexcm2-container, .framer-PjEs8 .framer-1qu6lb0-container, .framer-PjEs8 .framer-bw828p-container, .framer-PjEs8 .framer-1jnk4mv-container, .framer-PjEs8 .framer-h7zso2-container, .framer-PjEs8 .framer-19excoz-container, .framer-PjEs8 .framer-op3mc2-container, .framer-PjEs8 .framer-7scp2z-container, .framer-PjEs8 .framer-f8ek27-container, .framer-PjEs8 .framer-1cki3yo-container, .framer-PjEs8 .framer-1ghf4j6-container, .framer-PjEs8 .framer-1gr9dio-container, .framer-PjEs8 .framer-11cdzu4-container, .framer-PjEs8 .framer-kuqrga-container, .framer-PjEs8 .framer-1npsuf5-container, .framer-PjEs8 .framer-cen19d-container, .framer-PjEs8 .framer-m3uz2p-container, .framer-PjEs8 .framer-o08n8z-container, .framer-PjEs8 .framer-6dwjpv-container, .framer-PjEs8 .framer-1cpyg62-container, .framer-PjEs8 .framer-1p2hsf8-container, .framer-PjEs8 .framer-nay6p3-container, .framer-PjEs8 .framer-11w7m3l-container, .framer-PjEs8 .framer-lnyb5s-container, .framer-PjEs8 .framer-12rw9im-container, .framer-PjEs8 .framer-1q7fx5c-container, .framer-PjEs8 .framer-1sb4w4u-container, .framer-PjEs8 .framer-1s7m1mw-container, .framer-PjEs8 .framer-1n498oy-container, .framer-PjEs8 .framer-ojqw55-container, .framer-PjEs8 .framer-187uiso-container, .framer-PjEs8 .framer-1fi5o17-container, .framer-PjEs8 .framer-dxvwpk-container, .framer-PjEs8 .framer-189hl1c-container, .framer-PjEs8 .framer-1mcg76t-container, .framer-PjEs8 .framer-18c4m4y-container, .framer-PjEs8 .framer-1w8jsfa-container, .framer-PjEs8 .framer-7d70jh-container, .framer-PjEs8 .framer-z0nza0-container, .framer-PjEs8 .framer-kctlr9-container, .framer-PjEs8 .framer-1b9lr4h-container, .framer-PjEs8 .framer-179olhn-container, .framer-PjEs8 .framer-1i8x3sk-container, .framer-PjEs8 .framer-3gi6xo-container, .framer-PjEs8 .framer-1c5ij3r-container, .framer-PjEs8 .framer-1n8yyhl-container, .framer-PjEs8 .framer-1ygpata-container, .framer-PjEs8 .framer-1kpk32y-container, .framer-PjEs8 .framer-15282m1-container, .framer-PjEs8 .framer-2e1nv9-container, .framer-PjEs8 .framer-bmeee4-container, .framer-PjEs8 .framer-12snpck-container, .framer-PjEs8 .framer-bi4r8k-container, .framer-PjEs8 .framer-1fouh5z-container, .framer-PjEs8 .framer-89t3wp-container, .framer-PjEs8 .framer-18pxd25-container, .framer-PjEs8 .framer-icv98q-container, .framer-PjEs8 .framer-1akzt3x-container, .framer-PjEs8 .framer-1ku5bfz-container, .framer-PjEs8 .framer-cma21n-container, .framer-PjEs8 .framer-puliiw-container, .framer-PjEs8 .framer-aziek4-container, .framer-PjEs8 .framer-10ayzvh-container, .framer-PjEs8 .framer-1kb9ls7-container, .framer-PjEs8 .framer-gbols1-container, .framer-PjEs8 .framer-1ogvmaz-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-PjEs8 .framer-d7e7xl, .framer-PjEs8 .framer-mcfsi8, .framer-PjEs8 .framer-zt4nyb, .framer-PjEs8 .framer-n7pkh2, .framer-PjEs8 .framer-1w2q1ou, .framer-PjEs8 .framer-ryvnwv, .framer-PjEs8 .framer-10s1vzs, .framer-PjEs8 .framer-alw82y, .framer-PjEs8 .framer-1eczqh5, .framer-PjEs8 .framer-9cjmfv, .framer-PjEs8 .framer-r1vn5j, .framer-PjEs8 .framer-dlp4qy, .framer-PjEs8 .framer-16rejml, .framer-PjEs8 .framer-124fpdx, .framer-PjEs8 .framer-1qxz9nt, .framer-PjEs8 .framer-xepv21, .framer-PjEs8 .framer-1qg5d7e, .framer-PjEs8 .framer-lt7lfr, .framer-PjEs8 .framer-1ymw89, .framer-PjEs8 .framer-13rn8or, .framer-PjEs8 .framer-cx6b55, .framer-PjEs8 .framer-pg8s29, .framer-PjEs8 .framer-t86rct, .framer-PjEs8 .framer-41hzgn, .framer-PjEs8 .framer-1mu8zb2, .framer-PjEs8 .framer-atzcok, .framer-PjEs8 .framer-9wsp3l, .framer-PjEs8 .framer-1kw8f3b, .framer-PjEs8 .framer-34c3ib, .framer-PjEs8 .framer-ue6ni4, .framer-PjEs8 .framer-1nh09uh, .framer-PjEs8 .framer-q57di3, .framer-PjEs8 .framer-m3yfg7, .framer-PjEs8 .framer-972brz, .framer-PjEs8 .framer-ku96wj, .framer-PjEs8 .framer-sohr4a, .framer-PjEs8 .framer-ktqvw7, .framer-PjEs8 .framer-12uj7yi, .framer-PjEs8 .framer-1vcsut3, .framer-PjEs8 .framer-cm8fba, .framer-PjEs8 .framer-jb2rpw, .framer-PjEs8 .framer-1hw60t8, .framer-PjEs8 .framer-16fi83j, .framer-PjEs8 .framer-1c36rig, .framer-PjEs8 .framer-1q7og9n, .framer-PjEs8 .framer-jh7hx6, .framer-PjEs8 .framer-1ipo78i, .framer-PjEs8 .framer-b9wzpc, .framer-PjEs8 .framer-mmvc8k, .framer-PjEs8 .framer-dp6my6, .framer-PjEs8 .framer-2m41cq, .framer-PjEs8 .framer-7k7cjm, .framer-PjEs8 .framer-188ys4i, .framer-PjEs8 .framer-1j2xbrl, .framer-PjEs8 .framer-448hz8, .framer-PjEs8 .framer-1oomz4g, .framer-PjEs8 .framer-35xjic, .framer-PjEs8 .framer-qq9ry0, .framer-PjEs8 .framer-18l74lb, .framer-PjEs8 .framer-1sf37hu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 256px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-fl5bba-container, .framer-PjEs8 .framer-1cpimy9-container, .framer-PjEs8 .framer-xcl287-container, .framer-PjEs8 .framer-159omac-container, .framer-PjEs8 .framer-17knxts-container, .framer-PjEs8 .framer-1hw0z71-container, .framer-PjEs8 .framer-1jyao4t-container, .framer-PjEs8 .framer-vxbicq-container, .framer-PjEs8 .framer-179200k-container, .framer-PjEs8 .framer-1halpas-container, .framer-PjEs8 .framer-iin9db-container, .framer-PjEs8 .framer-zmpy5d-container, .framer-PjEs8 .framer-1ka0fyz-container, .framer-PjEs8 .framer-1cuxwtp-container, .framer-PjEs8 .framer-mtetz8-container, .framer-PjEs8 .framer-1dpxit1-container, .framer-PjEs8 .framer-tyk5vm-container, .framer-PjEs8 .framer-m5dt0l-container, .framer-PjEs8 .framer-uvgpws-container, .framer-PjEs8 .framer-e9fe0b-container, .framer-PjEs8 .framer-ochbqr-container, .framer-PjEs8 .framer-1hn8ot9-container, .framer-PjEs8 .framer-1qatpxo-container, .framer-PjEs8 .framer-1wmu6da-container, .framer-PjEs8 .framer-8xzodn-container, .framer-PjEs8 .framer-1qa30fb-container, .framer-PjEs8 .framer-1knvshn-container, .framer-PjEs8 .framer-440up4-container, .framer-PjEs8 .framer-19j5l7g-container, .framer-PjEs8 .framer-14pqszh-container, .framer-PjEs8 .framer-1prsg9j-container, .framer-PjEs8 .framer-26hzmj-container, .framer-PjEs8 .framer-2rbpof-container, .framer-PjEs8 .framer-47n3vv-container, .framer-PjEs8 .framer-1dj8e19-container, .framer-PjEs8 .framer-1a1l362-container, .framer-PjEs8 .framer-bt4dtz-container, .framer-PjEs8 .framer-13qct0c-container { flex: none; height: auto; left: 436px; position: absolute; top: 16px; width: auto; z-index: 1; }\",\".framer-PjEs8 .framer-1nl9l8y, .framer-PjEs8 .framer-1pho1ff, .framer-PjEs8 .framer-hmlv1f, .framer-PjEs8 .framer-c6pqpx, .framer-PjEs8 .framer-1w840mx, .framer-PjEs8 .framer-14ct6x2, .framer-PjEs8 .framer-xbere9, .framer-PjEs8 .framer-14q25oc, .framer-PjEs8 .framer-s2e16m, .framer-PjEs8 .framer-9hqv5z, .framer-PjEs8 .framer-1d4rntl, .framer-PjEs8 .framer-f9gyuw, .framer-PjEs8 .framer-1ul6msc, .framer-PjEs8 .framer-1q17nxo, .framer-PjEs8 .framer-1vycdf9, .framer-PjEs8 .framer-r84410, .framer-PjEs8 .framer-rh09y2, .framer-PjEs8 .framer-54wjs2, .framer-PjEs8 .framer-1097v5c, .framer-PjEs8 .framer-xmtbq5, .framer-PjEs8 .framer-1139g1z, .framer-PjEs8 .framer-13vjbw, .framer-PjEs8 .framer-v9kclw, .framer-PjEs8 .framer-hs1k7r, .framer-PjEs8 .framer-jiktzq, .framer-PjEs8 .framer-1335lte, .framer-PjEs8 .framer-xqu9n4, .framer-PjEs8 .framer-197lmfo, .framer-PjEs8 .framer-1hfczct, .framer-PjEs8 .framer-9k6usf, .framer-PjEs8 .framer-1dfeytd, .framer-PjEs8 .framer-rdchwn, .framer-PjEs8 .framer-73ridh, .framer-PjEs8 .framer-oovnwt, .framer-PjEs8 .framer-cej9rr, .framer-PjEs8 .framer-1vne75f, .framer-PjEs8 .framer-env674, .framer-PjEs8 .framer-rb6mvh, .framer-PjEs8 .framer-1wfsppf, .framer-PjEs8 .framer-1tx3eyi, .framer-PjEs8 .framer-10r640r, .framer-PjEs8 .framer-3jcxn9, .framer-PjEs8 .framer-oswy5k, .framer-PjEs8 .framer-1mkoi3t, .framer-PjEs8 .framer-bs9wfm, .framer-PjEs8 .framer-1fgntlr, .framer-PjEs8 .framer-ahxiwd, .framer-PjEs8 .framer-3yzcon, .framer-PjEs8 .framer-t4055y, .framer-PjEs8 .framer-1nn2ch8, .framer-PjEs8 .framer-1bf6zps, .framer-PjEs8 .framer-1p1uokh, .framer-PjEs8 .framer-1c49mgk, .framer-PjEs8 .framer-1hibwc1, .framer-PjEs8 .framer-axgydg, .framer-PjEs8 .framer-628a58, .framer-PjEs8 .framer-fvak53, .framer-PjEs8 .framer-1dpduzm, .framer-PjEs8 .framer-17rh626, .framer-PjEs8 .framer-1fzwsrz, .framer-PjEs8 .framer-1caddp2, .framer-PjEs8 .framer-16xgdud, .framer-PjEs8 .framer-zhqykl, .framer-PjEs8 .framer-oligjo, .framer-PjEs8 .framer-1hqc61u, .framer-PjEs8 .framer-15gd78s, .framer-PjEs8 .framer-1dvdjo7, .framer-PjEs8 .framer-15ecx5m, .framer-PjEs8 .framer-ofkjaf, .framer-PjEs8 .framer-1c8nsd5, .framer-PjEs8 .framer-fsizh3, .framer-PjEs8 .framer-62nynt, .framer-PjEs8 .framer-hh4u60, .framer-PjEs8 .framer-uzouzm, .framer-PjEs8 .framer-4gzbr8, .framer-PjEs8 .framer-sdy0kk, .framer-PjEs8 .framer-1v6m4vs, .framer-PjEs8 .framer-108idpr, .framer-PjEs8 .framer-1jio5y2, .framer-PjEs8 .framer-j3gmyp, .framer-PjEs8 .framer-foyyaa, .framer-PjEs8 .framer-13lhq3g, .framer-PjEs8 .framer-yv3rr0, .framer-PjEs8 .framer-a6vd27, .framer-PjEs8 .framer-j0e9t0, .framer-PjEs8 .framer-9pw6ho, .framer-PjEs8 .framer-1g7uah5, .framer-PjEs8 .framer-lnilpp, .framer-PjEs8 .framer-h6gjed, .framer-PjEs8 .framer-ggavkj, .framer-PjEs8 .framer-mzn03w { flex: 1 0 0px; height: 1px; position: relative; text-decoration: none; width: 100%; }\",\".framer-PjEs8 .framer-bze7r9, .framer-PjEs8 .framer-lz7er3, .framer-PjEs8 .framer-1pp3jq4, .framer-PjEs8 .framer-4xgxxl, .framer-PjEs8 .framer-18jqk3e, .framer-PjEs8 .framer-i1zccb, .framer-PjEs8 .framer-19b9r2w, .framer-PjEs8 .framer-1r3e8vm, .framer-PjEs8 .framer-18d9ma, .framer-PjEs8 .framer-95g435, .framer-PjEs8 .framer-inysdw, .framer-PjEs8 .framer-szclkl, .framer-PjEs8 .framer-1dlvfn8, .framer-PjEs8 .framer-m4vukr, .framer-PjEs8 .framer-zfb58j, .framer-PjEs8 .framer-1yimce1, .framer-PjEs8 .framer-2zy3o8, .framer-PjEs8 .framer-pmk7ey, .framer-PjEs8 .framer-1q08ghq, .framer-PjEs8 .framer-1hz0um0, .framer-PjEs8 .framer-jl98p3, .framer-PjEs8 .framer-ptdkyb, .framer-PjEs8 .framer-1eql1f1, .framer-PjEs8 .framer-13sjra1, .framer-PjEs8 .framer-14t3i1g, .framer-PjEs8 .framer-p2qdaq, .framer-PjEs8 .framer-mje7oy, .framer-PjEs8 .framer-b4w1jm, .framer-PjEs8 .framer-184sj3t, .framer-PjEs8 .framer-cvpo5d, .framer-PjEs8 .framer-xsvn9z, .framer-PjEs8 .framer-e2mtk9, .framer-PjEs8 .framer-1pps98f, .framer-PjEs8 .framer-1fr1l19, .framer-PjEs8 .framer-12357l0, .framer-PjEs8 .framer-13td28g, .framer-PjEs8 .framer-1ux6k1c, .framer-PjEs8 .framer-6z43ux, .framer-PjEs8 .framer-41jbmq, .framer-PjEs8 .framer-nd4wrj, .framer-PjEs8 .framer-k4dgo1, .framer-PjEs8 .framer-9qm2yt, .framer-PjEs8 .framer-1pb3m3l, .framer-PjEs8 .framer-gzatsk, .framer-PjEs8 .framer-1xu1mf2, .framer-PjEs8 .framer-1qz2p6k, .framer-PjEs8 .framer-13y5p18, .framer-PjEs8 .framer-10v535l, .framer-PjEs8 .framer-wvm7gx, .framer-PjEs8 .framer-1nzh8xe, .framer-PjEs8 .framer-1k6si9c, .framer-PjEs8 .framer-5gkfm, .framer-PjEs8 .framer-voq8ix, .framer-PjEs8 .framer-10dw7dm, .framer-PjEs8 .framer-1xhoz1d, .framer-PjEs8 .framer-1i95jas, .framer-PjEs8 .framer-dkosuc, .framer-PjEs8 .framer-bg5j2v, .framer-PjEs8 .framer-o6ezou, .framer-PjEs8 .framer-4o9j8a, .framer-PjEs8 .framer-1i62pmj, .framer-PjEs8 .framer-1510i7i, .framer-PjEs8 .framer-1oxpgzx, .framer-PjEs8 .framer-vlskbc, .framer-PjEs8 .framer-1xbplw0, .framer-PjEs8 .framer-spk4vx, .framer-PjEs8 .framer-pnsfrv, .framer-PjEs8 .framer-51lee6, .framer-PjEs8 .framer-mrv8i, .framer-PjEs8 .framer-1m6evd2, .framer-PjEs8 .framer-14x0z1t, .framer-PjEs8 .framer-127roj3, .framer-PjEs8 .framer-1x6w821, .framer-PjEs8 .framer-1ma3kwt, .framer-PjEs8 .framer-2szwco, .framer-PjEs8 .framer-nztqjv, .framer-PjEs8 .framer-1pdl55m, .framer-PjEs8 .framer-11khc9c, .framer-PjEs8 .framer-1tebmcx, .framer-PjEs8 .framer-1s0b7xd, .framer-PjEs8 .framer-6qw0bh, .framer-PjEs8 .framer-ld9snd, .framer-PjEs8 .framer-14bjsqg, .framer-PjEs8 .framer-5voe0q, .framer-PjEs8 .framer-d1eyel, .framer-PjEs8 .framer-1mpdif1, .framer-PjEs8 .framer-176sxda, .framer-PjEs8 .framer-jpdxte, .framer-PjEs8 .framer-bdl88v, .framer-PjEs8 .framer-19jza4n, .framer-PjEs8 .framer-1419kht, .framer-PjEs8 .framer-11k4qk3, .framer-PjEs8 .framer-z77n6a, .framer-PjEs8 .framer-1tiya9q, .framer-PjEs8 .framer-1twvjtj, .framer-PjEs8 .framer-1b75hjp, .framer-PjEs8 .framer-jyiy8s, .framer-PjEs8 .framer-14r86oz, .framer-PjEs8 .framer-1hj7yiq, .framer-PjEs8 .framer-xxk0kq, .framer-PjEs8 .framer-102cubs, .framer-PjEs8 .framer-1my8jvi { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-150it71, .framer-PjEs8 .framer-1qf634s, .framer-PjEs8 .framer-d9jjke, .framer-PjEs8 .framer-k8kzq9, .framer-PjEs8 .framer-1kxuktc, .framer-PjEs8 .framer-h8ioa0, .framer-PjEs8 .framer-zukgi5, .framer-PjEs8 .framer-1lo0bul, .framer-PjEs8 .framer-dws98, .framer-PjEs8 .framer-1y745dl, .framer-PjEs8 .framer-13xfku4, .framer-PjEs8 .framer-mw3k2a, .framer-PjEs8 .framer-1fxnsbb, .framer-PjEs8 .framer-1v6w8re, .framer-PjEs8 .framer-7253db, .framer-PjEs8 .framer-1j24lvg, .framer-PjEs8 .framer-7akqst, .framer-PjEs8 .framer-ulr1ev, .framer-PjEs8 .framer-664sft, .framer-PjEs8 .framer-10adaau, .framer-PjEs8 .framer-yfd1z1, .framer-PjEs8 .framer-1wtvrp7, .framer-PjEs8 .framer-c8jtpg, .framer-PjEs8 .framer-vg1rst, .framer-PjEs8 .framer-14o1700, .framer-PjEs8 .framer-1pkxqsy, .framer-PjEs8 .framer-xdf346, .framer-PjEs8 .framer-1izwd4n, .framer-PjEs8 .framer-1o9200n, .framer-PjEs8 .framer-1jnt8t7, .framer-PjEs8 .framer-1m53bz8, .framer-PjEs8 .framer-1t9vvc4, .framer-PjEs8 .framer-1u9ovb0, .framer-PjEs8 .framer-4owpot, .framer-PjEs8 .framer-ybxu5w, .framer-PjEs8 .framer-1g0h2is, .framer-PjEs8 .framer-13bhbqx, .framer-PjEs8 .framer-1whd8to, .framer-PjEs8 .framer-1iyac5x, .framer-PjEs8 .framer-jmqqb3, .framer-PjEs8 .framer-18ztot6, .framer-PjEs8 .framer-1akt7mm, .framer-PjEs8 .framer-10rvayo, .framer-PjEs8 .framer-ugb4la, .framer-PjEs8 .framer-x6p1sp, .framer-PjEs8 .framer-5xctp2, .framer-PjEs8 .framer-1ce99n1, .framer-PjEs8 .framer-17jh9ve, .framer-PjEs8 .framer-18m1ues, .framer-PjEs8 .framer-1r1cgd2, .framer-PjEs8 .framer-4v0f7a, .framer-PjEs8 .framer-289tkg, .framer-PjEs8 .framer-11a9qim, .framer-PjEs8 .framer-1jy1t3, .framer-PjEs8 .framer-p4n0us, .framer-PjEs8 .framer-18alcba, .framer-PjEs8 .framer-1fwhzfo, .framer-PjEs8 .framer-1qswz5q, .framer-PjEs8 .framer-q517v4, .framer-PjEs8 .framer-l1hahi, .framer-PjEs8 .framer-h28dm9, .framer-PjEs8 .framer-1ho48n9, .framer-PjEs8 .framer-y6vu60, .framer-PjEs8 .framer-1kaw6oi, .framer-PjEs8 .framer-l5tt5p, .framer-PjEs8 .framer-s78l7n, .framer-PjEs8 .framer-epvrtr, .framer-PjEs8 .framer-xrldhe, .framer-PjEs8 .framer-1xphn9i, .framer-PjEs8 .framer-9c7zlh, .framer-PjEs8 .framer-tu5z4g, .framer-PjEs8 .framer-xl64ss, .framer-PjEs8 .framer-2jlmz6, .framer-PjEs8 .framer-12gt5gg, .framer-PjEs8 .framer-74a7cg, .framer-PjEs8 .framer-bwax78, .framer-PjEs8 .framer-xq3q6v, .framer-PjEs8 .framer-i7s2eg, .framer-PjEs8 .framer-1rz4qan, .framer-PjEs8 .framer-14syr2q, .framer-PjEs8 .framer-1cg3rhd, .framer-PjEs8 .framer-1yvkput, .framer-PjEs8 .framer-1gxgjsu, .framer-PjEs8 .framer-2eqokx, .framer-PjEs8 .framer-1xuhts9, .framer-PjEs8 .framer-b832ay, .framer-PjEs8 .framer-iepkga, .framer-PjEs8 .framer-1i8u88q, .framer-PjEs8 .framer-1pdsdku, .framer-PjEs8 .framer-rnvq2d, .framer-PjEs8 .framer-11biph4, .framer-PjEs8 .framer-1jsi6de, .framer-PjEs8 .framer-fwntji, .framer-PjEs8 .framer-xgd1f0, .framer-PjEs8 .framer-1u2p5db, .framer-PjEs8 .framer-w3d01d, .framer-PjEs8 .framer-d26d8s, .framer-PjEs8 .framer-1yub4zw, .framer-PjEs8 .framer-1krg047, .framer-PjEs8 .framer-151rzed, .framer-PjEs8 .framer-1b4f55k, .framer-PjEs8 .framer-1fms7bi, .framer-PjEs8 .framer-1kh5hwy, .framer-PjEs8 .framer-135dk2o, .framer-PjEs8 .framer-4hb4kk, .framer-PjEs8 .framer-14zwum4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-177eax9, .framer-PjEs8 .framer-1vo7ce0, .framer-PjEs8 .framer-5ecduw, .framer-PjEs8 .framer-18srqhh, .framer-PjEs8 .framer-tl8nc9, .framer-PjEs8 .framer-1wmvz8x, .framer-PjEs8 .framer-4u3pzq, .framer-PjEs8 .framer-1ebp6nx, .framer-PjEs8 .framer-12jkrxn, .framer-PjEs8 .framer-8li42y, .framer-PjEs8 .framer-zuertn, .framer-PjEs8 .framer-xxjlm2, .framer-PjEs8 .framer-vkroq9, .framer-PjEs8 .framer-iqrsuo, .framer-PjEs8 .framer-17sxtfh, .framer-PjEs8 .framer-y12lvt, .framer-PjEs8 .framer-13hv1j3, .framer-PjEs8 .framer-4rw3d2, .framer-PjEs8 .framer-11hrlq4, .framer-PjEs8 .framer-ybyw21, .framer-PjEs8 .framer-vn75x1, .framer-PjEs8 .framer-1qndayn, .framer-PjEs8 .framer-u8m5m1, .framer-PjEs8 .framer-xaeolm, .framer-PjEs8 .framer-pfrdda, .framer-PjEs8 .framer-1qq7bd4, .framer-PjEs8 .framer-bg54xe, .framer-PjEs8 .framer-1sbxxu6, .framer-PjEs8 .framer-qftmyn, .framer-PjEs8 .framer-qb4v8d, .framer-PjEs8 .framer-1q81yhc, .framer-PjEs8 .framer-1j6z8zl, .framer-PjEs8 .framer-204kk8, .framer-PjEs8 .framer-3fhv7t, .framer-PjEs8 .framer-ypnou8, .framer-PjEs8 .framer-gwcn7b, .framer-PjEs8 .framer-yazynk, .framer-PjEs8 .framer-1mjqrn1, .framer-PjEs8 .framer-1er8bq2, .framer-PjEs8 .framer-2ofz19, .framer-PjEs8 .framer-10g259o, .framer-PjEs8 .framer-1o7gzu7, .framer-PjEs8 .framer-dfby93, .framer-PjEs8 .framer-6w53p5, .framer-PjEs8 .framer-1xr2put, .framer-PjEs8 .framer-xrm4m3, .framer-PjEs8 .framer-sm40d8, .framer-PjEs8 .framer-1w5s731, .framer-PjEs8 .framer-13p4zm7, .framer-PjEs8 .framer-9bnu7p, .framer-PjEs8 .framer-ffcjtv, .framer-PjEs8 .framer-amv2tf, .framer-PjEs8 .framer-1p16kfm, .framer-PjEs8 .framer-r0lyh1, .framer-PjEs8 .framer-ghzht9, .framer-PjEs8 .framer-1hb2uq3, .framer-PjEs8 .framer-1be9um7, .framer-PjEs8 .framer-10lcde, .framer-PjEs8 .framer-1nlti4f, .framer-PjEs8 .framer-kt5ok2, .framer-PjEs8 .framer-1cuucpk, .framer-PjEs8 .framer-1cgrq15, .framer-PjEs8 .framer-1eu3rq1, .framer-PjEs8 .framer-1aglt39, .framer-PjEs8 .framer-1eecwy7, .framer-PjEs8 .framer-cth6tb, .framer-PjEs8 .framer-s1gxly, .framer-PjEs8 .framer-1lioree, .framer-PjEs8 .framer-vg97ab, .framer-PjEs8 .framer-1tufxs6, .framer-PjEs8 .framer-1l0jcaw, .framer-PjEs8 .framer-jb9jah, .framer-PjEs8 .framer-i8r5wa, .framer-PjEs8 .framer-9137mp, .framer-PjEs8 .framer-19l0d2h, .framer-PjEs8 .framer-1po6zkq, .framer-PjEs8 .framer-14j097y, .framer-PjEs8 .framer-145c0im, .framer-PjEs8 .framer-d719p9, .framer-PjEs8 .framer-1lyg9oo, .framer-PjEs8 .framer-1jk4lnm, .framer-PjEs8 .framer-9eifo8, .framer-PjEs8 .framer-1kub507, .framer-PjEs8 .framer-1cbbenz, .framer-PjEs8 .framer-1hpkfks, .framer-PjEs8 .framer-w49dkk, .framer-PjEs8 .framer-bozoia, .framer-PjEs8 .framer-354p9k, .framer-PjEs8 .framer-hbmbum, .framer-PjEs8 .framer-v6agww, .framer-PjEs8 .framer-4yze3, .framer-PjEs8 .framer-1r5f9f6, .framer-PjEs8 .framer-yccebk, .framer-PjEs8 .framer-txc743, .framer-PjEs8 .framer-ah1li1, .framer-PjEs8 .framer-1q0mo6z, .framer-PjEs8 .framer-1wc9qmq, .framer-PjEs8 .framer-al7gfb, .framer-PjEs8 .framer-razxs5, .framer-PjEs8 .framer-1cekued, .framer-PjEs8 .framer-fsak7w, .framer-PjEs8 .framer-5yiqbw, .framer-PjEs8 .framer-5o7q7x, .framer-PjEs8 .framer-icxc8v, .framer-PjEs8 .framer-982v6j, .framer-PjEs8 .framer-6x2uku, .framer-PjEs8 .framer-1feczz1, .framer-PjEs8 .framer-xgypw6, .framer-PjEs8 .framer-9gv54b, .framer-PjEs8 .framer-eva0vn, .framer-PjEs8 .framer-1ylbatn, .framer-PjEs8 .framer-aeky0p, .framer-PjEs8 .framer-12u04lm, .framer-PjEs8 .framer-15mpxxq, .framer-PjEs8 .framer-1erssfm, .framer-PjEs8 .framer-1uxdp4j, .framer-PjEs8 .framer-e90dyt, .framer-PjEs8 .framer-g568lu, .framer-PjEs8 .framer-zapwa7, .framer-PjEs8 .framer-jefua2, .framer-PjEs8 .framer-1eewmj4, .framer-PjEs8 .framer-1bqv4z0, .framer-PjEs8 .framer-wvlags, .framer-PjEs8 .framer-1yfwazb, .framer-PjEs8 .framer-nm1h8a, .framer-PjEs8 .framer-zlayg5, .framer-PjEs8 .framer-1ls8wd7, .framer-PjEs8 .framer-16nft4n, .framer-PjEs8 .framer-vgguq1, .framer-PjEs8 .framer-zt2u8b, .framer-PjEs8 .framer-hwfx05, .framer-PjEs8 .framer-1t6uc7t, .framer-PjEs8 .framer-1fkeip4, .framer-PjEs8 .framer-j2x9zc, .framer-PjEs8 .framer-j37pqb, .framer-PjEs8 .framer-1hp1mqt, .framer-PjEs8 .framer-19osgqh, .framer-PjEs8 .framer-qpugco, .framer-PjEs8 .framer-7dwdg5, .framer-PjEs8 .framer-jhwzjg, .framer-PjEs8 .framer-qbc8ha, .framer-PjEs8 .framer-iu81a0, .framer-PjEs8 .framer-1dmoszy, .framer-PjEs8 .framer-eqzgl2, .framer-PjEs8 .framer-61sbi8, .framer-PjEs8 .framer-14w4b0v, .framer-PjEs8 .framer-5bwf6p, .framer-PjEs8 .framer-a0rekv, .framer-PjEs8 .framer-tefxhs, .framer-PjEs8 .framer-1myvfoh, .framer-PjEs8 .framer-v8ppd1, .framer-PjEs8 .framer-g8ny1r, .framer-PjEs8 .framer-1si2283, .framer-PjEs8 .framer-j1yo1j, .framer-PjEs8 .framer-tim1i3, .framer-PjEs8 .framer-m7ozxg, .framer-PjEs8 .framer-zbkipr, .framer-PjEs8 .framer-1cilul4, .framer-PjEs8 .framer-vlqyzc, .framer-PjEs8 .framer-1kzy47g, .framer-PjEs8 .framer-sioe7o, .framer-PjEs8 .framer-1tnq9xb, .framer-PjEs8 .framer-1k27wvk, .framer-PjEs8 .framer-n43e84, .framer-PjEs8 .framer-1b76i67, .framer-PjEs8 .framer-r5sfn8, .framer-PjEs8 .framer-eu8c93, .framer-PjEs8 .framer-1w68t7t, .framer-PjEs8 .framer-14gnqgd, .framer-PjEs8 .framer-1efjc93, .framer-PjEs8 .framer-8noohk, .framer-PjEs8 .framer-bnij9l, .framer-PjEs8 .framer-1m7h6ag, .framer-PjEs8 .framer-1816t43, .framer-PjEs8 .framer-19qfj97, .framer-PjEs8 .framer-vv89br, .framer-PjEs8 .framer-nwez6p, .framer-PjEs8 .framer-vv8l39, .framer-PjEs8 .framer-1ohipuf, .framer-PjEs8 .framer-o9297b, .framer-PjEs8 .framer-1xzhkk3, .framer-PjEs8 .framer-18hbosg, .framer-PjEs8 .framer-1em8wy2, .framer-PjEs8 .framer-lg541f, .framer-PjEs8 .framer-1a4hc6a, .framer-PjEs8 .framer-1p112ks, .framer-PjEs8 .framer-1mebi4w, .framer-PjEs8 .framer-eio6vr, .framer-PjEs8 .framer-16rkcm, .framer-PjEs8 .framer-17bgakh, .framer-PjEs8 .framer-1d15qvh, .framer-PjEs8 .framer-wxaws0, .framer-PjEs8 .framer-2h6maa, .framer-PjEs8 .framer-1pp6a0j, .framer-PjEs8 .framer-1v3084n, .framer-PjEs8 .framer-1qmq4xq, .framer-PjEs8 .framer-nlf1u4, .framer-PjEs8 .framer-168cnq6, .framer-PjEs8 .framer-1x81hz5, .framer-PjEs8 .framer-14qd8os { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PjEs8 .framer-171npd4, .framer-PjEs8 .framer-nep0bd, .framer-PjEs8 .framer-qnmn55, .framer-PjEs8 .framer-me84oh, .framer-PjEs8 .framer-16jsiam, .framer-PjEs8 .framer-1j6ict7, .framer-PjEs8 .framer-17yma99, .framer-PjEs8 .framer-1up1cvh, .framer-PjEs8 .framer-1rwvzgj, .framer-PjEs8 .framer-1989342, .framer-PjEs8 .framer-jf8d40, .framer-PjEs8 .framer-bu9jv5, .framer-PjEs8 .framer-1ftcz73, .framer-PjEs8 .framer-ck0icw, .framer-PjEs8 .framer-1ykdtkd, .framer-PjEs8 .framer-5t3fkl, .framer-PjEs8 .framer-1wibbf6, .framer-PjEs8 .framer-mux3hp, .framer-PjEs8 .framer-zvl4u5, .framer-PjEs8 .framer-1kkzfv6, .framer-PjEs8 .framer-kaki6z, .framer-PjEs8 .framer-8tovdi, .framer-PjEs8 .framer-19kkrwi, .framer-PjEs8 .framer-edj4yl, .framer-PjEs8 .framer-r6k2hw, .framer-PjEs8 .framer-go1hfm, .framer-PjEs8 .framer-i7weua, .framer-PjEs8 .framer-kklinq, .framer-PjEs8 .framer-g219h7, .framer-PjEs8 .framer-1w75dvx, .framer-PjEs8 .framer-f0eueu, .framer-PjEs8 .framer-fzv3g8, .framer-PjEs8 .framer-s5teqm, .framer-PjEs8 .framer-abga7i, .framer-PjEs8 .framer-nxe392, .framer-PjEs8 .framer-1rvzqr0, .framer-PjEs8 .framer-1pn98fb, .framer-PjEs8 .framer-t60r3t, .framer-PjEs8 .framer-gon6pd, .framer-PjEs8 .framer-w3mu2o, .framer-PjEs8 .framer-25hkyb, .framer-PjEs8 .framer-1vj7v6g, .framer-PjEs8 .framer-1bdzjv5, .framer-PjEs8 .framer-qjr4pg, .framer-PjEs8 .framer-rwde9u, .framer-PjEs8 .framer-1pykwfj, .framer-PjEs8 .framer-o7snvp, .framer-PjEs8 .framer-jj8tzi, .framer-PjEs8 .framer-1td5avd, .framer-PjEs8 .framer-ny8zvf, .framer-PjEs8 .framer-185gut2, .framer-PjEs8 .framer-dpjovg, .framer-PjEs8 .framer-1kg85wt, .framer-PjEs8 .framer-1k9gi1r, .framer-PjEs8 .framer-1h64cwj, .framer-PjEs8 .framer-1s5pz6u, .framer-PjEs8 .framer-sy89yc, .framer-PjEs8 .framer-9olb07, .framer-PjEs8 .framer-ufwmat, .framer-PjEs8 .framer-139g38z, .framer-PjEs8 .framer-1wi6iyz, .framer-PjEs8 .framer-5n1zx, .framer-PjEs8 .framer-b1sl0e, .framer-PjEs8 .framer-wcxl4b, .framer-PjEs8 .framer-twwum6, .framer-PjEs8 .framer-1jc89sk, .framer-PjEs8 .framer-1emftwl, .framer-PjEs8 .framer-1ckvswo, .framer-PjEs8 .framer-1jsi7ap, .framer-PjEs8 .framer-b40iea, .framer-PjEs8 .framer-1f91a6b, .framer-PjEs8 .framer-w0avyu, .framer-PjEs8 .framer-2ok87n, .framer-PjEs8 .framer-15qb5a4, .framer-PjEs8 .framer-17un5jq, .framer-PjEs8 .framer-1ve6i1y, .framer-PjEs8 .framer-z1ren, .framer-PjEs8 .framer-1ta51mg, .framer-PjEs8 .framer-1m3y8uq, .framer-PjEs8 .framer-1tniuuu, .framer-PjEs8 .framer-1o6xlac, .framer-PjEs8 .framer-380vz7, .framer-PjEs8 .framer-15lvo1m, .framer-PjEs8 .framer-1qcdox1, .framer-PjEs8 .framer-j4ka9v, .framer-PjEs8 .framer-1jhwjq3, .framer-PjEs8 .framer-t1d3yd, .framer-PjEs8 .framer-17os2w9, .framer-PjEs8 .framer-1qb5uvp, .framer-PjEs8 .framer-1tl2oih, .framer-PjEs8 .framer-c1scb2, .framer-PjEs8 .framer-kps3p3, .framer-PjEs8 .framer-qgsctt, .framer-PjEs8 .framer-jtrfdo, .framer-PjEs8 .framer-1oejqqe, .framer-PjEs8 .framer-1f193zm, .framer-PjEs8 .framer-1fxi1ug, .framer-PjEs8 .framer-1xm12m2, .framer-PjEs8 .framer-14esery, .framer-PjEs8 .framer-1nec09v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PjEs8 .framer-9iciuh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PjEs8 .framer-1xe1ni5, .framer-PjEs8 .framer-1vf2gmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1upes60, .framer-PjEs8 .framer-42b98e { flex: none; height: 256px; position: relative; text-decoration: none; width: 100%; }\",\".framer-PjEs8 .framer-lkqebp, .framer-PjEs8 .framer-1wpwuvr, .framer-PjEs8 .framer-a4vzqn, .framer-PjEs8 .framer-pmze1b, .framer-PjEs8 .framer-1snzakc, .framer-PjEs8 .framer-gxodip { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-PjEs8 .framer-1x183ov, .framer-PjEs8 .framer-zqf9d4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-height: 32px; min-width: 122px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PjEs8 .framer-13cqnmn-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-PjEs8 .framer-usxze7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-height: 515px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PjEs8 .framer-19uo7fv, .framer-PjEs8 .framer-wz479f, .framer-PjEs8 .framer-gxpfr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 171px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-5rcqlp, .framer-PjEs8 .framer-1ao757w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 177px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-erf81d, .framer-PjEs8 .framer-q5b53, .framer-PjEs8 .framer-s96g30, .framer-PjEs8 .framer-1k9z83s, .framer-PjEs8 .framer-164ve74 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 168px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-14p5uco, .framer-PjEs8 .framer-1kpy1w9, .framer-PjEs8 .framer-17pj3de, .framer-PjEs8 .framer-1kornw8, .framer-PjEs8 .framer-1hclao7, .framer-PjEs8 .framer-ma0c7w, .framer-PjEs8 .framer-1gvkgr7, .framer-PjEs8 .framer-19stsrf, .framer-PjEs8 .framer-mf0asn, .framer-PjEs8 .framer-1taxiua, .framer-PjEs8 .framer-1jfgttk, .framer-PjEs8 .framer-169x7o7, .framer-PjEs8 .framer-t93081, .framer-PjEs8 .framer-7maeif, .framer-PjEs8 .framer-1i8m1m0, .framer-PjEs8 .framer-3s5w06 { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-yd6gyv, .framer-PjEs8 .framer-tgkp1f, .framer-PjEs8 .framer-10oe3hp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 155px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-piw9zr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 156px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-9lwxag, .framer-PjEs8 .framer-7iaxah, .framer-PjEs8 .framer-69epcy, .framer-PjEs8 .framer-1w7rglr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 161px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1kz53jk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 96px 48px 96px; position: relative; width: 1196px; z-index: 1; }\",\".framer-PjEs8 .framer-1t3zas7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-height: 32px; min-width: 154px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PjEs8 .framer-1mqc1wy { flex: 1 0 0px; height: 1px; position: relative; text-decoration: none; width: 496px; }\",\".framer-PjEs8 .framer-1yim80z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1epzd4o, .framer-PjEs8 .framer-vx7bsm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 672px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PjEs8 .framer-1t6i9ss, .framer-PjEs8 .framer-3bvt9c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1lgnoca-container, .framer-PjEs8 .framer-pm2e8i-container, .framer-PjEs8 .framer-r85xkv-container { flex: none; height: 56px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-gxvo7b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-PjEs8 .framer-qpm1vg, .framer-PjEs8 .framer-nf5i0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 163px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-f37baa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 165px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-a32gcg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 136px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-yl1zhr, .framer-PjEs8 .framer-1oo9av6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 183px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-18n0etx, .framer-PjEs8 .framer-1t39tiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 172px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1ge57y1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 142px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1g5p4fg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 152px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1tnbkye { 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-PjEs8 .framer-110qoo8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 167px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-2ldtw9, .framer-PjEs8 .framer-1ao5ke7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 154px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-15t6qse { 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 64px 0px 64px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1stwjw4, .framer-PjEs8 .framer-1vcspm3, .framer-PjEs8 .framer-euf68e, .framer-PjEs8 .framer-xzr9rz, .framer-PjEs8 .framer-c25a8r, .framer-PjEs8 .framer-u6cq9t, .framer-PjEs8 .framer-1t6oqy0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-oepjwv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-PjEs8 .framer-c8sewc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 160px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1ptnti4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-17d6wa1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 145px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-19m4gai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 164px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1jl95jr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 149px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-rfh925 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 148px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-vnw4ql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 182px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-12ovgnj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 498px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PjEs8 .framer-u1jord { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-PjEs8 .framer-1ehnup5-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PjEs8.framer-cy1nm, .framer-PjEs8 .framer-18vk3bt, .framer-PjEs8 .framer-1ow3u7o, .framer-PjEs8 .framer-veldac, .framer-PjEs8 .framer-wbe0ca, .framer-PjEs8 .framer-1vj0j5i, .framer-PjEs8 .framer-1ffc6eb, .framer-PjEs8 .framer-l6yhz4, .framer-PjEs8 .framer-1tgt6wc, .framer-PjEs8 .framer-14xm84b, .framer-PjEs8 .framer-1gr9eyn, .framer-PjEs8 .framer-fu3i36, .framer-PjEs8 .framer-ev246w, .framer-PjEs8 .framer-1lo6d2d, .framer-PjEs8 .framer-1i1gmxd, .framer-PjEs8 .framer-9a517t, .framer-PjEs8 .framer-d7e7xl, .framer-PjEs8 .framer-bze7r9, .framer-PjEs8 .framer-150it71, .framer-PjEs8 .framer-171npd4, .framer-PjEs8 .framer-kq3vxs, .framer-PjEs8 .framer-1rbpc3u, .framer-PjEs8 .framer-mcfsi8, .framer-PjEs8 .framer-lz7er3, .framer-PjEs8 .framer-1qf634s, .framer-PjEs8 .framer-nep0bd, .framer-PjEs8 .framer-1f6zlja, .framer-PjEs8 .framer-zt4nyb, .framer-PjEs8 .framer-1pp3jq4, .framer-PjEs8 .framer-d9jjke, .framer-PjEs8 .framer-qnmn55, .framer-PjEs8 .framer-19ae94k, .framer-PjEs8 .framer-1gw7k9d, .framer-PjEs8 .framer-n7pkh2, .framer-PjEs8 .framer-4xgxxl, .framer-PjEs8 .framer-k8kzq9, .framer-PjEs8 .framer-me84oh, .framer-PjEs8 .framer-cht24m, .framer-PjEs8 .framer-1w2q1ou, .framer-PjEs8 .framer-18jqk3e, .framer-PjEs8 .framer-1kxuktc, .framer-PjEs8 .framer-16jsiam, .framer-PjEs8 .framer-1b3mgbp, .framer-PjEs8 .framer-met313, .framer-PjEs8 .framer-ryvnwv, .framer-PjEs8 .framer-i1zccb, .framer-PjEs8 .framer-h8ioa0, .framer-PjEs8 .framer-1j6ict7, .framer-PjEs8 .framer-14a091d, .framer-PjEs8 .framer-10s1vzs, .framer-PjEs8 .framer-19b9r2w, .framer-PjEs8 .framer-zukgi5, .framer-PjEs8 .framer-17yma99, .framer-PjEs8 .framer-19du5a8, .framer-PjEs8 .framer-alw82y, .framer-PjEs8 .framer-1r3e8vm, .framer-PjEs8 .framer-1lo0bul, .framer-PjEs8 .framer-1up1cvh, .framer-PjEs8 .framer-1ipnxup, .framer-PjEs8 .framer-190tas1, .framer-PjEs8 .framer-1eczqh5, .framer-PjEs8 .framer-18d9ma, .framer-PjEs8 .framer-dws98, .framer-PjEs8 .framer-1rwvzgj, .framer-PjEs8 .framer-1i4xv8s, .framer-PjEs8 .framer-9cjmfv, .framer-PjEs8 .framer-95g435, .framer-PjEs8 .framer-1y745dl, .framer-PjEs8 .framer-1989342, .framer-PjEs8 .framer-uks6uq, .framer-PjEs8 .framer-t93zam, .framer-PjEs8 .framer-1wq5yis, .framer-PjEs8 .framer-r1vn5j, .framer-PjEs8 .framer-inysdw, .framer-PjEs8 .framer-13xfku4, .framer-PjEs8 .framer-jf8d40, .framer-PjEs8 .framer-1kjnzh8, .framer-PjEs8 .framer-dlp4qy, .framer-PjEs8 .framer-szclkl, .framer-PjEs8 .framer-mw3k2a, .framer-PjEs8 .framer-bu9jv5, .framer-PjEs8 .framer-18dd08r, .framer-PjEs8 .framer-1xgkn4j, .framer-PjEs8 .framer-1o5vpdk, .framer-PjEs8 .framer-16rejml, .framer-PjEs8 .framer-1dlvfn8, .framer-PjEs8 .framer-1fxnsbb, .framer-PjEs8 .framer-1ftcz73, .framer-PjEs8 .framer-1drikcc, .framer-PjEs8 .framer-124fpdx, .framer-PjEs8 .framer-m4vukr, .framer-PjEs8 .framer-1v6w8re, .framer-PjEs8 .framer-ck0icw, .framer-PjEs8 .framer-118zcak, .framer-PjEs8 .framer-9iciuh, .framer-PjEs8 .framer-1qxz9nt, .framer-PjEs8 .framer-zfb58j, .framer-PjEs8 .framer-7253db, .framer-PjEs8 .framer-1ykdtkd, .framer-PjEs8 .framer-17e8aqx, .framer-PjEs8 .framer-xepv21, .framer-PjEs8 .framer-1yimce1, .framer-PjEs8 .framer-1j24lvg, .framer-PjEs8 .framer-5t3fkl, .framer-PjEs8 .framer-150i2wv, .framer-PjEs8 .framer-b3qtds, .framer-PjEs8 .framer-1qg5d7e, .framer-PjEs8 .framer-2zy3o8, .framer-PjEs8 .framer-7akqst, .framer-PjEs8 .framer-1wibbf6, .framer-PjEs8 .framer-1t69wl8, .framer-PjEs8 .framer-1xe1ni5, .framer-PjEs8 .framer-pmk7ey, .framer-PjEs8 .framer-ulr1ev, .framer-PjEs8 .framer-mux3hp, .framer-PjEs8 .framer-ju0913, .framer-PjEs8 .framer-1w2g8bx, .framer-PjEs8 .framer-5cby5r, .framer-PjEs8 .framer-lt7lfr, .framer-PjEs8 .framer-lkqebp, .framer-PjEs8 .framer-1q08ghq, .framer-PjEs8 .framer-664sft, .framer-PjEs8 .framer-1hz0um0, .framer-PjEs8 .framer-10adaau, .framer-PjEs8 .framer-zvl4u5, .framer-PjEs8 .framer-1x183ov, .framer-PjEs8 .framer-1ayjyde, .framer-PjEs8 .framer-1ymw89, .framer-PjEs8 .framer-jl98p3, .framer-PjEs8 .framer-yfd1z1, .framer-PjEs8 .framer-1kkzfv6, .framer-PjEs8 .framer-x64xc8, .framer-PjEs8 .framer-1oirblu, .framer-PjEs8 .framer-13rn8or, .framer-PjEs8 .framer-1wpwuvr, .framer-PjEs8 .framer-ptdkyb, .framer-PjEs8 .framer-1wtvrp7, .framer-PjEs8 .framer-c8jtpg, .framer-PjEs8 .framer-kaki6z, .framer-PjEs8 .framer-6vezyn, .framer-PjEs8 .framer-cx6b55, .framer-PjEs8 .framer-p010sw, .framer-PjEs8 .framer-pg8s29, .framer-PjEs8 .framer-1eql1f1, .framer-PjEs8 .framer-vg1rst, .framer-PjEs8 .framer-8tovdi, .framer-PjEs8 .framer-a3whe5, .framer-PjEs8 .framer-1369tbc, .framer-PjEs8 .framer-t86rct, .framer-PjEs8 .framer-13sjra1, .framer-PjEs8 .framer-14o1700, .framer-PjEs8 .framer-19kkrwi, .framer-PjEs8 .framer-warjhg, .framer-PjEs8 .framer-41hzgn, .framer-PjEs8 .framer-14t3i1g, .framer-PjEs8 .framer-1pkxqsy, .framer-PjEs8 .framer-edj4yl, .framer-PjEs8 .framer-h50pth, .framer-PjEs8 .framer-1cefy9a, .framer-PjEs8 .framer-1mu8zb2, .framer-PjEs8 .framer-p2qdaq, .framer-PjEs8 .framer-xdf346, .framer-PjEs8 .framer-r6k2hw, .framer-PjEs8 .framer-1tzt6fp, .framer-PjEs8 .framer-atzcok, .framer-PjEs8 .framer-mje7oy, .framer-PjEs8 .framer-1izwd4n, .framer-PjEs8 .framer-go1hfm, .framer-PjEs8 .framer-10ssoj1, .framer-PjEs8 .framer-9wsp3l, .framer-PjEs8 .framer-b4w1jm, .framer-PjEs8 .framer-1o9200n, .framer-PjEs8 .framer-i7weua, .framer-PjEs8 .framer-jolphy, .framer-PjEs8 .framer-dl5j9t, .framer-PjEs8 .framer-1kw8f3b, .framer-PjEs8 .framer-184sj3t, .framer-PjEs8 .framer-1jnt8t7, .framer-PjEs8 .framer-kklinq, .framer-PjEs8 .framer-za7xg0, .framer-PjEs8 .framer-1fndhoc, .framer-PjEs8 .framer-sus039, .framer-PjEs8 .framer-34c3ib, .framer-PjEs8 .framer-cvpo5d, .framer-PjEs8 .framer-1m53bz8, .framer-PjEs8 .framer-g219h7, .framer-PjEs8 .framer-1c3eu08, .framer-PjEs8 .framer-s8jfpa, .framer-PjEs8 .framer-ue6ni4, .framer-PjEs8 .framer-xsvn9z, .framer-PjEs8 .framer-1t9vvc4, .framer-PjEs8 .framer-1w75dvx, .framer-PjEs8 .framer-usxze7, .framer-PjEs8 .framer-1unfnpk, .framer-PjEs8 .framer-v9m9q3, .framer-PjEs8 .framer-jz0df8, .framer-PjEs8 .framer-19uo7fv, .framer-PjEs8 .framer-e2mtk9, .framer-PjEs8 .framer-1u9ovb0, .framer-PjEs8 .framer-f0eueu, .framer-PjEs8 .framer-4j685u, .framer-PjEs8 .framer-jogy3x, .framer-PjEs8 .framer-1nh09uh, .framer-PjEs8 .framer-1pps98f, .framer-PjEs8 .framer-4owpot, .framer-PjEs8 .framer-fzv3g8, .framer-PjEs8 .framer-xz6o83, .framer-PjEs8 .framer-5rcqlp, .framer-PjEs8 .framer-1fr1l19, .framer-PjEs8 .framer-ybxu5w, .framer-PjEs8 .framer-s5teqm, .framer-PjEs8 .framer-x650as, .framer-PjEs8 .framer-q57di3, .framer-PjEs8 .framer-12357l0, .framer-PjEs8 .framer-1g0h2is, .framer-PjEs8 .framer-abga7i, .framer-PjEs8 .framer-131do3s, .framer-PjEs8 .framer-14jqq31, .framer-PjEs8 .framer-erf81d, .framer-PjEs8 .framer-13td28g, .framer-PjEs8 .framer-13bhbqx, .framer-PjEs8 .framer-nxe392, .framer-PjEs8 .framer-14p5uco, .framer-PjEs8 .framer-18ngdwx, .framer-PjEs8 .framer-q5b53, .framer-PjEs8 .framer-1ux6k1c, .framer-PjEs8 .framer-1whd8to, .framer-PjEs8 .framer-1rvzqr0, .framer-PjEs8 .framer-1u6wyej, .framer-PjEs8 .framer-5z47k9, .framer-PjEs8 .framer-yd6gyv, .framer-PjEs8 .framer-6z43ux, .framer-PjEs8 .framer-1iyac5x, .framer-PjEs8 .framer-1pn98fb, .framer-PjEs8 .framer-1kpy1w9, .framer-PjEs8 .framer-hthbiu, .framer-PjEs8 .framer-90x8qf, .framer-PjEs8 .framer-piw9zr, .framer-PjEs8 .framer-41jbmq, .framer-PjEs8 .framer-jmqqb3, .framer-PjEs8 .framer-t60r3t, .framer-PjEs8 .framer-1ewsztu, .framer-PjEs8 .framer-s96g30, .framer-PjEs8 .framer-nd4wrj, .framer-PjEs8 .framer-18ztot6, .framer-PjEs8 .framer-gon6pd, .framer-PjEs8 .framer-1lskmg8, .framer-PjEs8 .framer-acjn9g, .framer-PjEs8 .framer-m3yfg7, .framer-PjEs8 .framer-k4dgo1, .framer-PjEs8 .framer-1akt7mm, .framer-PjEs8 .framer-w3mu2o, .framer-PjEs8 .framer-1lf4kph, .framer-PjEs8 .framer-972brz, .framer-PjEs8 .framer-9qm2yt, .framer-PjEs8 .framer-10rvayo, .framer-PjEs8 .framer-25hkyb, .framer-PjEs8 .framer-t84jii, .framer-PjEs8 .framer-10wczh2, .framer-PjEs8 .framer-64pvsj, .framer-PjEs8 .framer-ku96wj, .framer-PjEs8 .framer-1pb3m3l, .framer-PjEs8 .framer-ugb4la, .framer-PjEs8 .framer-1vj7v6g, .framer-PjEs8 .framer-1s5i6wn, .framer-PjEs8 .framer-sohr4a, .framer-PjEs8 .framer-gzatsk, .framer-PjEs8 .framer-x6p1sp, .framer-PjEs8 .framer-1bdzjv5, .framer-PjEs8 .framer-soiryy, .framer-PjEs8 .framer-w5h9yj, .framer-PjEs8 .framer-ktqvw7, .framer-PjEs8 .framer-1xu1mf2, .framer-PjEs8 .framer-5xctp2, .framer-PjEs8 .framer-qjr4pg, .framer-PjEs8 .framer-16twcf9, .framer-PjEs8 .framer-10cbwl2, .framer-PjEs8 .framer-12uj7yi, .framer-PjEs8 .framer-1qz2p6k, .framer-PjEs8 .framer-1ce99n1, .framer-PjEs8 .framer-rwde9u, .framer-PjEs8 .framer-1wxo3cu, .framer-PjEs8 .framer-16es52m, .framer-PjEs8 .framer-1vcsut3, .framer-PjEs8 .framer-13y5p18, .framer-PjEs8 .framer-17jh9ve, .framer-PjEs8 .framer-1pykwfj, .framer-PjEs8 .framer-1qo2uja, .framer-PjEs8 .framer-l9yscg, .framer-PjEs8 .framer-sbf779, .framer-PjEs8 .framer-9lwxag, .framer-PjEs8 .framer-10v535l, .framer-PjEs8 .framer-18m1ues, .framer-PjEs8 .framer-o7snvp, .framer-PjEs8 .framer-1kz53jk, .framer-PjEs8 .framer-fepxj8, .framer-PjEs8 .framer-oap3pf, .framer-PjEs8 .framer-cm8fba, .framer-PjEs8 .framer-wvm7gx, .framer-PjEs8 .framer-1r1cgd2, .framer-PjEs8 .framer-jj8tzi, .framer-PjEs8 .framer-1dsp7jo, .framer-PjEs8 .framer-jb2rpw, .framer-PjEs8 .framer-1nzh8xe, .framer-PjEs8 .framer-4v0f7a, .framer-PjEs8 .framer-1td5avd, .framer-PjEs8 .framer-wvwr86, .framer-PjEs8 .framer-1i476zc, .framer-PjEs8 .framer-1hw60t8, .framer-PjEs8 .framer-1k6si9c, .framer-PjEs8 .framer-289tkg, .framer-PjEs8 .framer-5gkfm, .framer-PjEs8 .framer-11a9qim, .framer-PjEs8 .framer-ny8zvf, .framer-PjEs8 .framer-1t3zas7, .framer-PjEs8 .framer-ftrdre, .framer-PjEs8 .framer-16fi83j, .framer-PjEs8 .framer-voq8ix, .framer-PjEs8 .framer-1jy1t3, .framer-PjEs8 .framer-p4n0us, .framer-PjEs8 .framer-185gut2, .framer-PjEs8 .framer-mn71tm, .framer-PjEs8 .framer-1fyegq1, .framer-PjEs8 .framer-1c36rig, .framer-PjEs8 .framer-10dw7dm, .framer-PjEs8 .framer-18alcba, .framer-PjEs8 .framer-dpjovg, .framer-PjEs8 .framer-dms0cr, .framer-PjEs8 .framer-1q7og9n, .framer-PjEs8 .framer-1xhoz1d, .framer-PjEs8 .framer-1fwhzfo, .framer-PjEs8 .framer-1kg85wt, .framer-PjEs8 .framer-1txfqm6, .framer-PjEs8 .framer-1b27os9, .framer-PjEs8 .framer-jh7hx6, .framer-PjEs8 .framer-1i95jas, .framer-PjEs8 .framer-1qswz5q, .framer-PjEs8 .framer-1k9gi1r, .framer-PjEs8 .framer-l5rte0, .framer-PjEs8 .framer-1ipo78i, .framer-PjEs8 .framer-dkosuc, .framer-PjEs8 .framer-q517v4, .framer-PjEs8 .framer-1h64cwj, .framer-PjEs8 .framer-1yim80z, .framer-PjEs8 .framer-1epzd4o, .framer-PjEs8 .framer-1t6i9ss, .framer-PjEs8 .framer-a4vzqn, .framer-PjEs8 .framer-bg5j2v, .framer-PjEs8 .framer-l1hahi, .framer-PjEs8 .framer-1s5pz6u, .framer-PjEs8 .framer-gxvo7b, .framer-PjEs8 .framer-17pj3de, .framer-PjEs8 .framer-f8d1nc, .framer-PjEs8 .framer-qpm1vg, .framer-PjEs8 .framer-o6ezou, .framer-PjEs8 .framer-h28dm9, .framer-PjEs8 .framer-sy89yc, .framer-PjEs8 .framer-1ucb2gy, .framer-PjEs8 .framer-f37baa, .framer-PjEs8 .framer-4o9j8a, .framer-PjEs8 .framer-1ho48n9, .framer-PjEs8 .framer-9olb07, .framer-PjEs8 .framer-1kornw8, .framer-PjEs8 .framer-no5poh, .framer-PjEs8 .framer-a32gcg, .framer-PjEs8 .framer-1i62pmj, .framer-PjEs8 .framer-y6vu60, .framer-PjEs8 .framer-ufwmat, .framer-PjEs8 .framer-2nucuk, .framer-PjEs8 .framer-yl1zhr, .framer-PjEs8 .framer-1510i7i, .framer-PjEs8 .framer-1kaw6oi, .framer-PjEs8 .framer-139g38z, .framer-PjEs8 .framer-1hclao7, .framer-PjEs8 .framer-1qg94xh, .framer-PjEs8 .framer-1oo9av6, .framer-PjEs8 .framer-1oxpgzx, .framer-PjEs8 .framer-l5tt5p, .framer-PjEs8 .framer-1wi6iyz, .framer-PjEs8 .framer-1xoestl, .framer-PjEs8 .framer-nf5i0, .framer-PjEs8 .framer-vlskbc, .framer-PjEs8 .framer-s78l7n, .framer-PjEs8 .framer-5n1zx, .framer-PjEs8 .framer-ma0c7w, .framer-PjEs8 .framer-wahkmt, .framer-PjEs8 .framer-7iaxah, .framer-PjEs8 .framer-1xbplw0, .framer-PjEs8 .framer-epvrtr, .framer-PjEs8 .framer-b1sl0e, .framer-PjEs8 .framer-12ml1ib, .framer-PjEs8 .framer-69epcy, .framer-PjEs8 .framer-spk4vx, .framer-PjEs8 .framer-xrldhe, .framer-PjEs8 .framer-wcxl4b, .framer-PjEs8 .framer-1gvkgr7, .framer-PjEs8 .framer-14ftmm5, .framer-PjEs8 .framer-18n0etx, .framer-PjEs8 .framer-pnsfrv, .framer-PjEs8 .framer-1xphn9i, .framer-PjEs8 .framer-twwum6, .framer-PjEs8 .framer-4z0wd1, .framer-PjEs8 .framer-tgkp1f, .framer-PjEs8 .framer-51lee6, .framer-PjEs8 .framer-9c7zlh, .framer-PjEs8 .framer-1jc89sk, .framer-PjEs8 .framer-19stsrf, .framer-PjEs8 .framer-dd47vu, .framer-PjEs8 .framer-29hasd, .framer-PjEs8 .framer-1ge57y1, .framer-PjEs8 .framer-mrv8i, .framer-PjEs8 .framer-tu5z4g, .framer-PjEs8 .framer-1emftwl, .framer-PjEs8 .framer-bi44gr, .framer-PjEs8 .framer-1w7rglr, .framer-PjEs8 .framer-1m6evd2, .framer-PjEs8 .framer-xl64ss, .framer-PjEs8 .framer-1ckvswo, .framer-PjEs8 .framer-mf0asn, .framer-PjEs8 .framer-spkttc, .framer-PjEs8 .framer-stc3ex, .framer-PjEs8 .framer-wz479f, .framer-PjEs8 .framer-14x0z1t, .framer-PjEs8 .framer-2jlmz6, .framer-PjEs8 .framer-1jsi7ap, .framer-PjEs8 .framer-1n866n1, .framer-PjEs8 .framer-1g5p4fg, .framer-PjEs8 .framer-127roj3, .framer-PjEs8 .framer-12gt5gg, .framer-PjEs8 .framer-b40iea, .framer-PjEs8 .framer-1taxiua, .framer-PjEs8 .framer-1tnbkye, .framer-PjEs8 .framer-110qoo8, .framer-PjEs8 .framer-1x6w821, .framer-PjEs8 .framer-74a7cg, .framer-PjEs8 .framer-1f91a6b, .framer-PjEs8 .framer-721fn3, .framer-PjEs8 .framer-2ldtw9, .framer-PjEs8 .framer-1ma3kwt, .framer-PjEs8 .framer-bwax78, .framer-PjEs8 .framer-w0avyu, .framer-PjEs8 .framer-1jfgttk, .framer-PjEs8 .framer-12p436j, .framer-PjEs8 .framer-gxpfr3, .framer-PjEs8 .framer-2szwco, .framer-PjEs8 .framer-xq3q6v, .framer-PjEs8 .framer-2ok87n, .framer-PjEs8 .framer-17yneek, .framer-PjEs8 .framer-1k9z83s, .framer-PjEs8 .framer-nztqjv, .framer-PjEs8 .framer-i7s2eg, .framer-PjEs8 .framer-15qb5a4, .framer-PjEs8 .framer-10389of, .framer-PjEs8 .framer-1d901ea, .framer-PjEs8 .framer-1t39tiw, .framer-PjEs8 .framer-1pdl55m, .framer-PjEs8 .framer-1rz4qan, .framer-PjEs8 .framer-17un5jq, .framer-PjEs8 .framer-15t6qse, .framer-PjEs8 .framer-vx7bsm, .framer-PjEs8 .framer-3bvt9c, .framer-PjEs8 .framer-pmze1b, .framer-PjEs8 .framer-11khc9c, .framer-PjEs8 .framer-14syr2q, .framer-PjEs8 .framer-1ve6i1y, .framer-PjEs8 .framer-1stwjw4, .framer-PjEs8 .framer-qa14of, .framer-PjEs8 .framer-b9wzpc, .framer-PjEs8 .framer-1tebmcx, .framer-PjEs8 .framer-1cg3rhd, .framer-PjEs8 .framer-z1ren, .framer-PjEs8 .framer-jh8p37, .framer-PjEs8 .framer-mmvc8k, .framer-PjEs8 .framer-1s0b7xd, .framer-PjEs8 .framer-1yvkput, .framer-PjEs8 .framer-1ta51mg, .framer-PjEs8 .framer-1vcspm3, .framer-PjEs8 .framer-zj8ivq, .framer-PjEs8 .framer-dp6my6, .framer-PjEs8 .framer-6qw0bh, .framer-PjEs8 .framer-1gxgjsu, .framer-PjEs8 .framer-1m3y8uq, .framer-PjEs8 .framer-1mtdbxf, .framer-PjEs8 .framer-2m41cq, .framer-PjEs8 .framer-ld9snd, .framer-PjEs8 .framer-2eqokx, .framer-PjEs8 .framer-1tniuuu, .framer-PjEs8 .framer-oepjwv, .framer-PjEs8 .framer-169x7o7, .framer-PjEs8 .framer-hx352t, .framer-PjEs8 .framer-c8sewc, .framer-PjEs8 .framer-1snzakc, .framer-PjEs8 .framer-1ptnti4, .framer-PjEs8 .framer-1xuhts9, .framer-PjEs8 .framer-14bjsqg, .framer-PjEs8 .framer-b832ay, .framer-PjEs8 .framer-1o6xlac, .framer-PjEs8 .framer-zqf9d4, .framer-PjEs8 .framer-x2dee6, .framer-PjEs8 .framer-10oe3hp, .framer-PjEs8 .framer-5voe0q, .framer-PjEs8 .framer-iepkga, .framer-PjEs8 .framer-380vz7, .framer-PjEs8 .framer-t93081, .framer-PjEs8 .framer-1d4pim3, .framer-PjEs8 .framer-17d6wa1, .framer-PjEs8 .framer-gxodip, .framer-PjEs8 .framer-d1eyel, .framer-PjEs8 .framer-1i8u88q, .framer-PjEs8 .framer-1pdsdku, .framer-PjEs8 .framer-15lvo1m, .framer-PjEs8 .framer-ek9o2b, .framer-PjEs8 .framer-19m4gai, .framer-PjEs8 .framer-1mpdif1, .framer-PjEs8 .framer-rnvq2d, .framer-PjEs8 .framer-1qcdox1, .framer-PjEs8 .framer-7maeif, .framer-PjEs8 .framer-eosfey, .framer-PjEs8 .framer-1ao5ke7, .framer-PjEs8 .framer-176sxda, .framer-PjEs8 .framer-11biph4, .framer-PjEs8 .framer-j4ka9v, .framer-PjEs8 .framer-1bc20sw, .framer-PjEs8 .framer-1jl95jr, .framer-PjEs8 .framer-jpdxte, .framer-PjEs8 .framer-1jsi6de, .framer-PjEs8 .framer-1jhwjq3, .framer-PjEs8 .framer-1i8m1m0, .framer-PjEs8 .framer-1f8zf3v, .framer-PjEs8 .framer-1ao757w, .framer-PjEs8 .framer-bdl88v, .framer-PjEs8 .framer-fwntji, .framer-PjEs8 .framer-t1d3yd, .framer-PjEs8 .framer-5eblru, .framer-PjEs8 .framer-rfh925, .framer-PjEs8 .framer-19jza4n, .framer-PjEs8 .framer-xgd1f0, .framer-PjEs8 .framer-17os2w9, .framer-PjEs8 .framer-3s5w06, .framer-PjEs8 .framer-10rqnoo, .framer-PjEs8 .framer-ahrlln, .framer-PjEs8 .framer-3io6hu, .framer-PjEs8 .framer-vnw4ql, .framer-PjEs8 .framer-1419kht, .framer-PjEs8 .framer-1u2p5db, .framer-PjEs8 .framer-1qb5uvp, .framer-PjEs8 .framer-1x1rnbf, .framer-PjEs8 .framer-1odv6in, .framer-PjEs8 .framer-164ve74, .framer-PjEs8 .framer-11k4qk3, .framer-PjEs8 .framer-w3d01d, .framer-PjEs8 .framer-1tl2oih, .framer-PjEs8 .framer-euf68e, .framer-PjEs8 .framer-114ft8z, .framer-PjEs8 .framer-7k7cjm, .framer-PjEs8 .framer-z77n6a, .framer-PjEs8 .framer-d26d8s, .framer-PjEs8 .framer-c1scb2, .framer-PjEs8 .framer-19vdwwl, .framer-PjEs8 .framer-188ys4i, .framer-PjEs8 .framer-1tiya9q, .framer-PjEs8 .framer-1yub4zw, .framer-PjEs8 .framer-kps3p3, .framer-PjEs8 .framer-xzr9rz, .framer-PjEs8 .framer-12ovgnj, .framer-PjEs8 .framer-1j2xbrl, .framer-PjEs8 .framer-1twvjtj, .framer-PjEs8 .framer-1krg047, .framer-PjEs8 .framer-qgsctt, .framer-PjEs8 .framer-1t2aa5k, .framer-PjEs8 .framer-448hz8, .framer-PjEs8 .framer-1b75hjp, .framer-PjEs8 .framer-151rzed, .framer-PjEs8 .framer-jtrfdo, .framer-PjEs8 .framer-c25a8r, .framer-PjEs8 .framer-fnuvab, .framer-PjEs8 .framer-1vf2gmz, .framer-PjEs8 .framer-jyiy8s, .framer-PjEs8 .framer-1b4f55k, .framer-PjEs8 .framer-1oejqqe, .framer-PjEs8 .framer-1brgd1i, .framer-PjEs8 .framer-1oomz4g, .framer-PjEs8 .framer-14r86oz, .framer-PjEs8 .framer-1fms7bi, .framer-PjEs8 .framer-1f193zm, .framer-PjEs8 .framer-u6cq9t, .framer-PjEs8 .framer-1xe9bii, .framer-PjEs8 .framer-35xjic, .framer-PjEs8 .framer-1hj7yiq, .framer-PjEs8 .framer-1kh5hwy, .framer-PjEs8 .framer-1fxi1ug, .framer-PjEs8 .framer-1eaxydk, .framer-PjEs8 .framer-qq9ry0, .framer-PjEs8 .framer-xxk0kq, .framer-PjEs8 .framer-135dk2o, .framer-PjEs8 .framer-1xm12m2, .framer-PjEs8 .framer-1t6oqy0, .framer-PjEs8 .framer-19l4anq, .framer-PjEs8 .framer-18l74lb, .framer-PjEs8 .framer-102cubs, .framer-PjEs8 .framer-4hb4kk, .framer-PjEs8 .framer-14esery, .framer-PjEs8 .framer-1qj610, .framer-PjEs8 .framer-1sf37hu, .framer-PjEs8 .framer-1my8jvi, .framer-PjEs8 .framer-14zwum4, .framer-PjEs8 .framer-1nec09v, .framer-PjEs8 .framer-u1jord { gap: 0px; } .framer-PjEs8.framer-cy1nm > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-PjEs8.framer-cy1nm > :first-child, .framer-PjEs8 .framer-18vk3bt > :first-child, .framer-PjEs8 .framer-1ow3u7o > :first-child, .framer-PjEs8 .framer-veldac > :first-child, .framer-PjEs8 .framer-wbe0ca > :first-child, .framer-PjEs8 .framer-1vj0j5i > :first-child, .framer-PjEs8 .framer-1ffc6eb > :first-child, .framer-PjEs8 .framer-l6yhz4 > :first-child, .framer-PjEs8 .framer-1tgt6wc > :first-child, .framer-PjEs8 .framer-fu3i36 > :first-child, .framer-PjEs8 .framer-1lo6d2d > :first-child, .framer-PjEs8 .framer-1i1gmxd > :first-child, .framer-PjEs8 .framer-9a517t > :first-child, .framer-PjEs8 .framer-d7e7xl > :first-child, .framer-PjEs8 .framer-bze7r9 > :first-child, .framer-PjEs8 .framer-150it71 > :first-child, .framer-PjEs8 .framer-1rbpc3u > :first-child, .framer-PjEs8 .framer-mcfsi8 > :first-child, .framer-PjEs8 .framer-lz7er3 > :first-child, .framer-PjEs8 .framer-1qf634s > :first-child, .framer-PjEs8 .framer-1f6zlja > :first-child, .framer-PjEs8 .framer-zt4nyb > :first-child, .framer-PjEs8 .framer-1pp3jq4 > :first-child, .framer-PjEs8 .framer-d9jjke > :first-child, .framer-PjEs8 .framer-1gw7k9d > :first-child, .framer-PjEs8 .framer-n7pkh2 > :first-child, .framer-PjEs8 .framer-4xgxxl > :first-child, .framer-PjEs8 .framer-k8kzq9 > :first-child, .framer-PjEs8 .framer-cht24m > :first-child, .framer-PjEs8 .framer-1w2q1ou > :first-child, .framer-PjEs8 .framer-18jqk3e > :first-child, .framer-PjEs8 .framer-1kxuktc > :first-child, .framer-PjEs8 .framer-met313 > :first-child, .framer-PjEs8 .framer-ryvnwv > :first-child, .framer-PjEs8 .framer-i1zccb > :first-child, .framer-PjEs8 .framer-h8ioa0 > :first-child, .framer-PjEs8 .framer-14a091d > :first-child, .framer-PjEs8 .framer-10s1vzs > :first-child, .framer-PjEs8 .framer-19b9r2w > :first-child, .framer-PjEs8 .framer-zukgi5 > :first-child, .framer-PjEs8 .framer-19du5a8 > :first-child, .framer-PjEs8 .framer-alw82y > :first-child, .framer-PjEs8 .framer-1r3e8vm > :first-child, .framer-PjEs8 .framer-1lo0bul > :first-child, .framer-PjEs8 .framer-190tas1 > :first-child, .framer-PjEs8 .framer-1eczqh5 > :first-child, .framer-PjEs8 .framer-18d9ma > :first-child, .framer-PjEs8 .framer-dws98 > :first-child, .framer-PjEs8 .framer-1i4xv8s > :first-child, .framer-PjEs8 .framer-9cjmfv > :first-child, .framer-PjEs8 .framer-95g435 > :first-child, .framer-PjEs8 .framer-1y745dl > :first-child, .framer-PjEs8 .framer-t93zam > :first-child, .framer-PjEs8 .framer-1wq5yis > :first-child, .framer-PjEs8 .framer-r1vn5j > :first-child, .framer-PjEs8 .framer-inysdw > :first-child, .framer-PjEs8 .framer-13xfku4 > :first-child, .framer-PjEs8 .framer-1kjnzh8 > :first-child, .framer-PjEs8 .framer-dlp4qy > :first-child, .framer-PjEs8 .framer-szclkl > :first-child, .framer-PjEs8 .framer-mw3k2a > :first-child, .framer-PjEs8 .framer-1xgkn4j > :first-child, .framer-PjEs8 .framer-1o5vpdk > :first-child, .framer-PjEs8 .framer-16rejml > :first-child, .framer-PjEs8 .framer-1dlvfn8 > :first-child, .framer-PjEs8 .framer-1fxnsbb > :first-child, .framer-PjEs8 .framer-1drikcc > :first-child, .framer-PjEs8 .framer-124fpdx > :first-child, .framer-PjEs8 .framer-m4vukr > :first-child, .framer-PjEs8 .framer-1v6w8re > :first-child, .framer-PjEs8 .framer-9iciuh > :first-child, .framer-PjEs8 .framer-1qxz9nt > :first-child, .framer-PjEs8 .framer-zfb58j > :first-child, .framer-PjEs8 .framer-7253db > :first-child, .framer-PjEs8 .framer-17e8aqx > :first-child, .framer-PjEs8 .framer-xepv21 > :first-child, .framer-PjEs8 .framer-1yimce1 > :first-child, .framer-PjEs8 .framer-1j24lvg > :first-child, .framer-PjEs8 .framer-b3qtds > :first-child, .framer-PjEs8 .framer-1qg5d7e > :first-child, .framer-PjEs8 .framer-2zy3o8 > :first-child, .framer-PjEs8 .framer-7akqst > :first-child, .framer-PjEs8 .framer-1t69wl8 > :first-child, .framer-PjEs8 .framer-1xe1ni5 > :first-child, .framer-PjEs8 .framer-pmk7ey > :first-child, .framer-PjEs8 .framer-ulr1ev > :first-child, .framer-PjEs8 .framer-ju0913 > :first-child, .framer-PjEs8 .framer-5cby5r > :first-child, .framer-PjEs8 .framer-lt7lfr > :first-child, .framer-PjEs8 .framer-lkqebp > :first-child, .framer-PjEs8 .framer-1q08ghq > :first-child, .framer-PjEs8 .framer-664sft > :first-child, .framer-PjEs8 .framer-1hz0um0 > :first-child, .framer-PjEs8 .framer-10adaau > :first-child, .framer-PjEs8 .framer-1ayjyde > :first-child, .framer-PjEs8 .framer-1ymw89 > :first-child, .framer-PjEs8 .framer-jl98p3 > :first-child, .framer-PjEs8 .framer-yfd1z1 > :first-child, .framer-PjEs8 .framer-1oirblu > :first-child, .framer-PjEs8 .framer-13rn8or > :first-child, .framer-PjEs8 .framer-1wpwuvr > :first-child, .framer-PjEs8 .framer-ptdkyb > :first-child, .framer-PjEs8 .framer-1wtvrp7 > :first-child, .framer-PjEs8 .framer-c8jtpg > :first-child, .framer-PjEs8 .framer-6vezyn > :first-child, .framer-PjEs8 .framer-cx6b55 > :first-child, .framer-PjEs8 .framer-p010sw > :first-child, .framer-PjEs8 .framer-pg8s29 > :first-child, .framer-PjEs8 .framer-1eql1f1 > :first-child, .framer-PjEs8 .framer-vg1rst > :first-child, .framer-PjEs8 .framer-1369tbc > :first-child, .framer-PjEs8 .framer-t86rct > :first-child, .framer-PjEs8 .framer-13sjra1 > :first-child, .framer-PjEs8 .framer-14o1700 > :first-child, .framer-PjEs8 .framer-warjhg > :first-child, .framer-PjEs8 .framer-41hzgn > :first-child, .framer-PjEs8 .framer-14t3i1g > :first-child, .framer-PjEs8 .framer-1pkxqsy > :first-child, .framer-PjEs8 .framer-1cefy9a > :first-child, .framer-PjEs8 .framer-1mu8zb2 > :first-child, .framer-PjEs8 .framer-p2qdaq > :first-child, .framer-PjEs8 .framer-xdf346 > :first-child, .framer-PjEs8 .framer-1tzt6fp > :first-child, .framer-PjEs8 .framer-atzcok > :first-child, .framer-PjEs8 .framer-mje7oy > :first-child, .framer-PjEs8 .framer-1izwd4n > :first-child, .framer-PjEs8 .framer-10ssoj1 > :first-child, .framer-PjEs8 .framer-9wsp3l > :first-child, .framer-PjEs8 .framer-b4w1jm > :first-child, .framer-PjEs8 .framer-1o9200n > :first-child, .framer-PjEs8 .framer-dl5j9t > :first-child, .framer-PjEs8 .framer-1kw8f3b > :first-child, .framer-PjEs8 .framer-184sj3t > :first-child, .framer-PjEs8 .framer-1jnt8t7 > :first-child, .framer-PjEs8 .framer-za7xg0 > :first-child, .framer-PjEs8 .framer-1fndhoc > :first-child, .framer-PjEs8 .framer-sus039 > :first-child, .framer-PjEs8 .framer-34c3ib > :first-child, .framer-PjEs8 .framer-cvpo5d > :first-child, .framer-PjEs8 .framer-1m53bz8 > :first-child, .framer-PjEs8 .framer-s8jfpa > :first-child, .framer-PjEs8 .framer-ue6ni4 > :first-child, .framer-PjEs8 .framer-xsvn9z > :first-child, .framer-PjEs8 .framer-1t9vvc4 > :first-child, .framer-PjEs8 .framer-usxze7 > :first-child, .framer-PjEs8 .framer-1unfnpk > :first-child, .framer-PjEs8 .framer-jz0df8 > :first-child, .framer-PjEs8 .framer-19uo7fv > :first-child, .framer-PjEs8 .framer-e2mtk9 > :first-child, .framer-PjEs8 .framer-1u9ovb0 > :first-child, .framer-PjEs8 .framer-4j685u > :first-child, .framer-PjEs8 .framer-jogy3x > :first-child, .framer-PjEs8 .framer-1nh09uh > :first-child, .framer-PjEs8 .framer-1pps98f > :first-child, .framer-PjEs8 .framer-4owpot > :first-child, .framer-PjEs8 .framer-xz6o83 > :first-child, .framer-PjEs8 .framer-5rcqlp > :first-child, .framer-PjEs8 .framer-1fr1l19 > :first-child, .framer-PjEs8 .framer-ybxu5w > :first-child, .framer-PjEs8 .framer-x650as > :first-child, .framer-PjEs8 .framer-q57di3 > :first-child, .framer-PjEs8 .framer-12357l0 > :first-child, .framer-PjEs8 .framer-1g0h2is > :first-child, .framer-PjEs8 .framer-14jqq31 > :first-child, .framer-PjEs8 .framer-erf81d > :first-child, .framer-PjEs8 .framer-13td28g > :first-child, .framer-PjEs8 .framer-13bhbqx > :first-child, .framer-PjEs8 .framer-14p5uco > :first-child, .framer-PjEs8 .framer-18ngdwx > :first-child, .framer-PjEs8 .framer-q5b53 > :first-child, .framer-PjEs8 .framer-1ux6k1c > :first-child, .framer-PjEs8 .framer-1whd8to > :first-child, .framer-PjEs8 .framer-1u6wyej > :first-child, .framer-PjEs8 .framer-5z47k9 > :first-child, .framer-PjEs8 .framer-yd6gyv > :first-child, .framer-PjEs8 .framer-6z43ux > :first-child, .framer-PjEs8 .framer-1iyac5x > :first-child, .framer-PjEs8 .framer-1kpy1w9 > :first-child, .framer-PjEs8 .framer-hthbiu > :first-child, .framer-PjEs8 .framer-90x8qf > :first-child, .framer-PjEs8 .framer-piw9zr > :first-child, .framer-PjEs8 .framer-41jbmq > :first-child, .framer-PjEs8 .framer-jmqqb3 > :first-child, .framer-PjEs8 .framer-1ewsztu > :first-child, .framer-PjEs8 .framer-s96g30 > :first-child, .framer-PjEs8 .framer-nd4wrj > :first-child, .framer-PjEs8 .framer-18ztot6 > :first-child, .framer-PjEs8 .framer-acjn9g > :first-child, .framer-PjEs8 .framer-m3yfg7 > :first-child, .framer-PjEs8 .framer-k4dgo1 > :first-child, .framer-PjEs8 .framer-1akt7mm > :first-child, .framer-PjEs8 .framer-1lf4kph > :first-child, .framer-PjEs8 .framer-972brz > :first-child, .framer-PjEs8 .framer-9qm2yt > :first-child, .framer-PjEs8 .framer-10rvayo > :first-child, .framer-PjEs8 .framer-10wczh2 > :first-child, .framer-PjEs8 .framer-64pvsj > :first-child, .framer-PjEs8 .framer-ku96wj > :first-child, .framer-PjEs8 .framer-1pb3m3l > :first-child, .framer-PjEs8 .framer-ugb4la > :first-child, .framer-PjEs8 .framer-1s5i6wn > :first-child, .framer-PjEs8 .framer-sohr4a > :first-child, .framer-PjEs8 .framer-gzatsk > :first-child, .framer-PjEs8 .framer-x6p1sp > :first-child, .framer-PjEs8 .framer-w5h9yj > :first-child, .framer-PjEs8 .framer-ktqvw7 > :first-child, .framer-PjEs8 .framer-1xu1mf2 > :first-child, .framer-PjEs8 .framer-5xctp2 > :first-child, .framer-PjEs8 .framer-16twcf9 > :first-child, .framer-PjEs8 .framer-10cbwl2 > :first-child, .framer-PjEs8 .framer-12uj7yi > :first-child, .framer-PjEs8 .framer-1qz2p6k > :first-child, .framer-PjEs8 .framer-1ce99n1 > :first-child, .framer-PjEs8 .framer-16es52m > :first-child, .framer-PjEs8 .framer-1vcsut3 > :first-child, .framer-PjEs8 .framer-13y5p18 > :first-child, .framer-PjEs8 .framer-17jh9ve > :first-child, .framer-PjEs8 .framer-l9yscg > :first-child, .framer-PjEs8 .framer-sbf779 > :first-child, .framer-PjEs8 .framer-9lwxag > :first-child, .framer-PjEs8 .framer-10v535l > :first-child, .framer-PjEs8 .framer-18m1ues > :first-child, .framer-PjEs8 .framer-1kz53jk > :first-child, .framer-PjEs8 .framer-oap3pf > :first-child, .framer-PjEs8 .framer-cm8fba > :first-child, .framer-PjEs8 .framer-wvm7gx > :first-child, .framer-PjEs8 .framer-1r1cgd2 > :first-child, .framer-PjEs8 .framer-1dsp7jo > :first-child, .framer-PjEs8 .framer-jb2rpw > :first-child, .framer-PjEs8 .framer-1nzh8xe > :first-child, .framer-PjEs8 .framer-4v0f7a > :first-child, .framer-PjEs8 .framer-1i476zc > :first-child, .framer-PjEs8 .framer-1hw60t8 > :first-child, .framer-PjEs8 .framer-1k6si9c > :first-child, .framer-PjEs8 .framer-289tkg > :first-child, .framer-PjEs8 .framer-5gkfm > :first-child, .framer-PjEs8 .framer-11a9qim > :first-child, .framer-PjEs8 .framer-ftrdre > :first-child, .framer-PjEs8 .framer-16fi83j > :first-child, .framer-PjEs8 .framer-voq8ix > :first-child, .framer-PjEs8 .framer-1jy1t3 > :first-child, .framer-PjEs8 .framer-p4n0us > :first-child, .framer-PjEs8 .framer-1fyegq1 > :first-child, .framer-PjEs8 .framer-1c36rig > :first-child, .framer-PjEs8 .framer-10dw7dm > :first-child, .framer-PjEs8 .framer-18alcba > :first-child, .framer-PjEs8 .framer-dms0cr > :first-child, .framer-PjEs8 .framer-1q7og9n > :first-child, .framer-PjEs8 .framer-1xhoz1d > :first-child, .framer-PjEs8 .framer-1fwhzfo > :first-child, .framer-PjEs8 .framer-1b27os9 > :first-child, .framer-PjEs8 .framer-jh7hx6 > :first-child, .framer-PjEs8 .framer-1i95jas > :first-child, .framer-PjEs8 .framer-1qswz5q > :first-child, .framer-PjEs8 .framer-l5rte0 > :first-child, .framer-PjEs8 .framer-1ipo78i > :first-child, .framer-PjEs8 .framer-dkosuc > :first-child, .framer-PjEs8 .framer-q517v4 > :first-child, .framer-PjEs8 .framer-1epzd4o > :first-child, .framer-PjEs8 .framer-1t6i9ss > :first-child, .framer-PjEs8 .framer-a4vzqn > :first-child, .framer-PjEs8 .framer-bg5j2v > :first-child, .framer-PjEs8 .framer-l1hahi > :first-child, .framer-PjEs8 .framer-gxvo7b > :first-child, .framer-PjEs8 .framer-17pj3de > :first-child, .framer-PjEs8 .framer-f8d1nc > :first-child, .framer-PjEs8 .framer-qpm1vg > :first-child, .framer-PjEs8 .framer-o6ezou > :first-child, .framer-PjEs8 .framer-h28dm9 > :first-child, .framer-PjEs8 .framer-1ucb2gy > :first-child, .framer-PjEs8 .framer-f37baa > :first-child, .framer-PjEs8 .framer-4o9j8a > :first-child, .framer-PjEs8 .framer-1ho48n9 > :first-child, .framer-PjEs8 .framer-1kornw8 > :first-child, .framer-PjEs8 .framer-no5poh > :first-child, .framer-PjEs8 .framer-a32gcg > :first-child, .framer-PjEs8 .framer-1i62pmj > :first-child, .framer-PjEs8 .framer-y6vu60 > :first-child, .framer-PjEs8 .framer-2nucuk > :first-child, .framer-PjEs8 .framer-yl1zhr > :first-child, .framer-PjEs8 .framer-1510i7i > :first-child, .framer-PjEs8 .framer-1kaw6oi > :first-child, .framer-PjEs8 .framer-1hclao7 > :first-child, .framer-PjEs8 .framer-1qg94xh > :first-child, .framer-PjEs8 .framer-1oo9av6 > :first-child, .framer-PjEs8 .framer-1oxpgzx > :first-child, .framer-PjEs8 .framer-l5tt5p > :first-child, .framer-PjEs8 .framer-1xoestl > :first-child, .framer-PjEs8 .framer-nf5i0 > :first-child, .framer-PjEs8 .framer-vlskbc > :first-child, .framer-PjEs8 .framer-s78l7n > :first-child, .framer-PjEs8 .framer-ma0c7w > :first-child, .framer-PjEs8 .framer-wahkmt > :first-child, .framer-PjEs8 .framer-7iaxah > :first-child, .framer-PjEs8 .framer-1xbplw0 > :first-child, .framer-PjEs8 .framer-epvrtr > :first-child, .framer-PjEs8 .framer-12ml1ib > :first-child, .framer-PjEs8 .framer-69epcy > :first-child, .framer-PjEs8 .framer-spk4vx > :first-child, .framer-PjEs8 .framer-xrldhe > :first-child, .framer-PjEs8 .framer-1gvkgr7 > :first-child, .framer-PjEs8 .framer-14ftmm5 > :first-child, .framer-PjEs8 .framer-18n0etx > :first-child, .framer-PjEs8 .framer-pnsfrv > :first-child, .framer-PjEs8 .framer-1xphn9i > :first-child, .framer-PjEs8 .framer-4z0wd1 > :first-child, .framer-PjEs8 .framer-tgkp1f > :first-child, .framer-PjEs8 .framer-51lee6 > :first-child, .framer-PjEs8 .framer-9c7zlh > :first-child, .framer-PjEs8 .framer-19stsrf > :first-child, .framer-PjEs8 .framer-dd47vu > :first-child, .framer-PjEs8 .framer-29hasd > :first-child, .framer-PjEs8 .framer-1ge57y1 > :first-child, .framer-PjEs8 .framer-mrv8i > :first-child, .framer-PjEs8 .framer-tu5z4g > :first-child, .framer-PjEs8 .framer-bi44gr > :first-child, .framer-PjEs8 .framer-1w7rglr > :first-child, .framer-PjEs8 .framer-1m6evd2 > :first-child, .framer-PjEs8 .framer-xl64ss > :first-child, .framer-PjEs8 .framer-mf0asn > :first-child, .framer-PjEs8 .framer-spkttc > :first-child, .framer-PjEs8 .framer-stc3ex > :first-child, .framer-PjEs8 .framer-wz479f > :first-child, .framer-PjEs8 .framer-14x0z1t > :first-child, .framer-PjEs8 .framer-2jlmz6 > :first-child, .framer-PjEs8 .framer-1n866n1 > :first-child, .framer-PjEs8 .framer-1g5p4fg > :first-child, .framer-PjEs8 .framer-127roj3 > :first-child, .framer-PjEs8 .framer-12gt5gg > :first-child, .framer-PjEs8 .framer-1taxiua > :first-child, .framer-PjEs8 .framer-1tnbkye > :first-child, .framer-PjEs8 .framer-110qoo8 > :first-child, .framer-PjEs8 .framer-1x6w821 > :first-child, .framer-PjEs8 .framer-74a7cg > :first-child, .framer-PjEs8 .framer-721fn3 > :first-child, .framer-PjEs8 .framer-2ldtw9 > :first-child, .framer-PjEs8 .framer-1ma3kwt > :first-child, .framer-PjEs8 .framer-bwax78 > :first-child, .framer-PjEs8 .framer-1jfgttk > :first-child, .framer-PjEs8 .framer-12p436j > :first-child, .framer-PjEs8 .framer-gxpfr3 > :first-child, .framer-PjEs8 .framer-2szwco > :first-child, .framer-PjEs8 .framer-xq3q6v > :first-child, .framer-PjEs8 .framer-17yneek > :first-child, .framer-PjEs8 .framer-1k9z83s > :first-child, .framer-PjEs8 .framer-nztqjv > :first-child, .framer-PjEs8 .framer-i7s2eg > :first-child, .framer-PjEs8 .framer-1d901ea > :first-child, .framer-PjEs8 .framer-1t39tiw > :first-child, .framer-PjEs8 .framer-1pdl55m > :first-child, .framer-PjEs8 .framer-1rz4qan > :first-child, .framer-PjEs8 .framer-vx7bsm > :first-child, .framer-PjEs8 .framer-3bvt9c > :first-child, .framer-PjEs8 .framer-pmze1b > :first-child, .framer-PjEs8 .framer-11khc9c > :first-child, .framer-PjEs8 .framer-14syr2q > :first-child, .framer-PjEs8 .framer-qa14of > :first-child, .framer-PjEs8 .framer-b9wzpc > :first-child, .framer-PjEs8 .framer-1tebmcx > :first-child, .framer-PjEs8 .framer-1cg3rhd > :first-child, .framer-PjEs8 .framer-jh8p37 > :first-child, .framer-PjEs8 .framer-mmvc8k > :first-child, .framer-PjEs8 .framer-1s0b7xd > :first-child, .framer-PjEs8 .framer-1yvkput > :first-child, .framer-PjEs8 .framer-zj8ivq > :first-child, .framer-PjEs8 .framer-dp6my6 > :first-child, .framer-PjEs8 .framer-6qw0bh > :first-child, .framer-PjEs8 .framer-1gxgjsu > :first-child, .framer-PjEs8 .framer-1mtdbxf > :first-child, .framer-PjEs8 .framer-2m41cq > :first-child, .framer-PjEs8 .framer-ld9snd > :first-child, .framer-PjEs8 .framer-2eqokx > :first-child, .framer-PjEs8 .framer-oepjwv > :first-child, .framer-PjEs8 .framer-169x7o7 > :first-child, .framer-PjEs8 .framer-hx352t > :first-child, .framer-PjEs8 .framer-c8sewc > :first-child, .framer-PjEs8 .framer-1snzakc > :first-child, .framer-PjEs8 .framer-1ptnti4 > :first-child, .framer-PjEs8 .framer-1xuhts9 > :first-child, .framer-PjEs8 .framer-14bjsqg > :first-child, .framer-PjEs8 .framer-b832ay > :first-child, .framer-PjEs8 .framer-x2dee6 > :first-child, .framer-PjEs8 .framer-10oe3hp > :first-child, .framer-PjEs8 .framer-5voe0q > :first-child, .framer-PjEs8 .framer-iepkga > :first-child, .framer-PjEs8 .framer-t93081 > :first-child, .framer-PjEs8 .framer-1d4pim3 > :first-child, .framer-PjEs8 .framer-17d6wa1 > :first-child, .framer-PjEs8 .framer-gxodip > :first-child, .framer-PjEs8 .framer-d1eyel > :first-child, .framer-PjEs8 .framer-1i8u88q > :first-child, .framer-PjEs8 .framer-1pdsdku > :first-child, .framer-PjEs8 .framer-ek9o2b > :first-child, .framer-PjEs8 .framer-19m4gai > :first-child, .framer-PjEs8 .framer-1mpdif1 > :first-child, .framer-PjEs8 .framer-rnvq2d > :first-child, .framer-PjEs8 .framer-7maeif > :first-child, .framer-PjEs8 .framer-eosfey > :first-child, .framer-PjEs8 .framer-1ao5ke7 > :first-child, .framer-PjEs8 .framer-176sxda > :first-child, .framer-PjEs8 .framer-11biph4 > :first-child, .framer-PjEs8 .framer-1bc20sw > :first-child, .framer-PjEs8 .framer-1jl95jr > :first-child, .framer-PjEs8 .framer-jpdxte > :first-child, .framer-PjEs8 .framer-1jsi6de > :first-child, .framer-PjEs8 .framer-1i8m1m0 > :first-child, .framer-PjEs8 .framer-1f8zf3v > :first-child, .framer-PjEs8 .framer-1ao757w > :first-child, .framer-PjEs8 .framer-bdl88v > :first-child, .framer-PjEs8 .framer-fwntji > :first-child, .framer-PjEs8 .framer-5eblru > :first-child, .framer-PjEs8 .framer-rfh925 > :first-child, .framer-PjEs8 .framer-19jza4n > :first-child, .framer-PjEs8 .framer-xgd1f0 > :first-child, .framer-PjEs8 .framer-3s5w06 > :first-child, .framer-PjEs8 .framer-10rqnoo > :first-child, .framer-PjEs8 .framer-ahrlln > :first-child, .framer-PjEs8 .framer-3io6hu > :first-child, .framer-PjEs8 .framer-vnw4ql > :first-child, .framer-PjEs8 .framer-1419kht > :first-child, .framer-PjEs8 .framer-1u2p5db > :first-child, .framer-PjEs8 .framer-1odv6in > :first-child, .framer-PjEs8 .framer-164ve74 > :first-child, .framer-PjEs8 .framer-11k4qk3 > :first-child, .framer-PjEs8 .framer-w3d01d > :first-child, .framer-PjEs8 .framer-114ft8z > :first-child, .framer-PjEs8 .framer-7k7cjm > :first-child, .framer-PjEs8 .framer-z77n6a > :first-child, .framer-PjEs8 .framer-d26d8s > :first-child, .framer-PjEs8 .framer-19vdwwl > :first-child, .framer-PjEs8 .framer-188ys4i > :first-child, .framer-PjEs8 .framer-1tiya9q > :first-child, .framer-PjEs8 .framer-1yub4zw > :first-child, .framer-PjEs8 .framer-12ovgnj > :first-child, .framer-PjEs8 .framer-1j2xbrl > :first-child, .framer-PjEs8 .framer-1twvjtj > :first-child, .framer-PjEs8 .framer-1krg047 > :first-child, .framer-PjEs8 .framer-1t2aa5k > :first-child, .framer-PjEs8 .framer-448hz8 > :first-child, .framer-PjEs8 .framer-1b75hjp > :first-child, .framer-PjEs8 .framer-151rzed > :first-child, .framer-PjEs8 .framer-fnuvab > :first-child, .framer-PjEs8 .framer-1vf2gmz > :first-child, .framer-PjEs8 .framer-jyiy8s > :first-child, .framer-PjEs8 .framer-1b4f55k > :first-child, .framer-PjEs8 .framer-1brgd1i > :first-child, .framer-PjEs8 .framer-1oomz4g > :first-child, .framer-PjEs8 .framer-14r86oz > :first-child, .framer-PjEs8 .framer-1fms7bi > :first-child, .framer-PjEs8 .framer-1xe9bii > :first-child, .framer-PjEs8 .framer-35xjic > :first-child, .framer-PjEs8 .framer-1hj7yiq > :first-child, .framer-PjEs8 .framer-1kh5hwy > :first-child, .framer-PjEs8 .framer-1eaxydk > :first-child, .framer-PjEs8 .framer-qq9ry0 > :first-child, .framer-PjEs8 .framer-xxk0kq > :first-child, .framer-PjEs8 .framer-135dk2o > :first-child, .framer-PjEs8 .framer-19l4anq > :first-child, .framer-PjEs8 .framer-18l74lb > :first-child, .framer-PjEs8 .framer-102cubs > :first-child, .framer-PjEs8 .framer-4hb4kk > :first-child, .framer-PjEs8 .framer-1qj610 > :first-child, .framer-PjEs8 .framer-1sf37hu > :first-child, .framer-PjEs8 .framer-1my8jvi > :first-child, .framer-PjEs8 .framer-14zwum4 > :first-child { margin-top: 0px; } .framer-PjEs8.framer-cy1nm > :last-child, .framer-PjEs8 .framer-18vk3bt > :last-child, .framer-PjEs8 .framer-1ow3u7o > :last-child, .framer-PjEs8 .framer-veldac > :last-child, .framer-PjEs8 .framer-wbe0ca > :last-child, .framer-PjEs8 .framer-1vj0j5i > :last-child, .framer-PjEs8 .framer-1ffc6eb > :last-child, .framer-PjEs8 .framer-l6yhz4 > :last-child, .framer-PjEs8 .framer-1tgt6wc > :last-child, .framer-PjEs8 .framer-fu3i36 > :last-child, .framer-PjEs8 .framer-1lo6d2d > :last-child, .framer-PjEs8 .framer-1i1gmxd > :last-child, .framer-PjEs8 .framer-9a517t > :last-child, .framer-PjEs8 .framer-d7e7xl > :last-child, .framer-PjEs8 .framer-bze7r9 > :last-child, .framer-PjEs8 .framer-150it71 > :last-child, .framer-PjEs8 .framer-1rbpc3u > :last-child, .framer-PjEs8 .framer-mcfsi8 > :last-child, .framer-PjEs8 .framer-lz7er3 > :last-child, .framer-PjEs8 .framer-1qf634s > :last-child, .framer-PjEs8 .framer-1f6zlja > :last-child, .framer-PjEs8 .framer-zt4nyb > :last-child, .framer-PjEs8 .framer-1pp3jq4 > :last-child, .framer-PjEs8 .framer-d9jjke > :last-child, .framer-PjEs8 .framer-1gw7k9d > :last-child, .framer-PjEs8 .framer-n7pkh2 > :last-child, .framer-PjEs8 .framer-4xgxxl > :last-child, .framer-PjEs8 .framer-k8kzq9 > :last-child, .framer-PjEs8 .framer-cht24m > :last-child, .framer-PjEs8 .framer-1w2q1ou > :last-child, .framer-PjEs8 .framer-18jqk3e > :last-child, .framer-PjEs8 .framer-1kxuktc > :last-child, .framer-PjEs8 .framer-met313 > :last-child, .framer-PjEs8 .framer-ryvnwv > :last-child, .framer-PjEs8 .framer-i1zccb > :last-child, .framer-PjEs8 .framer-h8ioa0 > :last-child, .framer-PjEs8 .framer-14a091d > :last-child, .framer-PjEs8 .framer-10s1vzs > :last-child, .framer-PjEs8 .framer-19b9r2w > :last-child, .framer-PjEs8 .framer-zukgi5 > :last-child, .framer-PjEs8 .framer-19du5a8 > :last-child, .framer-PjEs8 .framer-alw82y > :last-child, .framer-PjEs8 .framer-1r3e8vm > :last-child, .framer-PjEs8 .framer-1lo0bul > :last-child, .framer-PjEs8 .framer-190tas1 > :last-child, .framer-PjEs8 .framer-1eczqh5 > :last-child, .framer-PjEs8 .framer-18d9ma > :last-child, .framer-PjEs8 .framer-dws98 > :last-child, .framer-PjEs8 .framer-1i4xv8s > :last-child, .framer-PjEs8 .framer-9cjmfv > :last-child, .framer-PjEs8 .framer-95g435 > :last-child, .framer-PjEs8 .framer-1y745dl > :last-child, .framer-PjEs8 .framer-t93zam > :last-child, .framer-PjEs8 .framer-1wq5yis > :last-child, .framer-PjEs8 .framer-r1vn5j > :last-child, .framer-PjEs8 .framer-inysdw > :last-child, .framer-PjEs8 .framer-13xfku4 > :last-child, .framer-PjEs8 .framer-1kjnzh8 > :last-child, .framer-PjEs8 .framer-dlp4qy > :last-child, .framer-PjEs8 .framer-szclkl > :last-child, .framer-PjEs8 .framer-mw3k2a > :last-child, .framer-PjEs8 .framer-1xgkn4j > :last-child, .framer-PjEs8 .framer-1o5vpdk > :last-child, .framer-PjEs8 .framer-16rejml > :last-child, .framer-PjEs8 .framer-1dlvfn8 > :last-child, .framer-PjEs8 .framer-1fxnsbb > :last-child, .framer-PjEs8 .framer-1drikcc > :last-child, .framer-PjEs8 .framer-124fpdx > :last-child, .framer-PjEs8 .framer-m4vukr > :last-child, .framer-PjEs8 .framer-1v6w8re > :last-child, .framer-PjEs8 .framer-9iciuh > :last-child, .framer-PjEs8 .framer-1qxz9nt > :last-child, .framer-PjEs8 .framer-zfb58j > :last-child, .framer-PjEs8 .framer-7253db > :last-child, .framer-PjEs8 .framer-17e8aqx > :last-child, .framer-PjEs8 .framer-xepv21 > :last-child, .framer-PjEs8 .framer-1yimce1 > :last-child, .framer-PjEs8 .framer-1j24lvg > :last-child, .framer-PjEs8 .framer-b3qtds > :last-child, .framer-PjEs8 .framer-1qg5d7e > :last-child, .framer-PjEs8 .framer-2zy3o8 > :last-child, .framer-PjEs8 .framer-7akqst > :last-child, .framer-PjEs8 .framer-1t69wl8 > :last-child, .framer-PjEs8 .framer-1xe1ni5 > :last-child, .framer-PjEs8 .framer-pmk7ey > :last-child, .framer-PjEs8 .framer-ulr1ev > :last-child, .framer-PjEs8 .framer-ju0913 > :last-child, .framer-PjEs8 .framer-5cby5r > :last-child, .framer-PjEs8 .framer-lt7lfr > :last-child, .framer-PjEs8 .framer-lkqebp > :last-child, .framer-PjEs8 .framer-1q08ghq > :last-child, .framer-PjEs8 .framer-664sft > :last-child, .framer-PjEs8 .framer-1hz0um0 > :last-child, .framer-PjEs8 .framer-10adaau > :last-child, .framer-PjEs8 .framer-1ayjyde > :last-child, .framer-PjEs8 .framer-1ymw89 > :last-child, .framer-PjEs8 .framer-jl98p3 > :last-child, .framer-PjEs8 .framer-yfd1z1 > :last-child, .framer-PjEs8 .framer-1oirblu > :last-child, .framer-PjEs8 .framer-13rn8or > :last-child, .framer-PjEs8 .framer-1wpwuvr > :last-child, .framer-PjEs8 .framer-ptdkyb > :last-child, .framer-PjEs8 .framer-1wtvrp7 > :last-child, .framer-PjEs8 .framer-c8jtpg > :last-child, .framer-PjEs8 .framer-6vezyn > :last-child, .framer-PjEs8 .framer-cx6b55 > :last-child, .framer-PjEs8 .framer-p010sw > :last-child, .framer-PjEs8 .framer-pg8s29 > :last-child, .framer-PjEs8 .framer-1eql1f1 > :last-child, .framer-PjEs8 .framer-vg1rst > :last-child, .framer-PjEs8 .framer-1369tbc > :last-child, .framer-PjEs8 .framer-t86rct > :last-child, .framer-PjEs8 .framer-13sjra1 > :last-child, .framer-PjEs8 .framer-14o1700 > :last-child, .framer-PjEs8 .framer-warjhg > :last-child, .framer-PjEs8 .framer-41hzgn > :last-child, .framer-PjEs8 .framer-14t3i1g > :last-child, .framer-PjEs8 .framer-1pkxqsy > :last-child, .framer-PjEs8 .framer-1cefy9a > :last-child, .framer-PjEs8 .framer-1mu8zb2 > :last-child, .framer-PjEs8 .framer-p2qdaq > :last-child, .framer-PjEs8 .framer-xdf346 > :last-child, .framer-PjEs8 .framer-1tzt6fp > :last-child, .framer-PjEs8 .framer-atzcok > :last-child, .framer-PjEs8 .framer-mje7oy > :last-child, .framer-PjEs8 .framer-1izwd4n > :last-child, .framer-PjEs8 .framer-10ssoj1 > :last-child, .framer-PjEs8 .framer-9wsp3l > :last-child, .framer-PjEs8 .framer-b4w1jm > :last-child, .framer-PjEs8 .framer-1o9200n > :last-child, .framer-PjEs8 .framer-dl5j9t > :last-child, .framer-PjEs8 .framer-1kw8f3b > :last-child, .framer-PjEs8 .framer-184sj3t > :last-child, .framer-PjEs8 .framer-1jnt8t7 > :last-child, .framer-PjEs8 .framer-za7xg0 > :last-child, .framer-PjEs8 .framer-1fndhoc > :last-child, .framer-PjEs8 .framer-sus039 > :last-child, .framer-PjEs8 .framer-34c3ib > :last-child, .framer-PjEs8 .framer-cvpo5d > :last-child, .framer-PjEs8 .framer-1m53bz8 > :last-child, .framer-PjEs8 .framer-s8jfpa > :last-child, .framer-PjEs8 .framer-ue6ni4 > :last-child, .framer-PjEs8 .framer-xsvn9z > :last-child, .framer-PjEs8 .framer-1t9vvc4 > :last-child, .framer-PjEs8 .framer-usxze7 > :last-child, .framer-PjEs8 .framer-1unfnpk > :last-child, .framer-PjEs8 .framer-jz0df8 > :last-child, .framer-PjEs8 .framer-19uo7fv > :last-child, .framer-PjEs8 .framer-e2mtk9 > :last-child, .framer-PjEs8 .framer-1u9ovb0 > :last-child, .framer-PjEs8 .framer-4j685u > :last-child, .framer-PjEs8 .framer-jogy3x > :last-child, .framer-PjEs8 .framer-1nh09uh > :last-child, .framer-PjEs8 .framer-1pps98f > :last-child, .framer-PjEs8 .framer-4owpot > :last-child, .framer-PjEs8 .framer-xz6o83 > :last-child, .framer-PjEs8 .framer-5rcqlp > :last-child, .framer-PjEs8 .framer-1fr1l19 > :last-child, .framer-PjEs8 .framer-ybxu5w > :last-child, .framer-PjEs8 .framer-x650as > :last-child, .framer-PjEs8 .framer-q57di3 > :last-child, .framer-PjEs8 .framer-12357l0 > :last-child, .framer-PjEs8 .framer-1g0h2is > :last-child, .framer-PjEs8 .framer-14jqq31 > :last-child, .framer-PjEs8 .framer-erf81d > :last-child, .framer-PjEs8 .framer-13td28g > :last-child, .framer-PjEs8 .framer-13bhbqx > :last-child, .framer-PjEs8 .framer-14p5uco > :last-child, .framer-PjEs8 .framer-18ngdwx > :last-child, .framer-PjEs8 .framer-q5b53 > :last-child, .framer-PjEs8 .framer-1ux6k1c > :last-child, .framer-PjEs8 .framer-1whd8to > :last-child, .framer-PjEs8 .framer-1u6wyej > :last-child, .framer-PjEs8 .framer-5z47k9 > :last-child, .framer-PjEs8 .framer-yd6gyv > :last-child, .framer-PjEs8 .framer-6z43ux > :last-child, .framer-PjEs8 .framer-1iyac5x > :last-child, .framer-PjEs8 .framer-1kpy1w9 > :last-child, .framer-PjEs8 .framer-hthbiu > :last-child, .framer-PjEs8 .framer-90x8qf > :last-child, .framer-PjEs8 .framer-piw9zr > :last-child, .framer-PjEs8 .framer-41jbmq > :last-child, .framer-PjEs8 .framer-jmqqb3 > :last-child, .framer-PjEs8 .framer-1ewsztu > :last-child, .framer-PjEs8 .framer-s96g30 > :last-child, .framer-PjEs8 .framer-nd4wrj > :last-child, .framer-PjEs8 .framer-18ztot6 > :last-child, .framer-PjEs8 .framer-acjn9g > :last-child, .framer-PjEs8 .framer-m3yfg7 > :last-child, .framer-PjEs8 .framer-k4dgo1 > :last-child, .framer-PjEs8 .framer-1akt7mm > :last-child, .framer-PjEs8 .framer-1lf4kph > :last-child, .framer-PjEs8 .framer-972brz > :last-child, .framer-PjEs8 .framer-9qm2yt > :last-child, .framer-PjEs8 .framer-10rvayo > :last-child, .framer-PjEs8 .framer-10wczh2 > :last-child, .framer-PjEs8 .framer-64pvsj > :last-child, .framer-PjEs8 .framer-ku96wj > :last-child, .framer-PjEs8 .framer-1pb3m3l > :last-child, .framer-PjEs8 .framer-ugb4la > :last-child, .framer-PjEs8 .framer-1s5i6wn > :last-child, .framer-PjEs8 .framer-sohr4a > :last-child, .framer-PjEs8 .framer-gzatsk > :last-child, .framer-PjEs8 .framer-x6p1sp > :last-child, .framer-PjEs8 .framer-w5h9yj > :last-child, .framer-PjEs8 .framer-ktqvw7 > :last-child, .framer-PjEs8 .framer-1xu1mf2 > :last-child, .framer-PjEs8 .framer-5xctp2 > :last-child, .framer-PjEs8 .framer-16twcf9 > :last-child, .framer-PjEs8 .framer-10cbwl2 > :last-child, .framer-PjEs8 .framer-12uj7yi > :last-child, .framer-PjEs8 .framer-1qz2p6k > :last-child, .framer-PjEs8 .framer-1ce99n1 > :last-child, .framer-PjEs8 .framer-16es52m > :last-child, .framer-PjEs8 .framer-1vcsut3 > :last-child, .framer-PjEs8 .framer-13y5p18 > :last-child, .framer-PjEs8 .framer-17jh9ve > :last-child, .framer-PjEs8 .framer-l9yscg > :last-child, .framer-PjEs8 .framer-sbf779 > :last-child, .framer-PjEs8 .framer-9lwxag > :last-child, .framer-PjEs8 .framer-10v535l > :last-child, .framer-PjEs8 .framer-18m1ues > :last-child, .framer-PjEs8 .framer-1kz53jk > :last-child, .framer-PjEs8 .framer-oap3pf > :last-child, .framer-PjEs8 .framer-cm8fba > :last-child, .framer-PjEs8 .framer-wvm7gx > :last-child, .framer-PjEs8 .framer-1r1cgd2 > :last-child, .framer-PjEs8 .framer-1dsp7jo > :last-child, .framer-PjEs8 .framer-jb2rpw > :last-child, .framer-PjEs8 .framer-1nzh8xe > :last-child, .framer-PjEs8 .framer-4v0f7a > :last-child, .framer-PjEs8 .framer-1i476zc > :last-child, .framer-PjEs8 .framer-1hw60t8 > :last-child, .framer-PjEs8 .framer-1k6si9c > :last-child, .framer-PjEs8 .framer-289tkg > :last-child, .framer-PjEs8 .framer-5gkfm > :last-child, .framer-PjEs8 .framer-11a9qim > :last-child, .framer-PjEs8 .framer-ftrdre > :last-child, .framer-PjEs8 .framer-16fi83j > :last-child, .framer-PjEs8 .framer-voq8ix > :last-child, .framer-PjEs8 .framer-1jy1t3 > :last-child, .framer-PjEs8 .framer-p4n0us > :last-child, .framer-PjEs8 .framer-1fyegq1 > :last-child, .framer-PjEs8 .framer-1c36rig > :last-child, .framer-PjEs8 .framer-10dw7dm > :last-child, .framer-PjEs8 .framer-18alcba > :last-child, .framer-PjEs8 .framer-dms0cr > :last-child, .framer-PjEs8 .framer-1q7og9n > :last-child, .framer-PjEs8 .framer-1xhoz1d > :last-child, .framer-PjEs8 .framer-1fwhzfo > :last-child, .framer-PjEs8 .framer-1b27os9 > :last-child, .framer-PjEs8 .framer-jh7hx6 > :last-child, .framer-PjEs8 .framer-1i95jas > :last-child, .framer-PjEs8 .framer-1qswz5q > :last-child, .framer-PjEs8 .framer-l5rte0 > :last-child, .framer-PjEs8 .framer-1ipo78i > :last-child, .framer-PjEs8 .framer-dkosuc > :last-child, .framer-PjEs8 .framer-q517v4 > :last-child, .framer-PjEs8 .framer-1epzd4o > :last-child, .framer-PjEs8 .framer-1t6i9ss > :last-child, .framer-PjEs8 .framer-a4vzqn > :last-child, .framer-PjEs8 .framer-bg5j2v > :last-child, .framer-PjEs8 .framer-l1hahi > :last-child, .framer-PjEs8 .framer-gxvo7b > :last-child, .framer-PjEs8 .framer-17pj3de > :last-child, .framer-PjEs8 .framer-f8d1nc > :last-child, .framer-PjEs8 .framer-qpm1vg > :last-child, .framer-PjEs8 .framer-o6ezou > :last-child, .framer-PjEs8 .framer-h28dm9 > :last-child, .framer-PjEs8 .framer-1ucb2gy > :last-child, .framer-PjEs8 .framer-f37baa > :last-child, .framer-PjEs8 .framer-4o9j8a > :last-child, .framer-PjEs8 .framer-1ho48n9 > :last-child, .framer-PjEs8 .framer-1kornw8 > :last-child, .framer-PjEs8 .framer-no5poh > :last-child, .framer-PjEs8 .framer-a32gcg > :last-child, .framer-PjEs8 .framer-1i62pmj > :last-child, .framer-PjEs8 .framer-y6vu60 > :last-child, .framer-PjEs8 .framer-2nucuk > :last-child, .framer-PjEs8 .framer-yl1zhr > :last-child, .framer-PjEs8 .framer-1510i7i > :last-child, .framer-PjEs8 .framer-1kaw6oi > :last-child, .framer-PjEs8 .framer-1hclao7 > :last-child, .framer-PjEs8 .framer-1qg94xh > :last-child, .framer-PjEs8 .framer-1oo9av6 > :last-child, .framer-PjEs8 .framer-1oxpgzx > :last-child, .framer-PjEs8 .framer-l5tt5p > :last-child, .framer-PjEs8 .framer-1xoestl > :last-child, .framer-PjEs8 .framer-nf5i0 > :last-child, .framer-PjEs8 .framer-vlskbc > :last-child, .framer-PjEs8 .framer-s78l7n > :last-child, .framer-PjEs8 .framer-ma0c7w > :last-child, .framer-PjEs8 .framer-wahkmt > :last-child, .framer-PjEs8 .framer-7iaxah > :last-child, .framer-PjEs8 .framer-1xbplw0 > :last-child, .framer-PjEs8 .framer-epvrtr > :last-child, .framer-PjEs8 .framer-12ml1ib > :last-child, .framer-PjEs8 .framer-69epcy > :last-child, .framer-PjEs8 .framer-spk4vx > :last-child, .framer-PjEs8 .framer-xrldhe > :last-child, .framer-PjEs8 .framer-1gvkgr7 > :last-child, .framer-PjEs8 .framer-14ftmm5 > :last-child, .framer-PjEs8 .framer-18n0etx > :last-child, .framer-PjEs8 .framer-pnsfrv > :last-child, .framer-PjEs8 .framer-1xphn9i > :last-child, .framer-PjEs8 .framer-4z0wd1 > :last-child, .framer-PjEs8 .framer-tgkp1f > :last-child, .framer-PjEs8 .framer-51lee6 > :last-child, .framer-PjEs8 .framer-9c7zlh > :last-child, .framer-PjEs8 .framer-19stsrf > :last-child, .framer-PjEs8 .framer-dd47vu > :last-child, .framer-PjEs8 .framer-29hasd > :last-child, .framer-PjEs8 .framer-1ge57y1 > :last-child, .framer-PjEs8 .framer-mrv8i > :last-child, .framer-PjEs8 .framer-tu5z4g > :last-child, .framer-PjEs8 .framer-bi44gr > :last-child, .framer-PjEs8 .framer-1w7rglr > :last-child, .framer-PjEs8 .framer-1m6evd2 > :last-child, .framer-PjEs8 .framer-xl64ss > :last-child, .framer-PjEs8 .framer-mf0asn > :last-child, .framer-PjEs8 .framer-spkttc > :last-child, .framer-PjEs8 .framer-stc3ex > :last-child, .framer-PjEs8 .framer-wz479f > :last-child, .framer-PjEs8 .framer-14x0z1t > :last-child, .framer-PjEs8 .framer-2jlmz6 > :last-child, .framer-PjEs8 .framer-1n866n1 > :last-child, .framer-PjEs8 .framer-1g5p4fg > :last-child, .framer-PjEs8 .framer-127roj3 > :last-child, .framer-PjEs8 .framer-12gt5gg > :last-child, .framer-PjEs8 .framer-1taxiua > :last-child, .framer-PjEs8 .framer-1tnbkye > :last-child, .framer-PjEs8 .framer-110qoo8 > :last-child, .framer-PjEs8 .framer-1x6w821 > :last-child, .framer-PjEs8 .framer-74a7cg > :last-child, .framer-PjEs8 .framer-721fn3 > :last-child, .framer-PjEs8 .framer-2ldtw9 > :last-child, .framer-PjEs8 .framer-1ma3kwt > :last-child, .framer-PjEs8 .framer-bwax78 > :last-child, .framer-PjEs8 .framer-1jfgttk > :last-child, .framer-PjEs8 .framer-12p436j > :last-child, .framer-PjEs8 .framer-gxpfr3 > :last-child, .framer-PjEs8 .framer-2szwco > :last-child, .framer-PjEs8 .framer-xq3q6v > :last-child, .framer-PjEs8 .framer-17yneek > :last-child, .framer-PjEs8 .framer-1k9z83s > :last-child, .framer-PjEs8 .framer-nztqjv > :last-child, .framer-PjEs8 .framer-i7s2eg > :last-child, .framer-PjEs8 .framer-1d901ea > :last-child, .framer-PjEs8 .framer-1t39tiw > :last-child, .framer-PjEs8 .framer-1pdl55m > :last-child, .framer-PjEs8 .framer-1rz4qan > :last-child, .framer-PjEs8 .framer-vx7bsm > :last-child, .framer-PjEs8 .framer-3bvt9c > :last-child, .framer-PjEs8 .framer-pmze1b > :last-child, .framer-PjEs8 .framer-11khc9c > :last-child, .framer-PjEs8 .framer-14syr2q > :last-child, .framer-PjEs8 .framer-qa14of > :last-child, .framer-PjEs8 .framer-b9wzpc > :last-child, .framer-PjEs8 .framer-1tebmcx > :last-child, .framer-PjEs8 .framer-1cg3rhd > :last-child, .framer-PjEs8 .framer-jh8p37 > :last-child, .framer-PjEs8 .framer-mmvc8k > :last-child, .framer-PjEs8 .framer-1s0b7xd > :last-child, .framer-PjEs8 .framer-1yvkput > :last-child, .framer-PjEs8 .framer-zj8ivq > :last-child, .framer-PjEs8 .framer-dp6my6 > :last-child, .framer-PjEs8 .framer-6qw0bh > :last-child, .framer-PjEs8 .framer-1gxgjsu > :last-child, .framer-PjEs8 .framer-1mtdbxf > :last-child, .framer-PjEs8 .framer-2m41cq > :last-child, .framer-PjEs8 .framer-ld9snd > :last-child, .framer-PjEs8 .framer-2eqokx > :last-child, .framer-PjEs8 .framer-oepjwv > :last-child, .framer-PjEs8 .framer-169x7o7 > :last-child, .framer-PjEs8 .framer-hx352t > :last-child, .framer-PjEs8 .framer-c8sewc > :last-child, .framer-PjEs8 .framer-1snzakc > :last-child, .framer-PjEs8 .framer-1ptnti4 > :last-child, .framer-PjEs8 .framer-1xuhts9 > :last-child, .framer-PjEs8 .framer-14bjsqg > :last-child, .framer-PjEs8 .framer-b832ay > :last-child, .framer-PjEs8 .framer-x2dee6 > :last-child, .framer-PjEs8 .framer-10oe3hp > :last-child, .framer-PjEs8 .framer-5voe0q > :last-child, .framer-PjEs8 .framer-iepkga > :last-child, .framer-PjEs8 .framer-t93081 > :last-child, .framer-PjEs8 .framer-1d4pim3 > :last-child, .framer-PjEs8 .framer-17d6wa1 > :last-child, .framer-PjEs8 .framer-gxodip > :last-child, .framer-PjEs8 .framer-d1eyel > :last-child, .framer-PjEs8 .framer-1i8u88q > :last-child, .framer-PjEs8 .framer-1pdsdku > :last-child, .framer-PjEs8 .framer-ek9o2b > :last-child, .framer-PjEs8 .framer-19m4gai > :last-child, .framer-PjEs8 .framer-1mpdif1 > :last-child, .framer-PjEs8 .framer-rnvq2d > :last-child, .framer-PjEs8 .framer-7maeif > :last-child, .framer-PjEs8 .framer-eosfey > :last-child, .framer-PjEs8 .framer-1ao5ke7 > :last-child, .framer-PjEs8 .framer-176sxda > :last-child, .framer-PjEs8 .framer-11biph4 > :last-child, .framer-PjEs8 .framer-1bc20sw > :last-child, .framer-PjEs8 .framer-1jl95jr > :last-child, .framer-PjEs8 .framer-jpdxte > :last-child, .framer-PjEs8 .framer-1jsi6de > :last-child, .framer-PjEs8 .framer-1i8m1m0 > :last-child, .framer-PjEs8 .framer-1f8zf3v > :last-child, .framer-PjEs8 .framer-1ao757w > :last-child, .framer-PjEs8 .framer-bdl88v > :last-child, .framer-PjEs8 .framer-fwntji > :last-child, .framer-PjEs8 .framer-5eblru > :last-child, .framer-PjEs8 .framer-rfh925 > :last-child, .framer-PjEs8 .framer-19jza4n > :last-child, .framer-PjEs8 .framer-xgd1f0 > :last-child, .framer-PjEs8 .framer-3s5w06 > :last-child, .framer-PjEs8 .framer-10rqnoo > :last-child, .framer-PjEs8 .framer-ahrlln > :last-child, .framer-PjEs8 .framer-3io6hu > :last-child, .framer-PjEs8 .framer-vnw4ql > :last-child, .framer-PjEs8 .framer-1419kht > :last-child, .framer-PjEs8 .framer-1u2p5db > :last-child, .framer-PjEs8 .framer-1odv6in > :last-child, .framer-PjEs8 .framer-164ve74 > :last-child, .framer-PjEs8 .framer-11k4qk3 > :last-child, .framer-PjEs8 .framer-w3d01d > :last-child, .framer-PjEs8 .framer-114ft8z > :last-child, .framer-PjEs8 .framer-7k7cjm > :last-child, .framer-PjEs8 .framer-z77n6a > :last-child, .framer-PjEs8 .framer-d26d8s > :last-child, .framer-PjEs8 .framer-19vdwwl > :last-child, .framer-PjEs8 .framer-188ys4i > :last-child, .framer-PjEs8 .framer-1tiya9q > :last-child, .framer-PjEs8 .framer-1yub4zw > :last-child, .framer-PjEs8 .framer-12ovgnj > :last-child, .framer-PjEs8 .framer-1j2xbrl > :last-child, .framer-PjEs8 .framer-1twvjtj > :last-child, .framer-PjEs8 .framer-1krg047 > :last-child, .framer-PjEs8 .framer-1t2aa5k > :last-child, .framer-PjEs8 .framer-448hz8 > :last-child, .framer-PjEs8 .framer-1b75hjp > :last-child, .framer-PjEs8 .framer-151rzed > :last-child, .framer-PjEs8 .framer-fnuvab > :last-child, .framer-PjEs8 .framer-1vf2gmz > :last-child, .framer-PjEs8 .framer-jyiy8s > :last-child, .framer-PjEs8 .framer-1b4f55k > :last-child, .framer-PjEs8 .framer-1brgd1i > :last-child, .framer-PjEs8 .framer-1oomz4g > :last-child, .framer-PjEs8 .framer-14r86oz > :last-child, .framer-PjEs8 .framer-1fms7bi > :last-child, .framer-PjEs8 .framer-1xe9bii > :last-child, .framer-PjEs8 .framer-35xjic > :last-child, .framer-PjEs8 .framer-1hj7yiq > :last-child, .framer-PjEs8 .framer-1kh5hwy > :last-child, .framer-PjEs8 .framer-1eaxydk > :last-child, .framer-PjEs8 .framer-qq9ry0 > :last-child, .framer-PjEs8 .framer-xxk0kq > :last-child, .framer-PjEs8 .framer-135dk2o > :last-child, .framer-PjEs8 .framer-19l4anq > :last-child, .framer-PjEs8 .framer-18l74lb > :last-child, .framer-PjEs8 .framer-102cubs > :last-child, .framer-PjEs8 .framer-4hb4kk > :last-child, .framer-PjEs8 .framer-1qj610 > :last-child, .framer-PjEs8 .framer-1sf37hu > :last-child, .framer-PjEs8 .framer-1my8jvi > :last-child, .framer-PjEs8 .framer-14zwum4 > :last-child { margin-bottom: 0px; } .framer-PjEs8 .framer-18vk3bt > *, .framer-PjEs8 .framer-veldac > *, .framer-PjEs8 .framer-1vj0j5i > *, .framer-PjEs8 .framer-l6yhz4 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-PjEs8 .framer-1ow3u7o > *, .framer-PjEs8 .framer-wbe0ca > *, .framer-PjEs8 .framer-1ffc6eb > *, .framer-PjEs8 .framer-1tgt6wc > *, .framer-PjEs8 .framer-14p5uco > *, .framer-PjEs8 .framer-1kpy1w9 > *, .framer-PjEs8 .framer-17pj3de > *, .framer-PjEs8 .framer-1kornw8 > *, .framer-PjEs8 .framer-1hclao7 > *, .framer-PjEs8 .framer-ma0c7w > *, .framer-PjEs8 .framer-1gvkgr7 > *, .framer-PjEs8 .framer-19stsrf > *, .framer-PjEs8 .framer-mf0asn > *, .framer-PjEs8 .framer-1taxiua > *, .framer-PjEs8 .framer-1jfgttk > *, .framer-PjEs8 .framer-169x7o7 > *, .framer-PjEs8 .framer-t93081 > *, .framer-PjEs8 .framer-7maeif > *, .framer-PjEs8 .framer-1i8m1m0 > *, .framer-PjEs8 .framer-3s5w06 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PjEs8 .framer-14xm84b > *, .framer-PjEs8 .framer-1yim80z > *, .framer-PjEs8 .framer-15t6qse > *, .framer-PjEs8 .framer-u1jord > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PjEs8 .framer-14xm84b > :first-child, .framer-PjEs8 .framer-1gr9eyn > :first-child, .framer-PjEs8 .framer-ev246w > :first-child, .framer-PjEs8 .framer-171npd4 > :first-child, .framer-PjEs8 .framer-kq3vxs > :first-child, .framer-PjEs8 .framer-nep0bd > :first-child, .framer-PjEs8 .framer-qnmn55 > :first-child, .framer-PjEs8 .framer-19ae94k > :first-child, .framer-PjEs8 .framer-me84oh > :first-child, .framer-PjEs8 .framer-16jsiam > :first-child, .framer-PjEs8 .framer-1b3mgbp > :first-child, .framer-PjEs8 .framer-1j6ict7 > :first-child, .framer-PjEs8 .framer-17yma99 > :first-child, .framer-PjEs8 .framer-1up1cvh > :first-child, .framer-PjEs8 .framer-1ipnxup > :first-child, .framer-PjEs8 .framer-1rwvzgj > :first-child, .framer-PjEs8 .framer-1989342 > :first-child, .framer-PjEs8 .framer-uks6uq > :first-child, .framer-PjEs8 .framer-jf8d40 > :first-child, .framer-PjEs8 .framer-bu9jv5 > :first-child, .framer-PjEs8 .framer-18dd08r > :first-child, .framer-PjEs8 .framer-1ftcz73 > :first-child, .framer-PjEs8 .framer-ck0icw > :first-child, .framer-PjEs8 .framer-118zcak > :first-child, .framer-PjEs8 .framer-1ykdtkd > :first-child, .framer-PjEs8 .framer-5t3fkl > :first-child, .framer-PjEs8 .framer-150i2wv > :first-child, .framer-PjEs8 .framer-1wibbf6 > :first-child, .framer-PjEs8 .framer-mux3hp > :first-child, .framer-PjEs8 .framer-1w2g8bx > :first-child, .framer-PjEs8 .framer-zvl4u5 > :first-child, .framer-PjEs8 .framer-1x183ov > :first-child, .framer-PjEs8 .framer-1kkzfv6 > :first-child, .framer-PjEs8 .framer-x64xc8 > :first-child, .framer-PjEs8 .framer-kaki6z > :first-child, .framer-PjEs8 .framer-8tovdi > :first-child, .framer-PjEs8 .framer-a3whe5 > :first-child, .framer-PjEs8 .framer-19kkrwi > :first-child, .framer-PjEs8 .framer-edj4yl > :first-child, .framer-PjEs8 .framer-h50pth > :first-child, .framer-PjEs8 .framer-r6k2hw > :first-child, .framer-PjEs8 .framer-go1hfm > :first-child, .framer-PjEs8 .framer-i7weua > :first-child, .framer-PjEs8 .framer-jolphy > :first-child, .framer-PjEs8 .framer-kklinq > :first-child, .framer-PjEs8 .framer-g219h7 > :first-child, .framer-PjEs8 .framer-1c3eu08 > :first-child, .framer-PjEs8 .framer-1w75dvx > :first-child, .framer-PjEs8 .framer-v9m9q3 > :first-child, .framer-PjEs8 .framer-f0eueu > :first-child, .framer-PjEs8 .framer-fzv3g8 > :first-child, .framer-PjEs8 .framer-s5teqm > :first-child, .framer-PjEs8 .framer-abga7i > :first-child, .framer-PjEs8 .framer-131do3s > :first-child, .framer-PjEs8 .framer-nxe392 > :first-child, .framer-PjEs8 .framer-1rvzqr0 > :first-child, .framer-PjEs8 .framer-1pn98fb > :first-child, .framer-PjEs8 .framer-t60r3t > :first-child, .framer-PjEs8 .framer-gon6pd > :first-child, .framer-PjEs8 .framer-1lskmg8 > :first-child, .framer-PjEs8 .framer-w3mu2o > :first-child, .framer-PjEs8 .framer-25hkyb > :first-child, .framer-PjEs8 .framer-t84jii > :first-child, .framer-PjEs8 .framer-1vj7v6g > :first-child, .framer-PjEs8 .framer-1bdzjv5 > :first-child, .framer-PjEs8 .framer-soiryy > :first-child, .framer-PjEs8 .framer-qjr4pg > :first-child, .framer-PjEs8 .framer-rwde9u > :first-child, .framer-PjEs8 .framer-1wxo3cu > :first-child, .framer-PjEs8 .framer-1pykwfj > :first-child, .framer-PjEs8 .framer-1qo2uja > :first-child, .framer-PjEs8 .framer-o7snvp > :first-child, .framer-PjEs8 .framer-fepxj8 > :first-child, .framer-PjEs8 .framer-jj8tzi > :first-child, .framer-PjEs8 .framer-1td5avd > :first-child, .framer-PjEs8 .framer-wvwr86 > :first-child, .framer-PjEs8 .framer-ny8zvf > :first-child, .framer-PjEs8 .framer-1t3zas7 > :first-child, .framer-PjEs8 .framer-185gut2 > :first-child, .framer-PjEs8 .framer-mn71tm > :first-child, .framer-PjEs8 .framer-dpjovg > :first-child, .framer-PjEs8 .framer-1kg85wt > :first-child, .framer-PjEs8 .framer-1txfqm6 > :first-child, .framer-PjEs8 .framer-1k9gi1r > :first-child, .framer-PjEs8 .framer-1h64cwj > :first-child, .framer-PjEs8 .framer-1yim80z > :first-child, .framer-PjEs8 .framer-1s5pz6u > :first-child, .framer-PjEs8 .framer-sy89yc > :first-child, .framer-PjEs8 .framer-9olb07 > :first-child, .framer-PjEs8 .framer-ufwmat > :first-child, .framer-PjEs8 .framer-139g38z > :first-child, .framer-PjEs8 .framer-1wi6iyz > :first-child, .framer-PjEs8 .framer-5n1zx > :first-child, .framer-PjEs8 .framer-b1sl0e > :first-child, .framer-PjEs8 .framer-wcxl4b > :first-child, .framer-PjEs8 .framer-twwum6 > :first-child, .framer-PjEs8 .framer-1jc89sk > :first-child, .framer-PjEs8 .framer-1emftwl > :first-child, .framer-PjEs8 .framer-1ckvswo > :first-child, .framer-PjEs8 .framer-1jsi7ap > :first-child, .framer-PjEs8 .framer-b40iea > :first-child, .framer-PjEs8 .framer-1f91a6b > :first-child, .framer-PjEs8 .framer-w0avyu > :first-child, .framer-PjEs8 .framer-2ok87n > :first-child, .framer-PjEs8 .framer-15qb5a4 > :first-child, .framer-PjEs8 .framer-10389of > :first-child, .framer-PjEs8 .framer-17un5jq > :first-child, .framer-PjEs8 .framer-15t6qse > :first-child, .framer-PjEs8 .framer-1ve6i1y > :first-child, .framer-PjEs8 .framer-1stwjw4 > :first-child, .framer-PjEs8 .framer-z1ren > :first-child, .framer-PjEs8 .framer-1ta51mg > :first-child, .framer-PjEs8 .framer-1vcspm3 > :first-child, .framer-PjEs8 .framer-1m3y8uq > :first-child, .framer-PjEs8 .framer-1tniuuu > :first-child, .framer-PjEs8 .framer-1o6xlac > :first-child, .framer-PjEs8 .framer-zqf9d4 > :first-child, .framer-PjEs8 .framer-380vz7 > :first-child, .framer-PjEs8 .framer-15lvo1m > :first-child, .framer-PjEs8 .framer-1qcdox1 > :first-child, .framer-PjEs8 .framer-j4ka9v > :first-child, .framer-PjEs8 .framer-1jhwjq3 > :first-child, .framer-PjEs8 .framer-t1d3yd > :first-child, .framer-PjEs8 .framer-17os2w9 > :first-child, .framer-PjEs8 .framer-1qb5uvp > :first-child, .framer-PjEs8 .framer-1x1rnbf > :first-child, .framer-PjEs8 .framer-1tl2oih > :first-child, .framer-PjEs8 .framer-euf68e > :first-child, .framer-PjEs8 .framer-c1scb2 > :first-child, .framer-PjEs8 .framer-kps3p3 > :first-child, .framer-PjEs8 .framer-xzr9rz > :first-child, .framer-PjEs8 .framer-qgsctt > :first-child, .framer-PjEs8 .framer-jtrfdo > :first-child, .framer-PjEs8 .framer-c25a8r > :first-child, .framer-PjEs8 .framer-1oejqqe > :first-child, .framer-PjEs8 .framer-1f193zm > :first-child, .framer-PjEs8 .framer-u6cq9t > :first-child, .framer-PjEs8 .framer-1fxi1ug > :first-child, .framer-PjEs8 .framer-1xm12m2 > :first-child, .framer-PjEs8 .framer-1t6oqy0 > :first-child, .framer-PjEs8 .framer-14esery > :first-child, .framer-PjEs8 .framer-1nec09v > :first-child, .framer-PjEs8 .framer-u1jord > :first-child { margin-left: 0px; } .framer-PjEs8 .framer-14xm84b > :last-child, .framer-PjEs8 .framer-1gr9eyn > :last-child, .framer-PjEs8 .framer-ev246w > :last-child, .framer-PjEs8 .framer-171npd4 > :last-child, .framer-PjEs8 .framer-kq3vxs > :last-child, .framer-PjEs8 .framer-nep0bd > :last-child, .framer-PjEs8 .framer-qnmn55 > :last-child, .framer-PjEs8 .framer-19ae94k > :last-child, .framer-PjEs8 .framer-me84oh > :last-child, .framer-PjEs8 .framer-16jsiam > :last-child, .framer-PjEs8 .framer-1b3mgbp > :last-child, .framer-PjEs8 .framer-1j6ict7 > :last-child, .framer-PjEs8 .framer-17yma99 > :last-child, .framer-PjEs8 .framer-1up1cvh > :last-child, .framer-PjEs8 .framer-1ipnxup > :last-child, .framer-PjEs8 .framer-1rwvzgj > :last-child, .framer-PjEs8 .framer-1989342 > :last-child, .framer-PjEs8 .framer-uks6uq > :last-child, .framer-PjEs8 .framer-jf8d40 > :last-child, .framer-PjEs8 .framer-bu9jv5 > :last-child, .framer-PjEs8 .framer-18dd08r > :last-child, .framer-PjEs8 .framer-1ftcz73 > :last-child, .framer-PjEs8 .framer-ck0icw > :last-child, .framer-PjEs8 .framer-118zcak > :last-child, .framer-PjEs8 .framer-1ykdtkd > :last-child, .framer-PjEs8 .framer-5t3fkl > :last-child, .framer-PjEs8 .framer-150i2wv > :last-child, .framer-PjEs8 .framer-1wibbf6 > :last-child, .framer-PjEs8 .framer-mux3hp > :last-child, .framer-PjEs8 .framer-1w2g8bx > :last-child, .framer-PjEs8 .framer-zvl4u5 > :last-child, .framer-PjEs8 .framer-1x183ov > :last-child, .framer-PjEs8 .framer-1kkzfv6 > :last-child, .framer-PjEs8 .framer-x64xc8 > :last-child, .framer-PjEs8 .framer-kaki6z > :last-child, .framer-PjEs8 .framer-8tovdi > :last-child, .framer-PjEs8 .framer-a3whe5 > :last-child, .framer-PjEs8 .framer-19kkrwi > :last-child, .framer-PjEs8 .framer-edj4yl > :last-child, .framer-PjEs8 .framer-h50pth > :last-child, .framer-PjEs8 .framer-r6k2hw > :last-child, .framer-PjEs8 .framer-go1hfm > :last-child, .framer-PjEs8 .framer-i7weua > :last-child, .framer-PjEs8 .framer-jolphy > :last-child, .framer-PjEs8 .framer-kklinq > :last-child, .framer-PjEs8 .framer-g219h7 > :last-child, .framer-PjEs8 .framer-1c3eu08 > :last-child, .framer-PjEs8 .framer-1w75dvx > :last-child, .framer-PjEs8 .framer-v9m9q3 > :last-child, .framer-PjEs8 .framer-f0eueu > :last-child, .framer-PjEs8 .framer-fzv3g8 > :last-child, .framer-PjEs8 .framer-s5teqm > :last-child, .framer-PjEs8 .framer-abga7i > :last-child, .framer-PjEs8 .framer-131do3s > :last-child, .framer-PjEs8 .framer-nxe392 > :last-child, .framer-PjEs8 .framer-1rvzqr0 > :last-child, .framer-PjEs8 .framer-1pn98fb > :last-child, .framer-PjEs8 .framer-t60r3t > :last-child, .framer-PjEs8 .framer-gon6pd > :last-child, .framer-PjEs8 .framer-1lskmg8 > :last-child, .framer-PjEs8 .framer-w3mu2o > :last-child, .framer-PjEs8 .framer-25hkyb > :last-child, .framer-PjEs8 .framer-t84jii > :last-child, .framer-PjEs8 .framer-1vj7v6g > :last-child, .framer-PjEs8 .framer-1bdzjv5 > :last-child, .framer-PjEs8 .framer-soiryy > :last-child, .framer-PjEs8 .framer-qjr4pg > :last-child, .framer-PjEs8 .framer-rwde9u > :last-child, .framer-PjEs8 .framer-1wxo3cu > :last-child, .framer-PjEs8 .framer-1pykwfj > :last-child, .framer-PjEs8 .framer-1qo2uja > :last-child, .framer-PjEs8 .framer-o7snvp > :last-child, .framer-PjEs8 .framer-fepxj8 > :last-child, .framer-PjEs8 .framer-jj8tzi > :last-child, .framer-PjEs8 .framer-1td5avd > :last-child, .framer-PjEs8 .framer-wvwr86 > :last-child, .framer-PjEs8 .framer-ny8zvf > :last-child, .framer-PjEs8 .framer-1t3zas7 > :last-child, .framer-PjEs8 .framer-185gut2 > :last-child, .framer-PjEs8 .framer-mn71tm > :last-child, .framer-PjEs8 .framer-dpjovg > :last-child, .framer-PjEs8 .framer-1kg85wt > :last-child, .framer-PjEs8 .framer-1txfqm6 > :last-child, .framer-PjEs8 .framer-1k9gi1r > :last-child, .framer-PjEs8 .framer-1h64cwj > :last-child, .framer-PjEs8 .framer-1yim80z > :last-child, .framer-PjEs8 .framer-1s5pz6u > :last-child, .framer-PjEs8 .framer-sy89yc > :last-child, .framer-PjEs8 .framer-9olb07 > :last-child, .framer-PjEs8 .framer-ufwmat > :last-child, .framer-PjEs8 .framer-139g38z > :last-child, .framer-PjEs8 .framer-1wi6iyz > :last-child, .framer-PjEs8 .framer-5n1zx > :last-child, .framer-PjEs8 .framer-b1sl0e > :last-child, .framer-PjEs8 .framer-wcxl4b > :last-child, .framer-PjEs8 .framer-twwum6 > :last-child, .framer-PjEs8 .framer-1jc89sk > :last-child, .framer-PjEs8 .framer-1emftwl > :last-child, .framer-PjEs8 .framer-1ckvswo > :last-child, .framer-PjEs8 .framer-1jsi7ap > :last-child, .framer-PjEs8 .framer-b40iea > :last-child, .framer-PjEs8 .framer-1f91a6b > :last-child, .framer-PjEs8 .framer-w0avyu > :last-child, .framer-PjEs8 .framer-2ok87n > :last-child, .framer-PjEs8 .framer-15qb5a4 > :last-child, .framer-PjEs8 .framer-10389of > :last-child, .framer-PjEs8 .framer-17un5jq > :last-child, .framer-PjEs8 .framer-15t6qse > :last-child, .framer-PjEs8 .framer-1ve6i1y > :last-child, .framer-PjEs8 .framer-1stwjw4 > :last-child, .framer-PjEs8 .framer-z1ren > :last-child, .framer-PjEs8 .framer-1ta51mg > :last-child, .framer-PjEs8 .framer-1vcspm3 > :last-child, .framer-PjEs8 .framer-1m3y8uq > :last-child, .framer-PjEs8 .framer-1tniuuu > :last-child, .framer-PjEs8 .framer-1o6xlac > :last-child, .framer-PjEs8 .framer-zqf9d4 > :last-child, .framer-PjEs8 .framer-380vz7 > :last-child, .framer-PjEs8 .framer-15lvo1m > :last-child, .framer-PjEs8 .framer-1qcdox1 > :last-child, .framer-PjEs8 .framer-j4ka9v > :last-child, .framer-PjEs8 .framer-1jhwjq3 > :last-child, .framer-PjEs8 .framer-t1d3yd > :last-child, .framer-PjEs8 .framer-17os2w9 > :last-child, .framer-PjEs8 .framer-1qb5uvp > :last-child, .framer-PjEs8 .framer-1x1rnbf > :last-child, .framer-PjEs8 .framer-1tl2oih > :last-child, .framer-PjEs8 .framer-euf68e > :last-child, .framer-PjEs8 .framer-c1scb2 > :last-child, .framer-PjEs8 .framer-kps3p3 > :last-child, .framer-PjEs8 .framer-xzr9rz > :last-child, .framer-PjEs8 .framer-qgsctt > :last-child, .framer-PjEs8 .framer-jtrfdo > :last-child, .framer-PjEs8 .framer-c25a8r > :last-child, .framer-PjEs8 .framer-1oejqqe > :last-child, .framer-PjEs8 .framer-1f193zm > :last-child, .framer-PjEs8 .framer-u6cq9t > :last-child, .framer-PjEs8 .framer-1fxi1ug > :last-child, .framer-PjEs8 .framer-1xm12m2 > :last-child, .framer-PjEs8 .framer-1t6oqy0 > :last-child, .framer-PjEs8 .framer-14esery > :last-child, .framer-PjEs8 .framer-1nec09v > :last-child, .framer-PjEs8 .framer-u1jord > :last-child { margin-right: 0px; } .framer-PjEs8 .framer-1gr9eyn > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-PjEs8 .framer-fu3i36 > *, .framer-PjEs8 .framer-ju0913 > *, .framer-PjEs8 .framer-1unfnpk > *, .framer-PjEs8 .framer-1kz53jk > *, .framer-PjEs8 .framer-gxvo7b > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PjEs8 .framer-ev246w > *, .framer-PjEs8 .framer-kq3vxs > *, .framer-PjEs8 .framer-19ae94k > *, .framer-PjEs8 .framer-1b3mgbp > *, .framer-PjEs8 .framer-1ipnxup > *, .framer-PjEs8 .framer-uks6uq > *, .framer-PjEs8 .framer-18dd08r > *, .framer-PjEs8 .framer-118zcak > *, .framer-PjEs8 .framer-150i2wv > *, .framer-PjEs8 .framer-1w2g8bx > *, .framer-PjEs8 .framer-x64xc8 > *, .framer-PjEs8 .framer-a3whe5 > *, .framer-PjEs8 .framer-h50pth > *, .framer-PjEs8 .framer-jolphy > *, .framer-PjEs8 .framer-1c3eu08 > *, .framer-PjEs8 .framer-v9m9q3 > *, .framer-PjEs8 .framer-131do3s > *, .framer-PjEs8 .framer-1lskmg8 > *, .framer-PjEs8 .framer-t84jii > *, .framer-PjEs8 .framer-soiryy > *, .framer-PjEs8 .framer-1wxo3cu > *, .framer-PjEs8 .framer-1qo2uja > *, .framer-PjEs8 .framer-fepxj8 > *, .framer-PjEs8 .framer-wvwr86 > *, .framer-PjEs8 .framer-mn71tm > *, .framer-PjEs8 .framer-1txfqm6 > *, .framer-PjEs8 .framer-10389of > *, .framer-PjEs8 .framer-1stwjw4 > *, .framer-PjEs8 .framer-1vcspm3 > *, .framer-PjEs8 .framer-1x1rnbf > *, .framer-PjEs8 .framer-euf68e > *, .framer-PjEs8 .framer-xzr9rz > *, .framer-PjEs8 .framer-c25a8r > *, .framer-PjEs8 .framer-u6cq9t > *, .framer-PjEs8 .framer-1t6oqy0 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-PjEs8 .framer-1lo6d2d > *, .framer-PjEs8 .framer-1i1gmxd > *, .framer-PjEs8 .framer-9a517t > *, .framer-PjEs8 .framer-1rbpc3u > *, .framer-PjEs8 .framer-1f6zlja > *, .framer-PjEs8 .framer-1gw7k9d > *, .framer-PjEs8 .framer-cht24m > *, .framer-PjEs8 .framer-met313 > *, .framer-PjEs8 .framer-14a091d > *, .framer-PjEs8 .framer-19du5a8 > *, .framer-PjEs8 .framer-190tas1 > *, .framer-PjEs8 .framer-1i4xv8s > *, .framer-PjEs8 .framer-t93zam > *, .framer-PjEs8 .framer-1wq5yis > *, .framer-PjEs8 .framer-1kjnzh8 > *, .framer-PjEs8 .framer-1xgkn4j > *, .framer-PjEs8 .framer-1o5vpdk > *, .framer-PjEs8 .framer-1drikcc > *, .framer-PjEs8 .framer-17e8aqx > *, .framer-PjEs8 .framer-b3qtds > *, .framer-PjEs8 .framer-1t69wl8 > *, .framer-PjEs8 .framer-5cby5r > *, .framer-PjEs8 .framer-1ayjyde > *, .framer-PjEs8 .framer-1oirblu > *, .framer-PjEs8 .framer-6vezyn > *, .framer-PjEs8 .framer-p010sw > *, .framer-PjEs8 .framer-1369tbc > *, .framer-PjEs8 .framer-warjhg > *, .framer-PjEs8 .framer-1cefy9a > *, .framer-PjEs8 .framer-1tzt6fp > *, .framer-PjEs8 .framer-10ssoj1 > *, .framer-PjEs8 .framer-dl5j9t > *, .framer-PjEs8 .framer-za7xg0 > *, .framer-PjEs8 .framer-1fndhoc > *, .framer-PjEs8 .framer-sus039 > *, .framer-PjEs8 .framer-s8jfpa > *, .framer-PjEs8 .framer-usxze7 > *, .framer-PjEs8 .framer-jz0df8 > *, .framer-PjEs8 .framer-4j685u > *, .framer-PjEs8 .framer-jogy3x > *, .framer-PjEs8 .framer-xz6o83 > *, .framer-PjEs8 .framer-x650as > *, .framer-PjEs8 .framer-14jqq31 > *, .framer-PjEs8 .framer-18ngdwx > *, .framer-PjEs8 .framer-1u6wyej > *, .framer-PjEs8 .framer-5z47k9 > *, .framer-PjEs8 .framer-hthbiu > *, .framer-PjEs8 .framer-90x8qf > *, .framer-PjEs8 .framer-1ewsztu > *, .framer-PjEs8 .framer-acjn9g > *, .framer-PjEs8 .framer-1lf4kph > *, .framer-PjEs8 .framer-10wczh2 > *, .framer-PjEs8 .framer-64pvsj > *, .framer-PjEs8 .framer-1s5i6wn > *, .framer-PjEs8 .framer-w5h9yj > *, .framer-PjEs8 .framer-16twcf9 > *, .framer-PjEs8 .framer-10cbwl2 > *, .framer-PjEs8 .framer-16es52m > *, .framer-PjEs8 .framer-l9yscg > *, .framer-PjEs8 .framer-sbf779 > *, .framer-PjEs8 .framer-oap3pf > *, .framer-PjEs8 .framer-1dsp7jo > *, .framer-PjEs8 .framer-1i476zc > *, .framer-PjEs8 .framer-ftrdre > *, .framer-PjEs8 .framer-1fyegq1 > *, .framer-PjEs8 .framer-dms0cr > *, .framer-PjEs8 .framer-1b27os9 > *, .framer-PjEs8 .framer-l5rte0 > *, .framer-PjEs8 .framer-1epzd4o > *, .framer-PjEs8 .framer-f8d1nc > *, .framer-PjEs8 .framer-1ucb2gy > *, .framer-PjEs8 .framer-no5poh > *, .framer-PjEs8 .framer-2nucuk > *, .framer-PjEs8 .framer-1qg94xh > *, .framer-PjEs8 .framer-1xoestl > *, .framer-PjEs8 .framer-wahkmt > *, .framer-PjEs8 .framer-12ml1ib > *, .framer-PjEs8 .framer-14ftmm5 > *, .framer-PjEs8 .framer-4z0wd1 > *, .framer-PjEs8 .framer-dd47vu > *, .framer-PjEs8 .framer-29hasd > *, .framer-PjEs8 .framer-bi44gr > *, .framer-PjEs8 .framer-spkttc > *, .framer-PjEs8 .framer-stc3ex > *, .framer-PjEs8 .framer-1n866n1 > *, .framer-PjEs8 .framer-721fn3 > *, .framer-PjEs8 .framer-12p436j > *, .framer-PjEs8 .framer-17yneek > *, .framer-PjEs8 .framer-1d901ea > *, .framer-PjEs8 .framer-vx7bsm > *, .framer-PjEs8 .framer-qa14of > *, .framer-PjEs8 .framer-jh8p37 > *, .framer-PjEs8 .framer-zj8ivq > *, .framer-PjEs8 .framer-1mtdbxf > *, .framer-PjEs8 .framer-hx352t > *, .framer-PjEs8 .framer-x2dee6 > *, .framer-PjEs8 .framer-1d4pim3 > *, .framer-PjEs8 .framer-ek9o2b > *, .framer-PjEs8 .framer-eosfey > *, .framer-PjEs8 .framer-1bc20sw > *, .framer-PjEs8 .framer-1f8zf3v > *, .framer-PjEs8 .framer-5eblru > *, .framer-PjEs8 .framer-10rqnoo > *, .framer-PjEs8 .framer-ahrlln > *, .framer-PjEs8 .framer-3io6hu > *, .framer-PjEs8 .framer-1odv6in > *, .framer-PjEs8 .framer-114ft8z > *, .framer-PjEs8 .framer-19vdwwl > *, .framer-PjEs8 .framer-12ovgnj > *, .framer-PjEs8 .framer-1t2aa5k > *, .framer-PjEs8 .framer-fnuvab > *, .framer-PjEs8 .framer-1brgd1i > *, .framer-PjEs8 .framer-1xe9bii > *, .framer-PjEs8 .framer-1eaxydk > *, .framer-PjEs8 .framer-19l4anq > *, .framer-PjEs8 .framer-1qj610 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PjEs8 .framer-d7e7xl > *, .framer-PjEs8 .framer-mcfsi8 > *, .framer-PjEs8 .framer-zt4nyb > *, .framer-PjEs8 .framer-n7pkh2 > *, .framer-PjEs8 .framer-1w2q1ou > *, .framer-PjEs8 .framer-ryvnwv > *, .framer-PjEs8 .framer-10s1vzs > *, .framer-PjEs8 .framer-alw82y > *, .framer-PjEs8 .framer-1eczqh5 > *, .framer-PjEs8 .framer-9cjmfv > *, .framer-PjEs8 .framer-r1vn5j > *, .framer-PjEs8 .framer-dlp4qy > *, .framer-PjEs8 .framer-16rejml > *, .framer-PjEs8 .framer-124fpdx > *, .framer-PjEs8 .framer-1qxz9nt > *, .framer-PjEs8 .framer-xepv21 > *, .framer-PjEs8 .framer-1qg5d7e > *, .framer-PjEs8 .framer-1xe1ni5 > *, .framer-PjEs8 .framer-lt7lfr > *, .framer-PjEs8 .framer-lkqebp > *, .framer-PjEs8 .framer-1ymw89 > *, .framer-PjEs8 .framer-13rn8or > *, .framer-PjEs8 .framer-1wpwuvr > *, .framer-PjEs8 .framer-cx6b55 > *, .framer-PjEs8 .framer-pg8s29 > *, .framer-PjEs8 .framer-t86rct > *, .framer-PjEs8 .framer-41hzgn > *, .framer-PjEs8 .framer-1mu8zb2 > *, .framer-PjEs8 .framer-atzcok > *, .framer-PjEs8 .framer-9wsp3l > *, .framer-PjEs8 .framer-1kw8f3b > *, .framer-PjEs8 .framer-34c3ib > *, .framer-PjEs8 .framer-ue6ni4 > *, .framer-PjEs8 .framer-19uo7fv > *, .framer-PjEs8 .framer-1nh09uh > *, .framer-PjEs8 .framer-5rcqlp > *, .framer-PjEs8 .framer-q57di3 > *, .framer-PjEs8 .framer-erf81d > *, .framer-PjEs8 .framer-q5b53 > *, .framer-PjEs8 .framer-yd6gyv > *, .framer-PjEs8 .framer-piw9zr > *, .framer-PjEs8 .framer-s96g30 > *, .framer-PjEs8 .framer-m3yfg7 > *, .framer-PjEs8 .framer-972brz > *, .framer-PjEs8 .framer-ku96wj > *, .framer-PjEs8 .framer-sohr4a > *, .framer-PjEs8 .framer-ktqvw7 > *, .framer-PjEs8 .framer-12uj7yi > *, .framer-PjEs8 .framer-1vcsut3 > *, .framer-PjEs8 .framer-9lwxag > *, .framer-PjEs8 .framer-cm8fba > *, .framer-PjEs8 .framer-jb2rpw > *, .framer-PjEs8 .framer-1hw60t8 > *, .framer-PjEs8 .framer-16fi83j > *, .framer-PjEs8 .framer-1c36rig > *, .framer-PjEs8 .framer-1q7og9n > *, .framer-PjEs8 .framer-jh7hx6 > *, .framer-PjEs8 .framer-1ipo78i > *, .framer-PjEs8 .framer-1t6i9ss > *, .framer-PjEs8 .framer-a4vzqn > *, .framer-PjEs8 .framer-qpm1vg > *, .framer-PjEs8 .framer-f37baa > *, .framer-PjEs8 .framer-a32gcg > *, .framer-PjEs8 .framer-yl1zhr > *, .framer-PjEs8 .framer-1oo9av6 > *, .framer-PjEs8 .framer-nf5i0 > *, .framer-PjEs8 .framer-7iaxah > *, .framer-PjEs8 .framer-69epcy > *, .framer-PjEs8 .framer-18n0etx > *, .framer-PjEs8 .framer-tgkp1f > *, .framer-PjEs8 .framer-1ge57y1 > *, .framer-PjEs8 .framer-1w7rglr > *, .framer-PjEs8 .framer-wz479f > *, .framer-PjEs8 .framer-1g5p4fg > *, .framer-PjEs8 .framer-110qoo8 > *, .framer-PjEs8 .framer-2ldtw9 > *, .framer-PjEs8 .framer-gxpfr3 > *, .framer-PjEs8 .framer-1k9z83s > *, .framer-PjEs8 .framer-1t39tiw > *, .framer-PjEs8 .framer-3bvt9c > *, .framer-PjEs8 .framer-pmze1b > *, .framer-PjEs8 .framer-b9wzpc > *, .framer-PjEs8 .framer-mmvc8k > *, .framer-PjEs8 .framer-dp6my6 > *, .framer-PjEs8 .framer-2m41cq > *, .framer-PjEs8 .framer-c8sewc > *, .framer-PjEs8 .framer-1snzakc > *, .framer-PjEs8 .framer-10oe3hp > *, .framer-PjEs8 .framer-17d6wa1 > *, .framer-PjEs8 .framer-gxodip > *, .framer-PjEs8 .framer-19m4gai > *, .framer-PjEs8 .framer-1ao5ke7 > *, .framer-PjEs8 .framer-1jl95jr > *, .framer-PjEs8 .framer-1ao757w > *, .framer-PjEs8 .framer-rfh925 > *, .framer-PjEs8 .framer-vnw4ql > *, .framer-PjEs8 .framer-164ve74 > *, .framer-PjEs8 .framer-7k7cjm > *, .framer-PjEs8 .framer-188ys4i > *, .framer-PjEs8 .framer-1j2xbrl > *, .framer-PjEs8 .framer-448hz8 > *, .framer-PjEs8 .framer-1vf2gmz > *, .framer-PjEs8 .framer-1oomz4g > *, .framer-PjEs8 .framer-35xjic > *, .framer-PjEs8 .framer-qq9ry0 > *, .framer-PjEs8 .framer-18l74lb > *, .framer-PjEs8 .framer-1sf37hu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PjEs8 .framer-bze7r9 > *, .framer-PjEs8 .framer-lz7er3 > *, .framer-PjEs8 .framer-1pp3jq4 > *, .framer-PjEs8 .framer-4xgxxl > *, .framer-PjEs8 .framer-18jqk3e > *, .framer-PjEs8 .framer-i1zccb > *, .framer-PjEs8 .framer-19b9r2w > *, .framer-PjEs8 .framer-1r3e8vm > *, .framer-PjEs8 .framer-18d9ma > *, .framer-PjEs8 .framer-95g435 > *, .framer-PjEs8 .framer-inysdw > *, .framer-PjEs8 .framer-szclkl > *, .framer-PjEs8 .framer-1dlvfn8 > *, .framer-PjEs8 .framer-m4vukr > *, .framer-PjEs8 .framer-9iciuh > *, .framer-PjEs8 .framer-zfb58j > *, .framer-PjEs8 .framer-1yimce1 > *, .framer-PjEs8 .framer-2zy3o8 > *, .framer-PjEs8 .framer-pmk7ey > *, .framer-PjEs8 .framer-1q08ghq > *, .framer-PjEs8 .framer-1hz0um0 > *, .framer-PjEs8 .framer-jl98p3 > *, .framer-PjEs8 .framer-ptdkyb > *, .framer-PjEs8 .framer-1eql1f1 > *, .framer-PjEs8 .framer-13sjra1 > *, .framer-PjEs8 .framer-14t3i1g > *, .framer-PjEs8 .framer-p2qdaq > *, .framer-PjEs8 .framer-mje7oy > *, .framer-PjEs8 .framer-b4w1jm > *, .framer-PjEs8 .framer-184sj3t > *, .framer-PjEs8 .framer-cvpo5d > *, .framer-PjEs8 .framer-xsvn9z > *, .framer-PjEs8 .framer-e2mtk9 > *, .framer-PjEs8 .framer-1pps98f > *, .framer-PjEs8 .framer-1fr1l19 > *, .framer-PjEs8 .framer-12357l0 > *, .framer-PjEs8 .framer-13td28g > *, .framer-PjEs8 .framer-1ux6k1c > *, .framer-PjEs8 .framer-6z43ux > *, .framer-PjEs8 .framer-41jbmq > *, .framer-PjEs8 .framer-nd4wrj > *, .framer-PjEs8 .framer-k4dgo1 > *, .framer-PjEs8 .framer-9qm2yt > *, .framer-PjEs8 .framer-1pb3m3l > *, .framer-PjEs8 .framer-gzatsk > *, .framer-PjEs8 .framer-1xu1mf2 > *, .framer-PjEs8 .framer-1qz2p6k > *, .framer-PjEs8 .framer-13y5p18 > *, .framer-PjEs8 .framer-10v535l > *, .framer-PjEs8 .framer-wvm7gx > *, .framer-PjEs8 .framer-1nzh8xe > *, .framer-PjEs8 .framer-1k6si9c > *, .framer-PjEs8 .framer-5gkfm > *, .framer-PjEs8 .framer-voq8ix > *, .framer-PjEs8 .framer-10dw7dm > *, .framer-PjEs8 .framer-1xhoz1d > *, .framer-PjEs8 .framer-1i95jas > *, .framer-PjEs8 .framer-dkosuc > *, .framer-PjEs8 .framer-bg5j2v > *, .framer-PjEs8 .framer-o6ezou > *, .framer-PjEs8 .framer-4o9j8a > *, .framer-PjEs8 .framer-1i62pmj > *, .framer-PjEs8 .framer-1510i7i > *, .framer-PjEs8 .framer-1oxpgzx > *, .framer-PjEs8 .framer-vlskbc > *, .framer-PjEs8 .framer-1xbplw0 > *, .framer-PjEs8 .framer-spk4vx > *, .framer-PjEs8 .framer-pnsfrv > *, .framer-PjEs8 .framer-51lee6 > *, .framer-PjEs8 .framer-mrv8i > *, .framer-PjEs8 .framer-1m6evd2 > *, .framer-PjEs8 .framer-14x0z1t > *, .framer-PjEs8 .framer-127roj3 > *, .framer-PjEs8 .framer-1tnbkye > *, .framer-PjEs8 .framer-1x6w821 > *, .framer-PjEs8 .framer-1ma3kwt > *, .framer-PjEs8 .framer-2szwco > *, .framer-PjEs8 .framer-nztqjv > *, .framer-PjEs8 .framer-1pdl55m > *, .framer-PjEs8 .framer-11khc9c > *, .framer-PjEs8 .framer-1tebmcx > *, .framer-PjEs8 .framer-1s0b7xd > *, .framer-PjEs8 .framer-6qw0bh > *, .framer-PjEs8 .framer-ld9snd > *, .framer-PjEs8 .framer-14bjsqg > *, .framer-PjEs8 .framer-5voe0q > *, .framer-PjEs8 .framer-d1eyel > *, .framer-PjEs8 .framer-1mpdif1 > *, .framer-PjEs8 .framer-176sxda > *, .framer-PjEs8 .framer-jpdxte > *, .framer-PjEs8 .framer-bdl88v > *, .framer-PjEs8 .framer-19jza4n > *, .framer-PjEs8 .framer-1419kht > *, .framer-PjEs8 .framer-11k4qk3 > *, .framer-PjEs8 .framer-z77n6a > *, .framer-PjEs8 .framer-1tiya9q > *, .framer-PjEs8 .framer-1twvjtj > *, .framer-PjEs8 .framer-1b75hjp > *, .framer-PjEs8 .framer-jyiy8s > *, .framer-PjEs8 .framer-14r86oz > *, .framer-PjEs8 .framer-1hj7yiq > *, .framer-PjEs8 .framer-xxk0kq > *, .framer-PjEs8 .framer-102cubs > *, .framer-PjEs8 .framer-1my8jvi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PjEs8 .framer-150it71 > *, .framer-PjEs8 .framer-1qf634s > *, .framer-PjEs8 .framer-d9jjke > *, .framer-PjEs8 .framer-k8kzq9 > *, .framer-PjEs8 .framer-1kxuktc > *, .framer-PjEs8 .framer-h8ioa0 > *, .framer-PjEs8 .framer-zukgi5 > *, .framer-PjEs8 .framer-1lo0bul > *, .framer-PjEs8 .framer-dws98 > *, .framer-PjEs8 .framer-1y745dl > *, .framer-PjEs8 .framer-13xfku4 > *, .framer-PjEs8 .framer-mw3k2a > *, .framer-PjEs8 .framer-1fxnsbb > *, .framer-PjEs8 .framer-1v6w8re > *, .framer-PjEs8 .framer-7253db > *, .framer-PjEs8 .framer-1j24lvg > *, .framer-PjEs8 .framer-7akqst > *, .framer-PjEs8 .framer-ulr1ev > *, .framer-PjEs8 .framer-664sft > *, .framer-PjEs8 .framer-10adaau > *, .framer-PjEs8 .framer-yfd1z1 > *, .framer-PjEs8 .framer-1wtvrp7 > *, .framer-PjEs8 .framer-c8jtpg > *, .framer-PjEs8 .framer-vg1rst > *, .framer-PjEs8 .framer-14o1700 > *, .framer-PjEs8 .framer-1pkxqsy > *, .framer-PjEs8 .framer-xdf346 > *, .framer-PjEs8 .framer-1izwd4n > *, .framer-PjEs8 .framer-1o9200n > *, .framer-PjEs8 .framer-1jnt8t7 > *, .framer-PjEs8 .framer-1m53bz8 > *, .framer-PjEs8 .framer-1t9vvc4 > *, .framer-PjEs8 .framer-1u9ovb0 > *, .framer-PjEs8 .framer-4owpot > *, .framer-PjEs8 .framer-ybxu5w > *, .framer-PjEs8 .framer-1g0h2is > *, .framer-PjEs8 .framer-13bhbqx > *, .framer-PjEs8 .framer-1whd8to > *, .framer-PjEs8 .framer-1iyac5x > *, .framer-PjEs8 .framer-jmqqb3 > *, .framer-PjEs8 .framer-18ztot6 > *, .framer-PjEs8 .framer-1akt7mm > *, .framer-PjEs8 .framer-10rvayo > *, .framer-PjEs8 .framer-ugb4la > *, .framer-PjEs8 .framer-x6p1sp > *, .framer-PjEs8 .framer-5xctp2 > *, .framer-PjEs8 .framer-1ce99n1 > *, .framer-PjEs8 .framer-17jh9ve > *, .framer-PjEs8 .framer-18m1ues > *, .framer-PjEs8 .framer-1r1cgd2 > *, .framer-PjEs8 .framer-4v0f7a > *, .framer-PjEs8 .framer-289tkg > *, .framer-PjEs8 .framer-11a9qim > *, .framer-PjEs8 .framer-1jy1t3 > *, .framer-PjEs8 .framer-p4n0us > *, .framer-PjEs8 .framer-18alcba > *, .framer-PjEs8 .framer-1fwhzfo > *, .framer-PjEs8 .framer-1qswz5q > *, .framer-PjEs8 .framer-q517v4 > *, .framer-PjEs8 .framer-l1hahi > *, .framer-PjEs8 .framer-h28dm9 > *, .framer-PjEs8 .framer-1ho48n9 > *, .framer-PjEs8 .framer-y6vu60 > *, .framer-PjEs8 .framer-1kaw6oi > *, .framer-PjEs8 .framer-l5tt5p > *, .framer-PjEs8 .framer-s78l7n > *, .framer-PjEs8 .framer-epvrtr > *, .framer-PjEs8 .framer-xrldhe > *, .framer-PjEs8 .framer-1xphn9i > *, .framer-PjEs8 .framer-9c7zlh > *, .framer-PjEs8 .framer-tu5z4g > *, .framer-PjEs8 .framer-xl64ss > *, .framer-PjEs8 .framer-2jlmz6 > *, .framer-PjEs8 .framer-12gt5gg > *, .framer-PjEs8 .framer-74a7cg > *, .framer-PjEs8 .framer-bwax78 > *, .framer-PjEs8 .framer-xq3q6v > *, .framer-PjEs8 .framer-i7s2eg > *, .framer-PjEs8 .framer-1rz4qan > *, .framer-PjEs8 .framer-14syr2q > *, .framer-PjEs8 .framer-1cg3rhd > *, .framer-PjEs8 .framer-1yvkput > *, .framer-PjEs8 .framer-1gxgjsu > *, .framer-PjEs8 .framer-2eqokx > *, .framer-PjEs8 .framer-1xuhts9 > *, .framer-PjEs8 .framer-b832ay > *, .framer-PjEs8 .framer-iepkga > *, .framer-PjEs8 .framer-1i8u88q > *, .framer-PjEs8 .framer-1pdsdku > *, .framer-PjEs8 .framer-rnvq2d > *, .framer-PjEs8 .framer-11biph4 > *, .framer-PjEs8 .framer-1jsi6de > *, .framer-PjEs8 .framer-fwntji > *, .framer-PjEs8 .framer-xgd1f0 > *, .framer-PjEs8 .framer-1u2p5db > *, .framer-PjEs8 .framer-w3d01d > *, .framer-PjEs8 .framer-d26d8s > *, .framer-PjEs8 .framer-1yub4zw > *, .framer-PjEs8 .framer-1krg047 > *, .framer-PjEs8 .framer-151rzed > *, .framer-PjEs8 .framer-1b4f55k > *, .framer-PjEs8 .framer-1fms7bi > *, .framer-PjEs8 .framer-1kh5hwy > *, .framer-PjEs8 .framer-135dk2o > *, .framer-PjEs8 .framer-4hb4kk > *, .framer-PjEs8 .framer-14zwum4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-PjEs8 .framer-171npd4 > *, .framer-PjEs8 .framer-nep0bd > *, .framer-PjEs8 .framer-qnmn55 > *, .framer-PjEs8 .framer-me84oh > *, .framer-PjEs8 .framer-16jsiam > *, .framer-PjEs8 .framer-1j6ict7 > *, .framer-PjEs8 .framer-17yma99 > *, .framer-PjEs8 .framer-1up1cvh > *, .framer-PjEs8 .framer-1rwvzgj > *, .framer-PjEs8 .framer-1989342 > *, .framer-PjEs8 .framer-jf8d40 > *, .framer-PjEs8 .framer-bu9jv5 > *, .framer-PjEs8 .framer-1ftcz73 > *, .framer-PjEs8 .framer-ck0icw > *, .framer-PjEs8 .framer-1ykdtkd > *, .framer-PjEs8 .framer-5t3fkl > *, .framer-PjEs8 .framer-1wibbf6 > *, .framer-PjEs8 .framer-mux3hp > *, .framer-PjEs8 .framer-zvl4u5 > *, .framer-PjEs8 .framer-1x183ov > *, .framer-PjEs8 .framer-1kkzfv6 > *, .framer-PjEs8 .framer-kaki6z > *, .framer-PjEs8 .framer-8tovdi > *, .framer-PjEs8 .framer-19kkrwi > *, .framer-PjEs8 .framer-edj4yl > *, .framer-PjEs8 .framer-r6k2hw > *, .framer-PjEs8 .framer-go1hfm > *, .framer-PjEs8 .framer-i7weua > *, .framer-PjEs8 .framer-kklinq > *, .framer-PjEs8 .framer-g219h7 > *, .framer-PjEs8 .framer-1w75dvx > *, .framer-PjEs8 .framer-f0eueu > *, .framer-PjEs8 .framer-fzv3g8 > *, .framer-PjEs8 .framer-s5teqm > *, .framer-PjEs8 .framer-abga7i > *, .framer-PjEs8 .framer-nxe392 > *, .framer-PjEs8 .framer-1rvzqr0 > *, .framer-PjEs8 .framer-1pn98fb > *, .framer-PjEs8 .framer-t60r3t > *, .framer-PjEs8 .framer-gon6pd > *, .framer-PjEs8 .framer-w3mu2o > *, .framer-PjEs8 .framer-25hkyb > *, .framer-PjEs8 .framer-1vj7v6g > *, .framer-PjEs8 .framer-1bdzjv5 > *, .framer-PjEs8 .framer-qjr4pg > *, .framer-PjEs8 .framer-rwde9u > *, .framer-PjEs8 .framer-1pykwfj > *, .framer-PjEs8 .framer-o7snvp > *, .framer-PjEs8 .framer-jj8tzi > *, .framer-PjEs8 .framer-1td5avd > *, .framer-PjEs8 .framer-ny8zvf > *, .framer-PjEs8 .framer-1t3zas7 > *, .framer-PjEs8 .framer-185gut2 > *, .framer-PjEs8 .framer-dpjovg > *, .framer-PjEs8 .framer-1kg85wt > *, .framer-PjEs8 .framer-1k9gi1r > *, .framer-PjEs8 .framer-1h64cwj > *, .framer-PjEs8 .framer-1s5pz6u > *, .framer-PjEs8 .framer-sy89yc > *, .framer-PjEs8 .framer-9olb07 > *, .framer-PjEs8 .framer-ufwmat > *, .framer-PjEs8 .framer-139g38z > *, .framer-PjEs8 .framer-1wi6iyz > *, .framer-PjEs8 .framer-5n1zx > *, .framer-PjEs8 .framer-b1sl0e > *, .framer-PjEs8 .framer-wcxl4b > *, .framer-PjEs8 .framer-twwum6 > *, .framer-PjEs8 .framer-1jc89sk > *, .framer-PjEs8 .framer-1emftwl > *, .framer-PjEs8 .framer-1ckvswo > *, .framer-PjEs8 .framer-1jsi7ap > *, .framer-PjEs8 .framer-b40iea > *, .framer-PjEs8 .framer-1f91a6b > *, .framer-PjEs8 .framer-w0avyu > *, .framer-PjEs8 .framer-2ok87n > *, .framer-PjEs8 .framer-15qb5a4 > *, .framer-PjEs8 .framer-17un5jq > *, .framer-PjEs8 .framer-1ve6i1y > *, .framer-PjEs8 .framer-z1ren > *, .framer-PjEs8 .framer-1ta51mg > *, .framer-PjEs8 .framer-1m3y8uq > *, .framer-PjEs8 .framer-1tniuuu > *, .framer-PjEs8 .framer-1o6xlac > *, .framer-PjEs8 .framer-zqf9d4 > *, .framer-PjEs8 .framer-380vz7 > *, .framer-PjEs8 .framer-15lvo1m > *, .framer-PjEs8 .framer-1qcdox1 > *, .framer-PjEs8 .framer-j4ka9v > *, .framer-PjEs8 .framer-1jhwjq3 > *, .framer-PjEs8 .framer-t1d3yd > *, .framer-PjEs8 .framer-17os2w9 > *, .framer-PjEs8 .framer-1qb5uvp > *, .framer-PjEs8 .framer-1tl2oih > *, .framer-PjEs8 .framer-c1scb2 > *, .framer-PjEs8 .framer-kps3p3 > *, .framer-PjEs8 .framer-qgsctt > *, .framer-PjEs8 .framer-jtrfdo > *, .framer-PjEs8 .framer-1oejqqe > *, .framer-PjEs8 .framer-1f193zm > *, .framer-PjEs8 .framer-1fxi1ug > *, .framer-PjEs8 .framer-1xm12m2 > *, .framer-PjEs8 .framer-14esery > *, .framer-PjEs8 .framer-1nec09v > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PjEs8 .framer-oepjwv > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-PjEs8 .framer-1ptnti4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-PjEs8.framer-v-jmwodf .framer-1tz7fjv-container, .framer-PjEs8.framer-v-jmwodf .framer-1yim80z, .framer-PjEs8.framer-v-ila7xm .framer-v9m9q3, .framer-PjEs8.framer-v-1f47p03 .framer-a3whe5, .framer-PjEs8.framer-v-4svfhf .framer-ev246w, .framer-PjEs8.framer-v-1k3qv0o .framer-7maeif, .framer-PjEs8.framer-v-1hgdb8l .framer-17pj3de { order: 0; }\",\".framer-PjEs8.framer-v-jmwodf .framer-l6yhz4, .framer-PjEs8.framer-v-jmwodf .framer-1txfqm6, .framer-PjEs8.framer-v-1f47p03 .framer-jolphy, .framer-PjEs8.framer-v-4svfhf .framer-150i2wv, .framer-PjEs8.framer-v-1k3qv0o .framer-3s5w06, .framer-PjEs8.framer-v-1hgdb8l .framer-1jfgttk { order: 4; }\",\".framer-PjEs8.framer-v-jmwodf .framer-1kz53jk, .framer-PjEs8.framer-v-1hgdb8l .framer-pm2e8i-container { order: 10; }\",\".framer-PjEs8.framer-v-jmwodf .framer-fepxj8, .framer-PjEs8.framer-v-1f47p03 .framer-1w2g8bx, .framer-PjEs8.framer-v-4svfhf .framer-kq3vxs, .framer-PjEs8.framer-v-1k3qv0o .framer-169x7o7, .framer-PjEs8.framer-v-1hgdb8l .framer-1kornw8 { order: 1; }\",\".framer-PjEs8.framer-v-jmwodf .framer-wvwr86, .framer-PjEs8.framer-v-1f47p03 .framer-x64xc8, .framer-PjEs8.framer-v-4svfhf .framer-19ae94k, .framer-PjEs8.framer-v-1k3qv0o .framer-t93081, .framer-PjEs8.framer-v-1hgdb8l .framer-1hclao7 { order: 2; }\",\".framer-PjEs8.framer-v-jmwodf .framer-mn71tm, .framer-PjEs8.framer-v-1f47p03 .framer-h50pth, .framer-PjEs8.framer-v-4svfhf .framer-118zcak, .framer-PjEs8.framer-v-1k3qv0o .framer-1i8m1m0, .framer-PjEs8.framer-v-1hgdb8l .framer-1taxiua { order: 3; }\",\".framer-PjEs8.framer-v-jmwodf .framer-u1jord { order: 23; }\",\".framer-PjEs8.framer-v-ila7xm .framer-1lskmg8, .framer-PjEs8.framer-v-1f47p03 .framer-1c3eu08, .framer-PjEs8.framer-v-4svfhf .framer-1b3mgbp, .framer-PjEs8.framer-v-1k3qv0o .framer-1x1rnbf, .framer-PjEs8.framer-v-1hgdb8l .framer-ma0c7w { order: 5; }\",\".framer-PjEs8.framer-v-ila7xm .framer-t84jii, .framer-PjEs8.framer-v-4svfhf .framer-1ipnxup, .framer-PjEs8.framer-v-1k3qv0o .framer-r85xkv-container, .framer-PjEs8.framer-v-1hgdb8l .framer-1gvkgr7 { order: 6; }\",\".framer-PjEs8.framer-v-ila7xm .framer-soiryy, .framer-PjEs8.framer-v-4svfhf .framer-uks6uq, .framer-PjEs8.framer-v-1hgdb8l .framer-19stsrf { order: 7; }\",\".framer-PjEs8.framer-v-ila7xm .framer-1wxo3cu, .framer-PjEs8.framer-v-4svfhf .framer-18dd08r, .framer-PjEs8.framer-v-1hgdb8l .framer-mf0asn { order: 8; }\",\".framer-PjEs8.framer-v-1kuj4s4.framer-cy1nm, .framer-PjEs8.framer-v-rc8921.framer-cy1nm, .framer-PjEs8.framer-v-7auoiw.framer-cy1nm, .framer-PjEs8.framer-v-1k3qv0o.framer-cy1nm, .framer-PjEs8.framer-v-1hgdb8l.framer-cy1nm { padding: 32px; width: 390px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-l6yhz4, .framer-PjEs8.framer-v-rc8921 .framer-l6yhz4 { height: 112px; width: 101%; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-14xm84b { flex-direction: column; gap: 16px; height: 112px; width: 181%; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-1gr9eyn { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); width: 99%; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-msm70r-container, .framer-PjEs8.framer-v-1kuj4s4 .framer-1dd9317-container, .framer-PjEs8.framer-v-1kuj4s4 .framer-1pfchwt-container { align-self: start; justify-self: start; width: 100%; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-15t6qse { gap: 55px; padding: 10px 20px 10px 20px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-vx7bsm { align-content: center; align-items: center; height: min-content; justify-content: center; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-3bvt9c { flex: none; gap: 22px; height: 160px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-1stwjw4, .framer-PjEs8.framer-v-1kuj4s4 .framer-1vcspm3, .framer-PjEs8.framer-v-1kuj4s4 .framer-euf68e, .framer-PjEs8.framer-v-1kuj4s4 .framer-xzr9rz, .framer-PjEs8.framer-v-1kuj4s4 .framer-c25a8r, .framer-PjEs8.framer-v-1kuj4s4 .framer-u6cq9t, .framer-PjEs8.framer-v-1kuj4s4 .framer-1t6oqy0, .framer-PjEs8.framer-v-7auoiw .framer-xzr9rz { flex-direction: column; padding: 0px 20px 0px 20px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-qa14of, .framer-PjEs8.framer-v-1kuj4s4 .framer-jh8p37, .framer-PjEs8.framer-v-1kuj4s4 .framer-zj8ivq, .framer-PjEs8.framer-v-1kuj4s4 .framer-1mtdbxf, .framer-PjEs8.framer-v-1kuj4s4 .framer-114ft8z, .framer-PjEs8.framer-v-1kuj4s4 .framer-19vdwwl, .framer-PjEs8.framer-v-1kuj4s4 .framer-1t2aa5k, .framer-PjEs8.framer-v-1kuj4s4 .framer-fnuvab, .framer-PjEs8.framer-v-1kuj4s4 .framer-1brgd1i, .framer-PjEs8.framer-v-1kuj4s4 .framer-1xe9bii, .framer-PjEs8.framer-v-1kuj4s4 .framer-1eaxydk, .framer-PjEs8.framer-v-1kuj4s4 .framer-19l4anq, .framer-PjEs8.framer-v-1kuj4s4 .framer-1qj610, .framer-PjEs8.framer-v-rc8921 .framer-oap3pf, .framer-PjEs8.framer-v-rc8921 .framer-1dsp7jo, .framer-PjEs8.framer-v-rc8921 .framer-1i476zc, .framer-PjEs8.framer-v-rc8921 .framer-ftrdre, .framer-PjEs8.framer-v-rc8921 .framer-1fyegq1, .framer-PjEs8.framer-v-rc8921 .framer-dms0cr, .framer-PjEs8.framer-v-rc8921 .framer-1b27os9, .framer-PjEs8.framer-v-rc8921 .framer-l5rte0, .framer-PjEs8.framer-v-7auoiw .framer-4j685u, .framer-PjEs8.framer-v-7auoiw .framer-x650as, .framer-PjEs8.framer-v-7auoiw .framer-acjn9g, .framer-PjEs8.framer-v-7auoiw .framer-1t2aa5k { flex: none; width: 100%; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-b9wzpc, .framer-PjEs8.framer-v-1kuj4s4 .framer-mmvc8k, .framer-PjEs8.framer-v-1kuj4s4 .framer-qq9ry0 { height: 159px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-dp6my6, .framer-PjEs8.framer-v-1kuj4s4 .framer-2m41cq, .framer-PjEs8.framer-v-1kuj4s4 .framer-1vf2gmz, .framer-PjEs8.framer-v-7auoiw .framer-q57di3, .framer-PjEs8.framer-v-7auoiw .framer-m3yfg7 { height: 157px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-7k7cjm, .framer-PjEs8.framer-v-1kuj4s4 .framer-448hz8, .framer-PjEs8.framer-v-7auoiw .framer-448hz8 { height: 166px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-188ys4i, .framer-PjEs8.framer-v-1kuj4s4 .framer-35xjic { height: 165px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-12ovgnj, .framer-PjEs8.framer-v-7auoiw .framer-12ovgnj { flex: none; height: min-content; width: 100%; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-1j2xbrl, .framer-PjEs8.framer-v-7auoiw .framer-1j2xbrl { height: 179px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-1oomz4g { height: 169px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-18l74lb { height: 185px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-1sf37hu, .framer-PjEs8.framer-v-rc8921 .framer-jh7hx6 { height: 175px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-u1jord, .framer-PjEs8.framer-v-7auoiw .framer-u1jord { height: min-content; padding: 0px 20px 0px 20px; }\",\".framer-PjEs8.framer-v-1kuj4s4 .framer-1ehnup5-container, .framer-PjEs8.framer-v-7auoiw .framer-1ehnup5-container { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PjEs8.framer-v-1kuj4s4 .framer-14xm84b, .framer-PjEs8.framer-v-1kuj4s4 .framer-1gr9eyn, .framer-PjEs8.framer-v-1kuj4s4 .framer-15t6qse, .framer-PjEs8.framer-v-1kuj4s4 .framer-3bvt9c, .framer-PjEs8.framer-v-1kuj4s4 .framer-1stwjw4, .framer-PjEs8.framer-v-1kuj4s4 .framer-1vcspm3, .framer-PjEs8.framer-v-1kuj4s4 .framer-euf68e, .framer-PjEs8.framer-v-1kuj4s4 .framer-xzr9rz, .framer-PjEs8.framer-v-1kuj4s4 .framer-c25a8r, .framer-PjEs8.framer-v-1kuj4s4 .framer-u6cq9t, .framer-PjEs8.framer-v-1kuj4s4 .framer-1t6oqy0 { gap: 0px; } .framer-PjEs8.framer-v-1kuj4s4 .framer-14xm84b > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-1stwjw4 > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-1vcspm3 > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-euf68e > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-xzr9rz > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-c25a8r > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-u6cq9t > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-1t6oqy0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PjEs8.framer-v-1kuj4s4 .framer-14xm84b > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-3bvt9c > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-1stwjw4 > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-1vcspm3 > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-euf68e > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-xzr9rz > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-c25a8r > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-u6cq9t > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-1t6oqy0 > :first-child { margin-top: 0px; } .framer-PjEs8.framer-v-1kuj4s4 .framer-14xm84b > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-3bvt9c > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-1stwjw4 > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-1vcspm3 > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-euf68e > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-xzr9rz > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-c25a8r > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-u6cq9t > :last-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-1t6oqy0 > :last-child { margin-bottom: 0px; } .framer-PjEs8.framer-v-1kuj4s4 .framer-1gr9eyn > *, .framer-PjEs8.framer-v-1kuj4s4 .framer-1gr9eyn > :first-child, .framer-PjEs8.framer-v-1kuj4s4 .framer-1gr9eyn > :last-child { margin: 0px; } .framer-PjEs8.framer-v-1kuj4s4 .framer-15t6qse > * { margin: 0px; margin-left: calc(55px / 2); margin-right: calc(55px / 2); } .framer-PjEs8.framer-v-1kuj4s4 .framer-15t6qse > :first-child { margin-left: 0px; } .framer-PjEs8.framer-v-1kuj4s4 .framer-15t6qse > :last-child { margin-right: 0px; } .framer-PjEs8.framer-v-1kuj4s4 .framer-3bvt9c > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\",\".framer-PjEs8.framer-v-rc8921 .framer-1kz53jk { gap: 20px; overflow: visible; padding: 20px; width: 100%; }\",\".framer-PjEs8.framer-v-rc8921 .framer-fepxj8, .framer-PjEs8.framer-v-rc8921 .framer-wvwr86, .framer-PjEs8.framer-v-rc8921 .framer-mn71tm, .framer-PjEs8.framer-v-rc8921 .framer-1txfqm6, .framer-PjEs8.framer-v-7auoiw .framer-v9m9q3, .framer-PjEs8.framer-v-7auoiw .framer-1lskmg8 { flex-direction: column; }\",\".framer-PjEs8.framer-v-rc8921 .framer-cm8fba, .framer-PjEs8.framer-v-rc8921 .framer-1hw60t8 { height: 164px; }\",\".framer-PjEs8.framer-v-rc8921 .framer-jb2rpw { height: 162px; }\",\".framer-PjEs8.framer-v-rc8921 .framer-1k6si9c { gap: 0px; }\",\".framer-PjEs8.framer-v-rc8921 .framer-16fi83j { height: 202px; }\",\".framer-PjEs8.framer-v-rc8921 .framer-1c36rig { height: 176px; }\",\".framer-PjEs8.framer-v-rc8921 .framer-1q7og9n, .framer-PjEs8.framer-v-7auoiw .framer-1nh09uh { height: 180px; }\",\".framer-PjEs8.framer-v-rc8921 .framer-1ipo78i { height: 198px; }\",\".framer-PjEs8.framer-v-rc8921 .framer-1epzd4o { height: min-content; }\",\".framer-PjEs8.framer-v-rc8921 .framer-1t6i9ss { flex: none; height: 189px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PjEs8.framer-v-rc8921 .framer-1kz53jk, .framer-PjEs8.framer-v-rc8921 .framer-fepxj8, .framer-PjEs8.framer-v-rc8921 .framer-wvwr86, .framer-PjEs8.framer-v-rc8921 .framer-1k6si9c, .framer-PjEs8.framer-v-rc8921 .framer-mn71tm, .framer-PjEs8.framer-v-rc8921 .framer-1txfqm6 { gap: 0px; } .framer-PjEs8.framer-v-rc8921 .framer-1kz53jk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PjEs8.framer-v-rc8921 .framer-1kz53jk > :first-child, .framer-PjEs8.framer-v-rc8921 .framer-fepxj8 > :first-child, .framer-PjEs8.framer-v-rc8921 .framer-wvwr86 > :first-child, .framer-PjEs8.framer-v-rc8921 .framer-1k6si9c > :first-child, .framer-PjEs8.framer-v-rc8921 .framer-mn71tm > :first-child, .framer-PjEs8.framer-v-rc8921 .framer-1txfqm6 > :first-child { margin-top: 0px; } .framer-PjEs8.framer-v-rc8921 .framer-1kz53jk > :last-child, .framer-PjEs8.framer-v-rc8921 .framer-fepxj8 > :last-child, .framer-PjEs8.framer-v-rc8921 .framer-wvwr86 > :last-child, .framer-PjEs8.framer-v-rc8921 .framer-1k6si9c > :last-child, .framer-PjEs8.framer-v-rc8921 .framer-mn71tm > :last-child, .framer-PjEs8.framer-v-rc8921 .framer-1txfqm6 > :last-child { margin-bottom: 0px; } .framer-PjEs8.framer-v-rc8921 .framer-fepxj8 > *, .framer-PjEs8.framer-v-rc8921 .framer-wvwr86 > *, .framer-PjEs8.framer-v-rc8921 .framer-mn71tm > *, .framer-PjEs8.framer-v-rc8921 .framer-1txfqm6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PjEs8.framer-v-rc8921 .framer-1k6si9c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-PjEs8.framer-v-7auoiw .framer-1unfnpk { gap: 20px; padding: 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PjEs8.framer-v-7auoiw .framer-1unfnpk, .framer-PjEs8.framer-v-7auoiw .framer-v9m9q3, .framer-PjEs8.framer-v-7auoiw .framer-1lskmg8, .framer-PjEs8.framer-v-7auoiw .framer-xzr9rz { gap: 0px; } .framer-PjEs8.framer-v-7auoiw .framer-1unfnpk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PjEs8.framer-v-7auoiw .framer-1unfnpk > :first-child, .framer-PjEs8.framer-v-7auoiw .framer-v9m9q3 > :first-child, .framer-PjEs8.framer-v-7auoiw .framer-1lskmg8 > :first-child, .framer-PjEs8.framer-v-7auoiw .framer-xzr9rz > :first-child { margin-top: 0px; } .framer-PjEs8.framer-v-7auoiw .framer-1unfnpk > :last-child, .framer-PjEs8.framer-v-7auoiw .framer-v9m9q3 > :last-child, .framer-PjEs8.framer-v-7auoiw .framer-1lskmg8 > :last-child, .framer-PjEs8.framer-v-7auoiw .framer-xzr9rz > :last-child { margin-bottom: 0px; } .framer-PjEs8.framer-v-7auoiw .framer-v9m9q3 > *, .framer-PjEs8.framer-v-7auoiw .framer-1lskmg8 > *, .framer-PjEs8.framer-v-7auoiw .framer-xzr9rz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-PjEs8.framer-v-1hgdb8l .framer-10389of { order: 9; }\",...sharedStyle.css,'.framer-PjEs8[data-border=\"true\"]::after, .framer-PjEs8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4996.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IvrA3l4jv\":{\"layout\":[\"fixed\",\"auto\"]},\"qAq98Zipt\":{\"layout\":[\"fixed\",\"auto\"]},\"Mf6dVh02y\":{\"layout\":[\"fixed\",\"auto\"]},\"LzqmhSlsF\":{\"layout\":[\"fixed\",\"auto\"]},\"mEN3mMb75\":{\"layout\":[\"fixed\",\"auto\"]},\"jLubNOVOy\":{\"layout\":[\"fixed\",\"auto\"]},\"FjZkqM0mS\":{\"layout\":[\"fixed\",\"auto\"]},\"XOeqn6wd3\":{\"layout\":[\"fixed\",\"auto\"]},\"hjqV5Anxq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JaVe4n8g3\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersN6UsNGzE=withCSS(Component,css,\"framer-PjEs8\");export default FramersN6UsNGzE;FramersN6UsNGzE.displayName=\"Projects 2\";FramersN6UsNGzE.defaultProps={height:4996.5,width:1200};addPropertyControls(FramersN6UsNGzE,{variant:{options:[\"juefN1fGz\",\"IvrA3l4jv\",\"qAq98Zipt\",\"Mf6dVh02y\",\"LzqmhSlsF\",\"mEN3mMb75\",\"jLubNOVOy\",\"FjZkqM0mS\",\"XOeqn6wd3\",\"hjqV5Anxq\"],optionTitles:[\"Variant 1\",\"Variant AR\",\"Variant VR\",\"Variant MV\",\"Variant DT\",\"Variant Primary mobile\",\"Variant ar mobile\",\"Variant vr mobile\",\"Variant mv mobile\",\"Variant event tech mobile\"],title:\"Variant\",type:ControlType.Enum},JaVe4n8g3:{title:\"Link\",type:ControlType.Link}});addFonts(FramersN6UsNGzE,[{explicitInter:true,fonts:[{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYASsJuXFGVOQ.woff2\",weight:\"700\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEASsJuXFGVOQ.woff2\",weight:\"400\"}]},...SectionTitleFonts,...VirtualSpaceTagCopy2Fonts,...CardsProjectCardFonts,...IconButtonMediumFonts,...VRTagFonts,...VRTag1Fonts,...VirtualSpaceTagFonts,...CardsProjectCardCopy4Fonts,...ARTagFonts,...ARTag1Fonts,...ButtonLargeFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersN6UsNGzE\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"JaVe4n8g3\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"4996.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IvrA3l4jv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qAq98Zipt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mf6dVh02y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LzqmhSlsF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mEN3mMb75\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jLubNOVOy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FjZkqM0mS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XOeqn6wd3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hjqV5Anxq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sN6UsNGzE.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import SectionsFooter from\"#framer/local/canvasComponent/DN6PLbI3l/DN6PLbI3l.js\";import SectionsClients3 from\"#framer/local/canvasComponent/fkR7DrELt/fkR7DrELt.js\";import Navbar from\"#framer/local/canvasComponent/Lt7PHfVyb/Lt7PHfVyb.js\";import SectionsContacts from\"#framer/local/canvasComponent/Q0HB0HPqa/Q0HB0HPqa.js\";import SectionsBlog from\"#framer/local/canvasComponent/r26h4XIxz/r26h4XIxz.js\";import Projects2 from\"#framer/local/canvasComponent/sN6UsNGzE/sN6UsNGzE.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const MotionSectionWithFX=withFX(motion.section);const VideoFonts=getFonts(Video);const CarouselFonts=getFonts(Carousel);const SectionsClients3Fonts=getFonts(SectionsClients3);const ContainerWithFX=withFX(Container);const Projects2Fonts=getFonts(Projects2);const SectionsBlogFonts=getFonts(SectionsBlog);const SectionsContactsFonts=getFonts(SectionsContacts);const SectionsFooterFonts=getFonts(SectionsFooter);const breakpoints={AH21Al9qu:\"(max-width: 819px)\",HPLcNW8Nh:\"(min-width: 820px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FMxpn\";const variantClassNames={AH21Al9qu:\"framer-v-19ytcto\",HPLcNW8Nh:\"framer-v-19wecj1\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition1={damping:30,delay:0,mass:4,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:150};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:2269,x:0,y:100};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:2269,transition:transition1,x:0,y:100};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"AH21Al9qu\",Tablet:\"HPLcNW8Nh\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-FMxpn`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-FMxpn`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"AH21Al9qu\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AH21Al9qu\")return true;return false;};const elementId=useRouteElementId(\"mm5dzraDM\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"Kvacv1hhY\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined},{href:{webPageId:\"DyozGniW_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ks4hkq-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{kXSOIS5b0:resolvedLinks[2],variant:\"s10dOC2B9\"},HPLcNW8Nh:{kXSOIS5b0:resolvedLinks[1],variant:\"s10dOC2B9\"}},children:/*#__PURE__*/_jsx(Navbar,{DpIHspzBf:true,DTfbtvgCQ:\"Contacts\",height:\"100%\",id:\"MnvxUWnwl\",KUeIFM3LX:\"Blogs\",kXSOIS5b0:resolvedLinks[0],layoutId:\"MnvxUWnwl\",lXkYe29GX:true,oKxUKQinm:true,qLpjETDSl:\"About Us\",qu_DPw8tb:true,S2iYOIddt:true,style:{width:\"100%\"},uhFdBaKer:\"Projects\",variant:\"jhMPOTUbi\",width:\"100%\",XVWnoEgFC:\"Home\"})})})})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11imc36\",\"data-framer-name\":\"Hero\",name:\"Hero\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:[\"A place where\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" reality \"}),\"gets a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"makeover\"})]})})},HPLcNW8Nh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"100px\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:[\"A place where\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" reality \"}),\"gets a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"makeover\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stNzAw\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"96px\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:[\"A place where\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" reality \"}),\"gets a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"makeover\"})]})}),className:\"framer-145fg0\",fonts:[\"GF;Schibsted Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},children:\"We assist brands create experiential solutions\u2014smart, collaborative, and fun.\"})})},HPLcNW8Nh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-63c6f242-3781-443e-b892-9d92e7758a82, rgb(0, 0, 0))\"},children:\"We assist brands create experiential solutions\u2014smart, collaborative, and fun.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2NoaWJzdGVkIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"We assist brands create experiential solutions\u2014smart, collaborative, and fun.\"})}),className:\"framer-by0zmo\",fonts:[\"GF;Schibsted Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tbtwrm-container hidden-19ytcto\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(0, 0, 0)\",arrowPadding:1,arrowRadius:52,arrowSize:51,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:100,height:\"100%\",id:\"Oi5tsosNN\",layoutId:\"Oi5tsosNN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024.8,intrinsicWidth:504,pixelHeight:1281,pixelWidth:630,sizes:\"244px\",src:\"https://framerusercontent.com/images/hPcvUrF5iTXQC7UxZOdyB0w4.png\",srcSet:\"https://framerusercontent.com/images/hPcvUrF5iTXQC7UxZOdyB0w4.png 630w\"},className:\"framer-7k4a2w\",\"data-framer-name\":\"espn\",name:\"espn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i2irqi-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,canvasPlay:true,controls:false,height:\"100%\",id:\"n7g2lK1ht\",isMixedBorderRadius:false,layoutId:\"n7g2lK1ht\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/5VMMrzMEpuptNPUrYtkN57jaQ.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024.8,intrinsicWidth:504,pixelHeight:1281,pixelWidth:630,sizes:\"244px\",src:\"https://framerusercontent.com/images/hPcvUrF5iTXQC7UxZOdyB0w4.png\",srcSet:\"https://framerusercontent.com/images/hPcvUrF5iTXQC7UxZOdyB0w4.png 630w\"},className:\"framer-ovoouy\",\"data-framer-name\":\"Meetaverse\",name:\"Meetaverse\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18s6z26-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,canvasPlay:true,controls:false,height:\"100%\",id:\"b8KlMIo3L\",isMixedBorderRadius:false,layoutId:\"b8KlMIo3L\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/wFzpmevge75bM5TpiEIEzVpvkYI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024.8,intrinsicWidth:504,pixelHeight:1281,pixelWidth:630,sizes:\"244px\",src:\"https://framerusercontent.com/images/hPcvUrF5iTXQC7UxZOdyB0w4.png\",srcSet:\"https://framerusercontent.com/images/hPcvUrF5iTXQC7UxZOdyB0w4.png 630w\"},className:\"framer-f4slo5\",\"data-framer-name\":\"Pitstop\",name:\"Pitstop\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dt6zvn-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,canvasPlay:true,controls:false,height:\"100%\",id:\"qLQS4jZ0C\",isMixedBorderRadius:false,layoutId:\"qLQS4jZ0C\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/ULHvBFCFFJOdzK92ikglJASgg.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k5ts07 hidden-72rtr7 hidden-19wecj1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hkqtqf\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u8te8y\",\"data-framer-name\":\"Line\",name:\"Line\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{width:\"calc(100vw - 60px)\",y:401}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3feg37-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionsClients3,{height:\"100%\",id:\"hgFA3PrCp\",layoutId:\"hgFA3PrCp\",style:{width:\"100%\"},variant:\"oT1AAkJzL\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c53dkx hidden-19ytcto\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hab502\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uxoswc\",\"data-framer-name\":\"Line\",name:\"Line\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HPLcNW8Nh:{width:\"calc(100vw - 60px)\",y:1091}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:\"1140px\",y:1103,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2lg8he-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HPLcNW8Nh:{variant:\"t4HbvBuhe\"}},children:/*#__PURE__*/_jsx(SectionsClients3,{height:\"100%\",id:\"xjyUoaIVL\",layoutId:\"xjyUoaIVL\",style:{width:\"100%\"},variant:\"SmjbB_d7w\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kSen_vtmW\"},implicitPathVariables:undefined},{href:{webPageId:\"kSen_vtmW\"},implicitPathVariables:undefined},{href:{webPageId:\"kSen_vtmW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{width:\"100vw\",y:770},HPLcNW8Nh:{width:\"100vw\",y:1475}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4463,width:\"1200px\",y:1487,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o7gw7b-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{JaVe4n8g3:resolvedLinks1[2],variant:\"mEN3mMb75\"},HPLcNW8Nh:{JaVe4n8g3:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Projects2,{height:\"100%\",id:\"mm5dzraDM\",JaVe4n8g3:resolvedLinks1[0],layoutId:\"mm5dzraDM\",style:{width:\"100%\"},variant:\"juefN1fGz\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xddeaa-container hidden-19ytcto\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HPLcNW8Nh:{variant:\"JOqPmjOx0\"}},children:/*#__PURE__*/_jsx(SectionsBlog,{height:\"100%\",id:\"UoXfI53AX\",layoutId:\"UoXfI53AX\",style:{width:\"100%\"},variant:\"evF21hKAN\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{width:\"100vw\",y:5233},HPLcNW8Nh:{width:\"100vw\",y:6673}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:734,width:\"1097px\",y:6685,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16l27ip-container\",id:elementId1,ref:ref3,style:{transformPerspective:2269},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{variant:\"ObjGPWUBo\"},HPLcNW8Nh:{variant:\"W1DRTsH9l\"}},children:/*#__PURE__*/_jsx(SectionsContacts,{height:\"100%\",id:\"Kvacv1hhY\",layoutId:\"Kvacv1hhY\",style:{width:\"100%\"},variant:\"SvqEoijCQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{y:5967},HPLcNW8Nh:{y:7407}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100vw\",y:7419,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hl7pgu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AH21Al9qu:{style:{width:\"100%\"},variant:\"VF1axD6jj\"},HPLcNW8Nh:{variant:\"I0G4sMhuR\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{CbFY2y_QH:\"Cookie Policy\",fKhNAekEL:\"\\xa9 2025 - NXT Interactive Pte. Ltd.\",FLt9cUwfE:true,height:\"100%\",id:\"myHig911z\",layoutId:\"myHig911z\",style:{height:\"100%\",width:\"100%\"},ThsQasI0W:true,variant:\"VDZWvLT79\",VU2pc28A1:\"Privacy Policy \",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jrf3f5 hidden-19ytcto\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oj2uzu\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yrsfiz\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-optq82\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14z4wb7\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nswdld\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h29sy8\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9nk13j\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-153xnqn\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14wd07b\",\"data-framer-name\":\"Line\",name:\"Line\"})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-FMxpn { background: var(--token-04a3f1b0-e024-4c12-967c-3112bcf4a142, rgb(255, 255, 255)); }`,\".framer-FMxpn.framer-lux5qc, .framer-FMxpn .framer-lux5qc { display: block; }\",\".framer-FMxpn.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-04a3f1b0-e024-4c12-967c-3112bcf4a142, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-FMxpn .framer-1ks4hkq-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-FMxpn .framer-11imc36 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 134px 30px 48px 30px; position: relative; width: 1200px; z-index: 1; }\",\".framer-FMxpn .framer-145fg0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-FMxpn .framer-by0zmo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FMxpn .framer-tbtwrm-container { flex: none; height: 568px; position: relative; width: 1000px; }\",\".framer-FMxpn .framer-7k4a2w, .framer-FMxpn .framer-ovoouy, .framer-FMxpn .framer-f4slo5 { aspect-ratio: 0.49180327868852464 / 1; height: var(--framer-aspect-ratio-supported, 496px); overflow: visible; position: relative; width: 244px; }\",\".framer-FMxpn .framer-1i2irqi-container { flex: none; height: 476px; left: calc(50.00000000000002% - 221px / 2); position: absolute; top: calc(50.00000000000002% - 476px / 2); width: 221px; }\",\".framer-FMxpn .framer-18s6z26-container { flex: none; height: 478px; left: calc(50.00000000000002% - 221px / 2); position: absolute; top: calc(49.79838709677421% - 478px / 2); width: 221px; }\",\".framer-FMxpn .framer-dt6zvn-container { flex: none; height: 475px; left: calc(50.00000000000002% - 221px / 2); position: absolute; top: calc(50.00000000000002% - 475px / 2); width: 221px; }\",\".framer-FMxpn .framer-1k5ts07 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 30px 15px 30px; position: relative; width: 100%; }\",\".framer-FMxpn .framer-hkqtqf, .framer-FMxpn .framer-1hab502 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FMxpn .framer-u8te8y { background: linear-gradient(271deg, #C81D77 0%, #6710C2 100%); flex: none; height: 2px; position: relative; width: 85%; }\",\".framer-FMxpn .framer-3feg37-container, .framer-FMxpn .framer-2lg8he-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-FMxpn .framer-1c53dkx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1200px; }\",\".framer-FMxpn .framer-uxoswc { background: linear-gradient(271deg, #C81D77 0%, #6710C2 100%); flex: none; height: 2px; position: relative; width: 99%; }\",\".framer-FMxpn .framer-1o7gw7b-container { flex: none; height: auto; position: relative; scroll-margin-top: 32px; width: 1200px; z-index: 1; }\",\".framer-FMxpn .framer-xddeaa-container { flex: none; height: auto; position: relative; width: 1200px; z-index: 1; }\",\".framer-FMxpn .framer-16l27ip-container { flex: none; height: auto; position: relative; width: 1097px; z-index: 1; }\",\".framer-FMxpn .framer-1hl7pgu-container { flex: none; height: 96px; position: relative; width: 100%; z-index: 1; }\",\".framer-FMxpn .framer-jrf3f5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: -1975px; overflow: hidden; padding: 0px; position: absolute; top: -562px; width: 1200px; z-index: 0; }\",\".framer-FMxpn .framer-oj2uzu, .framer-FMxpn .framer-yrsfiz, .framer-FMxpn .framer-optq82, .framer-FMxpn .framer-14z4wb7, .framer-FMxpn .framer-nswdld, .framer-FMxpn .framer-1h29sy8, .framer-FMxpn .framer-9nk13j, .framer-FMxpn .framer-153xnqn, .framer-FMxpn .framer-14wd07b { background-color: var(--token-63c6f242-3781-443e-b892-9d92e7758a82, #000000); flex: none; height: 100%; opacity: 0.05; overflow: hidden; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FMxpn.framer-72rtr7, .framer-FMxpn .framer-11imc36, .framer-FMxpn .framer-1k5ts07, .framer-FMxpn .framer-hkqtqf, .framer-FMxpn .framer-1c53dkx, .framer-FMxpn .framer-1hab502 { gap: 0px; } .framer-FMxpn.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FMxpn.framer-72rtr7 > :first-child, .framer-FMxpn .framer-11imc36 > :first-child, .framer-FMxpn .framer-1k5ts07 > :first-child, .framer-FMxpn .framer-hkqtqf > :first-child, .framer-FMxpn .framer-1c53dkx > :first-child, .framer-FMxpn .framer-1hab502 > :first-child { margin-top: 0px; } .framer-FMxpn.framer-72rtr7 > :last-child, .framer-FMxpn .framer-11imc36 > :last-child, .framer-FMxpn .framer-1k5ts07 > :last-child, .framer-FMxpn .framer-hkqtqf > :last-child, .framer-FMxpn .framer-1c53dkx > :last-child, .framer-FMxpn .framer-1hab502 > :last-child { margin-bottom: 0px; } .framer-FMxpn .framer-11imc36 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-FMxpn .framer-1k5ts07 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-FMxpn .framer-hkqtqf > *, .framer-FMxpn .framer-1hab502 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FMxpn .framer-1c53dkx > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } }\",`@media (min-width: 820px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-FMxpn { background: var(--token-04a3f1b0-e024-4c12-967c-3112bcf4a142, rgb(255, 255, 255)); } .framer-FMxpn.framer-72rtr7 { width: 820px; } .framer-FMxpn .framer-1ks4hkq-container { order: 0; } .framer-FMxpn .framer-11imc36 { order: 1; padding: 134px 72px 32px 72px; width: 100%; } .framer-FMxpn .framer-tbtwrm-container { order: 2; width: 648px; } .framer-FMxpn .framer-1c53dkx { order: 4; width: 100%; } .framer-FMxpn .framer-1hab502 { padding: 0px 15px 0px 15px; } .framer-FMxpn .framer-uxoswc { width: 97%; } .framer-FMxpn .framer-1o7gw7b-container { order: 7; width: 100%; } .framer-FMxpn .framer-xddeaa-container { order: 8; width: 100%; } .framer-FMxpn .framer-16l27ip-container { order: 9; width: 100%; } .framer-FMxpn .framer-1hl7pgu-container { order: 10; } .framer-FMxpn .framer-jrf3f5 { order: 12; width: 810px; }}`,`@media (max-width: 819px) { .${metadata.bodyClassName}-framer-FMxpn { background: var(--token-04a3f1b0-e024-4c12-967c-3112bcf4a142, rgb(255, 255, 255)); } .framer-FMxpn.framer-72rtr7 { width: 390px; } .framer-FMxpn .framer-1ks4hkq-container { order: 0; z-index: 10; } .framer-FMxpn .framer-11imc36 { gap: 20px; order: 1; padding: 134px 30px 15px 30px; width: 100%; } .framer-FMxpn .framer-1k5ts07 { order: 3; } .framer-FMxpn .framer-1o7gw7b-container { order: 7; width: 100%; } .framer-FMxpn .framer-16l27ip-container { order: 10; width: 100%; } .framer-FMxpn .framer-1hl7pgu-container { height: auto; order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FMxpn .framer-11imc36 { gap: 0px; } .framer-FMxpn .framer-11imc36 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-FMxpn .framer-11imc36 > :first-child { margin-top: 0px; } .framer-FMxpn .framer-11imc36 > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7483\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HPLcNW8Nh\":{\"layout\":[\"fixed\",\"auto\"]},\"AH21Al9qu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-FMxpn\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7483,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYASsJuXFGVOQ.woff2\",weight:\"700\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEASsJuXFGVOQ.woff2\",weight:\"400\"}]},...NavbarFonts,...VideoFonts,...CarouselFonts,...SectionsClients3Fonts,...Projects2Fonts,...SectionsBlogFonts,...SectionsContactsFonts,...SectionsFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7483\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HPLcNW8Nh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AH21Al9qu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "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", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "heading", "heading1", "height", "id", "title", "title1", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DpKg_4RDt", "rZlInkDBu", "ywbVTjRMA", "sQwz5OMsT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerEqphU1N3f", "withCSS", "EqphU1N3f_default", "addPropertyControls", "ControlType", "addFonts", "SectionTitleCopy3Fonts", "getFonts", "EqphU1N3f_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapvle6om", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerdPJ3UoO_3", "withCSS", "dPJ3UoO_3_default", "addPropertyControls", "ControlType", "addFonts", "SectionsClientsCopy3Fonts", "getFonts", "dPJ3UoO_3_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Variants", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1cxz6ps", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "css", "FramerfkR7DrELt", "withCSS", "fkR7DrELt_default", "addPropertyControls", "ControlType", "addFonts", "h", "u", "v", "b", "e", "r", "t", "y", "x", "a", "re", "MotionConfigContext", "o", "n", "se", "p", "w", "i", "k", "T", "Y", "useLocaleInfo", "s", "g", "P", "R", "Z", "G", "J", "S", "j", "z", "A", "K", "useVariantState", "u", "h", "C", "pe", "U", "ae", "LayoutGroup", "motion", "cx", "Link", "RichText2", "withCSS", "PxPxOELXy_default", "addPropertyControls", "ControlType", "addFonts", "SectionTitleFonts", "getFonts", "C0YtMqVlM_default", "VirtualSpaceTagCopy2Fonts", "B0JoF7LnC_default", "MotionSectionWithFX", "withFX", "motion", "CardsProjectCardFonts", "XarVV9L9h_default", "IconButtonMediumFonts", "ywDS_cJaX_default", "VRTagFonts", "BdlZyYryx_default", "VRTag1Fonts", "VirtualSpaceTagFonts", "OyOsOY8ho_default", "CardsProjectCardCopy4Fonts", "BtQJb4KAc_default", "ARTagFonts", "PxPxOELXy_default", "ARTag1Fonts", "ButtonLargeFonts", "mkhfj13sI_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "JaVe4n8g3", "jU5kfKgp4XarVV9L9h", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "uWD9LyBnX11bbrx5", "args", "uWD9LyBnX1yc83ec", "uWD9LyBnX1jgunv9", "uWD9LyBnX1rt7z2", "uWD9LyBnX1e40p8c", "uWD9LyBnX1us64sb", "uWD9LyBnX1v0l3qo", "uWD9LyBnX1qsnf38", "uWD9LyBnXbnmxmx", "uWD9LyBnX66ye21", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "router", "useRouter", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "resolvedLinks21", "resolvedLinks22", "resolvedLinks23", "resolvedLinks24", "resolvedLinks25", "resolvedLinks26", "resolvedLinks27", "resolvedLinks28", "resolvedLinks29", "resolvedLinks30", "resolvedLinks31", "resolvedLinks32", "resolvedLinks33", "resolvedLinks34", "resolvedLinks35", "resolvedLinks36", "resolvedLinks37", "resolvedLinks38", "resolvedLinks39", "resolvedLinks40", "resolvedLinks41", "resolvedLinks42", "resolvedLinks43", "resolvedLinks44", "resolvedLinks45", "resolvedLinks46", "resolvedLinks47", "resolvedLinks48", "resolvedLinks49", "resolvedLinks50", "resolvedLinks51", "resolvedLinks52", "resolvedLinks53", "resolvedLinks54", "resolvedLinks55", "resolvedLinks56", "resolvedLinks57", "resolvedLinks58", "resolvedLinks59", "resolvedLinks60", "resolvedLinks61", "resolvedLinks62", "resolvedLinks63", "resolvedLinks64", "resolvedLinks65", "resolvedLinks66", "resolvedLinks67", "resolvedLinks68", "resolvedLinks69", "resolvedLinks70", "resolvedLinks71", "resolvedLinks72", "resolvedLinks73", "resolvedLinks74", "resolvedLinks75", "resolvedLinks76", "resolvedLinks77", "resolvedLinks78", "resolvedLinks79", "resolvedLinks80", "resolvedLinks81", "resolvedLinks82", "resolvedLinks83", "resolvedLinks84", "resolvedLinks85", "resolvedLinks86", "resolvedLinks87", "resolvedLinks88", "resolvedLinks89", "resolvedLinks90", "resolvedLinks91", "resolvedLinks92", "resolvedLinks93", "resolvedLinks94", "resolvedLinks95", "resolvedLinks96", "resolvedLinks97", "resolvedLinks98", "resolvedLinks99", "resolvedLinks100", "resolvedLinks101", "resolvedLinks102", "resolvedLinks103", "resolvedLinks104", "resolvedLinks105", "resolvedLinks106", "resolvedLinks107", "resolvedLinks108", "css", "FramersN6UsNGzE", "withCSS", "sN6UsNGzE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavbarFonts", "getFonts", "Lt7PHfVyb_default", "MotionSectionWithFX", "withFX", "motion", "VideoFonts", "Video", "CarouselFonts", "Carousel", "SectionsClients3Fonts", "fkR7DrELt_default", "ContainerWithFX", "Container", "Projects2Fonts", "sN6UsNGzE_default", "SectionsBlogFonts", "r26h4XIxz_default", "SectionsContactsFonts", "Q0HB0HPqa_default", "SectionsFooterFonts", "DN6PLbI3l_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "animation3", "animation4", "animation5", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText2", "Image2", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
