{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/9ciGnaQhEGS4WIUZsnZV/ZhA0j4NW9mFQS0MIX3PI/CsRz1EUAU.js", "ssg:https://framerusercontent.com/modules/smk0NrX0rWXwZDvybiSr/YQWFucCabZyqKvQROvvY/CBFa6ll5R.js", "ssg:https://framerusercontent.com/modules/6VrKMXNKDjhTMrOM94lG/XGcXfMs1eZcJLNOX8UDm/uZP2TTsIT.js", "ssg:https://framerusercontent.com/modules/uDUuHcyvDIGFkon3NNgy/SodGZdAguPmli5QsrqDD/p5RwiUXWP.js", "ssg:https://framerusercontent.com/modules/53JdXkBzAWIWZoqPZQzj/jpQ5PQdTGBqdpzaH18Sg/Ap3M3xgBU.js", "ssg:https://framerusercontent.com/modules/e3jOJaeU9LTCLrq87ucz/PQ9RJwBOQyr13fJx7fzf/juNGH2RII.js", "ssg:https://framerusercontent.com/modules/dHMZgeKKiJ1plPBO75QS/yXH8tVz6np3ZwPHzd2EN/Z6co8DnJ_.js", "ssg:https://framerusercontent.com/modules/RFQtH18SBgNCpToZWxT3/u9WdMDCeNRlGTHwpfXSI/sbpA_pbit.js", "ssg:https://framerusercontent.com/modules/1mlt7vnVpnIGD4qbIx9k/0AG1ZMalBQKPCCl01qxP/FhpGKRv5P.js", "ssg:https://framerusercontent.com/modules/f7Fm2QRDja0BpisIov7J/mojbM2nHYlQg35qkQNrQ/ydeftrihW.js", "ssg:https://framerusercontent.com/modules/wTW7jh0cAmL4wA008zfc/KWeDobOFQmnlNuSstP3M/zFJ8Xhm48.js", "ssg:https://framerusercontent.com/modules/f6QmitGBRIWjFFLDUGCH/IZCBfbZ7BbA39TzOx6mY/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ContactUsButton from\"https://framerusercontent.com/modules/aRuN1ZBgFK1N3et9WQzW/Vl4izrw5p2ZNVhcjBRWe/RgkXMS6zb.js\";const ContactUsButtonFonts=getFonts(ContactUsButton);const enabledGestures={ycGcxj51L:{hover:true}};const cycleOrder=[\"ycGcxj51L\",\"Nm_i2lV0T\",\"lbPuo9pxF\"];const serializationHash=\"framer-MrII8\";const variantClassNames={lbPuo9pxF:\"framer-v-c0kht4\",Nm_i2lV0T:\"framer-v-l7cc6c\",ycGcxj51L:\"framer-v-1tjgnmr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile/Tablet Solution Card\":\"lbPuo9pxF\",\"Solution Card\":\"ycGcxj51L\",Selected:\"Nm_i2lV0T\"};const getProps=({cardImage,height,id,link,text,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,bisv_XEPY:link!==null&&link!==void 0?link:props.bisv_XEPY,fhRKoEFei:(_ref=text!==null&&text!==void 0?text:props.fhRKoEFei)!==null&&_ref!==void 0?_ref:\"Elevate Fixed or Temporary installations with Data-driven Digital Artistry\",MK7OohHdV:(_ref1=title!==null&&title!==void 0?title:props.MK7OohHdV)!==null&&_ref1!==void 0?_ref1:\"Digital Installations\",S5zh6YBqG:cardImage!==null&&cardImage!==void 0?cardImage:props.S5zh6YBqG,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"ycGcxj51L\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,S5zh6YBqG,MK7OohHdV,fhRKoEFei,bisv_XEPY,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ycGcxj51L\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"lbPuo9pxF\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tjgnmr\",className,classNames),\"data-framer-name\":\"Solution Card\",layoutDependency:layoutDependency,layoutId:\"ycGcxj51L\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{Nm_i2lV0T:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\"}},...addPropertyOverrides({\"ycGcxj51L-hover\":{\"data-framer-name\":undefined},lbPuo9pxF:{\"data-framer-name\":\"Mobile/Tablet Solution Card\"},Nm_i2lV0T:{\"data-border\":true,\"data-framer-name\":\"Selected\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-guhf1n\",\"data-framer-name\":\"Card Background\",layoutDependency:layoutDependency,layoutId:\"FQg8QbZTL\",style:{backgroundColor:\"rgb(23, 23, 30)\"},variants:{\"ycGcxj51L-hover\":{backgroundColor:\"rgb(0, 0, 0)\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y7wbcu\",\"data-framer-name\":\"Card Content\",layoutDependency:layoutDependency,layoutId:\"IiguidwGu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Digital \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"Installations\"})]}),className:\"framer-337vk1\",\"data-framer-name\":\"Digital Installations\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"tWAGwpLD4\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:MK7OohHdV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"374px\",...toResponsiveImage(S5zh6YBqG)},className:\"framer-y5c36e\",\"data-framer-name\":\"Card Image\",layoutDependency:layoutDependency,layoutId:\"jK2pPbhCL\",...addPropertyOverrides({lbPuo9pxF:{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(S5zh6YBqG)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Elevate Fixed or Temporary installations with Data-driven Digital Artistry\"})}),className:\"framer-1fj3t9y\",\"data-framer-name\":\"Solution Description\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"YvmBi4qHS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:fhRKoEFei,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"227px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-no7ubp-container\",layoutDependency:layoutDependency,layoutId:\"N5ViauD9K-container\",children:/*#__PURE__*/_jsx(ContactUsButton,{a2ZyzRa0o:\"Play\",aUm4UoB9H:\"Learn more\",height:\"100%\",id:\"N5ViauD9K\",l9jSuuw7Q:bisv_XEPY,layoutId:\"N5ViauD9K\",style:{height:\"100%\",width:\"100%\"},variant:\"sF1Zq40m8\",WDR9vcoeE:\"rgb(23, 23, 30)\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18dattk\",layoutDependency:layoutDependency,layoutId:\"DYVG4U6E_\",style:{backgroundColor:\"rgb(153, 238, 255)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:511,intrinsicWidth:586,pixelHeight:511,pixelWidth:586,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg\",srcSet:\"https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg 586w\"},className:\"framer-3w9icf\",\"data-framer-name\":\"background patern\",layoutDependency:layoutDependency,layoutId:\"Nsvy2KMle\",...addPropertyOverrides({lbPuo9pxF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:511,intrinsicWidth:586,pixelHeight:511,pixelWidth:586,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg\",srcSet:\"https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg 586w\"}}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MrII8.framer-97j5i4, .framer-MrII8 .framer-97j5i4 { display: block; }\",\".framer-MrII8.framer-1tjgnmr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 603px; justify-content: center; padding: 0px; position: relative; width: 425px; }\",\".framer-MrII8 .framer-guhf1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 603px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 425px; }\",\".framer-MrII8 .framer-1y7wbcu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 5; }\",\".framer-MrII8 .framer-337vk1 { flex: none; height: 80px; position: relative; white-space: pre-wrap; width: 374px; word-break: break-word; word-wrap: break-word; }\",\".framer-MrII8 .framer-y5c36e { flex: none; height: 230px; position: relative; width: 374px; }\",\".framer-MrII8 .framer-1fj3t9y { flex: none; height: 43px; position: relative; white-space: pre-wrap; width: 374px; word-break: break-word; word-wrap: break-word; }\",\".framer-MrII8 .framer-no7ubp-container { flex: none; height: 60px; position: relative; width: 227px; }\",\".framer-MrII8 .framer-18dattk { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 111px; }\",\".framer-MrII8 .framer-3w9icf { flex: none; height: 300px; left: calc(49.46524064171125% - 113.63636363636364% / 2); position: absolute; top: 65px; width: 114%; z-index: -1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MrII8.framer-1tjgnmr, .framer-MrII8 .framer-guhf1n, .framer-MrII8 .framer-1y7wbcu { gap: 0px; } .framer-MrII8.framer-1tjgnmr > *, .framer-MrII8 .framer-guhf1n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MrII8.framer-1tjgnmr > :first-child, .framer-MrII8 .framer-guhf1n > :first-child { margin-left: 0px; } .framer-MrII8.framer-1tjgnmr > :last-child, .framer-MrII8 .framer-guhf1n > :last-child { margin-right: 0px; } .framer-MrII8 .framer-1y7wbcu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MrII8 .framer-1y7wbcu > :first-child { margin-top: 0px; } .framer-MrII8 .framer-1y7wbcu > :last-child { margin-bottom: 0px; } }\",\".framer-MrII8.framer-v-l7cc6c.framer-1tjgnmr { cursor: unset; }\",\".framer-MrII8.framer-v-l7cc6c .framer-3w9icf { left: calc(49.88235294117649% - 113.63636363636364% / 2); }\",\".framer-MrII8.framer-v-c0kht4.framer-1tjgnmr { cursor: unset; gap: 53px; height: 667px; width: 300px; }\",\".framer-MrII8.framer-v-c0kht4 .framer-guhf1n { gap: 100px; height: min-content; padding: 50px 0px 50px 0px; width: 300px; }\",\".framer-MrII8.framer-v-c0kht4 .framer-1y7wbcu { gap: 30px; width: 80%; z-index: 0; }\",\".framer-MrII8.framer-v-c0kht4 .framer-337vk1 { order: 0; width: 242px; }\",\".framer-MrII8.framer-v-c0kht4 .framer-y5c36e { height: 158px; order: 2; width: 240px; }\",\".framer-MrII8.framer-v-c0kht4 .framer-1fj3t9y { height: 69px; order: 3; width: 240px; }\",\".framer-MrII8.framer-v-c0kht4 .framer-no7ubp-container { order: 4; }\",\".framer-MrII8.framer-v-c0kht4 .framer-18dattk { order: 1; }\",\".framer-MrII8.framer-v-c0kht4 .framer-3w9icf { left: calc(49.79253112033197% - 124.48132780082987% / 2); order: 5; top: 10px; width: 124%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MrII8.framer-v-c0kht4.framer-1tjgnmr, .framer-MrII8.framer-v-c0kht4 .framer-guhf1n, .framer-MrII8.framer-v-c0kht4 .framer-1y7wbcu { gap: 0px; } .framer-MrII8.framer-v-c0kht4.framer-1tjgnmr > * { margin: 0px; margin-left: calc(53px / 2); margin-right: calc(53px / 2); } .framer-MrII8.framer-v-c0kht4.framer-1tjgnmr > :first-child, .framer-MrII8.framer-v-c0kht4 .framer-guhf1n > :first-child { margin-left: 0px; } .framer-MrII8.framer-v-c0kht4.framer-1tjgnmr > :last-child, .framer-MrII8.framer-v-c0kht4 .framer-guhf1n > :last-child { margin-right: 0px; } .framer-MrII8.framer-v-c0kht4 .framer-guhf1n > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-MrII8.framer-v-c0kht4 .framer-1y7wbcu > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MrII8.framer-v-c0kht4 .framer-1y7wbcu > :first-child { margin-top: 0px; } .framer-MrII8.framer-v-c0kht4 .framer-1y7wbcu > :last-child { margin-bottom: 0px; } }\",'.framer-MrII8[data-border=\"true\"]::after, .framer-MrII8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 603\n * @framerIntrinsicWidth 425\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Nm_i2lV0T\":{\"layout\":[\"fixed\",\"fixed\"]},\"lbPuo9pxF\":{\"layout\":[\"fixed\",\"fixed\"]},\"MsCcIonZz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"S5zh6YBqG\":\"cardImage\",\"MK7OohHdV\":\"title\",\"fhRKoEFei\":\"text\",\"bisv_XEPY\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCsRz1EUAU=withCSS(Component,css,\"framer-MrII8\");export default FramerCsRz1EUAU;FramerCsRz1EUAU.displayName=\"Solution Card\";FramerCsRz1EUAU.defaultProps={height:603,width:425};addPropertyControls(FramerCsRz1EUAU,{variant:{options:[\"ycGcxj51L\",\"Nm_i2lV0T\",\"lbPuo9pxF\"],optionTitles:[\"Solution Card\",\"Selected\",\"Mobile/Tablet Solution Card\"],title:\"Variant\",type:ControlType.Enum},S5zh6YBqG:{title:\"Card Image\",type:ControlType.ResponsiveImage},MK7OohHdV:{defaultValue:\"Digital Installations\",displayTextArea:false,title:\"Title \",type:ControlType.String},fhRKoEFei:{defaultValue:\"Elevate Fixed or Temporary installations with Data-driven Digital Artistry\",displayTextArea:false,title:\"Text\",type:ControlType.String},bisv_XEPY:{title:\"Link\",type:ControlType.Link}});addFonts(FramerCsRz1EUAU,[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"}]},...ContactUsButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCsRz1EUAU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"S5zh6YBqG\\\":\\\"cardImage\\\",\\\"MK7OohHdV\\\":\\\"title\\\",\\\"fhRKoEFei\\\":\\\"text\\\",\\\"bisv_XEPY\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"425\",\"framerIntrinsicHeight\":\"603\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Nm_i2lV0T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lbPuo9pxF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MsCcIonZz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,ResolveLinks,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import SolutionCard from\"https://framerusercontent.com/modules/9ciGnaQhEGS4WIUZsnZV/ZhA0j4NW9mFQS0MIX3PI/CsRz1EUAU.js\";const SolutionCardFonts=getFonts(SolutionCard);const CarouselFonts=getFonts(Carousel);const serializationHash=\"framer-t64r0\";const variantClassNames={VfKSd7haN:\"framer-v-16veiw0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VfKSd7haN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16veiw0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VfKSd7haN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3rn5wx-container\",layoutDependency:layoutDependency,layoutId:\"BrN7Axlpv-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(255, 102, 74, 0)\",arrowPadding:5,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/BGx10aQif2Ii87CaBiE8mmXGKw.svg\",rightArrow:\"https://framerusercontent.com/images/zMCACpRa7sjFblfYzDNgTAJMnYg.svg\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"BrN7Axlpv\",layoutId:\"BrN7Axlpv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EUCD_CbVv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:574,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xq846u-container\",layoutDependency:layoutDependency,layoutId:\"yJHm59Jrz-container\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks[0],fhRKoEFei:\"Elevate fixed or temporary installations with data-driven digital artistry.\",height:\"100%\",id:\"yJHm59Jrz\",layoutId:\"yJHm59Jrz\",MK7OohHdV:\"Digital Installations\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png\",srcSet:\"https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png?scale-down-to=512 512w,https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"lbPuo9pxF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fYVhLMXrn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:574,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hyipqk-container\",layoutDependency:layoutDependency,layoutId:\"Jqh2FHyf2-container\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks1[0],fhRKoEFei:\"Tell your brand story through immersive realities.\",height:\"100%\",id:\"Jqh2FHyf2\",layoutId:\"Jqh2FHyf2\",MK7OohHdV:\"Immersive Content Production\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png\",srcSet:\"https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png?scale-down-to=512 512w,https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"lbPuo9pxF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Fz02cA_lN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:574,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bdkk3g-container\",layoutDependency:layoutDependency,layoutId:\"WUWApHvFD-container\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks2[0],fhRKoEFei:\"Web-based, easily accessible virtual experiences to amplify your brand engagement.\",height:\"100%\",id:\"WUWApHvFD\",layoutId:\"WUWApHvFD\",MK7OohHdV:\"Metaverse & Virtual Experiences\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png\",srcSet:\"https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"lbPuo9pxF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pwFaGl7Lm\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:574,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7e9wrs-container\",layoutDependency:layoutDependency,layoutId:\"Rw9wgWNjy-container\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks3[0],fhRKoEFei:\" Transform your web experiences with dynamic and interactive user interfaces.\",height:\"100%\",id:\"Rw9wgWNjy\",layoutId:\"Rw9wgWNjy\",MK7OohHdV:\"Interactive Web Applications\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png\",srcSet:\"https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png?scale-down-to=512 512w,https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"lbPuo9pxF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kw18RxRGz\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:574,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v90duf-container\",layoutDependency:layoutDependency,layoutId:\"H3DEnILQA-container\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks4[0],fhRKoEFei:\"Go beyond boundaries: stream your vision to the world.\",height:\"100%\",id:\"H3DEnILQA\",layoutId:\"H3DEnILQA\",MK7OohHdV:\"Live Streaming and Cloud Broadcasting\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png\",srcSet:\"https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"lbPuo9pxF\",width:\"100%\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t64r0.framer-ikmkam, .framer-t64r0 .framer-ikmkam { display: block; }\",\".framer-t64r0.framer-16veiw0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 732px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1001px; }\",\".framer-t64r0 .framer-3rn5wx-container { flex: none; height: 734px; position: relative; width: 100%; }\",\".framer-t64r0 .framer-1xq846u-container, .framer-t64r0 .framer-1hyipqk-container, .framer-t64r0 .framer-1bdkk3g-container, .framer-t64r0 .framer-7e9wrs-container, .framer-t64r0 .framer-1v90duf-container { height: 574px; position: relative; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t64r0.framer-16veiw0 { gap: 0px; } .framer-t64r0.framer-16veiw0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-t64r0.framer-16veiw0 > :first-child { margin-left: 0px; } .framer-t64r0.framer-16veiw0 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 732\n * @framerIntrinsicWidth 1001\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCBFa6ll5R=withCSS(Component,css,\"framer-t64r0\");export default FramerCBFa6ll5R;FramerCBFa6ll5R.displayName=\"Solutions Slider\";FramerCBFa6ll5R.defaultProps={height:732,width:1001};addFonts(FramerCBFa6ll5R,[{explicitInter:true,fonts:[]},...SolutionCardFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCBFa6ll5R\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"732\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1001\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withId}from\"https://framerusercontent.com/modules/5BtaSbKuwGEyTvhkKitV/SHsy7bZJ2v9zvXVYVbey/Brand_ids.js\";const RichTextWithId=withId(RichText);const cycleOrder=[\"h_ih04qpP\",\"VT5ycVJuk\"];const serializationHash=\"framer-QHUie\";const variantClassNames={h_ih04qpP:\"framer-v-hlpnkr\",VT5ycVJuk:\"framer-v-xoxoby\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"h_ih04qpP\",Open:\"VT5ycVJuk\"};const getProps=({answer,height,id,question,tap,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"h_ih04qpP\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",wi9CccIMq:tap!==null&&tap!==void 0?tap:props.wi9CccIMq};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,wi9CccIMq,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"h_ih04qpP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1d20y6s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(wi9CccIMq){const res=await wi9CccIMq(...args);if(res===false)return false;}});const onTap1xstfdg=activeVariantCallback(async(...args)=>{setVariant(\"VT5ycVJuk\");});const onTapy58v0r=activeVariantCallback(async(...args)=>{setVariant(\"h_ih04qpP\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"VT5ycVJuk\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"VT5ycVJuk\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hlpnkr\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"h_ih04qpP\",onTap:onTap1d20y6s,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({VT5ycVJuk:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c7rks2\",layoutDependency:layoutDependency,layoutId:\"mU6g1mWo4\",style:{background:\"linear-gradient(90deg, hsl(301, 100%, 64%) 0%, rgb(0, 113, 155) 100%)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pvu0qq\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mWywYqo1i\",onTap:onTap1xstfdg,style:{backgroundColor:\"rgb(23, 23, 30)\"},...addPropertyOverrides({VT5ycVJuk:{onTap:onTapy58v0r}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kash87\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"PAlofQsmk\",style:{rotate:0},variants:{VT5ycVJuk:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jgupt2\",layoutDependency:layoutDependency,layoutId:\"VLaMFvMgt\",style:{backgroundColor:\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\",rotate:0},variants:{VT5ycVJuk:{rotate:135}}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12e2hm7\",layoutDependency:layoutDependency,layoutId:\"CaS2hTX_a\",style:{backgroundColor:\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"}})]}),/*#__PURE__*/_jsx(RichTextWithId,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1blmjqv\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"j1JLErzwI\",style:{\"--extracted-r6o4lv\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-123ddl4\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"jK6wSHFVC\",style:{opacity:0},variants:{VT5ycVJuk:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-17s5m2h\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"xo3RmeXw7\",style:{\"--extracted-r6o4lv\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\",opacity:.6},text:T8rQFvSBR,variants:{VT5ycVJuk:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QHUie.framer-8w9v7u, .framer-QHUie .framer-8w9v7u { display: block; }\",\".framer-QHUie.framer-hlpnkr { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-QHUie .framer-1c7rks2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 2px; position: relative; width: 100%; }\",\".framer-QHUie .framer-pvu0qq { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 20px 24px 20px 24px; position: relative; user-select: none; width: 1px; }\",\".framer-QHUie .framer-1kash87 { flex: none; height: 15px; overflow: hidden; position: absolute; right: 10px; top: 25px; width: 15px; z-index: 1; }\",\".framer-QHUie .framer-1jgupt2 { flex: none; height: 1px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 16px; }\",\".framer-QHUie .framer-12e2hm7 { flex: none; height: 16px; left: calc(50.00000000000002% - 1px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 1px; }\",\".framer-QHUie .framer-1blmjqv { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QHUie .framer-123ddl4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 24px 40px 24px; position: relative; width: 100%; }\",\".framer-QHUie .framer-17s5m2h { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QHUie.framer-hlpnkr, .framer-QHUie .framer-1c7rks2, .framer-QHUie .framer-pvu0qq, .framer-QHUie .framer-123ddl4 { gap: 0px; } .framer-QHUie.framer-hlpnkr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QHUie.framer-hlpnkr > :first-child, .framer-QHUie .framer-123ddl4 > :first-child { margin-top: 0px; } .framer-QHUie.framer-hlpnkr > :last-child, .framer-QHUie .framer-123ddl4 > :last-child { margin-bottom: 0px; } .framer-QHUie .framer-1c7rks2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QHUie .framer-1c7rks2 > :first-child, .framer-QHUie .framer-pvu0qq > :first-child { margin-left: 0px; } .framer-QHUie .framer-1c7rks2 > :last-child, .framer-QHUie .framer-pvu0qq > :last-child { margin-right: 0px; } .framer-QHUie .framer-pvu0qq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-QHUie .framer-123ddl4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 92\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VT5ycVJuk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\",\"wi9CccIMq\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruZP2TTsIT=withCSS(Component,css,\"framer-QHUie\");export default FrameruZP2TTsIT;FrameruZP2TTsIT.displayName=\"Row Copy\";FrameruZP2TTsIT.defaultProps={height:92,width:400};addPropertyControls(FrameruZP2TTsIT,{variant:{options:[\"h_ih04qpP\",\"VT5ycVJuk\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String},wi9CccIMq:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FrameruZP2TTsIT,[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruZP2TTsIT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\",\\\"wi9CccIMq\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VT5ycVJuk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"92\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uZP2TTsIT.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import RowCopy from\"https://framerusercontent.com/modules/6VrKMXNKDjhTMrOM94lG/XGcXfMs1eZcJLNOX8UDm/uZP2TTsIT.js\";const RowCopyFonts=getFonts(RowCopy);const cycleOrder=[\"A_SYZ73tS\"];const serializationHash=\"framer-qHkBw\";const variantClassNames={A_SYZ73tS:\"framer-v-rinlja\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"A_SYZ73tS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rinlja\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"A_SYZ73tS\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hfqu1c-container\",layoutDependency:layoutDependency,layoutId:\"QSNuaCQt2-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"QSNuaCQt2\",layoutId:\"QSNuaCQt2\",style:{width:\"100%\"},T8rQFvSBR:\"Our offices are headquartered in Dubai, and we have a dedicated team operating from various locations, including Saudi Arabia, Russia, Kazakhstan, South Africa, and Tunisia.\",variant:\"h_ih04qpP\",W88zB8mIG:\"Where are your offices located?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lcvs2h-container\",layoutDependency:layoutDependency,layoutId:\"E3TiFTmeL-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"E3TiFTmeL\",layoutId:\"E3TiFTmeL\",style:{width:\"100%\"},T8rQFvSBR:\"We deliver projects globally, spanning over 30 countries. Some of the locations we have successfully executed projects in include Saudi Arabia, Qatar, Japan, the United States, South Africa, Kuwait, the United Kingdom, Brazil, Germany, and Switzerland.\",variant:\"h_ih04qpP\",W88zB8mIG:\"Where do you deliver your projects?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10yzzuc-container\",layoutDependency:layoutDependency,layoutId:\"OvIhnT_kK-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"OvIhnT_kK\",layoutId:\"OvIhnT_kK\",style:{width:\"100%\"},T8rQFvSBR:\"We cater to a wide range of industries and we are not limited to specific sectors. Our content customization allows us to adapt to your industry requirements. We have experience working with diverse sectors such as healthcare, logistics, governmental, public, and private industries.\",variant:\"h_ih04qpP\",W88zB8mIG:\"Is this for my industry? What industries do you work with?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-56lt79-container\",layoutDependency:layoutDependency,layoutId:\"sIPWjlj_K-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"sIPWjlj_K\",layoutId:\"sIPWjlj_K\",style:{width:\"100%\"},T8rQFvSBR:\"We specialize in transforming content into interactive, memorable experiences. We do not offer company-specific advertising material. Our expertise lies in leveraging your content (guidelines, logo, copy, visuals...etc) and using our creative, high-technology solutions to transform that into interactive immersive experiences that inspire and captivate your audiences. \",variant:\"h_ih04qpP\",W88zB8mIG:\"Do you provide content creation services such as copywriting and visuals?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ylank8-container\",layoutDependency:layoutDependency,layoutId:\"XQ30Sqvbt-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"XQ30Sqvbt\",layoutId:\"XQ30Sqvbt\",style:{width:\"100%\"},T8rQFvSBR:\"No, our expertise lies in experiential technology, unique technology creations and the latest in live streaming technology. We can incorporate these technology solutions within your events or larger brand experiences. However, we do collaborate with trusted partners to ensure comprehensive event management and delivery.\",variant:\"h_ih04qpP\",W88zB8mIG:\"Do you manage events from start to finish?\\n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10xlnyf-container\",layoutDependency:layoutDependency,layoutId:\"fTPCEPWza-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"fTPCEPWza\",layoutId:\"fTPCEPWza\",style:{width:\"100%\"},T8rQFvSBR:\"Absolutely! We are not an AV supplier ourselves, and we encourage our clients to collaborate with their trusted suppliers. We will work closely with your AV suppliers, ensuring seamless integration based on our technology requirements. We will work alongside them to guarantee a smooth and successful experience. For any unique technology pieces we create for you, we do have our own preferred AV partners who we can recommend.\",variant:\"h_ih04qpP\",W88zB8mIG:\"Can I work with my own AV screen suppliers?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s184mh-container\",layoutDependency:layoutDependency,layoutId:\"OuERd398h-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"OuERd398h\",layoutId:\"OuERd398h\",style:{width:\"100%\"},T8rQFvSBR:\"We prioritize data security and protection. Our systems employ data encryption and employ robust security measures, and we do not internally manage the data. Instead, we utilize various cloud platforms such as AWS to host data securely, adhering to their data policies and industry standards. In addition, we select our cloud services based on what is most suitable for the client's location. This approach ensures compliance with GDPR regulations and safeguards your information. \",variant:\"h_ih04qpP\",W88zB8mIG:\"Where do you host your data? How will our data be protected?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1disykw-container\",layoutDependency:layoutDependency,layoutId:\"Kv2ON4gUP-container\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"Kv2ON4gUP\",layoutId:\"Kv2ON4gUP\",style:{width:\"100%\"},T8rQFvSBR:\"Our hosted services are designed to accommodate a large number of attendees. The cloud platform's scalability and resources enable us to handle high traffic volumes and dynamically scale up or down as needed.\\n\\nIn addition, we benefit from the durability of the cloud infrastructure, which ensures data integrity and minimizes risk by making automated backups and fault-tolerant systems.\\n\\nFor further information or to get started, don't hesitate to contact us. We look forward to assisting you with your queries and requirements.\",variant:\"h_ih04qpP\",W88zB8mIG:\"What about your systems durability? How many people can you host per event on the cloud? \",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qHkBw.framer-5fkded, .framer-qHkBw .framer-5fkded { display: block; }\",\".framer-qHkBw.framer-rinlja { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1000px; }\",\".framer-qHkBw .framer-hfqu1c-container, .framer-qHkBw .framer-1lcvs2h-container, .framer-qHkBw .framer-10yzzuc-container, .framer-qHkBw .framer-56lt79-container, .framer-qHkBw .framer-1ylank8-container, .framer-qHkBw .framer-10xlnyf-container, .framer-qHkBw .framer-s184mh-container, .framer-qHkBw .framer-1disykw-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qHkBw.framer-rinlja { gap: 0px; } .framer-qHkBw.framer-rinlja > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qHkBw.framer-rinlja > :first-child { margin-top: 0px; } .framer-qHkBw.framer-rinlja > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 614\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp5RwiUXWP=withCSS(Component,css,\"framer-qHkBw\");export default Framerp5RwiUXWP;Framerp5RwiUXWP.displayName=\"Home Page FAQ Section\";Framerp5RwiUXWP.defaultProps={height:614,width:1e3};addFonts(Framerp5RwiUXWP,[{explicitInter:true,fonts:[]},...RowCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp5RwiUXWP\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"614\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p5RwiUXWP.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/0y2WJMR0SgYcFYjVcKER/mPMbxV9oB6WmClf19pOB/componentPresets.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/cAz7Q9Irk7IKXZGtoCpp/2hwdvXcyg2yIIEtDHynh/aIg6uJ3IG.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/C4AcHHouq8QjTZnQNsWF/DDZvQoYfnrBSHAulGKxZ/AmCDaruVM.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/AhJK1RAiXN5gWSNS5vJv/UXB1ze1KwYXpUowpZRri/fVxnimdqP.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/si8TJALGFdocMAMaLaQB/IuZek7Xhfy6lh8MOFtOh/GzRUKPfca.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/k6jKJs9BXH6b3L2EkjCB/yI2KT4JT4jx19m3trhGg/lAT9FHeVu.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/ayH30pIE4EPk7jWdsebM/L1EgyRCKWsBu0JdvWTcn/pi6zfpT8K.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/sRmp5uWtlbaLHyucKLV4/5GuhVSbbdLYvgTpXSYoC/QoyIoEiZ9.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/onnXiosWu4X9vNFPmHeV/ZYdYjvBkhVmlTtqphla5/ro7OPezbn.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/DzpAXdC1PVux5qlztcpq/Lpmjzd4N2xJfAjWQdUCw/xt_5qJS2n.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lyBpfA5M5OA60H3cYyrD/CVW4TDzIbYF8eJIlvHfi/YAP816Y5n.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/2ecZ1ZVHdIDlMjo9dCJi/ScGf0cYJCVdmsT6VQ70B/YckFIlg3V.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/IirZCHs6y8VQ7q4IGakM/4JsKQ7gJK8SX9R1HCpIe/z8Gtr6mG7.js\";import ContactUsButton from\"https://framerusercontent.com/modules/aRuN1ZBgFK1N3et9WQzW/Vl4izrw5p2ZNVhcjBRWe/RgkXMS6zb.js\";const ContactUsButtonFonts=getFonts(ContactUsButton);const enabledGestures={mUuFM_IBg:{hover:true},SFW0pA8_m:{hover:true}};const cycleOrder=[\"mUuFM_IBg\",\"hko63sHnI\",\"eWxd1OgAs\",\"SFW0pA8_m\",\"jpmphNfah\",\"dwN3romDf\"];const serializationHash=\"framer-UfE3x\";const variantClassNames={dwN3romDf:\"framer-v-85pu3c\",eWxd1OgAs:\"framer-v-vdwocg\",hko63sHnI:\"framer-v-jsxqlc\",jpmphNfah:\"framer-v-1ituiur\",mUuFM_IBg:\"framer-v-g8noh5\",SFW0pA8_m:\"framer-v-128qqd2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={\"Break Card\":\"SFW0pA8_m\",\"Mobile Break Card Pressed\":\"dwN3romDf\",\"Mobile Break Card\":\"jpmphNfah\",\"Mobile Card\":\"hko63sHnI\",\"Variant 1\":\"mUuFM_IBg\",selected:\"eWxd1OgAs\"};const getProps=({height,id,image,link,logo,text,title,titleBreakCard,width,...props})=>{return{...props,D0EKXNFB6:titleBreakCard??props.D0EKXNFB6??\"Expert AR\\nSolutions\",Gm_WQz00e:logo??props.Gm_WQz00e,kjXkYSKDi:image??props.kjXkYSKDi,RlEOHi_eR:text??props.RlEOHi_eR??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"We imagine, create and deliver unconventional metaverse, 3D spaces and impactful journeys for experiential brands and ambitious creators.Create a metaverse experience that best reflects your brand. Our web-based metaverse spaces and experiences allow you to create customized environments, connecting your brand with your customers in new shared realities. Each space is built to inspire through deliberately placed 3D assets and effortless functionality.Discover unique 3D experiences where interactive video, spatial audio, customizable avatars, social networking, live streaming and more come together to create your undefined, unrestricted metarealm.\"})}),TowCh4drg:link??props.TowCh4drg,variant:humanReadableVariantMap[props.variant]??props.variant??\"mUuFM_IBg\",xxaoJNOLg:title??props.xxaoJNOLg??\"Live HD Streaming Services\"};};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,xxaoJNOLg,Gm_WQz00e,kjXkYSKDi,RlEOHi_eR,TowCh4drg,D0EKXNFB6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mUuFM_IBg\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"eWxd1OgAs\")return true;return false;};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-g8noh5\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mUuFM_IBg\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(23, 23, 30)\",...style},variants:{\"mUuFM_IBg-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(0, 0, 0)\"},\"SFW0pA8_m-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(0, 0, 0)\"},dwN3romDf:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\"}},...addPropertyOverrides({\"mUuFM_IBg-hover\":{\"data-framer-name\":undefined},\"SFW0pA8_m-hover\":{\"data-framer-name\":undefined},dwN3romDf:{\"data-border\":true,\"data-framer-name\":\"Mobile Break Card Pressed\"},eWxd1OgAs:{\"data-framer-name\":\"selected\"},hko63sHnI:{\"data-framer-name\":\"Mobile Card\"},jpmphNfah:{\"data-framer-name\":\"Mobile Break Card\"},SFW0pA8_m:{\"data-framer-name\":\"Break Card\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:511,intrinsicWidth:586,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100),pixelHeight:511,pixelWidth:586,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg\",srcSet:\"https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jSJruk50fGSkyE99N0dofXuQqlk.svg 586w\"},className:\"framer-mnle1\",\"data-framer-name\":\"background patern\",layoutDependency:layoutDependency,layoutId:\"AMUhmsCs8\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ycmegx\",layoutDependency:layoutDependency,layoutId:\"fLMP_HktX\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25+0+0),sizes:`calc((${componentViewport?.width||\"100vw\"} - 50px) * 0.46)`,...toResponsiveImage(Gm_WQz00e),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-x09esb\",layoutDependency:layoutDependency,layoutId:\"QPabVuONn\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-hoy1wx\",\"data-styles-preset\":\"GzRUKPfca\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Live HD Streaming Services\"})}),className:\"framer-elmqff\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FiaBZzHIr\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xxaoJNOLg,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dwN3romDf:{text:D0EKXNFB6},jpmphNfah:{text:D0EKXNFB6},SFW0pA8_m:{text:D0EKXNFB6}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m876bi\",layoutDependency:layoutDependency,layoutId:\"Xv3p9jEGF\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25+135.4+24+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 50px)`,...toResponsiveImage(kjXkYSKDi)},className:\"framer-1hj5idn\",layoutDependency:layoutDependency,layoutId:\"W0ssPQX7S\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z8ogxh\",layoutDependency:layoutDependency,layoutId:\"WvGz15UhT\",style:{background:\"linear-gradient(67deg, rgba(255, 102, 74, 0.25) 0%, rgba(214, 89, 255, 0.25) 100%)\"}})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"mgoxyuCWd\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"gBzPqweqd\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:RlEOHi_eR,className:\"framer-10p1ytb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SDrTtvVaW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-sadefa\",code:\"framer-styles-preset-1x5cfz3\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1wml6uu\",h3:\"framer-styles-preset-12lj5ox\",h4:\"framer-styles-preset-hoy1wx\",h5:\"framer-styles-preset-1ot3r5e\",h6:\"framer-styles-preset-7hicab\",img:\"framer-styles-preset-rkg1k4\",p:\"framer-styles-preset-1ojjaqa\",table:\"framer-styles-preset-ssf5ty\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4udeko\",layoutDependency:layoutDependency,layoutId:\"puGQTgL4a\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"227px\",y:(componentViewport?.y||0)+25+(0+(65+50.4+310+Math.max(0,((componentViewport?.height||845)-50-525.4)/1)*1)+40),...addPropertyOverrides({hko63sHnI:{y:(componentViewport?.y||0)+25+(0+(65+50.4+270+Math.max(0,((componentViewport?.height||845)-50-485.4)/1)*1)+40)},jpmphNfah:{y:(componentViewport?.y||0)+25+(0+(65+50.4+270+Math.max(0,((componentViewport?.height||845)-50-485.4)/1)*1)+40)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15hwxr5-container\",layoutDependency:layoutDependency,layoutId:\"G3GUjjKb9-container\",nodeId:\"G3GUjjKb9\",rendersWithMotion:true,scopeId:\"Ap3M3xgBU\",children:/*#__PURE__*/_jsx(ContactUsButton,{a2ZyzRa0o:\"Play\",aUm4UoB9H:\"Learn more\",height:\"100%\",id:\"G3GUjjKb9\",l9jSuuw7Q:TowCh4drg,layoutId:\"G3GUjjKb9\",style:{height:\"100%\",width:\"100%\"},variant:\"sF1Zq40m8\",WDR9vcoeE:\"rgb(23, 23, 30)\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7mbtqt\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"nILaYzv5x\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UfE3x.framer-1v96wn2, .framer-UfE3x .framer-1v96wn2 { display: block; }\",\".framer-UfE3x.framer-g8noh5 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 845px; justify-content: flex-start; overflow: hidden; padding: 25px; position: relative; width: 450px; }\",\".framer-UfE3x .framer-mnle1 { flex: none; height: 300px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 100px; width: 100%; z-index: 0; }\",\".framer-UfE3x .framer-1ycmegx { flex: none; height: 65px; overflow: visible; position: relative; width: 100%; }\",\".framer-UfE3x .framer-x09esb { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 46%; }\",\".framer-UfE3x .framer-elmqff, .framer-UfE3x .framer-10p1ytb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UfE3x .framer-1m876bi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UfE3x .framer-1hj5idn { flex: none; height: 180px; overflow: visible; position: relative; width: 100%; }\",\".framer-UfE3x .framer-z8ogxh { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-UfE3x .framer-4udeko { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 149px; }\",\".framer-UfE3x .framer-15hwxr5-container { flex: none; height: 60px; position: relative; width: 227px; }\",\".framer-UfE3x .framer-7mbtqt { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UfE3x.framer-g8noh5, .framer-UfE3x .framer-1m876bi { gap: 0px; } .framer-UfE3x.framer-g8noh5 > *, .framer-UfE3x .framer-1m876bi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UfE3x.framer-g8noh5 > :first-child, .framer-UfE3x .framer-1m876bi > :first-child { margin-top: 0px; } .framer-UfE3x.framer-g8noh5 > :last-child, .framer-UfE3x .framer-1m876bi > :last-child { margin-bottom: 0px; } }\",\".framer-UfE3x.framer-v-jsxqlc.framer-g8noh5, .framer-UfE3x.framer-v-vdwocg.framer-g8noh5, .framer-UfE3x.framer-v-1ituiur.framer-g8noh5, .framer-UfE3x.framer-v-85pu3c.framer-g8noh5 { cursor: unset; }\",\".framer-UfE3x.framer-v-jsxqlc .framer-1hj5idn { height: 140px; order: 0; }\",\".framer-UfE3x.framer-v-jsxqlc .framer-10p1ytb, .framer-UfE3x.framer-v-vdwocg .framer-mnle1 { order: 1; }\",\".framer-UfE3x.framer-v-vdwocg .framer-1ycmegx { order: 2; }\",\".framer-UfE3x.framer-v-vdwocg .framer-elmqff { order: 3; }\",\".framer-UfE3x.framer-v-vdwocg .framer-1m876bi { order: 4; }\",\".framer-UfE3x.framer-v-vdwocg .framer-4udeko { order: 5; }\",\".framer-UfE3x.framer-v-vdwocg .framer-15hwxr5-container { order: 6; }\",\".framer-UfE3x.framer-v-vdwocg .framer-7mbtqt { order: 0; }\",\".framer-UfE3x.framer-v-1ituiur .framer-1hj5idn { height: 140px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-UfE3x[data-border=\"true\"]::after, .framer-UfE3x [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 845\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hko63sHnI\":{\"layout\":[\"fixed\",\"fixed\"]},\"eWxd1OgAs\":{\"layout\":[\"fixed\",\"fixed\"]},\"SFW0pA8_m\":{\"layout\":[\"fixed\",\"fixed\"]},\"jpmphNfah\":{\"layout\":[\"fixed\",\"fixed\"]},\"dwN3romDf\":{\"layout\":[\"fixed\",\"fixed\"]},\"cXWoK6pUV\":{\"layout\":[\"fixed\",\"fixed\"]},\"lRFXynlNV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xxaoJNOLg\":\"title\",\"Gm_WQz00e\":\"logo\",\"kjXkYSKDi\":\"image\",\"RlEOHi_eR\":\"text\",\"TowCh4drg\":\"link\",\"D0EKXNFB6\":\"titleBreakCard\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAp3M3xgBU=withCSS(Component,css,\"framer-UfE3x\");export default FramerAp3M3xgBU;FramerAp3M3xgBU.displayName=\"Brand Card\";FramerAp3M3xgBU.defaultProps={height:845,width:450};addPropertyControls(FramerAp3M3xgBU,{variant:{options:[\"mUuFM_IBg\",\"hko63sHnI\",\"eWxd1OgAs\",\"SFW0pA8_m\",\"jpmphNfah\",\"dwN3romDf\"],optionTitles:[\"Variant 1\",\"Mobile Card\",\"selected\",\"Break Card\",\"Mobile Break Card\",\"Mobile Break Card Pressed\"],title:\"Variant\",type:ControlType.Enum},xxaoJNOLg:{defaultValue:\"Live HD Streaming Services\",displayTextArea:false,title:\"Title\",type:ControlType.String},Gm_WQz00e:{title:\"Logo\",type:ControlType.ResponsiveImage},kjXkYSKDi:{title:\"Image\",type:ControlType.ResponsiveImage},RlEOHi_eR:{defaultValue:\"<p>We imagine, create and deliver unconventional metaverse, 3D spaces and impactful journeys for experiential brands and ambitious creators.Create a metaverse experience that best reflects your brand. Our web-based metaverse spaces and experiences allow you to create customized environments, connecting your brand with your customers in new shared realities. Each space is built to inspire through deliberately placed 3D assets and effortless functionality.Discover unique 3D experiences where interactive video, spatial audio, customizable avatars, social networking, live streaming and more come together to create your undefined, unrestricted metarealm.</p>\",title:\"Text\",type:ControlType.RichText},TowCh4drg:{title:\"Link\",type:ControlType.Link},D0EKXNFB6:{defaultValue:\"Expert AR\\nSolutions\",displayTextArea:true,title:\"Title Break Card\",type:ControlType.String}});addFonts(FramerAp3M3xgBU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ContactUsButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...componentPresets.fonts?.[\"mgoxyuCWd\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"mgoxyuCWd\"]):[],...componentPresets.fonts?.[\"gBzPqweqd\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"gBzPqweqd\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAp3M3xgBU\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"845\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"450\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hko63sHnI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eWxd1OgAs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SFW0pA8_m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jpmphNfah\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dwN3romDf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cXWoK6pUV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lRFXynlNV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"xxaoJNOLg\\\":\\\"title\\\",\\\"Gm_WQz00e\\\":\\\"logo\\\",\\\"kjXkYSKDi\\\":\\\"image\\\",\\\"RlEOHi_eR\\\":\\\"text\\\",\\\"TowCh4drg\\\":\\\"link\\\",\\\"D0EKXNFB6\\\":\\\"titleBreakCard\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ap3M3xgBU.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/dHMZgeKKiJ1plPBO75QS/yXH8tVz6np3ZwPHzd2EN/Z6co8DnJ_.js\";const enabledGestures={YgwUEYk6N:{pressed:true}};const cycleOrder=[\"YgwUEYk6N\",\"CCcZszbKM\"];const serializationHash=\"framer-Jvly2\";const variantClassNames={CCcZszbKM:\"framer-v-6woj35\",YgwUEYk6N:\"framer-v-1nlm86u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"YgwUEYk6N\",\"Variant 2\":\"CCcZszbKM\"};const getProps=({height,id,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,O7L6Mw8Gi:(_ref=title!==null&&title!==void 0?title:props.O7L6Mw8Gi)!==null&&_ref!==void 0?_ref:\"Brand Name\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"YgwUEYk6N\",YSz5uQ9I6:tap!==null&&tap!==void 0?tap:props.YSz5uQ9I6};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,O7L6Mw8Gi,YSz5uQ9I6,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YgwUEYk6N\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapq21vwh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(YSz5uQ9I6){const res=await YSz5uQ9I6(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.button,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nlm86u\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"YgwUEYk6N\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapq21vwh,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-84dca687-be96-4263-b8fd-b8af54e17a4e, rgb(23, 23, 30))\",...style},variants:{\"YgwUEYk6N-pressed\":{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},CCcZszbKM:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"YgwUEYk6N-pressed\":{\"data-border\":true,\"data-framer-name\":undefined},CCcZszbKM:{\"data-border\":true,\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsehf2\",\"data-styles-preset\":\"Z6co8DnJ_\",children:\"Brand Name\"})}),className:\"framer-1hfxgpn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PcnlhrTlD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:O7L6Mw8Gi,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jvly2.framer-15r9tdi, .framer-Jvly2 .framer-15r9tdi { display: block; }\",\".framer-Jvly2.framer-1nlm86u { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 161px; }\",\".framer-Jvly2 .framer-1hfxgpn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jvly2.framer-1nlm86u { gap: 0px; } .framer-Jvly2.framer-1nlm86u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Jvly2.framer-1nlm86u > :first-child { margin-top: 0px; } .framer-Jvly2.framer-1nlm86u > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-Jvly2[data-border=\"true\"]::after, .framer-Jvly2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 161\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CCcZszbKM\":{\"layout\":[\"fixed\",\"fixed\"]},\"dOyaTJTmL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"O7L6Mw8Gi\":\"title\",\"YSz5uQ9I6\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjuNGH2RII=withCSS(Component,css,\"framer-Jvly2\");export default FramerjuNGH2RII;FramerjuNGH2RII.displayName=\"tab button\";FramerjuNGH2RII.defaultProps={height:100,width:161};addPropertyControls(FramerjuNGH2RII,{variant:{options:[\"YgwUEYk6N\",\"CCcZszbKM\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},O7L6Mw8Gi:{defaultValue:\"Brand Name\",displayTextArea:false,title:\"Title\",type:ControlType.String},YSz5uQ9I6:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerjuNGH2RII,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjuNGH2RII\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"161\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CCcZszbKM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dOyaTJTmL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"O7L6Mw8Gi\\\":\\\"title\\\",\\\"YSz5uQ9I6\\\":\\\"tap\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./juNGH2RII.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Lato-regular\"]);export const fonts=[{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/Z6co8DnJ_:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\",weight:\"400\"}];export const css=['.framer-trnJM .framer-styles-preset-wsehf2:not(.rich-text-wrapper), .framer-trnJM .framer-styles-preset-wsehf2.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-trnJM .framer-styles-preset-wsehf2:not(.rich-text-wrapper), .framer-trnJM .framer-styles-preset-wsehf2.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-trnJM .framer-styles-preset-wsehf2:not(.rich-text-wrapper), .framer-trnJM .framer-styles-preset-wsehf2.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-trnJM\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withWaienId}from\"https://framerusercontent.com/modules/5BtaSbKuwGEyTvhkKitV/SHsy7bZJ2v9zvXVYVbey/Brand_ids.js\";import BrandCard from\"https://framerusercontent.com/modules/53JdXkBzAWIWZoqPZQzj/jpQ5PQdTGBqdpzaH18Sg/Ap3M3xgBU.js\";import TabButton,*as TabButtonInfo from\"https://framerusercontent.com/modules/e3jOJaeU9LTCLrq87ucz/PQ9RJwBOQyr13fJx7fzf/juNGH2RII.js\";const TabButtonFonts=getFonts(TabButton);const TabButtonWithWaienIdWithMappedReactProps1llozpe=withMappedReactProps(withWaienId(TabButton),TabButtonInfo);const BrandCardFonts=getFonts(BrandCard);const cycleOrder=[\"BYQe4b2VN\",\"YQ4sBepDA\",\"yBMT4DWbb\",\"VqpbB_spN\",\"aqZyAmAnX\",\"areXqYZPm\",\"VCVVQlu8P\"];const serializationHash=\"framer-Tg2wP\";const variantClassNames={aqZyAmAnX:\"framer-v-zyro2e\",areXqYZPm:\"framer-v-r152fa\",BYQe4b2VN:\"framer-v-1bve6cc\",VCVVQlu8P:\"framer-v-jebux6\",VqpbB_spN:\"framer-v-sgwbgf\",yBMT4DWbb:\"framer-v-1w9q73u\",YQ4sBepDA:\"framer-v-1n5xbdf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Alt+Enter\":\"YQ4sBepDA\",\"Variant 1\":\"BYQe4b2VN\",ARgeeks:\"areXqYZPm\",SpaceTo:\"VqpbB_spN\",Streamwork:\"yBMT4DWbb\",WA3in:\"aqZyAmAnX\",WIM:\"VCVVQlu8P\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BYQe4b2VN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BYQe4b2VN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const YSz5uQ9I61jvvn11=activeVariantCallback(async(...args)=>{setVariant(\"YQ4sBepDA\");});const YSz5uQ9I618ikxkb=activeVariantCallback(async(...args)=>{setVariant(\"yBMT4DWbb\");});const YSz5uQ9I6c9mepi=activeVariantCallback(async(...args)=>{setVariant(\"VqpbB_spN\");});const YSz5uQ9I6cb0wfp=activeVariantCallback(async(...args)=>{setVariant(\"areXqYZPm\");});const isDisplayed=()=>{if(baseVariant===\"VCVVQlu8P\")return false;return true;};const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bve6cc\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BYQe4b2VN\",ref:ref??ref1,style:{backgroundColor:\"var(--token-22898920-83da-4b1c-b920-b35b87d391b4, rgb(40, 34, 49))\",...style},...addPropertyOverrides({aqZyAmAnX:{\"data-framer-name\":\"WA3in\"},areXqYZPm:{\"data-framer-name\":\"ARgeeks\"},VqpbB_spN:{\"data-framer-name\":\"SpaceTo\"},yBMT4DWbb:{\"data-framer-name\":\"Streamwork\"},YQ4sBepDA:{\"data-framer-name\":\"Alt+Enter\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-41rgno\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"lrhlQBC1U\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f8uezm\",layoutDependency:layoutDependency,layoutId:\"ldTQj8Onv\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e418no-container\",\"data-framer-name\":\"Altenter\",layoutDependency:layoutDependency,layoutId:\"zUtJlrOIX-container\",name:\"Altenter\",children:/*#__PURE__*/_jsx(TabButtonWithWaienIdWithMappedReactProps1llozpe,{height:\"100%\",id:\"zUtJlrOIX\",layoutId:\"zUtJlrOIX\",name:\"Altenter\",O7L6Mw8Gi:\"Alt Enter\",style:{width:\"100%\"},variant:\"CCcZszbKM\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I61jvvn11,...addPropertyOverrides({aqZyAmAnX:{variant:\"YgwUEYk6N\"},areXqYZPm:{variant:\"YgwUEYk6N\"},VqpbB_spN:{variant:\"YgwUEYk6N\"},yBMT4DWbb:{variant:\"YgwUEYk6N\",YSz5uQ9I6:undefined},YQ4sBepDA:{YSz5uQ9I6:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gzaunh-container\",\"data-framer-name\":\"Streamworks\",layoutDependency:layoutDependency,layoutId:\"Nhl5LQNI7-container\",name:\"Streamworks\",children:/*#__PURE__*/_jsx(TabButton,{height:\"100%\",id:\"Nhl5LQNI7\",layoutId:\"Nhl5LQNI7\",name:\"Streamworks\",O7L6Mw8Gi:\"Streamworks\",style:{width:\"100%\"},variant:\"YgwUEYk6N\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I618ikxkb,...addPropertyOverrides({yBMT4DWbb:{variant:\"CCcZszbKM\",YSz5uQ9I6:YSz5uQ9I6c9mepi}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w9zr7j-container\",\"data-framer-name\":\"Spaceto\",layoutDependency:layoutDependency,layoutId:\"wbqX0dNIJ-container\",name:\"Spaceto\",children:/*#__PURE__*/_jsx(TabButton,{height:\"100%\",id:\"wbqX0dNIJ\",layoutId:\"wbqX0dNIJ\",name:\"Spaceto\",O7L6Mw8Gi:\"SpaceTo\",style:{width:\"100%\"},variant:\"YgwUEYk6N\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I6c9mepi,...addPropertyOverrides({VqpbB_spN:{variant:\"CCcZszbKM\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pqvml6-container\",layoutDependency:layoutDependency,layoutId:\"oOaoHYURf-container\",children:/*#__PURE__*/_jsx(TabButton,{height:\"100%\",id:\"oOaoHYURf\",layoutId:\"oOaoHYURf\",O7L6Mw8Gi:\"Branch\",style:{width:\"100%\"},variant:\"YgwUEYk6N\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I6cb0wfp,...addPropertyOverrides({areXqYZPm:{variant:\"CCcZszbKM\"}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ihn97t\",layoutDependency:layoutDependency,layoutId:\"MBsq6iM1Y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:825,width:\"450px\",y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1)+(0+((componentViewport?.height||928)*1.1-0-825)/2),...addPropertyOverrides({areXqYZPm:{y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1002155172413792)+(0+((componentViewport?.height||928)*1.1002155172413792-0-825)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xkgo0v-container\",\"data-framer-name\":\"Alt Enter\",layoutDependency:layoutDependency,layoutId:\"XkZsXy916-container\",name:\"Alt Enter\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Expert AR\\nSolutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/GxsHEbECsN6z0IcAEuEzSmnmQ.png\"},\"\"),height:\"100%\",id:\"XkZsXy916\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/aPWBVu26SYOoL2FKJZa3u15x9fo.jpg\",srcSet:\"https://framerusercontent.com/images/aPWBVu26SYOoL2FKJZa3u15x9fo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aPWBVu26SYOoL2FKJZa3u15x9fo.jpg 876w\"},\"\"),layoutId:\"XkZsXy916\",name:\"Alt Enter\",RlEOHi_eR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We design and deliver experiential show content to take your audiences on a perfectly timed, creative journey that tantalizes the senses.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"We are the future of digital content production. Our ever-evolving content is data-driven, and rendered live in real-time, enabling stories to dynamically unfold, being emotively crafted using augmented reality, 3D graphics, dynamic branding and camera tracking.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"From award-winning interactive presentations and digital journey\u2019s, immersive brand launches, award ceremonies, game shows to virtual experiences, we are experiential content producers passionate about bringing your brand\u2019s story to life.\"})]}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"https://altenter.io\",variant:\"mUuFM_IBg\",width:\"100%\",xxaoJNOLg:\"Real-time Experiential Content\",...addPropertyOverrides({YQ4sBepDA:{variant:\"eWxd1OgAs\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:825,width:\"450px\",y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1)+(0+((componentViewport?.height||928)*1.1-0-825)/2),...addPropertyOverrides({areXqYZPm:{y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1002155172413792)+(0+((componentViewport?.height||928)*1.1002155172413792-0-825)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12mq4rr-container\",\"data-framer-name\":\"Stream Works\",layoutDependency:layoutDependency,layoutId:\"nFVLuobpK-container\",name:\"Stream Works\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Expert AR\\nSolutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/CDf3Ii9LdLIAGY5AVXwuDdNo3C4.png\"},\"\"),height:\"100%\",id:\"nFVLuobpK\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg\",srcSet:\"https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg 2048w\"},\"\"),layoutId:\"nFVLuobpK\",name:\"Stream Works\",RlEOHi_eR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We focus on delivering video solutions for all organizations.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Whether you are a small company that wants to stream weekly meetings or you\u2019re a large corporation looking to stream your large event, we deliver scaled solutions that will enable you to share your vision.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"We have worked with and continue to partner with multiple organizations in the UAE and across the globe.\"})]}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"https://streamworks.ae\",variant:\"mUuFM_IBg\",width:\"100%\",xxaoJNOLg:\"Live HD Streaming Services\",...addPropertyOverrides({yBMT4DWbb:{variant:\"eWxd1OgAs\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:825,width:\"450px\",y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1)+(0+((componentViewport?.height||928)*1.1-0-825)/2),...addPropertyOverrides({areXqYZPm:{y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1002155172413792)+(0+((componentViewport?.height||928)*1.1002155172413792-0-825)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h4bzup-container\",\"data-framer-name\":\"Space To\",layoutDependency:layoutDependency,layoutId:\"g0Ovrbzuw-container\",name:\"Space To\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Expert AR\\nSolutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/ZdRDSfDTU07pydRMOjBYgW3V6U.svg\"},\"\"),height:\"100%\",id:\"g0Ovrbzuw\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg\",srcSet:\"https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg 3840w\"},\"\"),layoutId:\"g0Ovrbzuw\",name:\"Space To\",RlEOHi_eR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We imagine, create and deliver unconventional metaverse, 3D spaces and impactful journeys for experiential brands and ambitious creators.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Create a metaverse experience that best reflects your brand. Our web-based metaverse spaces and experiences allow you to create customized environments, connecting your brand with your customers in new shared realities. Each space is built to inspire through deliberately placed 3D assets and effortless functionality.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Discover unique 3D experiences where interactive video, spatial audio, customizable avatars, social networking, live streaming and more come together to create your undefined, unrestricted metarealm.\"})]}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"https://spaceto.io\",variant:\"mUuFM_IBg\",width:\"100%\",xxaoJNOLg:\"Metaverse Experience Creators\",...addPropertyOverrides({VqpbB_spN:{variant:\"eWxd1OgAs\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:825,width:\"450px\",y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1)+(0+((componentViewport?.height||928)*1.1-0-825)/2),...addPropertyOverrides({areXqYZPm:{y:(componentViewport?.y||0)+(componentViewport?.height||928)-(-205+(componentViewport?.height||928)*1.1002155172413792)+(0+((componentViewport?.height||928)*1.1002155172413792-0-825)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t09cx2-container\",\"data-framer-name\":\"Branch\",layoutDependency:layoutDependency,layoutId:\"psio8MVpG-container\",name:\"Branch\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Interactive Web Solutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/Z7QkWjZRJmDvQ1afL8STodq8.png\"},\"\"),height:\"100%\",id:\"psio8MVpG\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/cwfU3EgMGRlSKw4VyB0fuXJx4dA.jpg\",srcSet:\"https://framerusercontent.com/images/cwfU3EgMGRlSKw4VyB0fuXJx4dA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cwfU3EgMGRlSKw4VyB0fuXJx4dA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cwfU3EgMGRlSKw4VyB0fuXJx4dA.jpg 1920w\"},\"\"),layoutId:\"psio8MVpG\",name:\"Branch\",RlEOHi_eR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"At Branch, we transform visionary ideas into dynamic digital realities. Our team specializes in developing custom web, enterprise solutions and interactive applications that incorporate the latest in AI, augmented reality (AR), and extended reality (XR).\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We excel in tailoring technology to the unique requirements of each project, making us the preferred partner for agencies seeking to create engaging, tech-driven narratives.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Supported by a diverse team of tech-savvy professionals from around the world and a commitment to continuous innovation, Branch ensures every project not only meets but exceeds the demands of today\u2019s digital landscape.\"]})}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"branchdev.io\",variant:\"mUuFM_IBg\",width:\"100%\",xxaoJNOLg:\"Interactive Web Solutions\",...addPropertyOverrides({aqZyAmAnX:{variant:\"eWxd1OgAs\"},areXqYZPm:{variant:\"eWxd1OgAs\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Tg2wP.framer-18ni8qr, .framer-Tg2wP .framer-18ni8qr { display: block; }\",\".framer-Tg2wP.framer-1bve6cc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 928px; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Tg2wP .framer-41rgno { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Tg2wP .framer-f8uezm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Tg2wP .framer-e418no-container, .framer-Tg2wP .framer-gzaunh-container, .framer-Tg2wP .framer-w9zr7j-container, .framer-Tg2wP .framer-pqvml6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Tg2wP .framer-ihn97t { align-content: center; align-items: center; bottom: -205px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 110%; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Tg2wP .framer-1xkgo0v-container, .framer-Tg2wP .framer-12mq4rr-container, .framer-Tg2wP .framer-h4bzup-container, .framer-Tg2wP .framer-t09cx2-container { flex: none; height: 825px; position: relative; width: 450px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Tg2wP.framer-1bve6cc, .framer-Tg2wP .framer-41rgno, .framer-Tg2wP .framer-f8uezm, .framer-Tg2wP .framer-ihn97t { gap: 0px; } .framer-Tg2wP.framer-1bve6cc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Tg2wP.framer-1bve6cc > :first-child { margin-top: 0px; } .framer-Tg2wP.framer-1bve6cc > :last-child { margin-bottom: 0px; } .framer-Tg2wP .framer-41rgno > *, .framer-Tg2wP .framer-ihn97t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Tg2wP .framer-41rgno > :first-child, .framer-Tg2wP .framer-f8uezm > :first-child, .framer-Tg2wP .framer-ihn97t > :first-child { margin-left: 0px; } .framer-Tg2wP .framer-41rgno > :last-child, .framer-Tg2wP .framer-f8uezm > :last-child, .framer-Tg2wP .framer-ihn97t > :last-child { margin-right: 0px; } .framer-Tg2wP .framer-f8uezm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-Tg2wP.framer-v-1w9q73u .framer-ihn97t { left: -461px; }\",\".framer-Tg2wP.framer-v-sgwbgf .framer-ihn97t { left: -920px; right: -866px; width: unset; }\",\".framer-Tg2wP.framer-v-zyro2e .framer-ihn97t { left: -1381px; right: -405px; width: unset; }\",\".framer-Tg2wP.framer-v-r152fa .framer-ihn97t { height: 110%; left: -1380px; right: -1286px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 928\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"YQ4sBepDA\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"yBMT4DWbb\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"VqpbB_spN\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"aqZyAmAnX\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"areXqYZPm\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"VCVVQlu8P\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersbpA_pbit=withCSS(Component,css,\"framer-Tg2wP\");export default FramersbpA_pbit;FramersbpA_pbit.displayName=\"brands\";FramersbpA_pbit.defaultProps={height:928,width:1200};addPropertyControls(FramersbpA_pbit,{variant:{options:[\"BYQe4b2VN\",\"YQ4sBepDA\",\"yBMT4DWbb\",\"VqpbB_spN\",\"aqZyAmAnX\",\"areXqYZPm\",\"VCVVQlu8P\"],optionTitles:[\"Variant 1\",\"Alt+Enter\",\"Streamwork\",\"SpaceTo\",\"WA3in\",\"ARgeeks\",\"WIM\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersbpA_pbit,[{explicitInter:true,fonts:[]},...TabButtonFonts,...BrandCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersbpA_pbit\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"YQ4sBepDA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"yBMT4DWbb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"VqpbB_spN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"aqZyAmAnX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"areXqYZPm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"VCVVQlu8P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"928\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c499f43)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/dHMZgeKKiJ1plPBO75QS/yXH8tVz6np3ZwPHzd2EN/Z6co8DnJ_.js\";const enabledGestures={xMhdxpxAL:{pressed:true}};const cycleOrder=[\"xMhdxpxAL\",\"VRXGwclWI\"];const serializationHash=\"framer-sCACH\";const variantClassNames={VRXGwclWI:\"framer-v-11blo7w\",xMhdxpxAL:\"framer-v-1ezgkrj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"xMhdxpxAL\",\"Variant 2\":\"VRXGwclWI\"};const getProps=({height,id,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,O7L6Mw8Gi:(_ref=title!==null&&title!==void 0?title:props.O7L6Mw8Gi)!==null&&_ref!==void 0?_ref:\"Solution Name\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"xMhdxpxAL\",YSz5uQ9I6:tap!==null&&tap!==void 0?tap:props.YSz5uQ9I6};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,O7L6Mw8Gi,YSz5uQ9I6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xMhdxpxAL\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1hm4u9o=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(YSz5uQ9I6){const res=await YSz5uQ9I6(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ezgkrj\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"xMhdxpxAL\",onTap:onTap1hm4u9o,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-84dca687-be96-4263-b8fd-b8af54e17a4e, rgb(23, 23, 30))\",...style},variants:{\"xMhdxpxAL-pressed\":{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},VRXGwclWI:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"xMhdxpxAL-pressed\":{\"data-border\":true,\"data-framer-name\":undefined},VRXGwclWI:{\"data-border\":true,\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsehf2\",\"data-styles-preset\":\"Z6co8DnJ_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Solution Name\"})}),className:\"framer-en24z9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RjRTDN6VC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:O7L6Mw8Gi,verticalAlignment:\"center\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sCACH.framer-1627n5, .framer-sCACH .framer-1627n5 { display: block; }\",\".framer-sCACH.framer-1ezgkrj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 40px 30px 40px 30px; position: relative; width: min-content; }\",\".framer-sCACH .framer-en24z9 { flex: none; height: 65px; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sCACH.framer-1ezgkrj { gap: 0px; } .framer-sCACH.framer-1ezgkrj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sCACH.framer-1ezgkrj > :first-child { margin-top: 0px; } .framer-sCACH.framer-1ezgkrj > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-sCACH[data-border=\"true\"]::after, .framer-sCACH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 145\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"VRXGwclWI\":{\"layout\":[\"auto\",\"auto\"]},\"xhrRsv4Hg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"O7L6Mw8Gi\":\"title\",\"YSz5uQ9I6\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFhpGKRv5P=withCSS(Component,css,\"framer-sCACH\");export default FramerFhpGKRv5P;FramerFhpGKRv5P.displayName=\"solutions tab button\";FramerFhpGKRv5P.defaultProps={height:145,width:260};addPropertyControls(FramerFhpGKRv5P,{variant:{options:[\"xMhdxpxAL\",\"VRXGwclWI\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},O7L6Mw8Gi:{defaultValue:\"Solution Name\",displayTextArea:false,title:\"Title\",type:ControlType.String},YSz5uQ9I6:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerFhpGKRv5P,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFhpGKRv5P\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VRXGwclWI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xhrRsv4Hg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"O7L6Mw8Gi\\\":\\\"title\\\",\\\"YSz5uQ9I6\\\":\\\"tap\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"260\",\"framerIntrinsicHeight\":\"145\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FhpGKRv5P.map", "// Generated by Framer (91bcfbd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,ResolveLinks,useActiveVariantCallback,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SolutionCard from\"https://framerusercontent.com/modules/9ciGnaQhEGS4WIUZsnZV/ZhA0j4NW9mFQS0MIX3PI/CsRz1EUAU.js\";import SolutionsTabButton from\"https://framerusercontent.com/modules/1mlt7vnVpnIGD4qbIx9k/0AG1ZMalBQKPCCl01qxP/FhpGKRv5P.js\";const SolutionsTabButtonFonts=getFonts(SolutionsTabButton);const SolutionCardFonts=getFonts(SolutionCard);const cycleOrder=[\"ZlNImnEPb\",\"OjlPwBLeW\",\"kht5PN7vN\",\"pVmAMm2Nl\",\"jcqY8p47B\",\"sqkaqLhuC\"];const serializationHash=\"framer-bJ5UP\";const variantClassNames={jcqY8p47B:\"framer-v-qxvps7\",kht5PN7vN:\"framer-v-17tjp23\",OjlPwBLeW:\"framer-v-sex9f8\",pVmAMm2Nl:\"framer-v-j7zn6c\",sqkaqLhuC:\"framer-v-1jls7yb\",ZlNImnEPb:\"framer-v-2di9va\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Digital Installations\":\"sqkaqLhuC\",\"Immersive Content Production\":\"OjlPwBLeW\",\"Interactive Web Applications\":\"pVmAMm2Nl\",\"Live Streaming and Cloud Broadcasting\":\"jcqY8p47B\",\"Metaverse & Virtual Experiences\":\"kht5PN7vN\",\"Variant 1\":\"ZlNImnEPb\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ZlNImnEPb\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ZlNImnEPb\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const YSz5uQ9I6cvze6d=activeVariantCallback(async(...args)=>{setVariant(\"sqkaqLhuC\");});const YSz5uQ9I61wpc6k7=activeVariantCallback(async(...args)=>{setVariant(\"OjlPwBLeW\");});const YSz5uQ9I6x7opcm=activeVariantCallback(async(...args)=>{setVariant(\"kht5PN7vN\");});const YSz5uQ9I6v3dy0n=activeVariantCallback(async(...args)=>{setVariant(\"pVmAMm2Nl\");});const YSz5uQ9I61cgdulf=activeVariantCallback(async(...args)=>{setVariant(\"jcqY8p47B\");});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2di9va\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZlNImnEPb\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jcqY8p47B:{\"data-framer-name\":\"Live Streaming and Cloud Broadcasting\"},kht5PN7vN:{\"data-framer-name\":\"Metaverse & Virtual Experiences\"},OjlPwBLeW:{\"data-framer-name\":\"Immersive Content Production\"},pVmAMm2Nl:{\"data-framer-name\":\"Interactive Web Applications\"},sqkaqLhuC:{\"data-framer-name\":\"Digital Installations\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ktvvn2\",\"data-framer-name\":\"Tab Buttons\",layoutDependency:layoutDependency,layoutId:\"ONMAeXgwr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-65avo8-container\",\"data-framer-name\":\"Tab - Digital Installations\",layoutDependency:layoutDependency,layoutId:\"ScEwyPXel-container\",name:\"Tab - Digital Installations\",children:/*#__PURE__*/_jsx(SolutionsTabButton,{height:\"100%\",id:\"ScEwyPXel\",layoutId:\"ScEwyPXel\",name:\"Tab - Digital Installations\",O7L6Mw8Gi:\"Digital Installations\",variant:\"VRXGwclWI\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I6cvze6d,...addPropertyOverrides({jcqY8p47B:{variant:\"xMhdxpxAL\"},kht5PN7vN:{variant:\"xMhdxpxAL\"},OjlPwBLeW:{variant:\"xMhdxpxAL\"},pVmAMm2Nl:{variant:\"xMhdxpxAL\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7y34ff-container\",\"data-framer-name\":\"Tab - Immersive Content Production\",layoutDependency:layoutDependency,layoutId:\"t8xCM2Wkh-container\",name:\"Tab - Immersive Content Production\",children:/*#__PURE__*/_jsx(SolutionsTabButton,{height:\"100%\",id:\"t8xCM2Wkh\",layoutId:\"t8xCM2Wkh\",name:\"Tab - Immersive Content Production\",O7L6Mw8Gi:\"Immersive Content Production\",variant:\"xMhdxpxAL\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I61wpc6k7,...addPropertyOverrides({OjlPwBLeW:{variant:\"VRXGwclWI\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g2vuh8-container\",\"data-framer-name\":\"Tab - Metaverse & Virtual Experiences\",layoutDependency:layoutDependency,layoutId:\"LlWhLbtlt-container\",name:\"Tab - Metaverse & Virtual Experiences\",children:/*#__PURE__*/_jsx(SolutionsTabButton,{height:\"100%\",id:\"LlWhLbtlt\",layoutId:\"LlWhLbtlt\",name:\"Tab - Metaverse & Virtual Experiences\",O7L6Mw8Gi:\"Metaverse & Virtual Experiences\",variant:\"xMhdxpxAL\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I6x7opcm,...addPropertyOverrides({kht5PN7vN:{variant:\"VRXGwclWI\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1otkaol-container\",\"data-framer-name\":\"Tab - Interactive Web Applications\",layoutDependency:layoutDependency,layoutId:\"N2ZCJ31Zi-container\",name:\"Tab - Interactive Web Applications\",children:/*#__PURE__*/_jsx(SolutionsTabButton,{height:\"100%\",id:\"N2ZCJ31Zi\",layoutId:\"N2ZCJ31Zi\",name:\"Tab - Interactive Web Applications\",O7L6Mw8Gi:\"Interactive Web Application\",variant:\"xMhdxpxAL\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I6v3dy0n,...addPropertyOverrides({pVmAMm2Nl:{variant:\"VRXGwclWI\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16y5z63-container\",\"data-framer-name\":\"Tab - Live Streaming and Cloud Broadcasting\",layoutDependency:layoutDependency,layoutId:\"LMEpUb1SN-container\",name:\"Tab - Live Streaming and Cloud Broadcasting\",children:/*#__PURE__*/_jsx(SolutionsTabButton,{height:\"100%\",id:\"LMEpUb1SN\",layoutId:\"LMEpUb1SN\",name:\"Tab - Live Streaming and Cloud Broadcasting\",O7L6Mw8Gi:\"Live Streaming and Cloud Broadcasting\",variant:\"xMhdxpxAL\",width:\"100%\",YSz5uQ9I6:YSz5uQ9I61cgdulf,...addPropertyOverrides({jcqY8p47B:{variant:\"VRXGwclWI\"}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1huhu3j\",\"data-framer-name\":\"Solutions Cards\",layoutDependency:layoutDependency,layoutId:\"EMGIkBtbU\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EUCD_CbVv\"},implicitPathVariables:undefined},{href:{webPageId:\"EUCD_CbVv\"},implicitPathVariables:undefined},{href:{webPageId:\"EUCD_CbVv\"},implicitPathVariables:undefined},{href:{webPageId:\"EUCD_CbVv\"},implicitPathVariables:undefined},{href:{webPageId:\"EUCD_CbVv\"},implicitPathVariables:undefined},{href:{webPageId:\"EUCD_CbVv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-181lquf-container\",\"data-framer-name\":\"Digital Installations\",layoutDependency:layoutDependency,layoutId:\"W1kmnWGka-container\",name:\"Digital Installations\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks[0],fhRKoEFei:\"Elevate fixed or temporary installations with data-driven digital artistry.\",height:\"100%\",id:\"W1kmnWGka\",layoutId:\"W1kmnWGka\",MK7OohHdV:\"Digital Installations\",name:\"Digital Installations\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png\",srcSet:\"https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png?scale-down-to=512 512w, https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/PZ0ZNUohG85a2RZfIQxZr4j8dA.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"ycGcxj51L\",width:\"100%\",...addPropertyOverrides({jcqY8p47B:{bisv_XEPY:resolvedLinks[4]},kht5PN7vN:{bisv_XEPY:resolvedLinks[2]},OjlPwBLeW:{bisv_XEPY:resolvedLinks[1]},pVmAMm2Nl:{bisv_XEPY:resolvedLinks[3]},sqkaqLhuC:{bisv_XEPY:resolvedLinks[5],variant:\"Nm_i2lV0T\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fYVhLMXrn\"},implicitPathVariables:undefined},{href:{webPageId:\"fYVhLMXrn\"},implicitPathVariables:undefined},{href:{webPageId:\"fYVhLMXrn\"},implicitPathVariables:undefined},{href:{webPageId:\"fYVhLMXrn\"},implicitPathVariables:undefined},{href:{webPageId:\"fYVhLMXrn\"},implicitPathVariables:undefined},{href:{webPageId:\"fYVhLMXrn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-dpynwx-container\",\"data-framer-name\":\"Immersive Content Production\",layoutDependency:layoutDependency,layoutId:\"jZRYrECTf-container\",name:\"Immersive Content Production\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks1[0],fhRKoEFei:\"Tell your brand story through immersive realities.\",height:\"100%\",id:\"jZRYrECTf\",layoutId:\"jZRYrECTf\",MK7OohHdV:\"Immersive Content Production\",name:\"Immersive Content Production\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png\",srcSet:\"https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png?scale-down-to=512 512w, https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/O9NPRqIe1IfFcVpwrJ1ZRBhWko.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"ycGcxj51L\",width:\"100%\",...addPropertyOverrides({jcqY8p47B:{bisv_XEPY:resolvedLinks1[4]},kht5PN7vN:{bisv_XEPY:resolvedLinks1[2]},OjlPwBLeW:{bisv_XEPY:resolvedLinks1[1],variant:\"Nm_i2lV0T\"},pVmAMm2Nl:{bisv_XEPY:resolvedLinks1[3]},sqkaqLhuC:{bisv_XEPY:resolvedLinks1[5]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Fz02cA_lN\"},implicitPathVariables:undefined},{href:{webPageId:\"Fz02cA_lN\"},implicitPathVariables:undefined},{href:{webPageId:\"Fz02cA_lN\"},implicitPathVariables:undefined},{href:{webPageId:\"Fz02cA_lN\"},implicitPathVariables:undefined},{href:{webPageId:\"Fz02cA_lN\"},implicitPathVariables:undefined},{href:{webPageId:\"Fz02cA_lN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-seqdfr-container\",\"data-framer-name\":\"Metaverse & Virtual Experiences\",layoutDependency:layoutDependency,layoutId:\"xqgb_2p9O-container\",name:\"Metaverse & Virtual Experiences\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks2[0],fhRKoEFei:\"Web-based, easily accessible virtual experiences to amplify your brand engagement.\",height:\"100%\",id:\"xqgb_2p9O\",layoutId:\"xqgb_2p9O\",MK7OohHdV:\"Metaverse & Virtual Experiences\",name:\"Metaverse & Virtual Experiences\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png\",srcSet:\"https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png?scale-down-to=512 512w, https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/WqLM4g4Jk16ly4X0kg9te4OViZk.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"ycGcxj51L\",width:\"100%\",...addPropertyOverrides({jcqY8p47B:{bisv_XEPY:resolvedLinks2[4]},kht5PN7vN:{bisv_XEPY:resolvedLinks2[2],variant:\"Nm_i2lV0T\"},OjlPwBLeW:{bisv_XEPY:resolvedLinks2[1]},pVmAMm2Nl:{bisv_XEPY:resolvedLinks2[3]},sqkaqLhuC:{bisv_XEPY:resolvedLinks2[5]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pwFaGl7Lm\"},implicitPathVariables:undefined},{href:{webPageId:\"pwFaGl7Lm\"},implicitPathVariables:undefined},{href:{webPageId:\"pwFaGl7Lm\"},implicitPathVariables:undefined},{href:{webPageId:\"pwFaGl7Lm\"},implicitPathVariables:undefined},{href:{webPageId:\"pwFaGl7Lm\"},implicitPathVariables:undefined},{href:{webPageId:\"pwFaGl7Lm\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nsstyt-container\",\"data-framer-name\":\"Interactive Web Applications\",layoutDependency:layoutDependency,layoutId:\"G8VMmv3Fv-container\",name:\"Interactive Web Applications\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks3[0],fhRKoEFei:\"Transform your web experiences with dynamic and interactive user interfaces.\",height:\"100%\",id:\"G8VMmv3Fv\",layoutId:\"G8VMmv3Fv\",MK7OohHdV:\"Interactive Web Applications\",name:\"Interactive Web Applications\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png\",srcSet:\"https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png?scale-down-to=512 512w, https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/LSV7mCmpcbZuqvwVNYFfRcDzc8.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"ycGcxj51L\",width:\"100%\",...addPropertyOverrides({jcqY8p47B:{bisv_XEPY:resolvedLinks3[4]},kht5PN7vN:{bisv_XEPY:resolvedLinks3[2]},OjlPwBLeW:{bisv_XEPY:resolvedLinks3[1]},pVmAMm2Nl:{bisv_XEPY:resolvedLinks3[3],variant:\"Nm_i2lV0T\"},sqkaqLhuC:{bisv_XEPY:resolvedLinks3[5]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kw18RxRGz\"},implicitPathVariables:undefined},{href:{webPageId:\"kw18RxRGz\"},implicitPathVariables:undefined},{href:{webPageId:\"kw18RxRGz\"},implicitPathVariables:undefined},{href:{webPageId:\"kw18RxRGz\"},implicitPathVariables:undefined},{href:{webPageId:\"kw18RxRGz\"},implicitPathVariables:undefined},{href:{webPageId:\"kw18RxRGz\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t38z9o-container\",\"data-framer-name\":\"Live Streaming and Cloud Broadcasting\",layoutDependency:layoutDependency,layoutId:\"jlEPuqg7N-container\",name:\"Live Streaming and Cloud Broadcasting\",children:/*#__PURE__*/_jsx(SolutionCard,{bisv_XEPY:resolvedLinks4[0],fhRKoEFei:\"Go beyond boundaries: stream your vision to the world.\",height:\"100%\",id:\"jlEPuqg7N\",layoutId:\"jlEPuqg7N\",MK7OohHdV:\"Live Streaming and Cloud Broadcasting\",name:\"Live Streaming and Cloud Broadcasting\",S5zh6YBqG:addImageAlt({src:\"https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png\",srcSet:\"https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png?scale-down-to=512 512w, https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/wwkWtNrBYMzcjX1RxLRseMPM0.png 1496w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"ycGcxj51L\",width:\"100%\",...addPropertyOverrides({jcqY8p47B:{bisv_XEPY:resolvedLinks4[4],variant:\"Nm_i2lV0T\"},kht5PN7vN:{bisv_XEPY:resolvedLinks4[2]},OjlPwBLeW:{bisv_XEPY:resolvedLinks4[1]},pVmAMm2Nl:{bisv_XEPY:resolvedLinks4[3]},sqkaqLhuC:{bisv_XEPY:resolvedLinks4[5]}},baseVariant,gestureVariant)})})})]})]})})})});});const css=['.framer-bJ5UP[data-border=\"true\"]::after, .framer-bJ5UP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bJ5UP.framer-1efhuod, .framer-bJ5UP .framer-1efhuod { display: block; }\",\".framer-bJ5UP.framer-2di9va { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 928px; justify-content: flex-start; max-width: 1200px; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-bJ5UP .framer-ktvvn2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 145px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bJ5UP .framer-65avo8-container, .framer-bJ5UP .framer-7y34ff-container, .framer-bJ5UP .framer-1g2vuh8-container, .framer-bJ5UP .framer-1otkaol-container, .framer-bJ5UP .framer-16y5z63-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-bJ5UP .framer-1huhu3j { align-content: center; align-items: center; bottom: 130px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 603px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: -964px; width: min-content; z-index: 1; }\",\".framer-bJ5UP .framer-181lquf-container, .framer-bJ5UP .framer-dpynwx-container, .framer-bJ5UP .framer-seqdfr-container, .framer-bJ5UP .framer-1nsstyt-container, .framer-bJ5UP .framer-1t38z9o-container { flex: none; height: 603px; position: relative; width: 425px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bJ5UP.framer-2di9va, .framer-bJ5UP .framer-ktvvn2, .framer-bJ5UP .framer-1huhu3j { gap: 0px; } .framer-bJ5UP.framer-2di9va > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-bJ5UP.framer-2di9va > :first-child { margin-top: 0px; } .framer-bJ5UP.framer-2di9va > :last-child { margin-bottom: 0px; } .framer-bJ5UP .framer-ktvvn2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bJ5UP .framer-ktvvn2 > :first-child, .framer-bJ5UP .framer-1huhu3j > :first-child { margin-left: 0px; } .framer-bJ5UP .framer-ktvvn2 > :last-child, .framer-bJ5UP .framer-1huhu3j > :last-child { margin-right: 0px; } .framer-bJ5UP .framer-1huhu3j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-bJ5UP.framer-v-sex9f8 .framer-1huhu3j { height: unset; justify-content: center; left: -434px; right: -533px; top: 195px; width: unset; }\",\".framer-bJ5UP.framer-v-17tjp23 .framer-1huhu3j { left: -869px; right: unset; }\",\".framer-bJ5UP.framer-v-j7zn6c .framer-1huhu3j { height: unset; left: -1304px; right: unset; top: 195px; }\",\".framer-bJ5UP.framer-v-qxvps7 .framer-1huhu3j { left: -1740px; right: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 928\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"OjlPwBLeW\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"kht5PN7vN\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"pVmAMm2Nl\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"jcqY8p47B\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"sqkaqLhuC\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerydeftrihW=withCSS(Component,css,\"framer-bJ5UP\");export default FramerydeftrihW;FramerydeftrihW.displayName=\"Solutions\";FramerydeftrihW.defaultProps={height:928,width:1200};addPropertyControls(FramerydeftrihW,{variant:{options:[\"ZlNImnEPb\",\"OjlPwBLeW\",\"kht5PN7vN\",\"pVmAMm2Nl\",\"jcqY8p47B\",\"sqkaqLhuC\"],optionTitles:[\"Variant 1\",\"Immersive Content Production\",\"Metaverse & Virtual Experiences\",\"Interactive Web Applications\",\"Live Streaming and Cloud Broadcasting\",\"Digital Installations\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerydeftrihW,[...SolutionsTabButtonFonts,...SolutionCardFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerydeftrihW\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"OjlPwBLeW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"kht5PN7vN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"pVmAMm2Nl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"jcqY8p47B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"sqkaqLhuC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"928\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import BrandCard from\"https://framerusercontent.com/modules/53JdXkBzAWIWZoqPZQzj/jpQ5PQdTGBqdpzaH18Sg/Ap3M3xgBU.js\";const BrandCardFonts=getFonts(BrandCard);const CarouselFonts=getFonts(Carousel);const serializationHash=\"framer-Ca2XP\";const variantClassNames={xWzHDSn5X:\"framer-v-rc93zb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"xWzHDSn5X\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rc93zb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xWzHDSn5X\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tlfud-container\",layoutDependency:layoutDependency,layoutId:\"gklRBgkdY-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(255, 102, 74, 0)\",arrowPadding:5,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/BGx10aQif2Ii87CaBiE8mmXGKw.svg\",rightArrow:\"https://framerusercontent.com/images/zMCACpRa7sjFblfYzDNgTAJMnYg.svg\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"gklRBgkdY\",layoutId:\"gklRBgkdY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:970,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jferli-container\",\"data-framer-name\":\"Alt Enter\",layoutDependency:layoutDependency,layoutId:\"lDp_l7VDN-container\",name:\"Alt Enter\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Expert AR\\nSolutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/GxsHEbECsN6z0IcAEuEzSmnmQ.png\"},\"\"),height:\"100%\",id:\"lDp_l7VDN\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/aPWBVu26SYOoL2FKJZa3u15x9fo.jpg\",srcSet:\"https://framerusercontent.com/images/aPWBVu26SYOoL2FKJZa3u15x9fo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aPWBVu26SYOoL2FKJZa3u15x9fo.jpg 876w\"},\"\"),layoutId:\"lDp_l7VDN\",name:\"Alt Enter\",RlEOHi_eR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We design and deliver experiential show content to take your audiences on a perfectly timed, creative journey that tantalizes the senses.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"We are the future of digital content production. Our ever-evolving content is data-driven, and rendered live in real-time, enabling stories to dynamically unfold, being emotively crafted using augmented reality, 3D graphics, dynamic branding and camera tracking.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"From award-winning interactive presentations and digital journey\u2019s, immersive brand launches, award ceremonies, game shows to virtual experiences, we are experiential content producers passionate about bringing your brand\u2019s story to life.\"})]}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"https://altenter.io\",variant:\"hko63sHnI\",width:\"100%\",xxaoJNOLg:\"Real-time Experiential Content\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:970,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ml4g2l-container\",\"data-framer-name\":\"Stream Works\",layoutDependency:layoutDependency,layoutId:\"vgaGlVpCT-container\",name:\"Stream Works\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Expert AR\\nSolutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/CDf3Ii9LdLIAGY5AVXwuDdNo3C4.png\"},\"\"),height:\"100%\",id:\"vgaGlVpCT\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg\",srcSet:\"https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z5KHhMYcwwwvfgZYOSsmfs.jpg 2048w\"},\"\"),layoutId:\"vgaGlVpCT\",name:\"Stream Works\",RlEOHi_eR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We focus on delivering video solutions for all organizations.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Whether you are a small company that wants to stream weekly meetings or you\u2019re a large corporation looking to stream your large event, we deliver scaled solutions that will enable you to share your vision.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"We have worked with and continue to partner with multiple organizations in the UAE and across the globe.\"})]}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"https://streamworks.ae\",variant:\"hko63sHnI\",width:\"100%\",xxaoJNOLg:\"Live HD Streaming Services\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:970,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1he0dwp-container\",\"data-framer-name\":\"Space To\",layoutDependency:layoutDependency,layoutId:\"SG_vgpE7V-container\",name:\"Space To\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Expert AR\\nSolutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/ZdRDSfDTU07pydRMOjBYgW3V6U.svg\"},\"\"),height:\"100%\",id:\"SG_vgpE7V\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg\",srcSet:\"https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Theju8ZzLXj21tVkaqCgTmAo30.jpg 3840w\"},\"\"),layoutId:\"SG_vgpE7V\",name:\"Space To\",RlEOHi_eR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We imagine, create and deliver unconventional metaverse, 3D spaces and impactful journeys for experiential brands and ambitious creators.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Create a metaverse experience that best reflects your brand. Our web-based metaverse spaces and experiences allow you to create customized environments, connecting your brand with your customers in new shared realities. Each space is built to inspire through deliberately placed 3D assets and effortless functionality.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Discover unique 3D experiences where interactive video, spatial audio, customizable avatars, social networking, live streaming and more come together to create your undefined, unrestricted metarealm.\"})]}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"https://spaceto.io\",variant:\"hko63sHnI\",width:\"100%\",xxaoJNOLg:\"Metaverse Experience Creators\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:970,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18kjfhp-container\",\"data-framer-name\":\"Wa3in\",layoutDependency:layoutDependency,layoutId:\"w9cy6nu3s-container\",name:\"Wa3in\",children:/*#__PURE__*/_jsx(BrandCard,{D0EKXNFB6:\"Interactive Web Solutions\",Gm_WQz00e:addImageAlt({src:\"https://framerusercontent.com/images/F3ra9I37NE2cNb98jCR5tt5AME.png\"},\"\"),height:\"100%\",id:\"w9cy6nu3s\",kjXkYSKDi:addImageAlt({src:\"https://framerusercontent.com/images/Bi7Zrr2V6zfGhqPBLRz5NmdktIk.jpg\",srcSet:\"https://framerusercontent.com/images/Bi7Zrr2V6zfGhqPBLRz5NmdktIk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Bi7Zrr2V6zfGhqPBLRz5NmdktIk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bi7Zrr2V6zfGhqPBLRz5NmdktIk.jpg 1200w\"},\"\"),layoutId:\"w9cy6nu3s\",name:\"Wa3in\",RlEOHi_eR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"At Branch, we specialize in transforming visionary concepts into dynamic digital realities.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Our team excels at developing customized web solutions that incorporate the latest in AI, AR, and Metaverse technologies, tailored to the unique needs of each project.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"Our ability to integrate complex and custom technologies makes us the preferred partner for agencies aiming to create compelling, tech-driven narratives.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"With a solid backbone of diverse, tech-savvy professionals from around the world and a commitment to continuous R&D, we ensure that every project not only meets but also exceeds the complex demands of today\u2019s digital world.\"})]}),style:{height:\"100%\",width:\"100%\"},TowCh4drg:\"branchdev.io\",variant:\"jpmphNfah\",width:\"100%\",xxaoJNOLg:\"Interactive Web Solutions\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ca2XP.framer-1oh2rl4, .framer-Ca2XP .framer-1oh2rl4 { display: block; }\",\".framer-Ca2XP.framer-rc93zb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 970px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 888px; }\",\".framer-Ca2XP .framer-tlfud-container { flex: none; height: 971px; position: relative; width: 100%; }\",\".framer-Ca2XP .framer-1jferli-container, .framer-Ca2XP .framer-1ml4g2l-container, .framer-Ca2XP .framer-1he0dwp-container, .framer-Ca2XP .framer-18kjfhp-container { height: 970px; position: relative; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ca2XP.framer-rc93zb { gap: 0px; } .framer-Ca2XP.framer-rc93zb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ca2XP.framer-rc93zb > :first-child { margin-left: 0px; } .framer-Ca2XP.framer-rc93zb > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 970\n * @framerIntrinsicWidth 888\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzFJ8Xhm48=withCSS(Component,css,\"framer-Ca2XP\");export default FramerzFJ8Xhm48;FramerzFJ8Xhm48.displayName=\"Brand Slider\";FramerzFJ8Xhm48.defaultProps={height:970,width:888};addFonts(FramerzFJ8Xhm48,[{explicitInter:true,fonts:[]},...BrandCardFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzFJ8Xhm48\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"970\",\"framerIntrinsicWidth\":\"888\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import FooterDarkCopy from\"#framer/local/canvasComponent/aXFee75dp/aXFee75dp.js\";import SolutionsSlider from\"#framer/local/canvasComponent/CBFa6ll5R/CBFa6ll5R.js\";import ArrowDown from\"#framer/local/canvasComponent/Ib5MCV4nH/Ib5MCV4nH.js\";import HomePageFAQSection from\"#framer/local/canvasComponent/p5RwiUXWP/p5RwiUXWP.js\";import ContactUsButton from\"#framer/local/canvasComponent/RgkXMS6zb/RgkXMS6zb.js\";import Brands from\"#framer/local/canvasComponent/sbpA_pbit/sbpA_pbit.js\";import BrandsTicker from\"#framer/local/canvasComponent/Vpu9S8Ix2/Vpu9S8Ix2.js\";import CONTACTS from\"#framer/local/canvasComponent/yAl9C0ClB/yAl9C0ClB.js\";import Solutions from\"#framer/local/canvasComponent/ydeftrihW/ydeftrihW.js\";import MobileMenu from\"#framer/local/canvasComponent/YqS7FgnlI/YqS7FgnlI.js\";import BrandSlider from\"#framer/local/canvasComponent/zFJ8Xhm48/zFJ8Xhm48.js\";import UpdatedNavbar from\"#framer/local/canvasComponent/ZTXixDjRR/ZTXixDjRR.js\";import*as sharedStyle1 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const UpdatedNavbarFonts=getFonts(UpdatedNavbar);const MobileMenuFonts=getFonts(MobileMenu);const RichTextWithFX=withFX(RichText);const ContactUsButtonFonts=getFonts(ContactUsButton);const ContainerWithFX=withFX(Container);const YouTubeFonts=getFonts(YouTube);const IconoirFonts=getFonts(Iconoir);const VideoFonts=getFonts(Video);const ArrowDownFonts=getFonts(ArrowDown);const MotionDivWithFX=withFX(motion.div);const BrandsTickerFonts=getFonts(BrandsTicker);const ImageWithFX=withFX(Image);const SolutionsSliderFonts=getFonts(SolutionsSlider);const SolutionsFonts=getFonts(Solutions);const BrandsFonts=getFonts(Brands);const BrandSliderFonts=getFonts(BrandSlider);const HomePageFAQSectionFonts=getFonts(HomePageFAQSection);const CONTACTSFonts=getFonts(CONTACTS);const FooterDarkCopyFonts=getFonts(FooterDarkCopy);const breakpoints={Foh06E_0I:\"(max-width: 809px)\",kaSgjnFfA:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NJ7Fs\";const variantClassNames={Foh06E_0I:\"framer-v-1nh15b2\",kaSgjnFfA:\"framer-v-1ukydwq\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition1={delay:.6,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-150,y:0};const transition2={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-150,y:0};const transition3={delay:.6,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-150,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:50,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:0,duration:1,ease:[.7,-.35,.3,1.35],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-10};const transition7={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-150,y:0};const transition8={delay:.2,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:-150,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Foh06E_0I\",Tablet:\"kaSgjnFfA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const PI0BkibXH3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Foh06E_0I\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Foh06E_0I\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"kaSgjnFfA\",\"Foh06E_0I\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"vUX3Z0epD\");const ref1=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"kaSgjnFfA\",\"Foh06E_0I\"].includes(baseVariant))return true;return false;};const elementId1=useRouteElementId(\"Jrah98ih9\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"WSQWs4bRH\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"senvsJCSW\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"qp0vEbL5s\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(40, 34, 49); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:115,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1no7wf2-container\",layoutScroll:true,nodeId:\"CWW6ulsUU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{variant:\"j5ffCzOuw\",vXySHxe6S:resolvedLinks[2]},kaSgjnFfA:{variant:\"VEfCRVLRA\",vXySHxe6S:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(UpdatedNavbar,{height:\"100%\",id:\"CWW6ulsUU\",layoutId:\"CWW6ulsUU\",style:{width:\"100%\"},variant:\"TCX6d5ETn\",vXySHxe6S:resolvedLinks[0],width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{height:6922.8,width:`calc(${componentViewport?.width||\"100vw\"} + 420px)`},kaSgjnFfA:{height:7523.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:7427,width:\"810px\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gzg2ll-container\",nodeId:\"cXVVBuXrw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MobileMenu,{height:\"100%\",id:\"cXVVBuXrw\",layoutId:\"cXVVBuXrw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16yllz3\",\"data-framer-name\":\"First Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qsj5cx\",\"data-framer-name\":\"Header Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sif45f\",\"data-framer-name\":\"Header Copy and CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1waz69o\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6y8bu\",\"data-framer-name\":\"red overlay1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g47egp\",\"data-framer-name\":\"red overlay2\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--token-22898920-83da-4b1c-b920-b35b87d391b4, rgb(40, 34, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"46px\"},children:\"EXPERIENTIAL\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"46px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"46px\",\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"TECHNOLOGY\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"46px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"TO FUEL UNIQUE BRAND EXPERIENCES\"]})})},kaSgjnFfA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--token-22898920-83da-4b1c-b920-b35b87d391b4, rgb(40, 34, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"58px\"},children:\"EXPERIENTIAL\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"58px\",\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"TECHNOLOGY\"}),/*#__PURE__*/_jsx(\"br\",{}),\"TO FUEL UNIQUE BRAND EXPERIENCES\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--token-22898920-83da-4b1c-b920-b35b87d391b4, rgb(40, 34, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"72px\"},children:\"EXPERIENTIAL\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"72px\",\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"TECHNOLOGY\"}),/*#__PURE__*/_jsx(\"br\",{}),\"TO FUEL UNIQUE BRAND EXPERIENCES\"]})}),className:\"framer-15lo4ov\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10vgnub\",\"data-framer-name\":\"Space\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We inspire memorable and innovative connections using the latest in web, interactive content, creative technologies, and technology-fueled innovation.\"})}),className:\"framer-78cgb9\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-co7jrj\",\"data-framer-name\":\"Space\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9yfxi\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{width:\"160px\",y:(componentViewport?.y||0)+0+0+164+0+0+249.2+0},kaSgjnFfA:{y:(componentViewport?.y||0)+0+0+240+0+0+389+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"200px\",y:(componentViewport?.y||0)+0+0+240+0+0+280.4+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gqumpr-container\",nodeId:\"lE4fir1Mu\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{l9jSuuw7Q:resolvedLinks1[2]},kaSgjnFfA:{l9jSuuw7Q:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ContactUsButton,{a2ZyzRa0o:\"Play\",aUm4UoB9H:\"Learn More\",height:\"100%\",id:\"lE4fir1Mu\",l9jSuuw7Q:resolvedLinks1[0],layoutId:\"lE4fir1Mu\",style:{height:\"100%\",width:\"100%\"},variant:\"sF1Zq40m8\",WDR9vcoeE:\"rgb(23, 23, 30)\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{height:60,width:\"160px\",y:(componentViewport?.y||0)+0+0+164+0+0+249.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qzg7tr-container hidden-72rtr7 hidden-1ukydwq\",nodeId:\"tSx36fZXq\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{l9jSuuw7Q:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ContactUsButton,{a2ZyzRa0o:\"Play\",aUm4UoB9H:\"Contact Us\",height:\"100%\",id:\"tSx36fZXq\",l9jSuuw7Q:resolvedLinks2[0],layoutId:\"tSx36fZXq\",style:{height:\"100%\",width:\"100%\"},variant:\"sF1Zq40m8\",WDR9vcoeE:\"var(--token-206528fe-16f0-429b-96a0-80d55195d432, rgb(255, 102, 74))\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kaSgjnFfA:{y:(componentViewport?.y||0)+0+0+240+0+0+389+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"200px\",y:(componentViewport?.y||0)+0+0+240+0+0+280.4+0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fwh1s0-container hidden-1nh15b2\",id:\"1fwh1s0\",nodeId:\"iIIc8s5w7\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kaSgjnFfA:{l9jSuuw7Q:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ContactUsButton,{a2ZyzRa0o:\"Play\",aUm4UoB9H:\"Experience Now\",height:\"100%\",id:\"iIIc8s5w7\",l9jSuuw7Q:resolvedLinks3[0],layoutId:\"iIIc8s5w7\",PI0BkibXH:PI0BkibXH3bnx0g({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"mx127kYXc\",WDR9vcoeE:\"rgb(23, 23, 30)\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1j78v9j\"),\"data-framer-portal-id\":\"1fwh1s0\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"BMi9p71Rn\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1kmt2xj\"),\"data-framer-portal-id\":\"1fwh1s0\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11cs02g\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-185r5ij-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wTYnqIrxo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"wTYnqIrxo\",isMixedBorderRadius:false,isRed:true,layoutId:\"wTYnqIrxo\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=eBR89_Ryr10\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qs6mac\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pe09wh-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Pqxw_t_Zq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"\",iconSelection:\"Cancel\",id:\"Pqxw_t_Zq\",layoutId:\"Pqxw_t_Zq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})]}),getContainer())})})]})})})})})})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u9nrug-container hidden-1ukydwq hidden-1nh15b2\",\"data-framer-name\":\"Header Video\",isAuthoredByUser:true,isModuleExternal:true,name:\"Header Video\",nodeId:\"hSYFSHIzH\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"hSYFSHIzH\",isMixedBorderRadius:false,layoutId:\"hSYFSHIzH\",loop:true,muted:true,name:\"Header Video\",objectFit:\"scale-down\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/uPAS759kTGMjtKVwoBX8hP3118.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nbmkbu\",\"data-framer-name\":\"Animated Arrow Section\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wpihvq-container\",nodeId:\"oYseaqdDA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ArrowDown,{height:\"100%\",id:\"oYseaqdDA\",layoutId:\"oYseaqdDA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xxpuo2\",\"data-framer-name\":\"Logo Ticker Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trusted by 500+ Leading Innovators \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"in Experiential Technology\"})]})},kaSgjnFfA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trusted by 500+ Leading Innovators in Experiential Technology\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trusted by 500+ Leading Innovators in Experiential Technology\"})}),className:\"framer-ttwzlz\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{y:(componentViewport?.y||0)+0+589.2+124+61.7},kaSgjnFfA:{y:(componentViewport?.y||0)+0+839+124+52.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:170,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+730.4+124+58.1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vrq9gh-container\",nodeId:\"m19ECneqq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandsTicker,{height:\"100%\",id:\"m19ECneqq\",layoutId:\"m19ECneqq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uo2es4 hidden-1nh15b2\",\"data-framer-name\":'\"Our Vision\" Section',id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ou2stx\",\"data-framer-name\":\"Background Colour\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ae2m5m\",\"data-framer-name\":\"Section Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fgwe1j\",\"data-framer-name\":'\"Our Vision\" Copy',children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:[\"OUR \",/*#__PURE__*/_jsx(\"br\",{}),\"VISION\"]})}),className:\"framer-1d3an3g\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9g2smr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b11wa\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We transform possibilities into realities through a unique fusion of bold technology and non-conventional design.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Join us on an exhilarating journey where you will be able to inspire, entertain, and leave a lasting impact on your clients and customers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Let's make your brand the hero of unforgettable experiences.\"})]}),className:\"framer-6fi4kk\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y73xsi\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-valn92\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjb4li\",\"data-framer-name\":\"Triangle Blur\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kaSgjnFfA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1218+90.1+0+-100+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1109.4+-16.5+106.6+-100+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"},className:\"framer-1ciwjew\",style:{transformPerspective:1200}})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o7onlm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NJTSXAR8V\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-84dca687-be96-4263-b8fd-b8af54e17a4e, rgb(23, 23, 30))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"NJTSXAR8V\",isMixedBorderRadius:false,layoutId:\"NJTSXAR8V\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/0VSphmBQFoVD350ukvx12rD8I.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x8ws8e\",\"data-framer-name\":\"Services Copy\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"OUR \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"SERVICES\"})]})}),className:\"framer-45d5d0\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m20qvj\",\"data-framer-name\":\"Triangle Blur\",style:{rotate:87},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1518.2+34.875+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"}},kaSgjnFfA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2018+34.875+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1909.4+-47.625+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"},className:\"framer-v6aah\",style:{transformPerspective:1200}})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-muaeic\",\"data-framer-name\":\"Services Slider Section\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{height:627,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1814+0+0},kaSgjnFfA:{height:732,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2313.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d7jwx7-container hidden-72rtr7\",nodeId:\"jSR0Blr6B\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SolutionsSlider,{height:\"100%\",id:\"jSR0Blr6B\",layoutId:\"jSR0Blr6B\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:771,intrinsicWidth:649,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1814+131),pixelHeight:771,pixelWidth:649,positionX:\"center\",positionY:\"center\",sizes:\"759px\",src:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg\",srcSet:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg 649w\"}},kaSgjnFfA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:771,intrinsicWidth:649,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2313.8+138),pixelHeight:771,pixelWidth:649,positionX:\"center\",positionY:\"center\",sizes:\"682px\",src:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg\",srcSet:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg 649w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:771,intrinsicWidth:649,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073.2+138),pixelHeight:771,pixelWidth:649,positionX:\"center\",positionY:\"center\",sizes:\"759px\",src:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg\",srcSet:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg 649w\"},className:\"framer-1iqtsg6\",\"data-framer-name\":\"Background Image\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfi70o-container hidden-1ukydwq hidden-1nh15b2\",\"data-framer-name\":\"Services Component\",name:\"Services Component\",nodeId:\"Yxn3xD99S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Solutions,{height:\"100%\",id:\"Yxn3xD99S\",layoutId:\"Yxn3xD99S\",name:\"Services Component\",style:{height:\"100%\"},variant:\"ZlNImnEPb\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjyh4x\",\"data-framer-name\":\"Brands Section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"OUR \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"BRANDS\"})]})}),className:\"framer-xp7sct\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n3bofn\",\"data-framer-name\":\"Triangle Blur\",style:{rotate:87},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2441+37.375+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"}},kaSgjnFfA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3045.8+34.875+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3001.2+-47.625+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"},className:\"framer-1gm72zo\",style:{transformPerspective:1200}})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-di4n13\",\"data-framer-name\":\"Brands Slider Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:771,intrinsicWidth:649,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2740.8+970-635),pixelHeight:771,pixelWidth:649,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg\",srcSet:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg 649w\"}},kaSgjnFfA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:771,intrinsicWidth:649,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3341.6+970-770),pixelHeight:771,pixelWidth:649,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg\",srcSet:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg 649w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:771,intrinsicWidth:649,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+1050-805),pixelHeight:771,pixelWidth:649,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg\",srcSet:\"https://framerusercontent.com/images/gGCvhNA6u7ObSdnw5d0hrdM32w.svg 649w\"},className:\"framer-16xnn52\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:850,y:(componentViewport?.y||0)+0+3165+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yql1vw-container hidden-1ukydwq hidden-1nh15b2\",id:elementId2,nodeId:\"WSQWs4bRH\",ref:ref3,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Brands,{height:\"100%\",id:\"WSQWs4bRH\",layoutId:\"WSQWs4bRH\",style:{height:\"100%\"},variant:\"BYQe4b2VN\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{height:970,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2740.8+0+0},kaSgjnFfA:{height:970,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3341.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-143j95f-container hidden-72rtr7\",nodeId:\"KuHlaMhAS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{style:{width:\"100%\"}},kaSgjnFfA:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(BrandSlider,{height:\"100%\",id:\"KuHlaMhAS\",layoutId:\"KuHlaMhAS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3soi1\",\"data-framer-name\":\"FAQ Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FAQ\"})}),className:\"framer-12ghmxh\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{width:\"302px\",y:(componentViewport?.y||0)+0+3710.8+100+132},kaSgjnFfA:{width:\"720px\",y:(componentViewport?.y||0)+0+4311.6+100+132}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"1000px\",y:(componentViewport?.y||0)+0+4215+100+132,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lw41pm-container\",nodeId:\"hYi6jGmM4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HomePageFAQSection,{height:\"100%\",id:\"hYi6jGmM4\",layoutId:\"hYi6jGmM4\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{y:(componentViewport?.y||0)+0+4656.8},kaSgjnFfA:{y:(componentViewport?.y||0)+0+5257.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1265,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5161,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12i56n9-container\",id:elementId3,nodeId:\"senvsJCSW\",ref:ref4,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{variant:\"TQcvoxTLU\"},kaSgjnFfA:{variant:\"IYmhHM2Kr\"}},children:/*#__PURE__*/_jsx(CONTACTS,{height:\"100%\",id:\"senvsJCSW\",layoutId:\"senvsJCSW\",style:{width:\"100%\"},variant:\"NipLJdt_X\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{y:(componentViewport?.y||0)+0+5921.8},kaSgjnFfA:{y:(componentViewport?.y||0)+0+6522.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1001,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6426,children:/*#__PURE__*/_jsx(Container,{className:\"framer-son24x-container\",nodeId:\"OvoBi7tEh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{variant:\"Ry2wb3IOm\"},kaSgjnFfA:{variant:\"qIxOXyM7C\"}},children:/*#__PURE__*/_jsx(FooterDarkCopy,{height:\"100%\",id:\"OvoBi7tEh\",layoutId:\"OvoBi7tEh\",style:{width:\"100%\"},variant:\"iqPYx1_4V\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1067,intrinsicWidth:1212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6922.8-2019),pixelHeight:1067,pixelWidth:1212,src:\"https://framerusercontent.com/images/NpCOUL2JO785KyEvpa4EdjvxaOg.svg\"}},kaSgjnFfA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1067,intrinsicWidth:1212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+7523.6-1708),pixelHeight:1067,pixelWidth:1212,src:\"https://framerusercontent.com/images/NpCOUL2JO785KyEvpa4EdjvxaOg.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1067,intrinsicWidth:1212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+7427-2109),pixelHeight:1067,pixelWidth:1212,src:\"https://framerusercontent.com/images/NpCOUL2JO785KyEvpa4EdjvxaOg.svg\"},className:\"framer-31pp0n\",\"data-framer-name\":\"Triangle Contact Us\"})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w0aca7 hidden-72rtr7 hidden-1ukydwq\",\"data-framer-name\":\"VISION\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11oy586\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-besxt4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w7d4jp\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\"},children:\"OUR VISION\"})}),className:\"framer-1j4aho6\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aol4ca\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1np2niz\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We transform possibilities into realities through a unique fusion of bold technology and non-conventional design.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Join us on an exhilarating journey where you will be able to inspire, entertain, and leave a lasting impact on your clients and customers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Let's make your brand the hero of unforgettable experiences.\"})]}),className:\"framer-13llaa2\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r84a90\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rclju8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18k8z7k\",\"data-framer-name\":\"Triangle Blur\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Foh06E_0I:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+968.2+-116.9+164+-100+0+0),pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:395,intrinsicWidth:433,pixelHeight:395,pixelWidth:433,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0jlx2GD6WnFpKC7ZFNdXUL3UU.svg\"},className:\"framer-1x19ffu\",style:{transformPerspective:1200}})})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NJ7Fs.framer-lux5qc, .framer-NJ7Fs .framer-lux5qc { display: block; }\",\".framer-NJ7Fs.framer-72rtr7 { align-content: center; align-items: center; background-color: #282231; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-NJ7Fs .framer-1no7wf2-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-NJ7Fs .framer-gzg2ll-container { bottom: 0px; flex: none; left: 195px; position: absolute; top: 0px; width: 810px; }\",\".framer-NJ7Fs .framer-16yllz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-height: 860px; overflow: hidden; padding: 240px 100px 150px 100px; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-qsj5cx { 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%; z-index: 1; }\",\".framer-NJ7Fs .framer-sif45f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 55%; }\",\".framer-NJ7Fs .framer-1waz69o { align-content: flex-start; align-items: flex-start; background-color: rgba(68, 204, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-v6y8bu { background-color: var(--token-206528fe-16f0-429b-96a0-80d55195d432, #ff664a); flex: none; height: 72px; left: 0px; overflow: hidden; position: absolute; top: 9px; width: 487px; z-index: 0; }\",\".framer-NJ7Fs .framer-g47egp { background-color: var(--token-206528fe-16f0-429b-96a0-80d55195d432, #ff664a); flex: none; height: 30px; left: 0px; overflow: hidden; position: absolute; top: 176px; width: 478px; z-index: 0; }\",\".framer-NJ7Fs .framer-15lo4ov, .framer-NJ7Fs .framer-78cgb9, .framer-NJ7Fs .framer-6fi4kk, .framer-NJ7Fs .framer-13llaa2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NJ7Fs .framer-10vgnub, .framer-NJ7Fs .framer-9g2smr, .framer-NJ7Fs .framer-1aol4ca { flex: none; height: 10px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-co7jrj, .framer-NJ7Fs .framer-b11wa, .framer-NJ7Fs .framer-valn92, .framer-NJ7Fs .framer-1np2niz, .framer-NJ7Fs .framer-rclju8 { flex: none; height: 30px; overflow: hidden; position: relative; width: 100px; }\",\".framer-NJ7Fs .framer-1h9yfxi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-NJ7Fs .framer-1gqumpr-container, .framer-NJ7Fs .framer-1fwh1s0-container { flex: none; height: 60px; position: relative; width: 200px; }\",\".framer-NJ7Fs .framer-qzg7tr-container { flex: none; height: 60px; position: relative; width: 160px; }\",\".framer-NJ7Fs.framer-1j78v9j { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-NJ7Fs.framer-1kmt2xj { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 148px 0px 0px 0px; position: fixed; top: 0px; width: 100%; z-index: 5; }\",\".framer-NJ7Fs .framer-11cs02g { align-content: center; align-items: center; aspect-ratio: 1.9060665362035225 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 105px); justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 82%; }\",\".framer-NJ7Fs .framer-185r5ij-container { aspect-ratio: 1.8916827852998066 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-1qs6mac { align-content: center; align-items: center; background-color: #000000; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: -50px; width: 50px; z-index: 1; }\",\".framer-NJ7Fs .framer-1pe09wh-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-NJ7Fs .framer-u9nrug-container { flex: none; height: 100%; left: 0px; max-height: 100%; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-NJ7Fs .framer-1nbmkbu { 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: 0px; position: absolute; right: 0px; top: 780px; z-index: 1; }\",\".framer-NJ7Fs .framer-wpihvq-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 100px; }\",\".framer-NJ7Fs .framer-1xxpuo2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 379px; justify-content: center; overflow: hidden; padding: 124px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-ttwzlz, .framer-NJ7Fs .framer-45d5d0, .framer-NJ7Fs .framer-xp7sct, .framer-NJ7Fs .framer-12ghmxh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NJ7Fs .framer-1vrq9gh-container { flex: none; height: 170px; position: relative; width: 100%; z-index: 0; }\",\".framer-NJ7Fs .framer-uo2es4 { align-content: center; align-items: center; background-color: var(--token-84dca687-be96-4263-b8fd-b8af54e17a4e, #17171e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-height: 800px; overflow: hidden; padding: 132px 100px 150px 100px; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-ou2stx { background: radial-gradient(88.1% 50% at 50% 50%, rgba(40, 34, 49, 0) 0%, var(--token-22898920-83da-4b1c-b920-b35b87d391b4, rgb(40, 34, 49)) 100%); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-NJ7Fs .framer-1ae2m5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 815px; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-NJ7Fs .framer-fgwe1j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-NJ7Fs .framer-1d3an3g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-NJ7Fs .framer-1y73xsi, .framer-NJ7Fs .framer-r84a90 { flex: none; height: 30px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-tjb4li { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -30px; opacity: 0.66; overflow: hidden; padding: 0px; position: absolute; top: -100px; width: min-content; }\",\".framer-NJ7Fs .framer-1ciwjew, .framer-NJ7Fs .framer-v6aah, .framer-NJ7Fs .framer-1gm72zo { flex: none; height: 300px; position: relative; width: 300px; }\",\".framer-NJ7Fs .framer-o7onlm-container { flex: none; height: 100%; left: 0px; max-height: 100%; position: absolute; right: 0px; top: 0px; }\",\".framer-NJ7Fs .framer-1x8ws8e, .framer-NJ7Fs .framer-xjyh4x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 100px 100px; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-m20qvj, .framer-NJ7Fs .framer-n3bofn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -50px; opacity: 0.66; overflow: hidden; padding: 0px; position: absolute; top: 63%; transform: translateY(-50%); width: min-content; z-index: 0; }\",\".framer-NJ7Fs .framer-muaeic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-NJ7Fs .framer-1d7jwx7-container { flex: none; height: 732px; position: relative; width: 100%; z-index: 2; }\",\".framer-NJ7Fs .framer-1iqtsg6 { flex: none; height: 759px; position: absolute; right: -7px; top: 138px; width: 759px; z-index: 1; }\",\".framer-NJ7Fs .framer-1mfi70o-container { flex: none; height: 928px; position: relative; width: auto; z-index: 2; }\",\".framer-NJ7Fs .framer-di4n13 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 200px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-NJ7Fs .framer-16xnn52 { bottom: 5px; flex: none; height: 800px; position: absolute; right: -50px; width: 800px; z-index: 1; }\",\".framer-NJ7Fs .framer-yql1vw-container { flex: none; height: 850px; position: relative; width: auto; }\",\".framer-NJ7Fs .framer-143j95f-container { flex: none; height: 725px; position: relative; width: 100%; z-index: 2; }\",\".framer-NJ7Fs .framer-1p3soi1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: min-content; }\",\".framer-NJ7Fs .framer-1lw41pm-container { flex: none; height: auto; position: relative; width: 1000px; }\",\".framer-NJ7Fs .framer-12i56n9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-NJ7Fs .framer-son24x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-31pp0n { bottom: 1309px; flex: none; height: 800px; left: calc(51.916666666666686% - min(100%, 900px) / 2); max-height: 100%; max-width: 100%; overflow: hidden; position: absolute; width: 900px; }\",\".framer-NJ7Fs .framer-w0aca7 { align-content: center; align-items: center; background-color: var(--token-84dca687-be96-4263-b8fd-b8af54e17a4e, #17171e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 550px; justify-content: center; overflow: hidden; padding: 132px 24px 150px 24px; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-11oy586 { background: radial-gradient(88.1% 50% at 50% 50%, rgba(40, 34, 49, 0) 0%, var(--token-22898920-83da-4b1c-b920-b35b87d391b4, rgb(40, 34, 49)) 100%); flex: none; height: 102%; left: 0px; overflow: hidden; position: absolute; top: -3px; width: 100%; }\",\".framer-NJ7Fs .framer-besxt4 { 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: 164px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NJ7Fs .framer-w7d4jp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NJ7Fs .framer-1j4aho6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NJ7Fs .framer-18k8z7k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -29px; opacity: 0.66; overflow: hidden; padding: 0px; position: absolute; top: -100px; width: min-content; }\",\".framer-NJ7Fs .framer-1x19ffu { flex: none; height: 300px; position: relative; width: 300px; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-NJ7Fs.framer-72rtr7 { width: 810px; } .framer-NJ7Fs .framer-1no7wf2-container { order: 15; z-index: 5; } .framer-NJ7Fs .framer-gzg2ll-container { left: 0px; order: 0; } .framer-NJ7Fs .framer-16yllz3 { order: 1; } .framer-NJ7Fs .framer-sif45f { width: 65%; } .framer-NJ7Fs .framer-1waz69o { height: 219px; } .framer-NJ7Fs .framer-v6y8bu { height: 58px; top: 21px; width: 388px; } .framer-NJ7Fs .framer-g47egp { height: 24px; top: 155px; width: 364px; } .framer-NJ7Fs .framer-11cs02g { width: 92%; } .framer-NJ7Fs .framer-1nbmkbu { order: 2; top: 748px; } .framer-NJ7Fs .framer-1xxpuo2 { order: 3; } .framer-NJ7Fs .framer-uo2es4 { order: 4; } .framer-NJ7Fs .framer-ou2stx { height: 103%; top: -4px; } .framer-NJ7Fs .framer-1ae2m5m { height: min-content; padding: 0px; } .framer-NJ7Fs .framer-1x8ws8e { order: 5; padding: 132px 0px 100px 100px; } .framer-NJ7Fs .framer-muaeic { order: 6; } .framer-NJ7Fs .framer-1d7jwx7-container { order: 0; } .framer-NJ7Fs .framer-1iqtsg6 { bottom: 25px; height: unset; order: 1; right: 0px; width: 682px; } .framer-NJ7Fs .framer-xjyh4x { order: 7; padding: 132px 0px 100px 100px; } .framer-NJ7Fs .framer-di4n13 { order: 8; padding: 0px; } .framer-NJ7Fs .framer-16xnn52 { bottom: -30px; } .framer-NJ7Fs .framer-143j95f-container { height: auto; } .framer-NJ7Fs .framer-1p3soi1 { order: 9; } .framer-NJ7Fs .framer-1lw41pm-container { width: 720px; } .framer-NJ7Fs .framer-12i56n9-container { order: 12; } .framer-NJ7Fs .framer-son24x-container { order: 13; } .framer-NJ7Fs .framer-31pp0n { bottom: 999px; height: 709px; left: calc(49.7530864197531% - min(100%, 803px) / 2); order: 14; width: 803px; }}\",\"@media (max-width: 809px) { .framer-NJ7Fs.framer-72rtr7 { width: 390px; } .framer-NJ7Fs .framer-1no7wf2-container { left: 0px; order: 15; transform: unset; z-index: 5; } .framer-NJ7Fs .framer-gzg2ll-container { left: -210px; order: 0; right: -210px; width: unset; } .framer-NJ7Fs .framer-16yllz3 { order: 1; padding: 164px 10px 116px 10px; } .framer-NJ7Fs .framer-sif45f { flex: 1 0 0px; width: 1px; } .framer-NJ7Fs .framer-v6y8bu { height: 46px; top: 7px; width: 305px; } .framer-NJ7Fs .framer-g47egp { left: 1px; max-width: 100%; top: 108px; width: 360px; } .framer-NJ7Fs .framer-1gqumpr-container { width: 160px; } .framer-NJ7Fs .framer-1nbmkbu { height: 100px; order: 2; right: -1px; top: 596px; } .framer-NJ7Fs .framer-wpihvq-container { height: var(--framer-aspect-ratio-supported, 52px); width: 52px; } .framer-NJ7Fs .framer-1xxpuo2 { order: 3; } .framer-NJ7Fs .framer-1x8ws8e { order: 5; padding: 132px 0px 100px 24px; } .framer-NJ7Fs .framer-muaeic { order: 6; } .framer-NJ7Fs .framer-1d7jwx7-container { height: 627px; order: 0; } .framer-NJ7Fs .framer-1iqtsg6 { bottom: 4px; height: unset; order: 1; right: -269px; top: 131px; } .framer-NJ7Fs .framer-xjyh4x { order: 7; padding: 164px 0px 72px 24px; } .framer-NJ7Fs .framer-di4n13 { order: 8; padding: 0px; } .framer-NJ7Fs .framer-16xnn52 { bottom: -90px; height: 725px; order: 0; right: -35px; width: 100%; } .framer-NJ7Fs .framer-143j95f-container { height: auto; order: 1; } .framer-NJ7Fs .framer-1p3soi1 { order: 11; } .framer-NJ7Fs .framer-1lw41pm-container { width: 302px; } .framer-NJ7Fs .framer-12i56n9-container { order: 12; scroll-margin-top: 120px; } .framer-NJ7Fs .framer-son24x-container { order: 13; } .framer-NJ7Fs .framer-31pp0n { bottom: 1674px; height: 345px; left: -1px; order: 14; width: 390px; } .framer-NJ7Fs .framer-w0aca7 { order: 4; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7623\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kaSgjnFfA\":{\"layout\":[\"fixed\",\"auto\"]},\"Foh06E_0I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vUX3Z0epD\":{\"pattern\":\":vUX3Z0epD\",\"name\":\"vision\"},\"Jrah98ih9\":{\"pattern\":\":Jrah98ih9\",\"name\":\"ourbrands\"},\"WSQWs4bRH\":{\"pattern\":\":WSQWs4bRH\",\"name\":\"brandstabs\"},\"senvsJCSW\":{\"pattern\":\":senvsJCSW\",\"name\":\"contactus\"},\"qp0vEbL5s\":{\"pattern\":\":qp0vEbL5s\",\"name\":\"vision\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-NJ7Fs\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7623,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"},{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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"}]},...UpdatedNavbarFonts,...MobileMenuFonts,...ContactUsButtonFonts,...YouTubeFonts,...IconoirFonts,...VideoFonts,...ArrowDownFonts,...BrandsTickerFonts,...SolutionsSliderFonts,...SolutionsFonts,...BrandsFonts,...BrandSliderFonts,...HomePageFAQSectionFonts,...CONTACTSFonts,...FooterDarkCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"vUX3Z0epD\\\":{\\\"pattern\\\":\\\":vUX3Z0epD\\\",\\\"name\\\":\\\"vision\\\"},\\\"Jrah98ih9\\\":{\\\"pattern\\\":\\\":Jrah98ih9\\\",\\\"name\\\":\\\"ourbrands\\\"},\\\"WSQWs4bRH\\\":{\\\"pattern\\\":\\\":WSQWs4bRH\\\",\\\"name\\\":\\\"brandstabs\\\"},\\\"senvsJCSW\\\":{\\\"pattern\\\":\\\":senvsJCSW\\\",\\\"name\\\":\\\"contactus\\\"},\\\"qp0vEbL5s\\\":{\\\"pattern\\\":\\\":qp0vEbL5s\\\",\\\"name\\\":\\\"vision\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kaSgjnFfA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Foh06E_0I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"7623\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "ContactUsButtonFonts", "getFonts", "RgkXMS6zb_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "cardImage", "height", "id", "link", "text", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "S5zh6YBqG", "MK7OohHdV", "fhRKoEFei", "bisv_XEPY", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText", "Image2", "ComponentViewportProvider", "css", "FramerCsRz1EUAU", "withCSS", "CsRz1EUAU_default", "addPropertyControls", "ControlType", "addFonts", "SolutionCardFonts", "getFonts", "CsRz1EUAU_default", "CarouselFonts", "Carousel", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Carousel", "ResolveLinks", "resolvedLinks", "CsRz1EUAU_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerCBFa6ll5R", "withCSS", "CBFa6ll5R_default", "addFonts", "SolutionCardFonts", "CarouselFonts", "RichTextWithId", "withId", "RichText", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "tap", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "wi9CccIMq", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1d20y6s", "args", "onTap1xstfdg", "onTapy58v0r", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FrameruZP2TTsIT", "withCSS", "uZP2TTsIT_default", "addPropertyControls", "ControlType", "addFonts", "RowCopyFonts", "getFonts", "uZP2TTsIT_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "uZP2TTsIT_default", "css", "Framerp5RwiUXWP", "withCSS", "p5RwiUXWP_default", "addFonts", "RowCopyFonts", "ContactUsButtonFonts", "getFonts", "RgkXMS6zb_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "logo", "text", "title", "titleBreakCard", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xxaoJNOLg", "Gm_WQz00e", "kjXkYSKDi", "RlEOHi_eR", "TowCh4drg", "D0EKXNFB6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentPresetsProvider", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerAp3M3xgBU", "withCSS", "Ap3M3xgBU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "juNGH2RII_exports", "__export", "__FramerMetadata__", "juNGH2RII_default", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "O7L6Mw8Gi", "YSz5uQ9I6", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapq21vwh", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText", "css", "FramerjuNGH2RII", "withCSS", "juNGH2RII_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "TabButtonFonts", "getFonts", "juNGH2RII_default", "TabButtonWithWaienIdWithMappedReactProps1llozpe", "withMappedReactProps", "withWaienId", "juNGH2RII_exports", "BrandCardFonts", "Ap3M3xgBU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "YSz5uQ9I61jvvn11", "args", "YSz5uQ9I618ikxkb", "YSz5uQ9I6c9mepi", "YSz5uQ9I6cb0wfp", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramersbpA_pbit", "withCSS", "sbpA_pbit_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "O7L6Mw8Gi", "YSz5uQ9I6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1hm4u9o", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText", "css", "FramerFhpGKRv5P", "withCSS", "FhpGKRv5P_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SolutionsTabButtonFonts", "getFonts", "FhpGKRv5P_default", "SolutionCardFonts", "CsRz1EUAU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "YSz5uQ9I6cvze6d", "args", "YSz5uQ9I61wpc6k7", "YSz5uQ9I6x7opcm", "YSz5uQ9I6v3dy0n", "YSz5uQ9I61cgdulf", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerydeftrihW", "withCSS", "ydeftrihW_default", "addPropertyControls", "ControlType", "addFonts", "BrandCardFonts", "getFonts", "Ap3M3xgBU_default", "CarouselFonts", "Carousel", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Carousel", "Ap3M3xgBU_default", "u", "css", "FramerzFJ8Xhm48", "withCSS", "zFJ8Xhm48_default", "addFonts", "BrandCardFonts", "CarouselFonts", "UpdatedNavbarFonts", "getFonts", "ZTXixDjRR_default", "MobileMenuFonts", "YqS7FgnlI_default", "RichTextWithFX", "withFX", "RichText", "ContactUsButtonFonts", "RgkXMS6zb_default", "ContainerWithFX", "Container", "YouTubeFonts", "Youtube", "IconoirFonts", "Icon", "VideoFonts", "Video", "ArrowDownFonts", "Ib5MCV4nH_default", "MotionDivWithFX", "motion", "BrandsTickerFonts", "Vpu9S8Ix2_default", "ImageWithFX", "Image2", "SolutionsSliderFonts", "CBFa6ll5R_default", "SolutionsFonts", "ydeftrihW_default", "BrandsFonts", "sbpA_pbit_default", "BrandSliderFonts", "zFJ8Xhm48_default", "HomePageFAQSectionFonts", "p5RwiUXWP_default", "CONTACTSFonts", "yAl9C0ClB_default", "FooterDarkCopyFonts", "aXFee75dp_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "transition8", "animation10", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "PI0BkibXH3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref1", "isDisplayed3", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "resolvedLinks1", "resolvedLinks2", "l", "resolvedLinks3", "AnimatePresence", "Ga", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
