{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/8hZEmKEKbX5mIAjKPXIo/K5bhjfw7Fzu6tgUeVp5C/XTQE6JPaC.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},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:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},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:-100,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:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */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\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&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},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */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\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (861d57e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SecondaryButton from\"https://framerusercontent.com/modules/n0WkW5vkF1HcEBDdwQwy/0XZdoEcTuU02J5ibxm6c/ixTf5v1_B.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import SecondaryButton2 from\"https://framerusercontent.com/modules/zRKC9bC7dMIkwxSXHkIV/dzgbXNkMs1Tsu1SI54D5/F0XpPyQzV.js\";const SecondaryButton2Fonts=getFonts(SecondaryButton2);const SecondaryButtonFonts=getFonts(SecondaryButton);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"Ks5dsOYkT\",\"Cnr8gUiEH\",\"ojHgMUm6I\",\"jIW_VchTa\",\"l6GYqtOKV\",\"OcofTXnOJ\",\"ixGPx5Nj7\"];const serializationHash=\"framer-yd8JX\";const variantClassNames={Cnr8gUiEH:\"framer-v-1g0qayy\",ixGPx5Nj7:\"framer-v-1v6ilvf\",jIW_VchTa:\"framer-v-1z5sz1\",Ks5dsOYkT:\"framer-v-1uhhsxu\",l6GYqtOKV:\"framer-v-8cdyzg\",OcofTXnOJ:\"framer-v-1d7weex\",ojHgMUm6I:\"framer-v-qb9pbr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 E-commerce\":\"l6GYqtOKV\",\"Desktop Healthcare\":\"jIW_VchTa\",\"Tablet E-commerce\":\"ixGPx5Nj7\",\"Tablet Healthcare\":\"OcofTXnOJ\",Desktop:\"Ks5dsOYkT\",Mobile:\"ojHgMUm6I\",Tablet:\"Cnr8gUiEH\"};const getProps=({height,id,visible,visible2,visible3,width,...props})=>{return{...props,Ihu2nJotx:visible2??props.Ihu2nJotx??true,PAeZHSCBc:visible3??props.PAeZHSCBc??true,smbt7dfR4:visible??props.smbt7dfR4??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ks5dsOYkT\"};};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,smbt7dfR4,Ihu2nJotx,PAeZHSCBc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ks5dsOYkT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap24h02=activeVariantCallback(async(...args)=>{setVariant(\"Ks5dsOYkT\");});const onTapfo64gl=activeVariantCallback(async(...args)=>{setVariant(\"Cnr8gUiEH\");});const onTap18npads=activeVariantCallback(async(...args)=>{setVariant(\"jIW_VchTa\");});const onTapo544tf=activeVariantCallback(async(...args)=>{setVariant(\"OcofTXnOJ\");});const onTapwdli9p=activeVariantCallback(async(...args)=>{setVariant(\"l6GYqtOKV\");});const onTapgpoqvh=activeVariantCallback(async(...args)=>{setVariant(\"ixGPx5Nj7\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ojHgMUm6I\")return false;return true;};const isDisplayed1=()=>{if([\"Cnr8gUiEH\",\"ojHgMUm6I\",\"jIW_VchTa\",\"l6GYqtOKV\",\"OcofTXnOJ\",\"ixGPx5Nj7\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"ojHgMUm6I\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"l6GYqtOKV\")return true;return false;};const isDisplayed4=value=>{if(baseVariant===\"l6GYqtOKV\")return value;return true;};const isDisplayed5=()=>{if(baseVariant===\"jIW_VchTa\")return true;return false;};const isDisplayed6=value=>{if(baseVariant===\"jIW_VchTa\")return value;return true;};const isDisplayed7=()=>{if(baseVariant===\"Cnr8gUiEH\")return true;return false;};const isDisplayed8=value=>{if(baseVariant===\"Cnr8gUiEH\")return value;return true;};const isDisplayed9=()=>{if(baseVariant===\"ixGPx5Nj7\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"OcofTXnOJ\")return true;return false;};const isDisplayed11=value=>{if(baseVariant===\"OcofTXnOJ\")return value;return true;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1uhhsxu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Ks5dsOYkT\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({Cnr8gUiEH:{\"data-framer-name\":\"Tablet\"},ixGPx5Nj7:{\"data-framer-name\":\"Tablet E-commerce\"},jIW_VchTa:{\"data-framer-name\":\"Desktop Healthcare\"},l6GYqtOKV:{\"data-framer-name\":\"Desktop E-commerce\"},OcofTXnOJ:{\"data-framer-name\":\"Tablet Healthcare\"},ojHgMUm6I:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15mj73v\",layoutDependency:layoutDependency,layoutId:\"xTBanzdiG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\"},children:\"Trusted by industry leaders,\"})}),className:\"framer-1pymegz\",\"data-framer-name\":\"Heading\",fonts:[\"FR;InterDisplay-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"XfYY6wxm8\",style:{\"--extracted-r6o4lv\":\"rgb(19, 23, 31)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cnr8gUiEH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\"},children:\"Trusted by industry leaders,\"})})},ixGPx5Nj7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\"},children:\"Trusted by industry leaders,\"})})},OcofTXnOJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\"},children:\"Trusted by industry leaders,\"})})},ojHgMUm6I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\"},children:\"Trusted by industry leaders,\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, rgb(227, 187, 87) -9%, rgb(196, 109, 210) 37%, rgb(46, 25, 89) 96%)\"},children:\"loved by modern VR trainers\u200B\"})})}),className:\"framer-1ggfznl\",\"data-framer-name\":\"Heading\",fonts:[\"FR;InterDisplay-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"EKZO_WPPX\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cnr8gUiEH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, rgb(227, 187, 87) -9%, rgb(196, 109, 210) 37%, rgb(46, 25, 89) 96%)\"},children:\"loved by modern VR trainers\u200B\"})})})},ixGPx5Nj7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, rgb(227, 187, 87) -9%, rgb(196, 109, 210) 37%, rgb(46, 25, 89) 96%)\"},children:\"loved by modern VR trainers\u200B\"})})})},OcofTXnOJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, rgb(227, 187, 87) -9%, rgb(196, 109, 210) 37%, rgb(46, 25, 89) 96%)\"},children:\"loved by modern VR trainers\u200B\"})})})},ojHgMUm6I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, rgb(227, 187, 87) -9%, rgb(196, 109, 210) 37%, rgb(46, 25, 89) 96%)\"},children:\"loved by modern VR trainers\u200B\"})})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1idh070\",layoutDependency:layoutDependency,layoutId:\"tjE7OI5PQ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vcii6t\",\"data-framer-name\":\"Frame 286\",layoutDependency:layoutDependency,layoutId:\"jS15jDBQC\",style:{backgroundColor:\"rgb(246, 247, 248)\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,boxShadow:\"inset 0px 0px 8px 2px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-q9gag4\",layoutDependency:layoutDependency,layoutId:\"CMMM0U0DE\",style:{background:\"linear-gradient(99deg, rgb(94, 146, 235) 3%, rgb(133, 100, 212) 31.53153153153153%, rgb(223, 84, 114) 72.97297297297297%, rgb(252, 101, 80) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 4px 12px 0px rgba(0, 0, 0, 0.25)\"},variants:{ixGPx5Nj7:{background:\"linear-gradient(99deg, rgb(202, 206, 215) 0%, rgb(202, 206, 215) 33%, rgb(202, 206, 215) 67%, rgb(202, 206, 215) 100%)\",backgroundColor:\"rgb(202, 206, 215)\",boxShadow:\"none\"},jIW_VchTa:{background:\"linear-gradient(99deg, rgb(202, 206, 215) 0%, rgb(202, 206, 215) 33%, rgb(202, 206, 215) 67%, rgb(202, 206, 215) 100%)\",backgroundColor:\"rgb(202, 206, 215)\",boxShadow:\"none\"},l6GYqtOKV:{background:\"linear-gradient(99deg, rgb(202, 206, 215) 0%, rgb(202, 206, 215) 33%, rgb(202, 206, 215) 67%, rgb(202, 206, 215) 100%)\",backgroundColor:\"rgb(202, 206, 215)\",boxShadow:\"none\"},OcofTXnOJ:{background:\"linear-gradient(99deg, rgb(202, 206, 215) 0%, rgb(202, 206, 215) 33%, rgb(202, 206, 215) 67%, rgb(202, 206, 215) 100%)\",backgroundColor:\"rgb(202, 206, 215)\",boxShadow:\"none\"}},...addPropertyOverrides({ixGPx5Nj7:{\"data-highlight\":true,onTap:onTapfo64gl},jIW_VchTa:{\"data-highlight\":true,onTap:onTap24h02},l6GYqtOKV:{\"data-highlight\":true,onTap:onTap24h02},OcofTXnOJ:{\"data-highlight\":true,onTap:onTapfo64gl}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xxz3py\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"FWiCqGpJt\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},variants:{ixGPx5Nj7:{backgroundColor:\"rgb(246, 247, 248)\"},jIW_VchTa:{backgroundColor:\"rgb(246, 247, 248)\"},l6GYqtOKV:{backgroundColor:\"rgb(246, 247, 248)\"},OcofTXnOJ:{backgroundColor:\"rgb(246, 247, 248)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(6220deg, rgb(227, 187, 87) 0%, rgb(196, 109, 210) 43.0927%, rgb(46, 25, 89) 99.5747%)\"},children:\"Pharma\"})})}),className:\"framer-23ddl6\",\"data-framer-name\":\"Healthcare\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"fLpxZsqxW\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{ixGPx5Nj7:{\"--extracted-r6o4lv\":\"rgb(19, 23, 31)\"},jIW_VchTa:{\"--extracted-r6o4lv\":\"rgb(19, 23, 31)\"},l6GYqtOKV:{\"--extracted-r6o4lv\":\"rgb(19, 23, 31)\"},OcofTXnOJ:{\"--extracted-r6o4lv\":\"rgb(19, 23, 31)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ixGPx5Nj7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\",\"--framer-text-transform\":\"uppercase\"},children:\"Pharma\"})})},jIW_VchTa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\",\"--framer-text-transform\":\"uppercase\"},children:\"Pharma\"})})},l6GYqtOKV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\",\"--framer-text-transform\":\"uppercase\"},children:\"Pharma\"})})},OcofTXnOJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\",\"--framer-text-transform\":\"uppercase\"},children:\"Pharma\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iflcft\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"G2G5nfqv6\",onTap:onTap18npads,style:{background:\"linear-gradient(99deg, rgb(202, 206, 215) 0%, rgb(202, 206, 215) 33%, rgb(202, 206, 215) 67%, rgb(202, 206, 215) 100%)\",backgroundColor:\"rgb(202, 206, 215)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"none\"},variants:{ixGPx5Nj7:{boxShadow:\"none\"},jIW_VchTa:{background:\"linear-gradient(99deg, rgb(94, 146, 235) 3%, rgb(133, 100, 212) 31.53153153153153%, rgb(223, 84, 114) 72.97297297297297%, rgb(252, 101, 80) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 4px 12px 0px rgba(0, 0, 0, 0.25)\"},l6GYqtOKV:{boxShadow:\"none\"},OcofTXnOJ:{background:\"linear-gradient(99deg, rgb(94, 146, 235) 3%, rgb(133, 100, 212) 31.53153153153153%, rgb(223, 84, 114) 72.97297297297297%, rgb(252, 101, 80) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 4px 12px 0px rgba(0, 0, 0, 0.25)\"}},...addPropertyOverrides({Cnr8gUiEH:{onTap:onTapo544tf},ixGPx5Nj7:{onTap:onTapo544tf}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hy0d8n\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"fK7SWcdYp\",style:{backgroundColor:\"rgb(246, 247, 248)\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},variants:{jIW_VchTa:{backgroundColor:\"rgb(255, 255, 255)\"},OcofTXnOJ:{backgroundColor:\"rgb(255, 255, 255)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\",\"--framer-text-transform\":\"uppercase\"},children:\"HEAVY INDUSTRY\"})}),className:\"framer-1ic8jm7\",\"data-framer-name\":\"Healthcare\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"d80t5BtUG\",style:{\"--extracted-r6o4lv\":\"rgb(19, 23, 31)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jIW_VchTa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(6220deg, rgb(227, 187, 87) 0%, rgb(196, 109, 210) 43.0927%, rgb(46, 25, 89) 99.5747%)\"},children:\"HEAVY INDUSTRY\"})})})},OcofTXnOJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(6220deg, rgb(227, 187, 87) 0%, rgb(196, 109, 210) 43.0927%, rgb(46, 25, 89) 99.5747%)\"},children:\"HEAVY INDUSTRY\"})})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eurjp1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xi3oIOUS5\",onTap:onTapwdli9p,style:{background:\"linear-gradient(99deg, rgb(202, 206, 215) 0%, rgb(202, 206, 215) 33%, rgb(202, 206, 215) 67%, rgb(202, 206, 215) 100%)\",backgroundColor:\"rgb(202, 206, 215)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"none\"},variants:{ixGPx5Nj7:{background:\"linear-gradient(99deg, rgb(94, 146, 235) 3%, rgb(133, 100, 212) 31.53153153153153%, rgb(223, 84, 114) 72.97297297297297%, rgb(252, 101, 80) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 4px 12px 0px rgba(0, 0, 0, 0.25)\"},l6GYqtOKV:{background:\"linear-gradient(99deg, rgb(94, 146, 235) 3%, rgb(133, 100, 212) 31.53153153153153%, rgb(223, 84, 114) 72.97297297297297%, rgb(252, 101, 80) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 4px 12px 0px rgba(0, 0, 0, 0.25)\"},OcofTXnOJ:{boxShadow:\"none\"}},...addPropertyOverrides({Cnr8gUiEH:{onTap:onTapgpoqvh},OcofTXnOJ:{onTap:onTapgpoqvh}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16gkx8r\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"NajTM5Fjl\",style:{backgroundColor:\"rgb(246, 247, 248)\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},variants:{ixGPx5Nj7:{backgroundColor:\"rgb(255, 255, 255)\"},l6GYqtOKV:{backgroundColor:\"rgb(255, 255, 255)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 23, 31))\",\"--framer-text-transform\":\"uppercase\"},children:\"warehouse\"})}),className:\"framer-1m140bf\",\"data-framer-name\":\"Healthcare\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"grwZk1Fti\",style:{\"--extracted-r6o4lv\":\"rgb(19, 23, 31)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ixGPx5Nj7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(6220deg, rgb(227, 187, 87) 0%, rgb(196, 109, 210) 43.0927%, rgb(46, 25, 89) 99.5747%)\"},children:\"warehouse\"})})})},l6GYqtOKV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(6220deg, rgb(227, 187, 87) 0%, rgb(196, 109, 210) 43.0927%, rgb(46, 25, 89) 99.5747%)\"},children:\"warehouse\"})})})}},baseVariant,gestureVariant)})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ud1408\",\"data-framer-name\":\"Content1\",layoutDependency:layoutDependency,layoutId:\"lMeIuMREr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1po948b\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"olCzsRuvI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+112+744+0+0+0),pixelHeight:1100,pixelWidth:888,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 112px) / 8, 50px) * 3 + 32px)`,src:\"https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png\",srcSet:\"https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png?scale-down-to=1024 826w,https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png 888w\"},className:\"framer-idzd2k\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"KmrYJtgUh\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bbxzh1\",layoutDependency:layoutDependency,layoutId:\"IDmRPe91c\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nxy9ku\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:224,layoutDependency:layoutDependency,layoutId:\"s_ucAx1GS\",svg:'<svg width=\"224\" height=\"54\" viewBox=\"0 0 224 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1045_1580)\">\\n<path d=\"M7.10614 42.9563L10.8171 33.1207L14.2912 43.0343H7.10614V42.9563ZM17.9233 52.948H21.3184L12.4752 29.1396H9.15902L0 52.948H3.39516L6.0797 45.6103H15.2387L17.9233 52.948ZM33.9516 47.8741C33.9516 49.8256 32.3724 50.8403 29.6089 50.8403C27.3981 50.8403 25.9769 50.2159 25.1084 48.8108L21.8711 49.3572C23.1344 51.9332 25.74 53.1041 29.451 53.1041C34.5043 53.1041 37.1098 50.372 37.1098 47.4057C37.1098 43.6588 33.5568 42.644 29.53 41.7854C27.556 41.3951 25.2663 40.6925 25.2663 38.9752C25.2663 37.7262 26.4506 36.3212 28.8983 36.3212C31.346 36.3212 32.8462 37.9604 33.083 38.663L35.9255 37.4921C34.5832 34.9941 31.9776 34.0574 29.2931 34.0574C25.0294 34.0574 22.2659 36.087 22.2659 39.3655C22.2659 43.1124 25.5031 43.8149 28.6614 44.5175C31.346 45.22 33.9516 45.8445 33.9516 47.8741ZM43.9001 29.1396L40.7419 30.4667V34.838H37.8205V37.336H40.7419V48.9669C40.6629 51.3087 40.6629 53.026 44.2949 53.026C45.4793 53.026 46.7426 52.7918 47.2953 52.7138V50.2939C46.6637 50.45 45.8741 50.6842 45.3214 50.6842C43.9791 50.6842 43.9791 49.7475 43.9791 47.6399V37.336H47.2953V34.838H43.9791V29.1396H43.9001ZM49.9798 34.838V52.948H53.0592V44.5955C53.0592 43.0343 52.9802 41.239 53.8487 39.9119C54.8752 38.2727 56.2964 37.7262 59.3757 37.6482V34.5258C58.1124 34.6038 54.8752 34.6038 53.1381 38.0385V34.838H49.9798ZM77.4569 29.1396V32.1059H91.1955L77.5359 49.9036V53.026H95.1433V50.1378H81.1679L94.8275 32.184V29.2177H77.4569V29.1396ZM114.409 34.838V52.948H117.488V42.644C117.488 41.317 117.488 39.9119 118.83 38.5849C119.778 37.6482 120.962 37.1798 122.305 37.1798C123.963 37.1798 125.7 37.9604 126.252 39.6778C126.41 40.3022 126.41 40.8487 126.41 42.644V52.8699H129.49V42.2537C129.49 40.6925 129.49 39.5997 129.174 38.5849C128.305 35.6186 125.463 34.4477 123.173 34.4477C122.068 34.4477 119.146 34.6819 117.488 37.6482V34.9161H114.409V34.838ZM162.099 48.5766C161.467 49.8256 160.283 50.9184 157.835 50.9184C155.782 50.9184 152.308 49.6694 152.308 43.6588C152.308 42.0196 152.624 36.3992 157.677 36.3992C160.204 36.3992 161.388 37.8043 161.941 38.9752L164.783 37.8043C163.046 34.9161 159.809 34.2135 157.519 34.2135C151.677 34.2135 148.834 38.8191 148.834 43.9711C148.834 48.4205 151.282 53.3383 157.756 53.3383C161.467 53.3383 163.599 51.5429 164.705 49.7475L162.099 48.5766ZM99.5649 42.0196H109.277C109.04 37.2579 106.276 36.4773 104.381 36.4773C101.776 36.4773 99.9597 38.3507 99.5649 42.0196ZM111.803 49.5133C110.777 51.3087 108.724 53.2602 104.776 53.2602C99.407 53.2602 96.2487 49.6694 96.2487 43.5808C96.2487 36.7895 100.749 34.2135 104.618 34.2135C108.013 34.2135 111.172 36.087 112.277 40.6145C112.593 42.1757 112.593 43.5027 112.593 44.2833H99.486C99.407 47.3276 100.67 51.1526 105.013 51.0745C106.75 51.0745 108.013 50.2159 108.803 49.045L111.803 49.5133ZM134.543 42.0196H144.255C144.018 37.2579 141.254 36.4773 139.359 36.4773C136.675 36.4773 134.859 38.3507 134.543 42.0196ZM146.702 49.5133C145.676 51.3087 143.623 53.2602 139.675 53.2602C134.306 53.2602 131.148 49.6694 131.148 43.5808C131.148 36.7895 135.648 34.2135 139.517 34.2135C142.912 34.2135 146.071 36.087 147.176 40.6145C147.492 42.1757 147.492 43.5027 147.492 44.2833H134.306C134.227 47.3276 135.49 51.1526 139.833 51.0745C141.57 51.0745 142.833 50.2159 143.623 49.045L146.702 49.5133ZM181.68 52.948H178.443C178.443 52.948 178.127 51.699 178.048 50.2939C177.101 51.2306 175.364 53.1821 171.89 53.1821C168.416 53.1821 165.731 51.0745 165.731 48.0302C165.731 47.0935 165.968 46.0787 166.521 45.2981C167.547 43.7369 169.521 42.566 174.969 42.0976L177.89 41.8634V41.3951C177.89 39.5216 177.89 36.3992 173.785 36.3992C171.258 36.3992 170.31 37.6482 170.074 38.741L167.231 37.5701C167.31 37.4921 167.31 37.3359 167.389 37.2579C168.494 35.3064 170.626 34.0574 173.706 34.0574C175.364 34.0574 177.575 34.4477 178.996 35.6186C181.049 37.1798 180.97 40.1461 180.97 40.1461L181.128 49.4353C181.128 49.5133 181.286 52.1674 181.68 52.948ZM177.417 47.9521C177.89 46.9373 177.89 46.547 177.89 43.893C176.706 44.0491 175.048 44.2833 173.074 44.7517C169.679 45.4542 169.126 46.7812 169.126 48.0302C169.126 49.5133 170.31 50.6842 172.6 50.6842C174.732 50.6842 176.548 49.8256 177.417 47.9521ZM75.3251 52.948H72.1668C72.1668 52.948 71.851 51.699 71.772 50.2939C70.8245 51.2306 69.0875 53.1821 65.6134 53.1821C62.1392 53.1821 59.3757 51.0745 59.3757 48.0302C59.3757 47.0935 59.6126 46.0787 60.1653 45.2981C61.1918 43.7369 63.1657 42.566 68.6137 42.0976L71.5351 41.8634V41.3951C71.5351 39.5216 71.5351 36.3992 67.4294 36.3992C64.8238 36.3992 63.9553 37.6482 63.7184 38.741L60.8759 37.5701C60.9549 37.4921 60.9549 37.3359 61.0338 37.2579C62.1392 35.3064 64.2711 34.0574 67.3504 34.0574C69.0085 34.0574 71.2193 34.4477 72.6405 35.6186C74.6934 37.1798 74.6145 40.1461 74.6145 40.1461L74.6934 49.4353C74.7724 49.5133 74.9303 52.1674 75.3251 52.948ZM71.1404 47.9521C71.6141 46.9373 71.6141 46.547 71.6141 43.893C70.4297 44.0491 68.7716 44.2833 66.7977 44.7517C63.4026 45.4542 62.8499 46.7812 62.8499 48.0302C62.8499 49.5133 64.0342 50.6842 66.324 50.6842C68.3769 50.6842 70.1929 49.8256 71.1404 47.9521Z\" fill=\"white\"/>\\n<path d=\"M201.657 37.7263C201.183 38.0385 200.709 38.3507 200.235 38.663C194.708 35.6186 182.865 29.7641 181.838 29.2958C180.733 28.7494 178.838 27.9688 179.075 26.1734C179.391 23.6755 183.891 18.1332 185.786 15.7914C196.051 3.45791 200.63 -0.367026 203.631 0.0232746C206.868 0.413575 208.684 3.77016 208.921 19.226C207.105 18.6796 205.131 18.1332 202.999 17.5868C202.841 15.323 202.367 11.9665 202.209 10.7956C202.051 9.46854 201.736 9.00018 201.262 8.92212C200.63 8.84406 199.13 10.2491 197.788 11.6542C197.156 12.2787 195.419 13.996 193.524 15.9475C191.945 15.8695 190.84 16.1817 190.287 16.9623C189.813 17.5868 189.734 18.4454 189.971 19.5383C188.945 20.5531 188.076 21.4117 187.444 22.0362C185.313 24.1438 183.023 25.8611 182.944 26.7198C182.865 27.4223 183.891 28.1249 185.47 29.0616C189.103 31.0131 198.34 36.0089 201.657 37.7263ZM216.027 22.2704C212.395 21.0214 203.473 17.7429 194.077 16.4939C190.84 16.1036 189.576 17.1965 190.84 20.2408C192.182 23.2852 195.577 28.281 199.13 32.1059C202.683 35.8528 206.552 36.8676 207.815 31.0912C207.894 30.857 207.894 30.7009 207.973 30.4667C208.289 28.9835 208.526 27.5004 208.605 26.2514C207.026 25.5489 205.21 24.7683 203.473 24.0658C203.552 25.3928 203.71 27.7346 203.789 29.4519V30.0764C203.867 32.9646 202.92 32.9646 201.262 31.7937C199.367 30.4667 193.445 22.7387 192.735 19.3041C192.735 19.0699 192.813 19.0699 192.892 19.148C192.945 19.148 192.998 19.174 193.05 19.226C194.393 19.7725 198.814 21.4898 203.315 23.3632C205.131 24.1438 206.947 24.8464 208.526 25.627C210.105 26.3295 211.526 27.032 212.632 27.5785C214.606 28.5932 215.316 29.2958 214.527 30.1544C210.5 34.2136 196.288 39.99 191.392 47.1715L191.313 47.2496C191.234 47.3276 191.234 47.4057 191.155 47.4838C191.155 47.4838 191.155 47.5618 191.076 47.5618C190.84 48.0302 190.524 48.7327 190.366 49.6695C190.129 51.2307 190.997 52.6357 193.287 53.2602C193.84 53.4163 194.472 53.5725 195.182 53.6505H195.577C199.92 53.8847 211.289 51.3868 214.685 49.9036C218.238 48.3424 217.211 46.7812 216.185 46.0006C215.395 45.3762 211.447 43.1905 209.552 42.1757C209 42.4879 208.605 42.7221 208.131 43.1124C211.368 45.0639 212.711 46.0787 213.5 46.6251C213.816 46.8593 213.658 47.0935 213.184 47.1715H212.869C209.789 47.4057 203.867 47.796 201.104 47.9521C200.709 47.9521 200.235 48.0302 199.999 48.0302C200.709 47.4057 201.42 46.8593 201.815 46.5471C207.736 42.4099 217.606 36.6334 220.527 34.1355C222.738 32.184 228.581 26.5637 216.027 22.2704Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1045_1580\">\\n<rect width=\"223.828\" height=\"53.6663\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g1fhz1\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wyW35A1h2\",style:{backdropFilter:\"blur(16px)\",background:\"linear-gradient(180deg, rgba(109, 63, 159, 0.3) 0%, rgba(178, 98, 185, 0.3) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(16px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"From QA labs to medical device maintenance, \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(46, 25, 89))\"},children:\"we understand the complexities of regulated environments.\"})]}),className:\"framer-v7p091\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"McsoOykBe\",style:{\"--extracted-2gxw0f\":\"rgb(46, 25, 89)\",\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),smbt7dfR4&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"b6lHcFysW\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+112+744+0+0+24+442,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ljvfil-container\",layoutDependency:layoutDependency,layoutId:\"h63DjmqjE-container\",nodeId:\"h63DjmqjE\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton2,{EvfeSIJMA:\"Read Case Study\",GjpHytGXC:20,height:\"100%\",id:\"h63DjmqjE\",layoutId:\"h63DjmqjE\",PAk0oYY4n:resolvedLinks[0],style:{height:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9mmbxu\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"PKOeBU8u6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iduviv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"NPuDp9Y_9\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"90+\"})}),className:\"framer-e356j3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gHhp00fcq\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"Facilities worldwide using the modules\"})}),className:\"framer-14j3cxo\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"AsZVsWjd7\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kihjfd\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"HFOFnBw92\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"100+\"})}),className:\"framer-rum3qw\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"sZC5A9h9o\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"VR headsets deployed\"})}),className:\"framer-s7v016\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"WWbOZcegN\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k546tt\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"mMsvWAbWy\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"20K +\"})}),className:\"framer-1ecivhy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"jEJCYnREl\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"Workers certified in VR\"})}),className:\"framer-1h5rzur\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"bYKdUn9RM\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10cb7lk-container\",\"data-framer-name\":\"Mobile new\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xkZ6bpceD-container\",name:\"Mobile new\",nodeId:\"xkZ6bpceD\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"xkZ6bpceD\",intervalControl:7,itemAmount:1,layoutId:\"xkZ6bpceD\",name:\"Mobile new\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vafcmr\",\"data-framer-name\":\"Astrazeneca\",layoutDependency:layoutDependency,layoutId:\"uukCLHcmm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lmgtgj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KMTYYgPWm\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:2144,sizes:\"358px\",src:\"https://framerusercontent.com/images/k8lwGuTrf6iFhdjzn6FG100Hcc.png\",srcSet:\"https://framerusercontent.com/images/k8lwGuTrf6iFhdjzn6FG100Hcc.png?scale-down-to=1024 952w,https://framerusercontent.com/images/k8lwGuTrf6iFhdjzn6FG100Hcc.png?scale-down-to=2048 1905w,https://framerusercontent.com/images/k8lwGuTrf6iFhdjzn6FG100Hcc.png 2144w\"},className:\"framer-1nbutlr\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"nPobzIum2\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ok700o\",layoutDependency:layoutDependency,layoutId:\"rXFVVHPmc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s0shao\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:224,layoutDependency:layoutDependency,layoutId:\"dVkz_PXtr\",svg:'<svg width=\"224\" height=\"54\" viewBox=\"0 0 224 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1045_1580)\">\\n<path d=\"M7.10614 42.9563L10.8171 33.1207L14.2912 43.0343H7.10614V42.9563ZM17.9233 52.948H21.3184L12.4752 29.1396H9.15902L0 52.948H3.39516L6.0797 45.6103H15.2387L17.9233 52.948ZM33.9516 47.8741C33.9516 49.8256 32.3724 50.8403 29.6089 50.8403C27.3981 50.8403 25.9769 50.2159 25.1084 48.8108L21.8711 49.3572C23.1344 51.9332 25.74 53.1041 29.451 53.1041C34.5043 53.1041 37.1098 50.372 37.1098 47.4057C37.1098 43.6588 33.5568 42.644 29.53 41.7854C27.556 41.3951 25.2663 40.6925 25.2663 38.9752C25.2663 37.7262 26.4506 36.3212 28.8983 36.3212C31.346 36.3212 32.8462 37.9604 33.083 38.663L35.9255 37.4921C34.5832 34.9941 31.9776 34.0574 29.2931 34.0574C25.0294 34.0574 22.2659 36.087 22.2659 39.3655C22.2659 43.1124 25.5031 43.8149 28.6614 44.5175C31.346 45.22 33.9516 45.8445 33.9516 47.8741ZM43.9001 29.1396L40.7419 30.4667V34.838H37.8205V37.336H40.7419V48.9669C40.6629 51.3087 40.6629 53.026 44.2949 53.026C45.4793 53.026 46.7426 52.7918 47.2953 52.7138V50.2939C46.6637 50.45 45.8741 50.6842 45.3214 50.6842C43.9791 50.6842 43.9791 49.7475 43.9791 47.6399V37.336H47.2953V34.838H43.9791V29.1396H43.9001ZM49.9798 34.838V52.948H53.0592V44.5955C53.0592 43.0343 52.9802 41.239 53.8487 39.9119C54.8752 38.2727 56.2964 37.7262 59.3757 37.6482V34.5258C58.1124 34.6038 54.8752 34.6038 53.1381 38.0385V34.838H49.9798ZM77.4569 29.1396V32.1059H91.1955L77.5359 49.9036V53.026H95.1433V50.1378H81.1679L94.8275 32.184V29.2177H77.4569V29.1396ZM114.409 34.838V52.948H117.488V42.644C117.488 41.317 117.488 39.9119 118.83 38.5849C119.778 37.6482 120.962 37.1798 122.305 37.1798C123.963 37.1798 125.7 37.9604 126.252 39.6778C126.41 40.3022 126.41 40.8487 126.41 42.644V52.8699H129.49V42.2537C129.49 40.6925 129.49 39.5997 129.174 38.5849C128.305 35.6186 125.463 34.4477 123.173 34.4477C122.068 34.4477 119.146 34.6819 117.488 37.6482V34.9161H114.409V34.838ZM162.099 48.5766C161.467 49.8256 160.283 50.9184 157.835 50.9184C155.782 50.9184 152.308 49.6694 152.308 43.6588C152.308 42.0196 152.624 36.3992 157.677 36.3992C160.204 36.3992 161.388 37.8043 161.941 38.9752L164.783 37.8043C163.046 34.9161 159.809 34.2135 157.519 34.2135C151.677 34.2135 148.834 38.8191 148.834 43.9711C148.834 48.4205 151.282 53.3383 157.756 53.3383C161.467 53.3383 163.599 51.5429 164.705 49.7475L162.099 48.5766ZM99.5649 42.0196H109.277C109.04 37.2579 106.276 36.4773 104.381 36.4773C101.776 36.4773 99.9597 38.3507 99.5649 42.0196ZM111.803 49.5133C110.777 51.3087 108.724 53.2602 104.776 53.2602C99.407 53.2602 96.2487 49.6694 96.2487 43.5808C96.2487 36.7895 100.749 34.2135 104.618 34.2135C108.013 34.2135 111.172 36.087 112.277 40.6145C112.593 42.1757 112.593 43.5027 112.593 44.2833H99.486C99.407 47.3276 100.67 51.1526 105.013 51.0745C106.75 51.0745 108.013 50.2159 108.803 49.045L111.803 49.5133ZM134.543 42.0196H144.255C144.018 37.2579 141.254 36.4773 139.359 36.4773C136.675 36.4773 134.859 38.3507 134.543 42.0196ZM146.702 49.5133C145.676 51.3087 143.623 53.2602 139.675 53.2602C134.306 53.2602 131.148 49.6694 131.148 43.5808C131.148 36.7895 135.648 34.2135 139.517 34.2135C142.912 34.2135 146.071 36.087 147.176 40.6145C147.492 42.1757 147.492 43.5027 147.492 44.2833H134.306C134.227 47.3276 135.49 51.1526 139.833 51.0745C141.57 51.0745 142.833 50.2159 143.623 49.045L146.702 49.5133ZM181.68 52.948H178.443C178.443 52.948 178.127 51.699 178.048 50.2939C177.101 51.2306 175.364 53.1821 171.89 53.1821C168.416 53.1821 165.731 51.0745 165.731 48.0302C165.731 47.0935 165.968 46.0787 166.521 45.2981C167.547 43.7369 169.521 42.566 174.969 42.0976L177.89 41.8634V41.3951C177.89 39.5216 177.89 36.3992 173.785 36.3992C171.258 36.3992 170.31 37.6482 170.074 38.741L167.231 37.5701C167.31 37.4921 167.31 37.3359 167.389 37.2579C168.494 35.3064 170.626 34.0574 173.706 34.0574C175.364 34.0574 177.575 34.4477 178.996 35.6186C181.049 37.1798 180.97 40.1461 180.97 40.1461L181.128 49.4353C181.128 49.5133 181.286 52.1674 181.68 52.948ZM177.417 47.9521C177.89 46.9373 177.89 46.547 177.89 43.893C176.706 44.0491 175.048 44.2833 173.074 44.7517C169.679 45.4542 169.126 46.7812 169.126 48.0302C169.126 49.5133 170.31 50.6842 172.6 50.6842C174.732 50.6842 176.548 49.8256 177.417 47.9521ZM75.3251 52.948H72.1668C72.1668 52.948 71.851 51.699 71.772 50.2939C70.8245 51.2306 69.0875 53.1821 65.6134 53.1821C62.1392 53.1821 59.3757 51.0745 59.3757 48.0302C59.3757 47.0935 59.6126 46.0787 60.1653 45.2981C61.1918 43.7369 63.1657 42.566 68.6137 42.0976L71.5351 41.8634V41.3951C71.5351 39.5216 71.5351 36.3992 67.4294 36.3992C64.8238 36.3992 63.9553 37.6482 63.7184 38.741L60.8759 37.5701C60.9549 37.4921 60.9549 37.3359 61.0338 37.2579C62.1392 35.3064 64.2711 34.0574 67.3504 34.0574C69.0085 34.0574 71.2193 34.4477 72.6405 35.6186C74.6934 37.1798 74.6145 40.1461 74.6145 40.1461L74.6934 49.4353C74.7724 49.5133 74.9303 52.1674 75.3251 52.948ZM71.1404 47.9521C71.6141 46.9373 71.6141 46.547 71.6141 43.893C70.4297 44.0491 68.7716 44.2833 66.7977 44.7517C63.4026 45.4542 62.8499 46.7812 62.8499 48.0302C62.8499 49.5133 64.0342 50.6842 66.324 50.6842C68.3769 50.6842 70.1929 49.8256 71.1404 47.9521Z\" fill=\"white\"/>\\n<path d=\"M201.657 37.7263C201.183 38.0385 200.709 38.3507 200.235 38.663C194.708 35.6186 182.865 29.7641 181.838 29.2958C180.733 28.7494 178.838 27.9688 179.075 26.1734C179.391 23.6755 183.891 18.1332 185.786 15.7914C196.051 3.45791 200.63 -0.367026 203.631 0.0232746C206.868 0.413575 208.684 3.77016 208.921 19.226C207.105 18.6796 205.131 18.1332 202.999 17.5868C202.841 15.323 202.367 11.9665 202.209 10.7956C202.051 9.46854 201.736 9.00018 201.262 8.92212C200.63 8.84406 199.13 10.2491 197.788 11.6542C197.156 12.2787 195.419 13.996 193.524 15.9475C191.945 15.8695 190.84 16.1817 190.287 16.9623C189.813 17.5868 189.734 18.4454 189.971 19.5383C188.945 20.5531 188.076 21.4117 187.444 22.0362C185.313 24.1438 183.023 25.8611 182.944 26.7198C182.865 27.4223 183.891 28.1249 185.47 29.0616C189.103 31.0131 198.34 36.0089 201.657 37.7263ZM216.027 22.2704C212.395 21.0214 203.473 17.7429 194.077 16.4939C190.84 16.1036 189.576 17.1965 190.84 20.2408C192.182 23.2852 195.577 28.281 199.13 32.1059C202.683 35.8528 206.552 36.8676 207.815 31.0912C207.894 30.857 207.894 30.7009 207.973 30.4667C208.289 28.9835 208.526 27.5004 208.605 26.2514C207.026 25.5489 205.21 24.7683 203.473 24.0658C203.552 25.3928 203.71 27.7346 203.789 29.4519V30.0764C203.867 32.9646 202.92 32.9646 201.262 31.7937C199.367 30.4667 193.445 22.7387 192.735 19.3041C192.735 19.0699 192.813 19.0699 192.892 19.148C192.945 19.148 192.998 19.174 193.05 19.226C194.393 19.7725 198.814 21.4898 203.315 23.3632C205.131 24.1438 206.947 24.8464 208.526 25.627C210.105 26.3295 211.526 27.032 212.632 27.5785C214.606 28.5932 215.316 29.2958 214.527 30.1544C210.5 34.2136 196.288 39.99 191.392 47.1715L191.313 47.2496C191.234 47.3276 191.234 47.4057 191.155 47.4838C191.155 47.4838 191.155 47.5618 191.076 47.5618C190.84 48.0302 190.524 48.7327 190.366 49.6695C190.129 51.2307 190.997 52.6357 193.287 53.2602C193.84 53.4163 194.472 53.5725 195.182 53.6505H195.577C199.92 53.8847 211.289 51.3868 214.685 49.9036C218.238 48.3424 217.211 46.7812 216.185 46.0006C215.395 45.3762 211.447 43.1905 209.552 42.1757C209 42.4879 208.605 42.7221 208.131 43.1124C211.368 45.0639 212.711 46.0787 213.5 46.6251C213.816 46.8593 213.658 47.0935 213.184 47.1715H212.869C209.789 47.4057 203.867 47.796 201.104 47.9521C200.709 47.9521 200.235 48.0302 199.999 48.0302C200.709 47.4057 201.42 46.8593 201.815 46.5471C207.736 42.4099 217.606 36.6334 220.527 34.1355C222.738 32.184 228.581 26.5637 216.027 22.2704Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1045_1580\">\\n<rect width=\"223.828\" height=\"53.6663\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"From QA labs to medical device maintenance, we understand the complexities of regulated environments.\"})}),className:\"framer-1dzns77\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"EqniOLSVO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wh3ffa\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"BJ1sMmp13\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pe4avu\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Mq3Tl4rq7\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"90+\"})}),className:\"framer-1u3s9li\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"BZgJn0nF2\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"Facilities worldwide using the modules\"})}),className:\"framer-1kz2q3l\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gm_rNForO\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rhe3a3\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"n0i0UBNu_\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"100+\"})}),className:\"framer-1fxvrod\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ZCxRFcQlk\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"VR headsets deployed\"})}),className:\"framer-1q4960z\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"wBMgwVIil\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jelv0t\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"KW7by9jNO\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"20K +\"})}),className:\"framer-wbkvwx\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"lN7UBMX87\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"Workers certified in VR\"})}),className:\"framer-15njmi9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"XE0lkJtrr\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"b6lHcFysW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"358px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-seg4e6-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Mx6wIBJqp-container\",nodeId:\"Mx6wIBJqp\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton,{EvfeSIJMA:\"Read Case Study\",height:\"100%\",id:\"Mx6wIBJqp\",layoutId:\"Mx6wIBJqp\",PAk0oYY4n:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ov17wt\",\"data-framer-name\":\"Ultratech\",layoutDependency:layoutDependency,layoutId:\"VIEhvhl0t\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-244o28\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yPy82bxcY\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1608,sizes:\"358px\",src:\"https://framerusercontent.com/images/EnEQenxjilQaOf9qPZCakrTsGw.png\",srcSet:\"https://framerusercontent.com/images/EnEQenxjilQaOf9qPZCakrTsGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/EnEQenxjilQaOf9qPZCakrTsGw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EnEQenxjilQaOf9qPZCakrTsGw.png 1608w\"},className:\"framer-dwdubh\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"UQ7e8WZFm\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ogtkg3\",layoutDependency:layoutDependency,layoutId:\"CS7ugGND2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134.4,intrinsicWidth:299.2,pixelHeight:168,pixelWidth:374,src:\"https://framerusercontent.com/images/d55Vz2lqkesrAOEj11c8wcyDc.png\"},className:\"framer-1v8k2de\",\"data-framer-name\":\"Ultratech white\",layoutDependency:layoutDependency,layoutId:\"zqb60Jxds\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mastering high-risk operations safely through immersive training scenarios\"})}),className:\"framer-1hwx5uh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"PAxhi8Pnf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7bbyip\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"k13qcUCt9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x0q08t\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"kriZHVRMz\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"40+\"})}),className:\"framer-ijvopy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ytFOFhAMw\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"VR modules created\"})}),className:\"framer-tjyise\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bO_gCyQOy\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irrezx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"r2pPcvJ0b\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"55+\"})}),className:\"framer-12f7b8q\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UjZAbfWF0\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Plants deployed\"})}),className:\"framer-xu276\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gzQZCQHnK\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-79dti2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"GQ1XRxYqk\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"65K+\"})}),className:\"framer-s6domk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"tCL0juYdb\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Workers trained in VR\"})}),className:\"framer-1j5kg1u\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"oepSjX9zu\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X1zpHxRvY\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"358px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15qg42f-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ygt9Dlwno-container\",nodeId:\"Ygt9Dlwno\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton,{EvfeSIJMA:\"Read Case Study\",height:\"100%\",id:\"Ygt9Dlwno\",layoutId:\"Ygt9Dlwno\",PAk0oYY4n:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xvdd11\",\"data-framer-name\":\"Amazon\",layoutDependency:layoutDependency,layoutId:\"eJcme0NDK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7k8g3d\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"i1M3ygZGX\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2208,pixelWidth:3672,sizes:\"358px\",src:\"https://framerusercontent.com/images/b48xsMR3OAmoaD9LMtfwaYL5I.png\",srcSet:\"https://framerusercontent.com/images/b48xsMR3OAmoaD9LMtfwaYL5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/b48xsMR3OAmoaD9LMtfwaYL5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b48xsMR3OAmoaD9LMtfwaYL5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b48xsMR3OAmoaD9LMtfwaYL5I.png 3672w\"},className:\"framer-4qrnm0\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"XASDO4ro4\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s35468\",layoutDependency:layoutDependency,layoutId:\"UdM_yM78O\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12ylezw\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:79,layoutDependency:layoutDependency,layoutId:\"PxS7k3lN_\",svg:'<svg width=\"79\" height=\"24\" viewBox=\"0 0 79 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1199_6264)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49.1366 18.7688C44.5658 22.1826 37.9403 24 32.2344 24C24.2363 24 17.0363 21.0084 11.5873 16.0261C11.1593 15.6346 11.5404 15.1006 12.0568 15.4026C17.9367 18.8667 25.2085 20.9524 32.7177 20.9524C37.7829 20.9524 43.3534 19.8872 48.4765 17.6868C49.2498 17.3541 49.896 18.2013 49.1421 18.7688H49.1366Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M51.0381 16.5712C50.4526 15.8136 47.1744 16.2106 45.6996 16.3895C45.2522 16.4426 45.1831 16.0484 45.5863 15.7632C48.2017 13.904 52.4908 14.4408 52.9879 15.0615C53.4906 15.6905 52.8553 20.041 50.4056 22.1183C50.0273 22.437 49.671 22.2665 49.8367 21.8443C50.3891 20.4492 51.6236 17.3261 51.0381 16.5685V16.5712Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.8045 2.62245V0.813508C45.8045 0.53951 46.0116 0.35498 46.2574 0.35498H54.2611C54.5179 0.35498 54.7223 0.542306 54.7223 0.810712V2.35964C54.7223 2.61966 54.5041 2.95796 54.1202 3.49757L49.9748 9.48918C51.5131 9.45283 53.1426 9.68489 54.54 10.4817C54.8549 10.6607 54.9405 10.9263 54.9653 11.1863V13.1155C54.9653 13.3811 54.6781 13.6886 54.3771 13.5293C51.9136 12.2236 48.6436 12.081 45.9205 13.546C45.6416 13.697 45.3516 13.3923 45.3516 13.1266V11.2925C45.3516 10.999 45.3571 10.4985 45.6498 10.0512L50.4526 3.07539H46.2712C46.0144 3.07539 45.81 2.89086 45.81 2.61966L45.8045 2.62245Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.6105 13.9123H14.1746C13.9427 13.8983 13.7576 13.7194 13.7383 13.4957V0.844267C13.7383 0.58984 13.9509 0.388535 14.2105 0.388535H16.478C16.7155 0.399719 16.906 0.581452 16.9199 0.813512V2.46589H16.9668C17.5578 0.86943 18.6708 0.122925 20.1705 0.122925C21.6701 0.122925 22.6478 0.86943 23.33 2.46589C23.921 0.86943 25.2604 0.122925 26.6938 0.122925C27.7157 0.122925 28.8314 0.547901 29.5108 1.5069C30.2841 2.57213 30.1239 4.11547 30.1239 5.47428V13.4566C30.1239 13.7082 29.9113 13.9123 29.6517 13.9123H27.2185C26.9755 13.8955 26.7822 13.6998 26.7822 13.4594V6.752C26.7822 6.22078 26.8264 4.88714 26.7131 4.38388C26.5309 3.53113 25.9868 3.29347 25.2825 3.29347C24.6915 3.29347 24.0784 3.69329 23.8271 4.33075C23.5758 4.97101 23.6006 6.03346 23.6006 6.752V13.4566C23.6006 13.7082 23.3907 13.9123 23.1311 13.9123H20.698C20.4549 13.8955 20.2616 13.6998 20.2616 13.4594V6.752C20.2616 5.34007 20.4853 3.26552 18.7592 3.26552C17.0331 3.26552 17.0773 5.28975 17.0773 6.752V13.4566C17.0773 13.7082 16.8674 13.9123 16.6078 13.9123H16.6105Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.6094 0.122925C65.2218 0.122925 67.1772 3.26552 67.1772 7.25806C67.1772 11.2506 65.0175 14.1807 61.6094 14.1807C58.2014 14.1807 56.1328 11.0381 56.1328 7.12665C56.1328 3.21519 58.0854 0.122925 61.6094 0.122925ZM61.6315 2.70354C59.8364 2.70354 59.7231 5.17791 59.7231 6.72404C59.7231 8.27018 59.701 11.5693 61.6094 11.5693C63.5178 11.5693 63.5869 8.90764 63.5869 7.28322C63.5869 6.21799 63.5427 4.94026 63.2223 3.92814C62.9489 3.05023 62.4048 2.70354 61.6315 2.70354Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M71.8651 13.9124H69.4403C69.1972 13.8956 69.0039 13.6999 69.0039 13.4594V0.802389C69.0205 0.57033 69.2221 0.388596 69.4679 0.388596H71.727C71.9397 0.39978 72.1137 0.545167 72.1606 0.743676V2.67844H72.2076C72.8897 0.947776 73.8426 0.122986 75.5245 0.122986C76.6154 0.122986 77.6842 0.522799 78.3664 1.6132C79.0016 2.62532 79.0016 4.32802 79.0016 5.55262V13.5125C78.9739 13.7362 78.7751 13.9124 78.5348 13.9124H76.0934C75.8669 13.8984 75.6874 13.7306 75.6598 13.5125V6.64302C75.6598 5.25905 75.82 3.23482 74.1381 3.23482C73.547 3.23482 73.0002 3.63464 72.7296 4.24694C72.3899 5.01861 72.3429 5.79027 72.3429 6.64302V13.4538C72.3374 13.7055 72.1275 13.9096 71.8679 13.9096L71.8651 13.9124Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.424 7.87042C39.424 8.8322 39.4461 9.63183 38.9683 10.4846C38.5816 11.178 37.9658 11.6057 37.2836 11.6057C36.3501 11.6057 35.8033 10.8844 35.8033 9.81916C35.8033 7.71944 37.6647 7.3392 39.424 7.3392V7.87321V7.87042ZM41.8764 13.8788C41.7163 14.0242 41.4843 14.0354 41.302 13.9375C40.4928 13.2581 40.3492 12.9422 39.9073 12.2963C38.5706 13.6747 37.6233 14.0885 35.8916 14.0885C33.8424 14.0885 32.2461 12.808 32.2461 10.2469C32.2461 8.24507 33.3177 6.88626 34.8422 6.21804C36.1623 5.6309 38.0072 5.52466 39.4212 5.36529V5.04656C39.4212 4.45942 39.4682 3.76604 39.1257 3.25998C38.8302 2.80704 38.2613 2.61972 37.7586 2.61972C36.8307 2.61972 36.0049 3.10061 35.8005 4.09875C35.7591 4.31963 35.5989 4.5405 35.378 4.55168L33.0194 4.29446C32.8205 4.24973 32.5996 4.08757 32.6548 3.78002C33.1961 0.88067 35.7839 0.0055542 38.0983 0.0055542C39.2831 0.0055542 40.8325 0.324287 41.766 1.23295C42.9508 2.35411 42.8375 3.84712 42.8375 5.47433V9.3131C42.8375 10.4678 43.3126 10.9739 43.7572 11.5973C43.9119 11.821 43.9478 12.0894 43.7489 12.2516C43.2518 12.6738 42.368 13.451 41.882 13.89L41.8764 13.8844V13.8788Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.50829 7.87039C7.50829 8.83218 7.53038 9.63181 7.0526 10.4846C6.66595 11.1779 6.05007 11.6057 5.36791 11.6057C4.43442 11.6057 3.88759 10.8844 3.88759 9.81913C3.88759 7.71941 5.74903 7.33917 7.50829 7.33917V7.87319V7.87039ZM9.96352 13.8788C9.80333 14.0242 9.56858 14.0353 9.38907 13.9375C8.57986 13.2581 8.43625 12.9422 7.99436 12.2963C6.65766 13.6747 5.71037 14.0885 3.98149 14.0885C1.93225 14.0885 0.335938 12.808 0.335938 10.2469C0.335938 8.24504 1.40751 6.88624 2.93201 6.21802C4.25215 5.63088 6.09702 5.52463 7.51105 5.36527V5.04654C7.51105 4.4594 7.55524 3.76601 7.21554 3.25996C6.92003 2.80702 6.3511 2.6197 5.84846 2.6197C4.9205 2.6197 4.09473 3.10059 3.89035 4.09873C3.84893 4.3196 3.68874 4.54048 3.4678 4.55166L1.10924 4.29444C0.910389 4.2497 0.689446 4.08754 0.744682 3.77999C1.28323 0.875055 3.86826 -6.10352e-05 6.1854 -6.10352e-05C7.3702 -6.10352e-05 8.91956 0.318671 9.85305 1.22734C11.0379 2.34849 10.9246 3.8415 10.9246 5.46872V9.30749C10.9246 10.4622 11.3996 10.9682 11.8443 11.5917C11.999 11.8154 12.0349 12.0838 11.836 12.246C11.3389 12.6682 10.4551 13.4454 9.96904 13.8844L9.96352 13.8788Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1199_6264\">\\n<rect width=\"78.6667\" height=\"24\" fill=\"white\" transform=\"translate(0.332031 -6.10352e-05)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Perfect assembly operations and maintenance procedures without disrupting the production line\"})}),className:\"framer-17iwe4v\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Jish4sQPj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k3z66r\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"bDFHTyed9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ajjews\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"yzlsLrea9\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"4\"})}),className:\"framer-k7y3kw\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"BALX_TCGM\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Fulfilment centres running the pilot\"})}),className:\"framer-yuvxel\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bGiqZdCTE\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ua2rhn\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"rRDyj2apH\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"50+\"})}),className:\"framer-4e0bp0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"jxdSmxb4R\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"VR modules to be deployed\"})}),className:\"framer-jhdjl6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"RvZF6wZZi\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ekxpm6\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"nZX0rJC3V\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"1500+\"})}),className:\"framer-1li76zh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"qnzhX_KDp\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Workers VR trained in less than 1 month\"})}),className:\"framer-1x6yxe4\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"P3m7rcJL7\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MkWEN4WJH\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"358px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3lsl1l-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UjEeX4Qzr-container\",nodeId:\"UjEeX4Qzr\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton,{EvfeSIJMA:\"Read Case Study\",height:\"100%\",id:\"UjEeX4Qzr\",layoutId:\"UjEeX4Qzr\",PAk0oYY4n:resolvedLinks3[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-137dl2w\",\"data-framer-name\":\"Content2\",layoutDependency:layoutDependency,layoutId:\"T3X2YgN4J\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19s67os\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FuSPvlqNV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1100,pixelWidth:888,src:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png\",srcSet:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png?scale-down-to=1024 826w,https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png 888w\"},className:\"framer-1fy4izb\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"rUctNtjEA\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({l6GYqtOKV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+112+744+0+0+0),pixelHeight:1100,pixelWidth:888,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 112px) / 8, 50px) * 3 + 32px)`,src:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png\",srcSet:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png?scale-down-to=1024 826w,https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png 888w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5tpxp7\",layoutDependency:layoutDependency,layoutId:\"GNHoeEtYT\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7n2nnd\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"cVNUhfDlH\",svg:'<svg width=\"102\" height=\"31\" viewBox=\"0 0 102 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1110_6019)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.0389 24.2431C57.135 28.6526 48.577 31 41.2069 31C30.876 31 21.5761 27.1358 14.5378 20.7004C13.9848 20.1948 14.4771 19.505 15.1442 19.895C22.739 24.3695 32.1317 27.0636 41.8312 27.0636C48.3737 27.0636 55.5689 25.6877 62.1863 22.8455C63.1851 22.4158 64.0199 23.51 63.046 24.2431H63.0389Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.4968 21.4046C64.7405 20.4259 60.5061 20.9387 58.6012 21.1698C58.0233 21.2384 57.9341 20.7292 58.4549 20.3609C61.8332 17.9593 67.3732 18.6527 68.0153 19.4544C68.6646 20.267 67.8441 25.8863 64.6799 28.5695C64.1912 28.9812 63.731 28.7609 63.945 28.2156C64.6585 26.4135 66.2531 22.3796 65.4968 21.401V21.4046Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.7364 3.38744V1.05088C58.7364 0.696969 59.004 0.458618 59.3214 0.458618H69.6595C69.9913 0.458618 70.2552 0.70058 70.2552 1.04727V3.04797C70.2552 3.38383 69.9734 3.8208 69.4776 4.5178L64.123 12.257C66.11 12.21 68.2147 12.5098 70.0198 13.539C70.4265 13.7701 70.5371 14.1132 70.5692 14.4491V16.9409C70.5692 17.284 70.1982 17.6812 69.8093 17.4754C66.6273 15.7889 62.4036 15.6047 58.8862 17.4971C58.5259 17.6921 58.1514 17.2984 58.1514 16.9554V14.5863C58.1514 14.2071 58.1585 13.5607 58.5366 12.9828L64.7402 3.97248H59.3393C59.0075 3.97248 58.7435 3.73413 58.7435 3.38383L58.7364 3.38744Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.0254 17.9702H17.8791C17.5794 17.9522 17.3404 17.721 17.3154 17.4321V1.09067C17.3154 0.762034 17.5901 0.502016 17.9254 0.502016H20.8542C21.161 0.516461 21.4071 0.7512 21.425 1.05094V3.18526H21.4856C22.249 1.12317 23.6866 0.158936 25.6237 0.158936C27.5607 0.158936 28.8235 1.12317 29.7047 3.18526C30.4681 1.12317 32.1982 0.158936 34.0497 0.158936C35.3696 0.158936 36.8107 0.707864 37.6883 1.94656C38.6871 3.3225 38.4802 5.31597 38.4802 7.0711V17.3816C38.4802 17.7066 38.2056 17.9702 37.8702 17.9702H34.7274C34.4135 17.9485 34.1638 17.6957 34.1638 17.3852V8.72149C34.1638 8.03533 34.2209 6.31271 34.0746 5.66266C33.8392 4.5612 33.1364 4.25423 32.2268 4.25423C31.4634 4.25423 30.6714 4.77066 30.3468 5.59405C30.0222 6.42105 30.0543 7.79337 30.0543 8.72149V17.3816C30.0543 17.7066 29.7832 17.9702 29.4478 17.9702H26.305C25.9911 17.9485 25.7414 17.6957 25.7414 17.3852V8.72149C25.7414 6.89775 26.0304 4.21812 23.8008 4.21812C21.5712 4.21812 21.6283 6.83275 21.6283 8.72149V17.3816C21.6283 17.7066 21.3572 17.9702 21.0219 17.9702H21.0254Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M79.1511 0.158936C83.8172 0.158936 86.3428 4.21812 86.3428 9.37515C86.3428 14.5322 83.5532 18.3169 79.1511 18.3169C74.7491 18.3169 72.0771 14.2577 72.0771 9.20542C72.0771 4.15311 74.5992 0.158936 79.1511 0.158936ZM79.1797 3.49223C76.8609 3.49223 76.7146 6.68829 76.7146 8.68538C76.7146 10.6825 76.6861 14.9439 79.1511 14.9439C81.6161 14.9439 81.7053 11.5059 81.7053 9.40765C81.7053 8.03172 81.6482 6.38133 81.2344 5.07401C80.8813 3.94004 80.1785 3.49223 79.1797 3.49223Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.3969 17.9702H89.2648C88.9509 17.9485 88.7012 17.6957 88.7012 17.3852V1.0365C88.7226 0.736755 88.983 0.502016 89.3005 0.502016H92.2185C92.4932 0.516461 92.718 0.704252 92.7786 0.96066V3.45973H92.8392C93.7204 1.22429 94.9511 0.158936 97.1236 0.158936C98.5327 0.158936 99.9132 0.675361 100.794 2.0838C101.615 3.39111 101.615 5.59044 101.615 7.17222V17.4538C101.579 17.7427 101.322 17.9702 101.012 17.9702H97.8584C97.5659 17.9522 97.3341 17.7355 97.2984 17.4538V8.58065C97.2984 6.79302 97.5053 4.17839 95.3328 4.17839C94.5694 4.17839 93.8631 4.69482 93.5135 5.48571C93.0747 6.48244 93.014 7.47918 93.014 8.58065V17.3779C93.0069 17.703 92.7358 17.9666 92.4005 17.9666L92.3969 17.9702Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.4951 10.166C50.4951 11.4083 50.5236 12.4411 49.9065 13.5426C49.407 14.4382 48.6115 14.9908 47.7304 14.9908C46.5247 14.9908 45.8183 14.059 45.8183 12.6831C45.8183 9.97097 48.2227 9.47982 50.4951 9.47982V10.1696V10.166ZM53.6628 17.9268C53.4559 18.1146 53.1563 18.1291 52.9208 18.0027C51.8756 17.1251 51.6901 16.717 51.1193 15.8828C49.3928 17.6632 48.1692 18.1977 45.9325 18.1977C43.2855 18.1977 41.2236 16.5437 41.2236 13.2356C41.2236 10.6499 42.6077 8.89478 44.5769 8.03166C46.2821 7.27328 48.665 7.13604 50.4915 6.9302V6.5185C50.4915 5.76011 50.5521 4.86449 50.1098 4.21084C49.7281 3.62579 48.9932 3.38383 48.344 3.38383C47.1454 3.38383 46.0787 4.00499 45.8148 5.29425C45.7612 5.57954 45.5543 5.86484 45.269 5.87929L42.2225 5.54704C41.9656 5.48926 41.6802 5.2798 41.7516 4.88255C42.4508 1.13756 45.7934 0.00720215 48.7828 0.00720215C50.3131 0.00720215 52.3144 0.418898 53.5201 1.59259C55.0505 3.04075 54.9043 4.96922 54.9043 7.07104V12.0294C54.9043 13.5209 55.5178 14.1746 56.0922 14.9799C56.2919 15.2688 56.3383 15.6155 56.0815 15.825C55.4393 16.3703 54.2978 17.3743 53.67 17.9413L53.6628 17.934V17.9268Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.26917 10.166C9.26917 11.4083 9.29771 12.4412 8.68057 13.5426C8.18114 14.4383 7.38563 14.9908 6.50451 14.9908C5.29876 14.9908 4.59244 14.0591 4.59244 12.6831C4.59244 9.97099 6.9968 9.47984 9.26917 9.47984V10.1696V10.166ZM12.4405 17.9268C12.2336 18.1146 11.9304 18.1291 11.6985 18.0027C10.6533 17.1251 10.4678 16.717 9.89702 15.8828C8.17044 17.6632 6.94686 18.1977 4.71372 18.1977C2.06678 18.1977 0.00488281 16.5437 0.00488281 13.2357C0.00488281 10.6499 1.389 8.8948 3.35815 8.03168C5.06332 7.2733 7.44628 7.13607 9.27274 6.93022V6.51852C9.27274 5.76013 9.32982 4.86451 8.89104 4.21086C8.50934 3.62581 7.77447 3.38385 7.12522 3.38385C5.92661 3.38385 4.85998 4.00501 4.596 5.29427C4.54249 5.57956 4.33559 5.86486 4.05021 5.87931L1.00373 5.54706C0.746882 5.48928 0.461498 5.27982 0.532844 4.88257C1.22847 1.13036 4.56746 0 7.56043 0C9.09081 0 11.0921 0.411696 12.2978 1.58539C13.8282 3.03355 13.6819 4.96202 13.6819 7.06384V12.0222C13.6819 13.5137 14.2955 14.1674 14.8698 14.9727C15.0696 15.2616 15.116 15.6083 14.8591 15.8178C14.217 16.3631 13.0755 17.3671 12.4476 17.9341L12.4405 17.9268Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1110_6019\">\\n<rect width=\"101.611\" height=\"31\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k1a7i3\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"gzP0K6jsK\",style:{backdropFilter:\"blur(16px)\",background:\"linear-gradient(180deg, rgba(167, 110, 0, 0.3) 0%, rgba(238, 180, 67, 0.3) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(16px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Perfect assembly operations and maintenance procedures without disrupting production, at 4 warehouses in Ohio, USA\"})}),className:\"framer-1uww1r8\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"uFRGIcJup\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4(PAeZHSCBc)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MkWEN4WJH\"},implicitPathVariables:undefined},{href:{webPageId:\"MkWEN4WJH\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,...addPropertyOverrides({l6GYqtOKV:{y:(componentViewport?.y||0)+112+744+0+0+24+442}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wq44zp-container\",layoutDependency:layoutDependency,layoutId:\"KoKP0GKaR-container\",nodeId:\"KoKP0GKaR\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton2,{EvfeSIJMA:\"Read Case Study\",GjpHytGXC:20,height:\"100%\",id:\"KoKP0GKaR\",layoutId:\"KoKP0GKaR\",PAk0oYY4n:resolvedLinks4[0],style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({l6GYqtOKV:{PAk0oYY4n:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejgqoj\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"WZfojX5kq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ymjt1\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"EkHPGJT5g\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"4\"})}),className:\"framer-evo2vk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"hlQDKs2nW\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Fulfilment centres running the pilot\"})}),className:\"framer-dj78ct\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"tceR4kfmH\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qzimwh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"mzHfxaEMy\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"50+\"})}),className:\"framer-14yb31d\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"HT1602P9F\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"VR modules to be deployed\"})}),className:\"framer-rdf7wh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HezBbryKg\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-107izor\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"JVDbbFDJj\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"1500+\"})}),className:\"framer-oocjad\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"moTieC5Lx\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Workers VR trained in less than one month\"})}),className:\"framer-14c47j5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Ae8lSW2fr\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f7h03m\",\"data-framer-name\":\"Content3\",layoutDependency:layoutDependency,layoutId:\"RcqdL9w1R\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-geymq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"le6mPeOn5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:550,pixelWidth:444,src:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png\",srcSet:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png 444w\"},className:\"framer-n6id4i\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"ASGK1kqad\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({jIW_VchTa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+112+744+0+0+0),pixelHeight:550,pixelWidth:444,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 112px) / 8, 50px) * 3 + 32px)`,src:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png\",srcSet:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png 444w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ou68uv\",layoutDependency:layoutDependency,layoutId:\"hAECXRP1c\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134.4,intrinsicWidth:299.2,pixelHeight:168,pixelWidth:374,src:\"https://framerusercontent.com/images/d55Vz2lqkesrAOEj11c8wcyDc.png\"},className:\"framer-1jjzbcy\",\"data-framer-name\":\"Ultratech white\",layoutDependency:layoutDependency,layoutId:\"AzNfDR9W2\",...addPropertyOverrides({jIW_VchTa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134.4,intrinsicWidth:299.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+112+744+0+0+0+32),pixelHeight:168,pixelWidth:374,src:\"https://framerusercontent.com/images/d55Vz2lqkesrAOEj11c8wcyDc.png\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n4iopz\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"MZELUoWDy\",style:{backdropFilter:\"blur(16px)\",background:\"linear-gradient(180deg, rgba(141, 21, 47, 0.3) 0%, rgba(223, 84, 114, 0.3) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(16px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Master high-risk operations safely through immersive training scenarios.\"})}),className:\"framer-1rqbvy3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"idgEVPxpq\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed6(Ihu2nJotx)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X1zpHxRvY\"},implicitPathVariables:undefined},{href:{webPageId:\"X1zpHxRvY\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,...addPropertyOverrides({jIW_VchTa:{y:(componentViewport?.y||0)+112+744+0+0+24+442}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lssqg7-container\",layoutDependency:layoutDependency,layoutId:\"sid9dhzrr-container\",nodeId:\"sid9dhzrr\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton2,{EvfeSIJMA:\"Read Case Study\",GjpHytGXC:20,height:\"100%\",id:\"sid9dhzrr\",layoutId:\"sid9dhzrr\",PAk0oYY4n:resolvedLinks5[0],style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({jIW_VchTa:{PAk0oYY4n:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rjj9qh\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"H7xz463NJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sze1rj\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jUxl1sW15\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"40+\"})}),className:\"framer-1ej6iuh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"USqjk0epc\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"VR modules created\"})}),className:\"framer-191b1l0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"a5V8h7PiT\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y706mh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"yMou38hUi\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"55+\"})}),className:\"framer-nt1tys\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"YpodQwXUb\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Plants deployed\"})}),className:\"framer-1x2v5v1\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I6QCeS2T2\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pn5qxt\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"IFjNPzmLK\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"65K+\"})}),className:\"framer-d43u7i\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"KmwnSyeil\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Workers trained in VR\"})}),className:\"framer-qed05\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"s4DyPw9lB\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16r48sz\",\"data-framer-name\":\"Content1\",layoutDependency:layoutDependency,layoutId:\"ooTudjTnT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mfa7v2\",layoutDependency:layoutDependency,layoutId:\"oO5XJ1Da_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v0hd8l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NsI_ilPuz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1100,pixelWidth:888,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png\",srcSet:\"https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png?scale-down-to=1024 826w,https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png 888w\"},className:\"framer-1c43rop\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"rIhvMJE3W\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({Cnr8gUiEH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+672+0+0+0+0),pixelHeight:1100,pixelWidth:888,positionX:\"center\",positionY:\"top\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) * 0.49, 1px)`,src:\"https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png\",srcSet:\"https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png?scale-down-to=1024 826w,https://framerusercontent.com/images/6VxFZRAnvuYyq5voL2kwyZrhWQ.png 888w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-748fu1\",layoutDependency:layoutDependency,layoutId:\"MqgALcNd7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yzo13b\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:224,layoutDependency:layoutDependency,layoutId:\"c0AzPUWoH\",svg:'<svg width=\"224\" height=\"54\" viewBox=\"0 0 224 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1045_1580)\">\\n<path d=\"M7.10614 42.9563L10.8171 33.1207L14.2912 43.0343H7.10614V42.9563ZM17.9233 52.948H21.3184L12.4752 29.1396H9.15902L0 52.948H3.39516L6.0797 45.6103H15.2387L17.9233 52.948ZM33.9516 47.8741C33.9516 49.8256 32.3724 50.8403 29.6089 50.8403C27.3981 50.8403 25.9769 50.2159 25.1084 48.8108L21.8711 49.3572C23.1344 51.9332 25.74 53.1041 29.451 53.1041C34.5043 53.1041 37.1098 50.372 37.1098 47.4057C37.1098 43.6588 33.5568 42.644 29.53 41.7854C27.556 41.3951 25.2663 40.6925 25.2663 38.9752C25.2663 37.7262 26.4506 36.3212 28.8983 36.3212C31.346 36.3212 32.8462 37.9604 33.083 38.663L35.9255 37.4921C34.5832 34.9941 31.9776 34.0574 29.2931 34.0574C25.0294 34.0574 22.2659 36.087 22.2659 39.3655C22.2659 43.1124 25.5031 43.8149 28.6614 44.5175C31.346 45.22 33.9516 45.8445 33.9516 47.8741ZM43.9001 29.1396L40.7419 30.4667V34.838H37.8205V37.336H40.7419V48.9669C40.6629 51.3087 40.6629 53.026 44.2949 53.026C45.4793 53.026 46.7426 52.7918 47.2953 52.7138V50.2939C46.6637 50.45 45.8741 50.6842 45.3214 50.6842C43.9791 50.6842 43.9791 49.7475 43.9791 47.6399V37.336H47.2953V34.838H43.9791V29.1396H43.9001ZM49.9798 34.838V52.948H53.0592V44.5955C53.0592 43.0343 52.9802 41.239 53.8487 39.9119C54.8752 38.2727 56.2964 37.7262 59.3757 37.6482V34.5258C58.1124 34.6038 54.8752 34.6038 53.1381 38.0385V34.838H49.9798ZM77.4569 29.1396V32.1059H91.1955L77.5359 49.9036V53.026H95.1433V50.1378H81.1679L94.8275 32.184V29.2177H77.4569V29.1396ZM114.409 34.838V52.948H117.488V42.644C117.488 41.317 117.488 39.9119 118.83 38.5849C119.778 37.6482 120.962 37.1798 122.305 37.1798C123.963 37.1798 125.7 37.9604 126.252 39.6778C126.41 40.3022 126.41 40.8487 126.41 42.644V52.8699H129.49V42.2537C129.49 40.6925 129.49 39.5997 129.174 38.5849C128.305 35.6186 125.463 34.4477 123.173 34.4477C122.068 34.4477 119.146 34.6819 117.488 37.6482V34.9161H114.409V34.838ZM162.099 48.5766C161.467 49.8256 160.283 50.9184 157.835 50.9184C155.782 50.9184 152.308 49.6694 152.308 43.6588C152.308 42.0196 152.624 36.3992 157.677 36.3992C160.204 36.3992 161.388 37.8043 161.941 38.9752L164.783 37.8043C163.046 34.9161 159.809 34.2135 157.519 34.2135C151.677 34.2135 148.834 38.8191 148.834 43.9711C148.834 48.4205 151.282 53.3383 157.756 53.3383C161.467 53.3383 163.599 51.5429 164.705 49.7475L162.099 48.5766ZM99.5649 42.0196H109.277C109.04 37.2579 106.276 36.4773 104.381 36.4773C101.776 36.4773 99.9597 38.3507 99.5649 42.0196ZM111.803 49.5133C110.777 51.3087 108.724 53.2602 104.776 53.2602C99.407 53.2602 96.2487 49.6694 96.2487 43.5808C96.2487 36.7895 100.749 34.2135 104.618 34.2135C108.013 34.2135 111.172 36.087 112.277 40.6145C112.593 42.1757 112.593 43.5027 112.593 44.2833H99.486C99.407 47.3276 100.67 51.1526 105.013 51.0745C106.75 51.0745 108.013 50.2159 108.803 49.045L111.803 49.5133ZM134.543 42.0196H144.255C144.018 37.2579 141.254 36.4773 139.359 36.4773C136.675 36.4773 134.859 38.3507 134.543 42.0196ZM146.702 49.5133C145.676 51.3087 143.623 53.2602 139.675 53.2602C134.306 53.2602 131.148 49.6694 131.148 43.5808C131.148 36.7895 135.648 34.2135 139.517 34.2135C142.912 34.2135 146.071 36.087 147.176 40.6145C147.492 42.1757 147.492 43.5027 147.492 44.2833H134.306C134.227 47.3276 135.49 51.1526 139.833 51.0745C141.57 51.0745 142.833 50.2159 143.623 49.045L146.702 49.5133ZM181.68 52.948H178.443C178.443 52.948 178.127 51.699 178.048 50.2939C177.101 51.2306 175.364 53.1821 171.89 53.1821C168.416 53.1821 165.731 51.0745 165.731 48.0302C165.731 47.0935 165.968 46.0787 166.521 45.2981C167.547 43.7369 169.521 42.566 174.969 42.0976L177.89 41.8634V41.3951C177.89 39.5216 177.89 36.3992 173.785 36.3992C171.258 36.3992 170.31 37.6482 170.074 38.741L167.231 37.5701C167.31 37.4921 167.31 37.3359 167.389 37.2579C168.494 35.3064 170.626 34.0574 173.706 34.0574C175.364 34.0574 177.575 34.4477 178.996 35.6186C181.049 37.1798 180.97 40.1461 180.97 40.1461L181.128 49.4353C181.128 49.5133 181.286 52.1674 181.68 52.948ZM177.417 47.9521C177.89 46.9373 177.89 46.547 177.89 43.893C176.706 44.0491 175.048 44.2833 173.074 44.7517C169.679 45.4542 169.126 46.7812 169.126 48.0302C169.126 49.5133 170.31 50.6842 172.6 50.6842C174.732 50.6842 176.548 49.8256 177.417 47.9521ZM75.3251 52.948H72.1668C72.1668 52.948 71.851 51.699 71.772 50.2939C70.8245 51.2306 69.0875 53.1821 65.6134 53.1821C62.1392 53.1821 59.3757 51.0745 59.3757 48.0302C59.3757 47.0935 59.6126 46.0787 60.1653 45.2981C61.1918 43.7369 63.1657 42.566 68.6137 42.0976L71.5351 41.8634V41.3951C71.5351 39.5216 71.5351 36.3992 67.4294 36.3992C64.8238 36.3992 63.9553 37.6482 63.7184 38.741L60.8759 37.5701C60.9549 37.4921 60.9549 37.3359 61.0338 37.2579C62.1392 35.3064 64.2711 34.0574 67.3504 34.0574C69.0085 34.0574 71.2193 34.4477 72.6405 35.6186C74.6934 37.1798 74.6145 40.1461 74.6145 40.1461L74.6934 49.4353C74.7724 49.5133 74.9303 52.1674 75.3251 52.948ZM71.1404 47.9521C71.6141 46.9373 71.6141 46.547 71.6141 43.893C70.4297 44.0491 68.7716 44.2833 66.7977 44.7517C63.4026 45.4542 62.8499 46.7812 62.8499 48.0302C62.8499 49.5133 64.0342 50.6842 66.324 50.6842C68.3769 50.6842 70.1929 49.8256 71.1404 47.9521Z\" fill=\"white\"/>\\n<path d=\"M201.657 37.7263C201.183 38.0385 200.709 38.3507 200.235 38.663C194.708 35.6186 182.865 29.7641 181.838 29.2958C180.733 28.7494 178.838 27.9688 179.075 26.1734C179.391 23.6755 183.891 18.1332 185.786 15.7914C196.051 3.45791 200.63 -0.367026 203.631 0.0232746C206.868 0.413575 208.684 3.77016 208.921 19.226C207.105 18.6796 205.131 18.1332 202.999 17.5868C202.841 15.323 202.367 11.9665 202.209 10.7956C202.051 9.46854 201.736 9.00018 201.262 8.92212C200.63 8.84406 199.13 10.2491 197.788 11.6542C197.156 12.2787 195.419 13.996 193.524 15.9475C191.945 15.8695 190.84 16.1817 190.287 16.9623C189.813 17.5868 189.734 18.4454 189.971 19.5383C188.945 20.5531 188.076 21.4117 187.444 22.0362C185.313 24.1438 183.023 25.8611 182.944 26.7198C182.865 27.4223 183.891 28.1249 185.47 29.0616C189.103 31.0131 198.34 36.0089 201.657 37.7263ZM216.027 22.2704C212.395 21.0214 203.473 17.7429 194.077 16.4939C190.84 16.1036 189.576 17.1965 190.84 20.2408C192.182 23.2852 195.577 28.281 199.13 32.1059C202.683 35.8528 206.552 36.8676 207.815 31.0912C207.894 30.857 207.894 30.7009 207.973 30.4667C208.289 28.9835 208.526 27.5004 208.605 26.2514C207.026 25.5489 205.21 24.7683 203.473 24.0658C203.552 25.3928 203.71 27.7346 203.789 29.4519V30.0764C203.867 32.9646 202.92 32.9646 201.262 31.7937C199.367 30.4667 193.445 22.7387 192.735 19.3041C192.735 19.0699 192.813 19.0699 192.892 19.148C192.945 19.148 192.998 19.174 193.05 19.226C194.393 19.7725 198.814 21.4898 203.315 23.3632C205.131 24.1438 206.947 24.8464 208.526 25.627C210.105 26.3295 211.526 27.032 212.632 27.5785C214.606 28.5932 215.316 29.2958 214.527 30.1544C210.5 34.2136 196.288 39.99 191.392 47.1715L191.313 47.2496C191.234 47.3276 191.234 47.4057 191.155 47.4838C191.155 47.4838 191.155 47.5618 191.076 47.5618C190.84 48.0302 190.524 48.7327 190.366 49.6695C190.129 51.2307 190.997 52.6357 193.287 53.2602C193.84 53.4163 194.472 53.5725 195.182 53.6505H195.577C199.92 53.8847 211.289 51.3868 214.685 49.9036C218.238 48.3424 217.211 46.7812 216.185 46.0006C215.395 45.3762 211.447 43.1905 209.552 42.1757C209 42.4879 208.605 42.7221 208.131 43.1124C211.368 45.0639 212.711 46.0787 213.5 46.6251C213.816 46.8593 213.658 47.0935 213.184 47.1715H212.869C209.789 47.4057 203.867 47.796 201.104 47.9521C200.709 47.9521 200.235 48.0302 199.999 48.0302C200.709 47.4057 201.42 46.8593 201.815 46.5471C207.736 42.4099 217.606 36.6334 220.527 34.1355C222.738 32.184 228.581 26.5637 216.027 22.2704Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1045_1580\">\\n<rect width=\"223.828\" height=\"53.6663\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jqy8sn\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ULnBEuvFO\",style:{backdropFilter:\"blur(16px)\",background:\"linear-gradient(180deg, rgba(109, 63, 159, 0.3) 0%, rgba(178, 98, 185, 0.3) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(16px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"From QA labs to medical device maintenance, \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(46, 25, 89))\"},children:\"we understand the complexities of regulated environments.\"})]}),className:\"framer-m5crzs\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"PmTyZSEB4\",style:{\"--extracted-2gxw0f\":\"rgb(46, 25, 89)\",\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed8(smbt7dfR4)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"b6lHcFysW\"},implicitPathVariables:undefined},{href:{webPageId:\"b6lHcFysW\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,...addPropertyOverrides({Cnr8gUiEH:{y:(componentViewport?.y||0)+96+672+0+0+0+24+242}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12frc4y-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Fy5kYW1Bg-container\",nodeId:\"Fy5kYW1Bg\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton,{EvfeSIJMA:\"Read Case Study\",height:\"100%\",id:\"Fy5kYW1Bg\",layoutId:\"Fy5kYW1Bg\",PAk0oYY4n:resolvedLinks6[0],style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({Cnr8gUiEH:{PAk0oYY4n:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1il58sp\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"HOedWKDtY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v1ei2b\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"b8YoCeiDb\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"90+\"})}),className:\"framer-107vikt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"weP7ekRkL\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"Facilities worldwide using the modules\"})}),className:\"framer-6bn516\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mFCgMQIZu\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m9ndva\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"bJ9AdxMuV\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"100+\"})}),className:\"framer-1dfim0d\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"fhLHaOKyA\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"VR headsets deployed\"})}),className:\"framer-1qf6398\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"uTMsgf3W2\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-erhhvf\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"su4l74Uig\",style:{backgroundColor:\"rgb(242, 237, 248)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"20K +\"})}),className:\"framer-1cy7wss\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gLeJLLf79\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 25, 89))\"},children:\"Workers certified in VR\"})}),className:\"framer-eirzk6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"W0fRpBvbS\",style:{\"--extracted-r6o4lv\":\"rgb(46, 25, 89)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eb13h9\",\"data-framer-name\":\"Content2\",layoutDependency:layoutDependency,layoutId:\"KUQReY96g\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-196x1ka\",layoutDependency:layoutDependency,layoutId:\"Y0oGqS8uu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wotu2y\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sLa3XhtQe\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1100,pixelWidth:888,src:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png\",srcSet:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png?scale-down-to=1024 826w,https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png 888w\"},className:\"framer-1aqshb8\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"XTUuandYu\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({ixGPx5Nj7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+672+0+0+0+0),pixelHeight:1100,pixelWidth:888,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) * 0.49, 1px)`,src:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png\",srcSet:\"https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png?scale-down-to=1024 826w,https://framerusercontent.com/images/HOlKImSXmwt3IBkuGKLKO44L4Zk.png 888w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9e7r55\",layoutDependency:layoutDependency,layoutId:\"KFb5xTxQD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-333xed\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"Nk8MX8ce8\",svg:'<svg width=\"102\" height=\"31\" viewBox=\"0 0 102 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1110_6019)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.0389 24.2431C57.135 28.6526 48.577 31 41.2069 31C30.876 31 21.5761 27.1358 14.5378 20.7004C13.9848 20.1948 14.4771 19.505 15.1442 19.895C22.739 24.3695 32.1317 27.0636 41.8312 27.0636C48.3737 27.0636 55.5689 25.6877 62.1863 22.8455C63.1851 22.4158 64.0199 23.51 63.046 24.2431H63.0389Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.4968 21.4046C64.7405 20.4259 60.5061 20.9387 58.6012 21.1698C58.0233 21.2384 57.9341 20.7292 58.4549 20.3609C61.8332 17.9593 67.3732 18.6527 68.0153 19.4544C68.6646 20.267 67.8441 25.8863 64.6799 28.5695C64.1912 28.9812 63.731 28.7609 63.945 28.2156C64.6585 26.4135 66.2531 22.3796 65.4968 21.401V21.4046Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.7364 3.38744V1.05088C58.7364 0.696969 59.004 0.458618 59.3214 0.458618H69.6595C69.9913 0.458618 70.2552 0.70058 70.2552 1.04727V3.04797C70.2552 3.38383 69.9734 3.8208 69.4776 4.5178L64.123 12.257C66.11 12.21 68.2147 12.5098 70.0198 13.539C70.4265 13.7701 70.5371 14.1132 70.5692 14.4491V16.9409C70.5692 17.284 70.1982 17.6812 69.8093 17.4754C66.6273 15.7889 62.4036 15.6047 58.8862 17.4971C58.5259 17.6921 58.1514 17.2984 58.1514 16.9554V14.5863C58.1514 14.2071 58.1585 13.5607 58.5366 12.9828L64.7402 3.97248H59.3393C59.0075 3.97248 58.7435 3.73413 58.7435 3.38383L58.7364 3.38744Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.0254 17.9702H17.8791C17.5794 17.9522 17.3404 17.721 17.3154 17.4321V1.09067C17.3154 0.762034 17.5901 0.502016 17.9254 0.502016H20.8542C21.161 0.516461 21.4071 0.7512 21.425 1.05094V3.18526H21.4856C22.249 1.12317 23.6866 0.158936 25.6237 0.158936C27.5607 0.158936 28.8235 1.12317 29.7047 3.18526C30.4681 1.12317 32.1982 0.158936 34.0497 0.158936C35.3696 0.158936 36.8107 0.707864 37.6883 1.94656C38.6871 3.3225 38.4802 5.31597 38.4802 7.0711V17.3816C38.4802 17.7066 38.2056 17.9702 37.8702 17.9702H34.7274C34.4135 17.9485 34.1638 17.6957 34.1638 17.3852V8.72149C34.1638 8.03533 34.2209 6.31271 34.0746 5.66266C33.8392 4.5612 33.1364 4.25423 32.2268 4.25423C31.4634 4.25423 30.6714 4.77066 30.3468 5.59405C30.0222 6.42105 30.0543 7.79337 30.0543 8.72149V17.3816C30.0543 17.7066 29.7832 17.9702 29.4478 17.9702H26.305C25.9911 17.9485 25.7414 17.6957 25.7414 17.3852V8.72149C25.7414 6.89775 26.0304 4.21812 23.8008 4.21812C21.5712 4.21812 21.6283 6.83275 21.6283 8.72149V17.3816C21.6283 17.7066 21.3572 17.9702 21.0219 17.9702H21.0254Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M79.1511 0.158936C83.8172 0.158936 86.3428 4.21812 86.3428 9.37515C86.3428 14.5322 83.5532 18.3169 79.1511 18.3169C74.7491 18.3169 72.0771 14.2577 72.0771 9.20542C72.0771 4.15311 74.5992 0.158936 79.1511 0.158936ZM79.1797 3.49223C76.8609 3.49223 76.7146 6.68829 76.7146 8.68538C76.7146 10.6825 76.6861 14.9439 79.1511 14.9439C81.6161 14.9439 81.7053 11.5059 81.7053 9.40765C81.7053 8.03172 81.6482 6.38133 81.2344 5.07401C80.8813 3.94004 80.1785 3.49223 79.1797 3.49223Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.3969 17.9702H89.2648C88.9509 17.9485 88.7012 17.6957 88.7012 17.3852V1.0365C88.7226 0.736755 88.983 0.502016 89.3005 0.502016H92.2185C92.4932 0.516461 92.718 0.704252 92.7786 0.96066V3.45973H92.8392C93.7204 1.22429 94.9511 0.158936 97.1236 0.158936C98.5327 0.158936 99.9132 0.675361 100.794 2.0838C101.615 3.39111 101.615 5.59044 101.615 7.17222V17.4538C101.579 17.7427 101.322 17.9702 101.012 17.9702H97.8584C97.5659 17.9522 97.3341 17.7355 97.2984 17.4538V8.58065C97.2984 6.79302 97.5053 4.17839 95.3328 4.17839C94.5694 4.17839 93.8631 4.69482 93.5135 5.48571C93.0747 6.48244 93.014 7.47918 93.014 8.58065V17.3779C93.0069 17.703 92.7358 17.9666 92.4005 17.9666L92.3969 17.9702Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.4951 10.166C50.4951 11.4083 50.5236 12.4411 49.9065 13.5426C49.407 14.4382 48.6115 14.9908 47.7304 14.9908C46.5247 14.9908 45.8183 14.059 45.8183 12.6831C45.8183 9.97097 48.2227 9.47982 50.4951 9.47982V10.1696V10.166ZM53.6628 17.9268C53.4559 18.1146 53.1563 18.1291 52.9208 18.0027C51.8756 17.1251 51.6901 16.717 51.1193 15.8828C49.3928 17.6632 48.1692 18.1977 45.9325 18.1977C43.2855 18.1977 41.2236 16.5437 41.2236 13.2356C41.2236 10.6499 42.6077 8.89478 44.5769 8.03166C46.2821 7.27328 48.665 7.13604 50.4915 6.9302V6.5185C50.4915 5.76011 50.5521 4.86449 50.1098 4.21084C49.7281 3.62579 48.9932 3.38383 48.344 3.38383C47.1454 3.38383 46.0787 4.00499 45.8148 5.29425C45.7612 5.57954 45.5543 5.86484 45.269 5.87929L42.2225 5.54704C41.9656 5.48926 41.6802 5.2798 41.7516 4.88255C42.4508 1.13756 45.7934 0.00720215 48.7828 0.00720215C50.3131 0.00720215 52.3144 0.418898 53.5201 1.59259C55.0505 3.04075 54.9043 4.96922 54.9043 7.07104V12.0294C54.9043 13.5209 55.5178 14.1746 56.0922 14.9799C56.2919 15.2688 56.3383 15.6155 56.0815 15.825C55.4393 16.3703 54.2978 17.3743 53.67 17.9413L53.6628 17.934V17.9268Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.26917 10.166C9.26917 11.4083 9.29771 12.4412 8.68057 13.5426C8.18114 14.4383 7.38563 14.9908 6.50451 14.9908C5.29876 14.9908 4.59244 14.0591 4.59244 12.6831C4.59244 9.97099 6.9968 9.47984 9.26917 9.47984V10.1696V10.166ZM12.4405 17.9268C12.2336 18.1146 11.9304 18.1291 11.6985 18.0027C10.6533 17.1251 10.4678 16.717 9.89702 15.8828C8.17044 17.6632 6.94686 18.1977 4.71372 18.1977C2.06678 18.1977 0.00488281 16.5437 0.00488281 13.2357C0.00488281 10.6499 1.389 8.8948 3.35815 8.03168C5.06332 7.2733 7.44628 7.13607 9.27274 6.93022V6.51852C9.27274 5.76013 9.32982 4.86451 8.89104 4.21086C8.50934 3.62581 7.77447 3.38385 7.12522 3.38385C5.92661 3.38385 4.85998 4.00501 4.596 5.29427C4.54249 5.57956 4.33559 5.86486 4.05021 5.87931L1.00373 5.54706C0.746882 5.48928 0.461498 5.27982 0.532844 4.88257C1.22847 1.13036 4.56746 0 7.56043 0C9.09081 0 11.0921 0.411696 12.2978 1.58539C13.8282 3.03355 13.6819 4.96202 13.6819 7.06384V12.0222C13.6819 13.5137 14.2955 14.1674 14.8698 14.9727C15.0696 15.2616 15.116 15.6083 14.8591 15.8178C14.217 16.3631 13.0755 17.3671 12.4476 17.9341L12.4405 17.9268Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1110_6019\">\\n<rect width=\"101.611\" height=\"31\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zkgt3q\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"rj74CDNO_\",style:{backdropFilter:\"blur(16px)\",background:\"linear-gradient(180deg, rgba(167, 110, 0, 0.3) 0%, rgba(238, 180, 67, 0.3) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(16px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Perfect assembly operations and maintenance procedures without disrupting production, at 4 warehouses in Ohio, USA\"})}),className:\"framer-svj92q\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"NeULFXkZS\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MkWEN4WJH\"},implicitPathVariables:undefined},{href:{webPageId:\"MkWEN4WJH\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,...addPropertyOverrides({ixGPx5Nj7:{y:(componentViewport?.y||0)+96+672+0+0+0+24+242}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vnbo9i-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"prNDhDCKA-container\",nodeId:\"prNDhDCKA\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton,{EvfeSIJMA:\"Read Case Study\",height:\"100%\",id:\"prNDhDCKA\",layoutId:\"prNDhDCKA\",PAk0oYY4n:resolvedLinks7[0],style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({ixGPx5Nj7:{PAk0oYY4n:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18r0ec3\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"WhtF2kUgI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5dsuup\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"mxPJEtBDc\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"4\"})}),className:\"framer-1xjclzb\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"BGyfjgl6w\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Fulfilment centres running the pilot\"})}),className:\"framer-1vyxkjl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"uu0gXU_W3\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-io55wn\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"AeITbvQA0\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"50+\"})}),className:\"framer-gh8st0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"sLf3ka7sL\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"VR modules to be deployed\"})}),className:\"framer-1juaz5c\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"PotmJD03l\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17eacc3\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"zSC0i70bK\",style:{backgroundColor:\"rgba(238, 180, 67, 0.2)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"1500+\"})}),className:\"framer-r3cpdh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"IetIqdzAp\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 32, 0))\"},children:\"Workers VR trained in less than one month\"})}),className:\"framer-1xzpvfi\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kIUxb8CQl\",style:{\"--extracted-r6o4lv\":\"rgb(49, 32, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8b3y4s\",\"data-framer-name\":\"Content3\",layoutDependency:layoutDependency,layoutId:\"Qc0blLhc1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k1e5ms\",layoutDependency:layoutDependency,layoutId:\"wzbcqwIWp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i68lq1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JRbQCMl3p\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:550,pixelWidth:444,src:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png\",srcSet:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png 444w\"},className:\"framer-1lqmp35\",\"data-framer-name\":\"Placeholder Image\",layoutDependency:layoutDependency,layoutId:\"P7C9Fx8FD\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({OcofTXnOJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+672+0+0+0+0),pixelHeight:550,pixelWidth:444,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) * 0.49, 1px)`,src:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png\",srcSet:\"https://framerusercontent.com/images/uKPgHYRlEW4BaIgrAThpIeeJiuE.png 444w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1alcgs7\",layoutDependency:layoutDependency,layoutId:\"n5cuedovW\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134.4,intrinsicWidth:299.2,pixelHeight:168,pixelWidth:374,src:\"https://framerusercontent.com/images/d55Vz2lqkesrAOEj11c8wcyDc.png\"},className:\"framer-1s957ax\",\"data-framer-name\":\"Ultratech white\",layoutDependency:layoutDependency,layoutId:\"Md0tKIVT3\",...addPropertyOverrides({OcofTXnOJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134.4,intrinsicWidth:299.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+672+0+0+0+0+32),pixelHeight:168,pixelWidth:374,src:\"https://framerusercontent.com/images/d55Vz2lqkesrAOEj11c8wcyDc.png\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11amz8f\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"nFXQ0LfGM\",style:{backdropFilter:\"blur(16px)\",background:\"linear-gradient(180deg, rgba(141, 21, 47, 0.3) 0%, rgba(223, 84, 114, 0.3) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(16px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Master high-risk operations safely through immersive training scenarios.\"})}),className:\"framer-1y1ap8u\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"STDyCXGnr\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed11(Ihu2nJotx)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X1zpHxRvY\"},implicitPathVariables:undefined},{href:{webPageId:\"X1zpHxRvY\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,...addPropertyOverrides({OcofTXnOJ:{y:(componentViewport?.y||0)+96+672+0+0+0+24+242}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qml0tj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"W7y1kxB18-container\",nodeId:\"W7y1kxB18\",rendersWithMotion:true,scopeId:\"XTQE6JPaC\",children:/*#__PURE__*/_jsx(SecondaryButton,{EvfeSIJMA:\"Read Case Study\",height:\"100%\",id:\"W7y1kxB18\",layoutId:\"W7y1kxB18\",PAk0oYY4n:resolvedLinks8[0],style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({OcofTXnOJ:{PAk0oYY4n:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hg1w2o\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"FMKeiprAN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6nutgc\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jkd2c9ksk\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"40+\"})}),className:\"framer-17suc0r\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"OMsRBRWva\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"VR modules created\"})}),className:\"framer-e23jj7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"RfND0Pbap\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s72sv5\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"UqP25exKs\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"55+\"})}),className:\"framer-17oag47\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"i_tPfJCXz\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Plants deployed\"})}),className:\"framer-1kuui39\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"SqFBrcz5P\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a9ledb\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"X55idInN6\",style:{backgroundColor:\"rgb(255, 235, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"65K+\"})}),className:\"framer-kwvb9n\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Jeokyq0k3\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 5, 13))\"},children:\"Workers trained in VR\"})}),className:\"framer-17bp48e\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"CaG6r9b6A\",style:{\"--extracted-r6o4lv\":\"rgb(41, 5, 13)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yd8JX.framer-rwddud, .framer-yd8JX .framer-rwddud { display: block; }\",\".framer-yd8JX.framer-1uhhsxu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 112px 64px 112px 64px; position: relative; width: 1200px; }\",\".framer-yd8JX .framer-15mj73v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-1pymegz, .framer-yd8JX .framer-1ggfznl, .framer-yd8JX .framer-v7p091, .framer-yd8JX .framer-e356j3, .framer-yd8JX .framer-14j3cxo, .framer-yd8JX .framer-rum3qw, .framer-yd8JX .framer-s7v016, .framer-yd8JX .framer-1ecivhy, .framer-yd8JX .framer-1h5rzur, .framer-yd8JX .framer-1u3s9li, .framer-yd8JX .framer-1kz2q3l, .framer-yd8JX .framer-1fxvrod, .framer-yd8JX .framer-1q4960z, .framer-yd8JX .framer-wbkvwx, .framer-yd8JX .framer-15njmi9, .framer-yd8JX .framer-ijvopy, .framer-yd8JX .framer-tjyise, .framer-yd8JX .framer-12f7b8q, .framer-yd8JX .framer-xu276, .framer-yd8JX .framer-s6domk, .framer-yd8JX .framer-1j5kg1u, .framer-yd8JX .framer-k7y3kw, .framer-yd8JX .framer-yuvxel, .framer-yd8JX .framer-4e0bp0, .framer-yd8JX .framer-jhdjl6, .framer-yd8JX .framer-1li76zh, .framer-yd8JX .framer-1x6yxe4, .framer-yd8JX .framer-1uww1r8, .framer-yd8JX .framer-evo2vk, .framer-yd8JX .framer-dj78ct, .framer-yd8JX .framer-14yb31d, .framer-yd8JX .framer-rdf7wh, .framer-yd8JX .framer-oocjad, .framer-yd8JX .framer-14c47j5, .framer-yd8JX .framer-1rqbvy3, .framer-yd8JX .framer-1ej6iuh, .framer-yd8JX .framer-191b1l0, .framer-yd8JX .framer-nt1tys, .framer-yd8JX .framer-1x2v5v1, .framer-yd8JX .framer-d43u7i, .framer-yd8JX .framer-qed05, .framer-yd8JX .framer-m5crzs, .framer-yd8JX .framer-107vikt, .framer-yd8JX .framer-6bn516, .framer-yd8JX .framer-1dfim0d, .framer-yd8JX .framer-1qf6398, .framer-yd8JX .framer-1cy7wss, .framer-yd8JX .framer-eirzk6, .framer-yd8JX .framer-svj92q, .framer-yd8JX .framer-1xjclzb, .framer-yd8JX .framer-1vyxkjl, .framer-yd8JX .framer-gh8st0, .framer-yd8JX .framer-1juaz5c, .framer-yd8JX .framer-r3cpdh, .framer-yd8JX .framer-1xzpvfi, .framer-yd8JX .framer-1y1ap8u, .framer-yd8JX .framer-17suc0r, .framer-yd8JX .framer-e23jj7, .framer-yd8JX .framer-17oag47, .framer-yd8JX .framer-1kuui39, .framer-yd8JX .framer-kwvb9n, .framer-yd8JX .framer-17bp48e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yd8JX .framer-1idh070 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-vcii6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-yd8JX .framer-q9gag4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-yd8JX .framer-1xxz3py, .framer-yd8JX .framer-hy0d8n, .framer-yd8JX .framer-16gkx8r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 100%; justify-content: center; overflow: visible; padding: 11px 23px 11px 23px; position: relative; width: min-content; }\",\".framer-yd8JX .framer-23ddl6, .framer-yd8JX .framer-1ic8jm7, .framer-yd8JX .framer-1m140bf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yd8JX .framer-iflcft, .framer-yd8JX .framer-1eurjp1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-yd8JX .framer-1ud1408 { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(8, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 550px; justify-content: center; max-width: 1200px; min-height: 550px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-1po948b, .framer-yd8JX .framer-19s67os, .framer-yd8JX .framer-geymq { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: span 3; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-idzd2k, .framer-yd8JX .framer-1fy4izb, .framer-yd8JX .framer-n6id4i { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-yd8JX .framer-1bbxzh1, .framer-yd8JX .framer-748fu1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 24px 32px 32px 32px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-yd8JX .framer-1nxy9ku, .framer-yd8JX .framer-s0shao, .framer-yd8JX .framer-yzo13b { flex: none; height: 54px; position: relative; width: 224px; z-index: 1; }\",\".framer-yd8JX .framer-1g1fhz1, .framer-yd8JX .framer-1k1a7i3, .framer-yd8JX .framer-n4iopz { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; grid-column: span 3; height: 100%; justify-content: space-between; justify-self: start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-ljvfil-container, .framer-yd8JX .framer-1wq44zp-container, .framer-yd8JX .framer-1lssqg7-container, .framer-yd8JX .framer-12frc4y-container, .framer-yd8JX .framer-1vnbo9i-container, .framer-yd8JX .framer-1qml0tj-container { flex: none; height: 60px; position: relative; width: auto; }\",\".framer-yd8JX .framer-9mmbxu, .framer-yd8JX .framer-ejgqoj, .framer-yd8JX .framer-1rjj9qh { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-column: span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-iduviv, .framer-yd8JX .framer-kihjfd, .framer-yd8JX .framer-1k546tt, .framer-yd8JX .framer-17ymjt1, .framer-yd8JX .framer-qzimwh, .framer-yd8JX .framer-107izor, .framer-yd8JX .framer-1sze1rj, .framer-yd8JX .framer-1y706mh, .framer-yd8JX .framer-1pn5qxt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-around; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-10cb7lk-container { flex: none; height: 900px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-vafcmr, .framer-yd8JX .framer-1ov17wt, .framer-yd8JX .framer-xvdd11 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 358px; }\",\".framer-yd8JX .framer-1lmgtgj, .framer-yd8JX .framer-244o28, .framer-yd8JX .framer-7k8g3d { 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-yd8JX .framer-1nbutlr, .framer-yd8JX .framer-dwdubh, .framer-yd8JX .framer-4qrnm0 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 358px; justify-content: center; padding: 0px 16px 16px 16px; position: relative; width: 1px; }\",\".framer-yd8JX .framer-1ok700o, .framer-yd8JX .framer-ogtkg3, .framer-yd8JX .framer-s35468 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 24px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-yd8JX .framer-1dzns77, .framer-yd8JX .framer-1hwx5uh, .framer-yd8JX .framer-17iwe4v { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-yd8JX .framer-1wh3ffa, .framer-yd8JX .framer-7bbyip, .framer-yd8JX .framer-1k3z66r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-1pe4avu, .framer-yd8JX .framer-rhe3a3, .framer-yd8JX .framer-1jelv0t, .framer-yd8JX .framer-1x0q08t, .framer-yd8JX .framer-irrezx, .framer-yd8JX .framer-79dti2, .framer-yd8JX .framer-1ajjews, .framer-yd8JX .framer-ua2rhn, .framer-yd8JX .framer-ekxpm6 { 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: center; overflow: visible; padding: 16px 20px 16px 20px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-seg4e6-container, .framer-yd8JX .framer-15qg42f-container, .framer-yd8JX .framer-3lsl1l-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-1v8k2de, .framer-yd8JX .framer-1jjzbcy, .framer-yd8JX .framer-1s957ax { aspect-ratio: 2.226190476190476 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 134px; }\",\".framer-yd8JX .framer-12ylezw { aspect-ratio: 3.2857142857142856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 105px; }\",\".framer-yd8JX .framer-137dl2w, .framer-yd8JX .framer-1f7h03m { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(8, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 550px; justify-content: center; max-width: 1200px; min-height: 550px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-5tpxp7, .framer-yd8JX .framer-9e7r55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 32px; position: absolute; top: 0px; width: min-content; }\",\".framer-yd8JX .framer-7n2nnd, .framer-yd8JX .framer-333xed { aspect-ratio: 3.2903225806451615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 132px; }\",\".framer-yd8JX .framer-1ou68uv, .framer-yd8JX .framer-1alcgs7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 32px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-yd8JX .framer-16r48sz, .framer-yd8JX .framer-eb13h9, .framer-yd8JX .framer-8b3y4s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; min-height: 550px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-mfa7v2, .framer-yd8JX .framer-196x1ka, .framer-yd8JX .framer-k1e5ms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 350px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-v0hd8l, .framer-yd8JX .framer-wotu2y, .framer-yd8JX .framer-1i68lq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 49%; }\",\".framer-yd8JX .framer-1c43rop, .framer-yd8JX .framer-1aqshb8, .framer-yd8JX .framer-1lqmp35 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-yd8JX .framer-jqy8sn, .framer-yd8JX .framer-zkgt3q, .framer-yd8JX .framer-11amz8f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-yd8JX .framer-1il58sp, .framer-yd8JX .framer-18r0ec3, .framer-yd8JX .framer-1hg1w2o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 171px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yd8JX .framer-v1ei2b, .framer-yd8JX .framer-m9ndva, .framer-yd8JX .framer-erhhvf, .framer-yd8JX .framer-5dsuup, .framer-yd8JX .framer-io55wn, .framer-yd8JX .framer-17eacc3, .framer-yd8JX .framer-6nutgc, .framer-yd8JX .framer-1s72sv5, .framer-yd8JX .framer-a9ledb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-around; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-yd8JX.framer-v-1g0qayy.framer-1uhhsxu, .framer-yd8JX.framer-v-1d7weex.framer-1uhhsxu, .framer-yd8JX.framer-v-1v6ilvf.framer-1uhhsxu { gap: 40px; padding: 96px 40px 96px 40px; width: 810px; }\",\".framer-yd8JX.framer-v-qb9pbr.framer-1uhhsxu { gap: 48px; overflow: visible; padding: 64px 16px 64px 16px; width: 390px; }\",\".framer-yd8JX.framer-v-qb9pbr .framer-15mj73v { padding: 0px 16px 0px 16px; }\",\".framer-yd8JX.framer-v-1z5sz1 .framer-q9gag4, .framer-yd8JX.framer-v-8cdyzg .framer-q9gag4, .framer-yd8JX.framer-v-1d7weex .framer-q9gag4, .framer-yd8JX.framer-v-1v6ilvf .framer-q9gag4 { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1025\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Cnr8gUiEH\":{\"layout\":[\"fixed\",\"auto\"]},\"ojHgMUm6I\":{\"layout\":[\"fixed\",\"auto\"]},\"jIW_VchTa\":{\"layout\":[\"fixed\",\"auto\"]},\"l6GYqtOKV\":{\"layout\":[\"fixed\",\"auto\"]},\"OcofTXnOJ\":{\"layout\":[\"fixed\",\"auto\"]},\"ixGPx5Nj7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"smbt7dfR4\":\"visible\",\"Ihu2nJotx\":\"visible2\",\"PAeZHSCBc\":\"visible3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXTQE6JPaC=withCSS(Component,css,\"framer-yd8JX\");export default FramerXTQE6JPaC;FramerXTQE6JPaC.displayName=\"VRseBuilderCaseStudy\";FramerXTQE6JPaC.defaultProps={height:1025,width:1200};addPropertyControls(FramerXTQE6JPaC,{variant:{options:[\"Ks5dsOYkT\",\"Cnr8gUiEH\",\"ojHgMUm6I\",\"jIW_VchTa\",\"l6GYqtOKV\",\"OcofTXnOJ\",\"ixGPx5Nj7\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Desktop Healthcare\",\"Desktop E-commerce\",\"Tablet Healthcare\",\"Tablet E-commerce\"],title:\"Variant\",type:ControlType.Enum},smbt7dfR4:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},Ihu2nJotx:{defaultValue:true,title:\"Visible 2\",type:ControlType.Boolean},PAeZHSCBc:{defaultValue:true,title:\"Visible 3\",type:ControlType.Boolean}});addFonts(FramerXTQE6JPaC,[{explicitInter:true,fonts:[{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/teGhWnhH3bCqefKGsIsqFy3hK8.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/dHHUz45rhM2KCQpj9zttNVlibk.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/0SEEmmWc3vovhaai4RlRQSWRrz0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SecondaryButton2Fonts,...SecondaryButtonFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXTQE6JPaC\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"smbt7dfR4\\\":\\\"visible\\\",\\\"Ihu2nJotx\\\":\\\"visible2\\\",\\\"PAeZHSCBc\\\":\\\"visible3\\\"}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1025\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cnr8gUiEH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ojHgMUm6I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jIW_VchTa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l6GYqtOKV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OcofTXnOJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ixGPx5Nj7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XTQE6JPaC.map"],
  "mappings": "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",
  "names": ["awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SecondaryButton2Fonts", "getFonts", "F0XpPyQzV_default", "SecondaryButtonFonts", "ixTf5v1_B_default", "SlideshowFonts", "Slideshow", "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", "visible", "visible2", "visible3", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "smbt7dfR4", "Ihu2nJotx", "PAeZHSCBc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap24h02", "args", "onTapfo64gl", "onTap18npads", "onTapo544tf", "onTapwdli9p", "onTapgpoqvh", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "css", "FramerXTQE6JPaC", "withCSS", "XTQE6JPaC_default", "addPropertyControls", "ControlType", "addFonts"]
}
