{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/aLxVCoOJzX1HjLkatBVH/3fEa7Cut1NOgCbA1LaP9/YckFIlg3V.js", "ssg:https://framerusercontent.com/modules/kpURBRDoutc2aBk90pcc/1vFRM82mKBeNK8lzTV9o/augiA20Il.js", "ssg:https://framerusercontent.com/modules/dTJ2k0ZPRx8sL9C1zdC5/kFOfLEAZqxccwVMsbWBS/augiA20Il.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;FFF Acid Grotesk Normal\"]);export const fonts=[{family:\"FFF Acid Grotesk Normal\",source:\"custom\",url:\"https://framerusercontent.com/assets/0ZgmlAxvIMzrFV9lD3Z5ufkSgg.woff2\"}];export const css=['.framer-glJY9 .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-glJY9 .framer-styles-preset-12lj5ox.rich-text-wrapper h3 { --framer-font-family: \"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -1.5px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-33722da1-56ef-4815-82ed-442105eb06b1, #2c2c2c); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-glJY9\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fd7a51d)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={MVTuWL3cr:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Button from\"#framer/local/canvasComponent/beqLwtpNS/beqLwtpNS.js\";import SectionBadge from\"#framer/local/canvasComponent/DT9isorhv/DT9isorhv.js\";import NavigationBar from\"#framer/local/canvasComponent/lWUcIJP0H/lWUcIJP0H.js\";import Footer from\"#framer/local/canvasComponent/zOCvedWwi/zOCvedWwi.js\";import*as sharedStyle3 from\"#framer/local/css/cGTNsvVOM/cGTNsvVOM.js\";import*as sharedStyle from\"#framer/local/css/dvgKO84br/dvgKO84br.js\";import*as sharedStyle2 from\"#framer/local/css/LlxBF921R/LlxBF921R.js\";import*as sharedStyle4 from\"#framer/local/css/uSwC03676/uSwC03676.js\";import*as sharedStyle1 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationBarFonts=getFonts(NavigationBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithFX=withFX(motion.div);const SectionBadgeFonts=getFonts(SectionBadge);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const breakpoints={apIDecqGd:\"(min-width: 1200px) and (max-width: 1399px)\",jvCw4IpzG:\"(max-width: 809px)\",RapriGU19:\"(min-width: 1800px)\",Ulru_24ch:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1400px) and (max-width: 1799px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1kMps\";const variantClassNames={apIDecqGd:\"framer-v-1swqkmu\",jvCw4IpzG:\"framer-v-nj0mn7\",RapriGU19:\"framer-v-1i90btc\",Ulru_24ch:\"framer-v-1feqjcj\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:40,delay:.2,mass:1,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:90,delay:.1,mass:1,stiffness:450,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition3={damping:90,delay:.4,mass:1,stiffness:450,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:40,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition5={damping:50,delay:0,mass:1,stiffness:451,type:\"spring\"};const transition6={damping:50,delay:.2,mass:1,stiffness:451,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition7={damping:40,delay:.6,mass:.2,stiffness:450,type:\"spring\"};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const transition8={damping:90,delay:.7,mass:1,stiffness:450,type:\"spring\"};const transition9={damping:90,delay:.8,mass:1,stiffness:450,type:\"spring\"};const transition10={damping:50,delay:1,mass:1,stiffness:460,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition11={damping:90,delay:0,mass:1,stiffness:450,type:\"spring\"};const transition12={damping:90,delay:.15,mass:1,stiffness:450,type:\"spring\"};const transition13={damping:50,delay:.4,mass:1,stiffness:460,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const transition14={damping:40,delay:.2,mass:.2,stiffness:450,type:\"spring\"};const transition15={damping:50,delay:.6,mass:1,stiffness:451,type:\"spring\"};const transition16={damping:50,delay:.7,mass:1,stiffness:451,type:\"spring\"};const transition17={damping:50,delay:.8,mass:1,stiffness:451,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"1200\":\"apIDecqGd\",\"1800\":\"RapriGU19\",Desktop:\"WQLkyLRf1\",Phone:\"jvCw4IpzG\",Tablet:\"Ulru_24ch\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"f9TE_m4ak\");const ref2=React.useRef(null);usePreloadLocalizedValues(activeLocale);const elementId1=useRouteElementId(\"W6jgFvve7\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"voOpIFLtx\");const ref4=React.useRef(null);const router=useRouter();const elementId3=useRouteElementId(\"Qosj7Vhqt\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"nV7Mj7DPi\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();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(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-k6jalx\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{layoutScroll:true,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-vpjptw-container\",\"data-framer-appear-id\":\"vpjptw\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"ZQwaB4_p3\"},Ulru_24ch:{variant:\"ZQwaB4_p3\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"Ygm8YMedJ\",layoutId:\"Ygm8YMedJ\",style:{width:\"100%\"},variant:\"jRXICbciv\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aimela\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2zckt\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ognymo\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-155hhsw\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTGlnaHQ=\",\"--framer-font-family\":'\"FFF Acid Grotesk Light\", \"FFF Acid Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"83px\"},children:\"Brilliantly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"83px\"},children:\"simple\"})]})})},jvCw4IpzG:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTGlnaHQ=\",\"--framer-font-family\":'\"FFF Acid Grotesk Light\", \"FFF Acid Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"58px\"},children:\"Brilliantly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"58px\"},children:\"simple\"})]})})},RapriGU19:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTGlnaHQ=\",\"--framer-font-family\":'\"FFF Acid Grotesk Light\", \"FFF Acid Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"83px\"},children:\"Brilliantly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"83px\"},children:\"simple\"})]})})},Ulru_24ch:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTGlnaHQ=\",\"--framer-font-family\":'\"FFF Acid Grotesk Light\", \"FFF Acid Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"63px\"},children:\"Brilliantly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"63px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"63px\"},children:\"simple\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTGlnaHQ=\",\"--framer-font-family\":'\"FFF Acid Grotesk Light\", \"FFF Acid Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"87px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:\"Brilliantly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:\"simple\"})]})}),className:\"framer-gk8lco\",\"data-framer-appear-id\":\"gk8lco\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;FFF Acid Grotesk Light\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qxkdrs\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Effective technology to give everyday spaces more functionality and innovation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Effective technology to give everyday spaces more functionality and innovation\"})}),className:\"framer-zv766h\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;FFF Acid Grotesk Normal\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":W6jgFvve7\",webPageId:\"augiA20Il\"},nodeId:\"QveNMwIT_\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-17ag4wy framer-lux5qc\",\"data-framer-name\":\"Frame 23\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e33zqk\",\"data-framer-name\":\"Group 1087622\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgQm9sZA==\",\"--framer-font-family\":'\"FFF Acid Grotesk Bold\", \"FFF Acid Grotesk Bold Placeholder\", sans-serif',\"--framer-font-size\":\"16.37px\",\"--framer-text-color\":\"rgb(43, 43, 43)\"},children:\"See all solutions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgQm9sZA==\",\"--framer-font-family\":'\"FFF Acid Grotesk Bold\", \"FFF Acid Grotesk Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19.37px\",\"--framer-text-color\":\"rgb(43, 43, 43)\"},children:\"See all solutions\"})}),className:\"framer-xtrjn3\",\"data-framer-name\":\"See all solutions\",fonts:[\"CUSTOM;FFF Acid Grotesk Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 328 33\"><path d=\"M 327.604 28.375 C 327.818 28.59 327.818 28.938 327.604 29.153 L 324.108 32.653 C 323.894 32.868 323.546 32.868 323.331 32.653 C 323.117 32.438 323.117 32.09 323.331 31.875 L 325.889 29.314 L 21.701 29.314 C 9.846 29.314 0.235 19.691 0.235 7.821 L 0.235 0.387 L 1.334 0.387 L 1.334 7.821 C 1.334 19.084 10.453 28.214 21.701 28.214 L 325.889 28.214 L 323.331 25.653 C 323.117 25.438 323.117 25.09 323.331 24.875 C 323.546 24.66 323.894 24.66 324.108 24.875 Z\" fill=\"rgb(44,44,44)\"></path></svg>',svgContentId:9340379621},Ulru_24ch:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 355 36\"><path d=\"M 354.571 30.955 C 354.803 31.189 354.803 31.569 354.571 31.803 L 350.788 35.622 C 350.556 35.856 350.179 35.856 349.947 35.622 C 349.715 35.387 349.715 35.008 349.947 34.773 L 352.715 31.979 L 23.487 31.979 C 10.656 31.979 0.255 21.481 0.255 8.532 L 0.255 0.422 L 1.444 0.422 L 1.444 8.532 C 1.444 20.819 11.313 30.779 23.487 30.779 L 352.715 30.779 L 349.947 27.985 C 349.715 27.751 349.715 27.371 349.947 27.136 C 350.179 26.902 350.556 26.902 350.788 27.136 Z\" fill=\"rgb(44,44,44)\"></path></svg>',svgContentId:9892000973}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c1h0it\",\"data-framer-name\":\"Rectangle 9801 (Stroke)\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 418 42\"><path d=\"M 417.825 36.084 C 418.098 36.357 418.098 36.8 417.825 37.073 L 413.366 41.524 C 413.093 41.797 412.649 41.797 412.375 41.524 C 412.102 41.251 412.102 40.808 412.375 40.535 L 415.638 37.278 L 27.677 37.278 C 12.557 37.278 0.3 25.041 0.3 9.945 L 0.3 0.492 L 1.701 0.492 L 1.701 9.945 C 1.701 24.268 13.331 35.879 27.677 35.879 L 415.638 35.879 L 412.375 32.622 C 412.102 32.349 412.102 31.906 412.375 31.633 C 412.649 31.36 413.093 31.36 413.366 31.633 Z\" fill=\"rgb(44,44,44)\"></path></svg>',svgContentId:11373411911,withExternalLayout:true})})]})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6eo9p\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:58,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-1biefho\",\"data-framer-name\":\"apek_8 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:1264,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+135+0+0+320+-118.25+-16.749809596344107),pixelHeight:1320,pixelWidth:2528,sizes:\"1320px\",src:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg 2528w\"}},jvCw4IpzG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:1264,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+102+0+0+0+340.2+446-592+0+0),pixelHeight:1320,pixelWidth:2528,sizes:\"1002px\",src:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg 2528w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:1264,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+135+0+0+24+280.1877133105802+-118+-124.16793602437156),pixelHeight:1320,pixelWidth:2528,sizes:\"1320px\",src:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg 2528w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:1264,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+158+0+0+320+-118.25+-16.749809596344107),pixelHeight:1320,pixelWidth:2528,sizes:\"1320px\",src:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DXt5Mq9a2P2T1Uu3YLdWNVOgMUs.jpeg 2528w\"},className:\"framer-umpfl\",\"data-framer-name\":\"magnific_vkm34kSsB17ZsZYmYawZ_apek_asign_zoom_1_\"})})})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-11fcpn0\",\"data-framer-name\":\"intro\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a6s4o5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ppeqfl\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uglx2o\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10w6szp-container\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:getLocalizedValue(\"v8\",activeLocale)??\"OUR CAPABILITIES\",id:\"i6GrqM2td\",layoutId:\"i6GrqM2td\",SJkB94Ng6:\"rgba(219, 216, 208, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"62px\"},children:\"Interactive solutions \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"62px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"62px\"},children:\"for effective everyday spaces\"})]})})},jvCw4IpzG:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"39px\"},children:\"Interactive solutions \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"39px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"39px\"},children:\"for effective everyday spaces\"})]})})},Ulru_24ch:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"Interactive solutions \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"for effective everyday spaces\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:\"Interactive solutions \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"90px\"},children:\"for effective everyday spaces\"})]})}),className:\"framer-k6tssn\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;FFF Acid Grotesk Normal\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k9faql\",\"data-framer-name\":\"Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s7lopq\",\"data-styles-preset\":\"dvgKO84br\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:\"Used by the world's most innovative companies\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s7lopq\",\"data-styles-preset\":\"dvgKO84br\",style:{\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:\"Used by the world's most innovative companies\"})}),className:\"framer-vi64u6\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f8w5sn\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1csarsj-container\",\"data-framer-name\":\"Logos-1\",name:\"Logos-1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:23,overflow:false},gap:29}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:98,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"RayaeX27z\",layoutId:\"RayaeX27z\",name:\"Logos-1\",padding:13,paddingBottom:13,paddingLeft:13,paddingPerSide:false,paddingRight:13,paddingTop:13,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-122uu0a\",\"data-framer-name\":\"facebook\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"89px\",src:\"https://framerusercontent.com/images/rkee4dtapVUey5aXVuECShD7Jc.png\",srcSet:\"https://framerusercontent.com/images/rkee4dtapVUey5aXVuECShD7Jc.png?scale-down-to=512 512w,https://framerusercontent.com/images/rkee4dtapVUey5aXVuECShD7Jc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rkee4dtapVUey5aXVuECShD7Jc.png 1080w\"},className:\"framer-1pv35cg\",\"data-framer-name\":\"image 75\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hff1gq\",\"data-framer-name\":\"ideo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"102px\",src:\"https://framerusercontent.com/images/y2B96y0xx9hsNlH6QrCHBvvhq9k.png\",srcSet:\"https://framerusercontent.com/images/y2B96y0xx9hsNlH6QrCHBvvhq9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/y2B96y0xx9hsNlH6QrCHBvvhq9k.png 992w\"},className:\"framer-mij75e\",\"data-framer-name\":\"image 82\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z2j4v7\",\"data-framer-name\":\"notion\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/Lj0wLqH3fVoj2X4lqNlItDFNlJA.png\",srcSet:\"https://framerusercontent.com/images/Lj0wLqH3fVoj2X4lqNlItDFNlJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lj0wLqH3fVoj2X4lqNlItDFNlJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lj0wLqH3fVoj2X4lqNlItDFNlJA.png 1336w\"},className:\"framer-yirikc\",\"data-framer-name\":\"image 68\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yu2q60\",\"data-framer-name\":\"zapier\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/qxzxxyHMcvooofZ5owF7UOmoEVc.png\",srcSet:\"https://framerusercontent.com/images/qxzxxyHMcvooofZ5owF7UOmoEVc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qxzxxyHMcvooofZ5owF7UOmoEVc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qxzxxyHMcvooofZ5owF7UOmoEVc.png 1240w\"},className:\"framer-6i2kt8\",\"data-framer-name\":\"image 79\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5a0fn8\",\"data-framer-name\":\"gumroad\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"109px\",src:\"https://framerusercontent.com/images/CHlFGWQDAeCCI1AN9jGqqUkuM.png\",srcSet:\"https://framerusercontent.com/images/CHlFGWQDAeCCI1AN9jGqqUkuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHlFGWQDAeCCI1AN9jGqqUkuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CHlFGWQDAeCCI1AN9jGqqUkuM.png 1356w\"},className:\"framer-1n6hsef\",\"data-framer-name\":\"image 81\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dk9auv\",\"data-framer-name\":\"CAA\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"88px\",src:\"https://framerusercontent.com/images/mxEMGqNgyJlrZgasMThVYRL44.png\",srcSet:\"https://framerusercontent.com/images/mxEMGqNgyJlrZgasMThVYRL44.png?scale-down-to=512 512w,https://framerusercontent.com/images/mxEMGqNgyJlrZgasMThVYRL44.png 992w\"},className:\"framer-1tur630\",\"data-framer-name\":\"image 78\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-etwy9v\",\"data-framer-name\":\"coinbase\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"74.6991px\",src:\"https://framerusercontent.com/images/WcfVmlgZRHXtV22m3kfg93ZLhI.png\",srcSet:\"https://framerusercontent.com/images/WcfVmlgZRHXtV22m3kfg93ZLhI.png?scale-down-to=512 512w,https://framerusercontent.com/images/WcfVmlgZRHXtV22m3kfg93ZLhI.png 944w\"},className:\"framer-s7w5r6\",\"data-framer-name\":\"image 64\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p4pe1b\",\"data-framer-name\":\"TQ-Ventures\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14slc73\",\"data-framer-name\":\"Group 1087626\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KUIny4f8WSllHrBkYzNDaJiOhsE.png\"},className:\"framer-8dwuib\",\"data-framer-name\":\"image 65\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mdQMSHRwQjVVvlAyCHLzgiyINZ8.png\"},className:\"framer-6qz1vf\",\"data-framer-name\":\"image 77\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ni52p6\",\"data-framer-name\":\"sequoia\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/v11PUu6FD2Ddw40qWnqV31JjmQ.png\",srcSet:\"https://framerusercontent.com/images/v11PUu6FD2Ddw40qWnqV31JjmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/v11PUu6FD2Ddw40qWnqV31JjmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v11PUu6FD2Ddw40qWnqV31JjmQ.png 1356w\"},className:\"framer-1ioz4x5\",\"data-framer-name\":\"image 74\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-atqd65\",\"data-framer-name\":\"variant\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"99px\",src:\"https://framerusercontent.com/images/IYrFTWTxfHDlFa58pzxpJtNB6KQ.png\",srcSet:\"https://framerusercontent.com/images/IYrFTWTxfHDlFa58pzxpJtNB6KQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/IYrFTWTxfHDlFa58pzxpJtNB6KQ.png 1024w\"},className:\"framer-1jz5khn\",\"data-framer-name\":\"image 63\"})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fzrbe4\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18j6xwf\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gi7fgo\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fqcte7\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-umg2ge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Asign\"})}),className:\"framer-r92b1w\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:[\"Interactive\",/*#__PURE__*/_jsx(\"br\",{}),\"Signage\"]})}),className:\"framer-1c0n5sx\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:\"Pushing boundaries, unlocking a boundless universe for your Digital Signage. Interaction goes beyond touch now.\"})}),className:\"framer-1kj9wrl\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11tdiut\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2wime\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xpnjog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:\"Arc\"})}),className:\"framer-1ohmym0\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:[\"Interactive\",/*#__PURE__*/_jsx(\"br\",{}),\"Access\"]})}),className:\"framer-cvh8kd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:\"Arc is an intelligent adaptive display that elegantly and modernly controls access and device automation.\"})}),className:\"framer-govm22\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-l0n7xm\",\"data-framer-name\":\"Asign\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cok278\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u990qq\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-clcj46\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Asign\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Asign\"})}),className:\"framer-feu72t\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(85, 101, 97))\"},children:\"Rethink interactive signage\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"63px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(85, 101, 97))\"},children:\"Rethink interactive signage\"})}),className:\"framer-87x5i1\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;FFF Acid Grotesk Normal\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12e0un3\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfgpgl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lmt562\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tiv9d1\",\"data-framer-name\":\"Visual Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1lulbvi\",\"data-framer-name\":\"Group 1087625\",children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-sz2kwx\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1874.7+50+127.30000000000001+0+0+0+0+0+-89.5+-30+45.00000000000017),positionX:\"center\",positionY:\"center\",sizes:\"860px\",src:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png\",srcSet:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png 3070w\"}},jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2359.3500000000004+0+107.80000000000001+0+0+0+0+0+0+-66.5+-30+45.00000000000017),positionX:\"center\",positionY:\"center\",sizes:\"860px\",src:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png\",srcSet:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png 3070w\"}},RapriGU19:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1927.1+50+127.30000000000001+0+0+0+0+0+-89.5+-30+45.00000000000017),positionX:\"center\",positionY:\"center\",sizes:\"860px\",src:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png\",srcSet:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png 3070w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1899.2+0+159.3+0+0+66+0+0+0+-66.5+-30+45.00000000000017),positionX:\"center\",positionY:\"center\",sizes:\"860px\",src:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png\",srcSet:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png 3070w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1922.1+50+127.30000000000001+0+0+0+0+0+-66.5+-30+45.00000000000017),positionX:\"center\",positionY:\"center\",sizes:\"860px\",src:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png\",srcSet:\"https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xmPWSP77t1ARzL3Iy51Xxk8sc.png 3070w\"},className:\"framer-1v6klcd\",\"data-framer-name\":\"Group 1088321\",transformTemplate:transformTemplate3})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xj3cwr\",\"data-border\":true,\"data-framer-name\":\"Visual Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-a4onl3\",\"data-framer-name\":\"Group 1087625\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1024,intrinsicWidth:863,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1874.7+50+127.30000000000001+0+0+0+0+0+0+515-550),pixelHeight:1024,pixelWidth:863,positionX:\"center\",positionY:\"center\",sizes:\"598px\",src:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png\",srcSet:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png 863w\"}},jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1024,intrinsicWidth:863,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2359.3500000000004+0+107.80000000000001+0+0+0+0+0+601+0+-72.84617428267802),pixelHeight:1024,pixelWidth:863,positionX:\"center\",positionY:\"center\",sizes:\"594.5px\",src:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png\",srcSet:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png 863w\"}},RapriGU19:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1024,intrinsicWidth:863,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1927.1+50+127.30000000000001+0+0+0+0+0+0+515-550),pixelHeight:1024,pixelWidth:863,positionX:\"center\",positionY:\"center\",sizes:\"598px\",src:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png\",srcSet:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png 863w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1024,intrinsicWidth:863,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1899.2+0+159.3+0+0+66+0+0+590+0+-200.99999999999994),pixelHeight:1024,pixelWidth:863,positionX:\"center\",positionY:\"center\",sizes:\"810.4226px\",src:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png\",srcSet:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png 863w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1024,intrinsicWidth:863,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1922.1+50+127.30000000000001+0+0+0+0+.5+0+-34.45703125),pixelHeight:1024,pixelWidth:863,positionX:\"center\",positionY:\"center\",sizes:\"594.5px\",src:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png\",srcSet:\"https://framerusercontent.com/images/VHt33TfZoT8fgFRdtuJOua76vKw.png 863w\"},className:\"framer-1i7sapo\",\"data-framer-name\":\"apek\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1097dj9\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:\"Asign provides a unique platform for indoor location and advertising.\"})}),className:\"framer-tu6f11\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hg1y0\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j39byq\",\"data-framer-name\":\"Step no.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1\"})}),className:\"framer-12wgn9m\",\"data-framer-name\":\"1\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nl0pee\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(30, 40, 56)\"},children:\"Perfect for public places and offices\"})}),fonts:[\"GF;Inter-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s7lopq\",\"data-styles-preset\":\"dvgKO84br\",children:\"Perfect for public places and offices\"})}),className:\"framer-96jprb\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10vv412\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4udvbf\",\"data-framer-name\":\"Step no.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-4o6wph\",\"data-framer-name\":\"2\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u8vl68\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(30, 40, 56)\"},children:\"The best technology in the sector\"})}),fonts:[\"GF;Inter-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s7lopq\",\"data-styles-preset\":\"dvgKO84br\",children:\"The best technology in the sector\"})}),className:\"framer-4fra2a\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GSglBqt4X\"},implicitPathVariables:undefined},{href:{webPageId:\"GSglBqt4X\"},implicitPathVariables:undefined},{href:{webPageId:\"GSglBqt4X\"},implicitPathVariables:undefined},{href:{webPageId:\"GSglBqt4X\"},implicitPathVariables:undefined},{href:{webPageId:\"GSglBqt4X\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-kmnx19-container\",\"data-framer-appear-id\":\"kmnx19\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{cQv2O8Mvt:resolvedLinks[3]},jvCw4IpzG:{cQv2O8Mvt:resolvedLinks[2]},RapriGU19:{cQv2O8Mvt:resolvedLinks[4]},Ulru_24ch:{cQv2O8Mvt:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{C9KNBU1Ed:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",cQv2O8Mvt:resolvedLinks[0],GP85vQ4AC:true,height:\"100%\",id:\"KS_YcO5fu\",layoutId:\"KS_YcO5fu\",PmrixLNYY:false,sgSfyIETC:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",sq67Ol4a3:getLocalizedValue(\"v26\",activeLocale)??\"More about Asign\",variant:\"PB0K3N1D2\",width:\"100%\"})})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-mawbbv\",\"data-framer-name\":\"Arc\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ftk2id\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9ome5\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jqfkvq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(44, 44, 44))\"},children:\"Arc\"})}),className:\"framer-1r1rwup\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"63px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\"},children:\"Modernize access\"})}),className:\"framer-1gzhqxb\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;FFF Acid Grotesk Normal\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n5qtwa\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4i9ln7\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cob2bm\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j0is6x\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jieiic\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wz6rn3\",\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-94flvj\",\"data-framer-name\":\"share-07\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6lpgde\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"22\" viewBox=\"-1 -1 20 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.59 11.51L12.42 15.49M12.41 4.51L5.59 8.49M18 3C18 4.65685 16.6569 6 15 6C13.3431 6 12 4.65685 12 3C12 1.34315 13.3431 0 15 0C16.6569 0 18 1.34315 18 3ZM6 10C6 11.6569 4.65685 13 3 13C1.34315 13 0 11.6569 0 10C0 8.34315 1.34315 7 3 7C4.65685 7 6 8.34315 6 10ZM18 17C18 18.6569 16.6569 20 15 20C13.3431 20 12 18.6569 12 17C12 15.3431 13.3431 14 15 14C16.6569 14 18 15.3431 18 17Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q87q75\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s7lopq\",\"data-styles-preset\":\"dvgKO84br\",children:\"Top-notch tech for meeting rooms \"})}),className:\"framer-1b1e8r5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"With partner apps like Skedway, Arc delivers the most extraordinary meeting room experience.\"})}),className:\"framer-6scv8n\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bgwztr\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3e0mqh\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14khz10\",\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w3kqy0\",\"data-framer-name\":\"refresh-cw-02\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-igfzx2\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"20\" viewBox=\"-1 -1 22 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 11C0 11 0.12132 11.8492 3.63604 15.364C7.15076 18.8787 12.8492 18.8787 16.364 15.364C17.6092 14.1187 18.4133 12.5993 18.7762 11M0 11V17M0 11H6M20 7C20 7 19.8787 6.15076 16.364 2.63604C12.8492 -0.87868 7.15076 -0.87868 3.63604 2.63604C2.39076 3.88131 1.58669 5.40072 1.22383 7M20 7V1M20 7H14\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4n42t\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s7lopq\",\"data-styles-preset\":\"dvgKO84br\",children:\"Create an interconnected space\"})}),className:\"framer-16j20d1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"Arc smoothly handles workspace access control and automation, effortlessly.\"})}),className:\"framer-7i1mqw\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1jtp24h-container\",\"data-framer-appear-id\":\"1jtp24h\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{C9KNBU1Ed:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",cQv2O8Mvt:\"skedway.com\",GP85vQ4AC:true,height:\"100%\",id:\"rxEMoE7Op\",layoutId:\"rxEMoE7Op\",PmrixLNYY:true,sgSfyIETC:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",sq67Ol4a3:getLocalizedValue(\"v32\",activeLocale)??\"See how it works\",variant:\"PB0K3N1D2\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eckukl\",\"data-framer-name\":\"Visual Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2805+50+117.30000000000001+0+0+2+-19.5),positionX:\"center\",positionY:\"center\",sizes:\"888px\",src:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png\",srcSet:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png 3817w\"}},jvCw4IpzG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4312.150000000001+0+166.5+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"888px\",src:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png\",srcSet:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png 3817w\"}},RapriGU19:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2857.3999999999996+50+117.30000000000001+0+0+2+-19.5),positionX:\"center\",positionY:\"center\",sizes:\"888px\",src:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png\",srcSet:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png 3817w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4048.5+0+106.30000000000001+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"817px\",src:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png\",srcSet:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png 3817w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2898.3999999999996+50+117.30000000000001+0+0+2+-19.5),positionX:\"center\",positionY:\"center\",sizes:\"888px\",src:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png\",srcSet:\"https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ygtqa74fNhPFkNQjVxOhGEpE.png 3817w\"},className:\"framer-1rdo4cm\",\"data-framer-name\":\"Mask group\"})})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-duvnfp\",\"data-framer-name\":\"Metrics\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w32g95\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:false,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ovr9jt\",\"data-border\":true,\"data-framer-name\":\"Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h77qya\",\"data-framer-name\":\"Col\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-123dng8\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-142glqf-container\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:getLocalizedValue(\"v33\",activeLocale)??\"ABOUT US\",id:\"uSc77RBNm\",layoutId:\"uSc77RBNm\",SJkB94Ng6:\"rgba(250, 248, 242, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1avnpcp\",\"data-framer-name\":\"Col\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14roq61\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZGRiBBY2lkIEdyb3Rlc2sgTm9ybWFs\",\"--framer-font-family\":'\"FFF Acid Grotesk Normal\", \"FFF Acid Grotesk Normal Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\"},children:\"Apek\"}),\" is the leading digital interactive signage company in LATAM.\"]})}),fonts:[\"CUSTOM;FFF Acid Grotesk Normal\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",style:{\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\"},children:\"Apek\"}),\" is the leading digital interactive signage company in LATAM.\"]})}),className:\"framer-12w0u6o\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F3bdPsDHJ\"},implicitPathVariables:undefined},{href:{webPageId:\"F3bdPsDHJ\"},implicitPathVariables:undefined},{href:{webPageId:\"F3bdPsDHJ\"},implicitPathVariables:undefined},{href:{webPageId:\"F3bdPsDHJ\"},implicitPathVariables:undefined},{href:{webPageId:\"F3bdPsDHJ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1urpwcx-container\",\"data-framer-appear-id\":\"1urpwcx\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{cQv2O8Mvt:resolvedLinks1[3]},jvCw4IpzG:{cQv2O8Mvt:resolvedLinks1[2],style:{width:\"100%\"}},RapriGU19:{cQv2O8Mvt:resolvedLinks1[4]},Ulru_24ch:{cQv2O8Mvt:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{C9KNBU1Ed:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",cQv2O8Mvt:resolvedLinks1[0],GP85vQ4AC:true,height:\"100%\",id:\"A0KdQnjn5\",layoutId:\"A0KdQnjn5\",PmrixLNYY:false,sgSfyIETC:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",sq67Ol4a3:getLocalizedValue(\"v36\",activeLocale)??\"Know more\",variant:\"PB0K3N1D2\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-re2zhk\",\"data-border\":true,\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oqu531\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tyavmz\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:\"+3.000\"})}),className:\"framer-7visl\",\"data-framer-name\":\"Number\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Devices installed\"})}),className:\"framer-1au3jh0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pfk6qq\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:\"+1M\"})}),className:\"framer-1fpb10u\",\"data-framer-name\":\"Number\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Interactions per month\"})}),className:\"framer-2d0kk0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m6qh7c\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:\"+50M\"})}),className:\"framer-un7b6\",\"data-framer-name\":\"Number\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Affected users\"})}),className:\"framer-1j7zteq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1src0yu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4459.1+346.49027122641525),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png\",srcSet:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png 3456w\"}},jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7633.450000000001+-13),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 3.0462 + 364px)`,src:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png\",srcSet:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png 3456w\"},transformTemplate:undefined},RapriGU19:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4511.5+394.49027122641525),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png\",srcSet:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png 3456w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5919.1+790-836),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 561px)`,src:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png\",srcSet:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png 3456w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4552.5+394.49027122641525),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png\",srcSet:\"https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tz377B2bz4hriWBvmQExQqL0bs4.png 3456w\"},className:\"framer-fhhegt\",\"data-framer-name\":\"AdobeStock_530791829 1\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wqvx6q\"}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-auab0y\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-101bu81-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"WCrB3IlhD\",intervalControl:3.7,itemAmount:1,layoutId:\"WCrB3IlhD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ci92mj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"An intuitive technology that improve space performance and user experience.\"'})}),className:\"framer-6yptcf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Facilities Country Manager \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Loreal Brazil\"})]})}),className:\"framer-6nnpqa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m7yjmt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"Asign allows the automation of various business strategies through signage.\"'})}),className:\"framer-1gu4vc9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Operational Director\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},children:\"Multiplan\"})]})}),className:\"framer-jf11ey\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fcwhdl\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{y:(componentViewport?.y||0)+0+5153.1},jvCw4IpzG:{y:(componentViewport?.y||0)+0+8564.45},RapriGU19:{y:(componentViewport?.y||0)+0+5301.5},Ulru_24ch:{y:(componentViewport?.y||0)+0+6709.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:820,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5342.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nbowom-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{apIDecqGd:{variant:\"YvOiKfdHs\"},jvCw4IpzG:{variant:\"SNdDeBgez\"},RapriGU19:{variant:\"RrtsFE1KN\"},Ulru_24ch:{variant:\"RLYNC0Q6p\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Owf8BsX5S\",layoutId:\"Owf8BsX5S\",style:{width:\"100%\"},variant:\"DlUIdAQW0\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1kMps.framer-lux5qc, .framer-1kMps .framer-lux5qc { display: block; }\",\".framer-1kMps.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-1kMps .framer-k6jalx { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-vpjptw-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-1kMps .framer-aimela { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-2zckt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1kMps .framer-1ognymo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 54px 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-155hhsw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1kMps .framer-gk8lco { --framer-paragraph-spacing: 72px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 779px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-1kMps .framer-1qxkdrs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 453px; }\",\".framer-1kMps .framer-zv766h { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 97%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-17ag4wy { flex: none; height: 69px; overflow: hidden; position: relative; text-decoration: none; width: 433px; }\",\".framer-1kMps .framer-1e33zqk { bottom: 8px; flex: none; height: 42px; left: calc(48.72979214780603% - 417.4000244140625px / 2); overflow: visible; position: absolute; width: 417px; }\",\".framer-1kMps .framer-xtrjn3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 27px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-1kMps .framer-1c1h0it { flex: none; height: 42px; left: calc(49.82035928143715% - 418px / 2); position: absolute; top: 1px; width: 418px; }\",\".framer-1kMps .framer-h6eo9p { border-bottom-left-radius: 165px; border-bottom-right-radius: 165px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 483px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-1biefho { aspect-ratio: 1.949983189423712 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 656px); left: 0px; position: absolute; right: 0px; top: -118px; }\",\".framer-1kMps .framer-umpfl { flex: none; height: 689px; left: calc(50.00000000000002% - 1320px / 2); overflow: visible; position: absolute; top: calc(49.96191926884998% - 689px / 2); width: 1320px; }\",\".framer-1kMps .framer-11fcpn0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 98px 0px 98px 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-a6s4o5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1ppeqfl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1uglx2o { 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: 19px 0px 19px 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-10w6szp-container, .framer-1kMps .framer-kmnx19-container, .framer-1kMps .framer-1jtp24h-container, .framer-1kMps .framer-142glqf-container, .framer-1kMps .framer-1urpwcx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1kMps .framer-k6tssn { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 68%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-1k9faql { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 34px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-1kMps .framer-vi64u6, .framer-1kMps .framer-r92b1w, .framer-1kMps .framer-1ohmym0, .framer-1kMps .framer-feu72t, .framer-1kMps .framer-1r1rwup { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1kMps .framer-1f8w5sn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1csarsj-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-1kMps .framer-122uu0a, .framer-1kMps .framer-hff1gq, .framer-1kMps .framer-etwy9v, .framer-1kMps .framer-1ni52p6, .framer-1kMps .framer-atqd65 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-1pv35cg { aspect-ratio: 2.597402742330434 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 89px; }\",\".framer-1kMps .framer-mij75e { aspect-ratio: 5.425165492143454 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 102px; }\",\".framer-1kMps .framer-z2j4v7 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-yirikc { aspect-ratio: 3.8461538732560605 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 100px; }\",\".framer-1kMps .framer-yu2q60, .framer-1kMps .framer-1dk9auv, .framer-1kMps .framer-1p4pe1b { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-6i2kt8 { aspect-ratio: 4.678362335456422 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 125px; }\",\".framer-1kMps .framer-5a0fn8 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-1n6hsef { aspect-ratio: 4.790769029948763 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 109px; }\",\".framer-1kMps .framer-1tur630 { aspect-ratio: 3.039513609527718 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 88px; }\",\".framer-1kMps .framer-s7w5r6 { aspect-ratio: 2.489969498139371 / 1; flex: none; height: 30px; position: relative; width: var(--framer-aspect-ratio-supported, 75px); }\",\".framer-1kMps .framer-14slc73 { flex: none; height: 50px; overflow: visible; position: relative; width: 70px; }\",\".framer-1kMps .framer-8dwuib { aspect-ratio: 2.437581486678637 / 1; bottom: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 19px); left: 3px; position: absolute; width: 48px; }\",\".framer-1kMps .framer-6qz1vf { aspect-ratio: 1.2643472869364847 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 30px; position: absolute; top: 2px; width: 32px; }\",\".framer-1kMps .framer-1ioz4x5 { aspect-ratio: 5.940593836896513 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 129px; }\",\".framer-1kMps .framer-1jz5khn { aspect-ratio: 5.504586632010673 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 99px; }\",\".framer-1kMps .framer-1fzrbe4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 122px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-18j6xwf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-gi7fgo, .framer-1kMps .framer-11tdiut { --border-bottom-width: 1px; --border-color: var(--token-33722da1-56ef-4815-82ed-442105eb06b1, #2c2c2c); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 38px 48px 75px 48px; position: relative; width: 48%; }\",\".framer-1kMps .framer-fqcte7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 87%; }\",\".framer-1kMps .framer-umg2ge { align-content: center; align-items: center; background-color: var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, #556561); border-bottom-left-radius: 5px; border-bottom-right-radius: 15px; border-top-left-radius: 5px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 15px 4px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-1c0n5sx, .framer-1kMps .framer-cvh8kd { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-1kj9wrl { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 73%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-h2wime { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 72%; }\",\".framer-1kMps .framer-xpnjog { align-content: center; align-items: center; background-color: var(--token-6145797c-db14-4e39-8951-2131725399fb, #dbd7cf); border-bottom-left-radius: 899px; border-bottom-right-radius: 899px; border-top-left-radius: 899px; border-top-right-radius: 899px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 13px 4px 13px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-govm22, .framer-1kMps .framer-1b1e8r5, .framer-1kMps .framer-6scv8n, .framer-1kMps .framer-16j20d1, .framer-1kMps .framer-7i1mqw, .framer-1kMps .framer-1au3jh0, .framer-1kMps .framer-2d0kk0, .framer-1kMps .framer-1j7zteq { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-l0n7xm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1cok278, .framer-1kMps .framer-ftk2id { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 0px; position: relative; width: 95%; }\",\".framer-1kMps .framer-1u990qq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-clcj46 { align-content: center; align-items: center; background-color: var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, #556561); border-bottom-left-radius: 10px; border-bottom-right-radius: 25px; border-top-left-radius: 10px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 3px 22px 4px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-87x5i1 { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 64%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-12e0un3, .framer-1kMps .framer-1n5qtwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-wfgpgl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-1lmt562 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-tiv9d1 { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 561px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 687px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-1lulbvi { flex: none; height: 694px; position: relative; width: 880px; }\",\".framer-1kMps .framer-sz2kwx { bottom: -90px; flex: none; position: absolute; right: -186px; top: -30px; width: 1046px; }\",\".framer-1kMps .framer-1v6klcd { aspect-ratio: 1.203921568627451 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 714px); left: 0px; position: absolute; top: 49%; transform: translateY(-50%); width: 860px; }\",\".framer-1kMps .framer-1xj3cwr { --border-bottom-width: 1px; --border-color: var(--token-6145797c-db14-4e39-8951-2131725399fb, #dbd7cf); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 569px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-a4onl3 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-1kMps .framer-1i7sapo { aspect-ratio: 0.8424350940017905 / 1; flex: none; height: 126%; left: -12px; position: absolute; top: -34px; width: var(--framer-aspect-ratio-supported, 594px); }\",\".framer-1kMps .framer-1097dj9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-1kMps .framer-tu6f11 { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 15%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-hg1y0, .framer-1kMps .framer-10vv412 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-1j39byq { align-content: center; align-items: center; background-color: var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, #556561); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 18px 9px 18px; position: relative; width: min-content; }\",\".framer-1kMps .framer-12wgn9m, .framer-1kMps .framer-4o6wph { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1kMps .framer-1nl0pee { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 229px; }\",\".framer-1kMps .framer-96jprb { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 93%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-4udvbf { align-content: center; align-items: center; background-color: var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, #556561); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 16px 9px 17px; position: relative; width: min-content; }\",\".framer-1kMps .framer-1u8vl68 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 288px; }\",\".framer-1kMps .framer-4fra2a { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 67%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-mawbbv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 50px 0px; position: relative; scroll-margin-top: 64px; width: 100%; }\",\".framer-1kMps .framer-1c9ome5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1jqfkvq { align-content: center; align-items: center; background-color: var(--token-6145797c-db14-4e39-8951-2131725399fb, #dbd7cf); border-bottom-left-radius: 899px; border-bottom-right-radius: 899px; border-top-left-radius: 899px; border-top-right-radius: 899px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 3px 23px 4px 22px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-1gzhqxb { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 65%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-4i9ln7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: 533px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1cob2bm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 32%; }\",\".framer-1kMps .framer-j0is6x, .framer-1kMps .framer-1bgwztr { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-jieiic, .framer-1kMps .framer-3e0mqh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1kMps .framer-wz6rn3, .framer-1kMps .framer-14khz10 { align-content: flex-start; align-items: flex-start; background-color: var(--token-6145797c-db14-4e39-8951-2131725399fb, #dbd7cf); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-1kMps .framer-94flvj, .framer-1kMps .framer-1w3kqy0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-1kMps .framer-6lpgde { bottom: 3px; flex: none; left: 2px; position: absolute; right: 4px; top: 1px; }\",\".framer-1kMps .framer-q87q75, .framer-1kMps .framer-t4n42t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1kMps .framer-igfzx2 { bottom: 4px; flex: none; left: 1px; position: absolute; right: 3px; top: 2px; }\",\".framer-1kMps .framer-eckukl { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 99%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1kMps .framer-1rdo4cm { flex: none; height: 568px; position: relative; width: 888px; }\",\".framer-1kMps .framer-duvnfp { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 90px 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-w32g95 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 48px 8px 48px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1ovr9jt { --border-bottom-width: 1px; --border-color: var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 56px; position: relative; width: 100%; }\",\".framer-1kMps .framer-1h77qya { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-123dng8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1kMps .framer-1avnpcp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 133px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1kMps .framer-14roq61 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 64%; }\",\".framer-1kMps .framer-12w0u6o { --framer-paragraph-spacing: 48px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-re2zhk { --border-bottom-width: 1px; --border-color: var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; background-color: #ffffff; flex: none; height: 1px; overflow: hidden; position: relative; width: 1008px; }\",\".framer-1kMps .framer-1oqu531 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-tyavmz, .framer-1kMps .framer-1pfk6qq, .framer-1kMps .framer-m6qh7c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 31%; }\",\".framer-1kMps .framer-7visl, .framer-1kMps .framer-1fpb10u, .framer-1kMps .framer-un7b6 { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1kMps .framer-1src0yu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 790px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1kMps .framer-fhhegt { aspect-ratio: 1.6194939081537019 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 865px); left: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 100%; z-index: 1; }\",\".framer-1kMps .framer-1wqvx6q { flex: none; height: 370px; overflow: hidden; position: relative; width: 576px; }\",\".framer-1kMps .framer-auab0y { -webkit-backdrop-filter: blur(22px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(22px); background-color: rgba(255, 255, 255, 0.42); border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: 580px; justify-content: center; overflow: visible; padding: 50px 81px 81px 81px; position: relative; width: min-content; z-index: 1; }\",\".framer-1kMps .framer-101bu81-container { flex: none; height: 102%; position: relative; width: 446px; }\",\".framer-1kMps .framer-1ci92mj, .framer-1kMps .framer-1m7yjmt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 53px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 440px; }\",\".framer-1kMps .framer-6yptcf, .framer-1kMps .framer-1gu4vc9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-1kMps .framer-6nnpqa, .framer-1kMps .framer-jf11ey { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-1kMps .framer-1fcwhdl { border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; bottom: 799px; flex: none; height: 846px; left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-1kMps .framer-1nbowom-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1kMps.framer-72rtr7, .framer-1kMps .framer-k6jalx, .framer-1kMps .framer-aimela, .framer-1kMps .framer-2zckt, .framer-1kMps .framer-1ognymo, .framer-1kMps .framer-155hhsw, .framer-1kMps .framer-1qxkdrs, .framer-1kMps .framer-11fcpn0, .framer-1kMps .framer-a6s4o5, .framer-1kMps .framer-1ppeqfl, .framer-1kMps .framer-1uglx2o, .framer-1kMps .framer-1k9faql, .framer-1kMps .framer-1f8w5sn, .framer-1kMps .framer-122uu0a, .framer-1kMps .framer-hff1gq, .framer-1kMps .framer-z2j4v7, .framer-1kMps .framer-yu2q60, .framer-1kMps .framer-5a0fn8, .framer-1kMps .framer-1dk9auv, .framer-1kMps .framer-etwy9v, .framer-1kMps .framer-1p4pe1b, .framer-1kMps .framer-1ni52p6, .framer-1kMps .framer-atqd65, .framer-1kMps .framer-1fzrbe4, .framer-1kMps .framer-18j6xwf, .framer-1kMps .framer-gi7fgo, .framer-1kMps .framer-fqcte7, .framer-1kMps .framer-umg2ge, .framer-1kMps .framer-11tdiut, .framer-1kMps .framer-h2wime, .framer-1kMps .framer-xpnjog, .framer-1kMps .framer-l0n7xm, .framer-1kMps .framer-1cok278, .framer-1kMps .framer-1u990qq, .framer-1kMps .framer-clcj46, .framer-1kMps .framer-12e0un3, .framer-1kMps .framer-wfgpgl, .framer-1kMps .framer-1lmt562, .framer-1kMps .framer-tiv9d1, .framer-1kMps .framer-1xj3cwr, .framer-1kMps .framer-1097dj9, .framer-1kMps .framer-hg1y0, .framer-1kMps .framer-1j39byq, .framer-1kMps .framer-1nl0pee, .framer-1kMps .framer-10vv412, .framer-1kMps .framer-4udvbf, .framer-1kMps .framer-1u8vl68, .framer-1kMps .framer-mawbbv, .framer-1kMps .framer-ftk2id, .framer-1kMps .framer-1c9ome5, .framer-1kMps .framer-1jqfkvq, .framer-1kMps .framer-1n5qtwa, .framer-1kMps .framer-4i9ln7, .framer-1kMps .framer-1cob2bm, .framer-1kMps .framer-j0is6x, .framer-1kMps .framer-jieiic, .framer-1kMps .framer-wz6rn3, .framer-1kMps .framer-q87q75, .framer-1kMps .framer-1bgwztr, .framer-1kMps .framer-3e0mqh, .framer-1kMps .framer-14khz10, .framer-1kMps .framer-t4n42t, .framer-1kMps .framer-eckukl, .framer-1kMps .framer-duvnfp, .framer-1kMps .framer-w32g95, .framer-1kMps .framer-1ovr9jt, .framer-1kMps .framer-1h77qya, .framer-1kMps .framer-123dng8, .framer-1kMps .framer-1avnpcp, .framer-1kMps .framer-14roq61, .framer-1kMps .framer-1oqu531, .framer-1kMps .framer-tyavmz, .framer-1kMps .framer-1pfk6qq, .framer-1kMps .framer-m6qh7c, .framer-1kMps .framer-1src0yu, .framer-1kMps .framer-auab0y, .framer-1kMps .framer-1ci92mj, .framer-1kMps .framer-1m7yjmt { gap: 0px; } .framer-1kMps.framer-72rtr7 > *, .framer-1kMps .framer-2zckt > *, .framer-1kMps .framer-w32g95 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1kMps.framer-72rtr7 > :first-child, .framer-1kMps .framer-k6jalx > :first-child, .framer-1kMps .framer-2zckt > :first-child, .framer-1kMps .framer-155hhsw > :first-child, .framer-1kMps .framer-1qxkdrs > :first-child, .framer-1kMps .framer-11fcpn0 > :first-child, .framer-1kMps .framer-a6s4o5 > :first-child, .framer-1kMps .framer-1k9faql > :first-child, .framer-1kMps .framer-1f8w5sn > :first-child, .framer-1kMps .framer-z2j4v7 > :first-child, .framer-1kMps .framer-yu2q60 > :first-child, .framer-1kMps .framer-1dk9auv > :first-child, .framer-1kMps .framer-1p4pe1b > :first-child, .framer-1kMps .framer-1fzrbe4 > :first-child, .framer-1kMps .framer-gi7fgo > :first-child, .framer-1kMps .framer-fqcte7 > :first-child, .framer-1kMps .framer-umg2ge > :first-child, .framer-1kMps .framer-11tdiut > :first-child, .framer-1kMps .framer-h2wime > :first-child, .framer-1kMps .framer-xpnjog > :first-child, .framer-1kMps .framer-l0n7xm > :first-child, .framer-1kMps .framer-1cok278 > :first-child, .framer-1kMps .framer-clcj46 > :first-child, .framer-1kMps .framer-12e0un3 > :first-child, .framer-1kMps .framer-wfgpgl > :first-child, .framer-1kMps .framer-1j39byq > :first-child, .framer-1kMps .framer-1nl0pee > :first-child, .framer-1kMps .framer-4udvbf > :first-child, .framer-1kMps .framer-1u8vl68 > :first-child, .framer-1kMps .framer-mawbbv > :first-child, .framer-1kMps .framer-ftk2id > :first-child, .framer-1kMps .framer-1jqfkvq > :first-child, .framer-1kMps .framer-1n5qtwa > :first-child, .framer-1kMps .framer-1cob2bm > :first-child, .framer-1kMps .framer-wz6rn3 > :first-child, .framer-1kMps .framer-q87q75 > :first-child, .framer-1kMps .framer-14khz10 > :first-child, .framer-1kMps .framer-t4n42t > :first-child, .framer-1kMps .framer-duvnfp > :first-child, .framer-1kMps .framer-w32g95 > :first-child, .framer-1kMps .framer-1ovr9jt > :first-child, .framer-1kMps .framer-123dng8 > :first-child, .framer-1kMps .framer-14roq61 > :first-child, .framer-1kMps .framer-tyavmz > :first-child, .framer-1kMps .framer-1pfk6qq > :first-child, .framer-1kMps .framer-m6qh7c > :first-child, .framer-1kMps .framer-auab0y > :first-child, .framer-1kMps .framer-1ci92mj > :first-child, .framer-1kMps .framer-1m7yjmt > :first-child { margin-top: 0px; } .framer-1kMps.framer-72rtr7 > :last-child, .framer-1kMps .framer-k6jalx > :last-child, .framer-1kMps .framer-2zckt > :last-child, .framer-1kMps .framer-155hhsw > :last-child, .framer-1kMps .framer-1qxkdrs > :last-child, .framer-1kMps .framer-11fcpn0 > :last-child, .framer-1kMps .framer-a6s4o5 > :last-child, .framer-1kMps .framer-1k9faql > :last-child, .framer-1kMps .framer-1f8w5sn > :last-child, .framer-1kMps .framer-z2j4v7 > :last-child, .framer-1kMps .framer-yu2q60 > :last-child, .framer-1kMps .framer-1dk9auv > :last-child, .framer-1kMps .framer-1p4pe1b > :last-child, .framer-1kMps .framer-1fzrbe4 > :last-child, .framer-1kMps .framer-gi7fgo > :last-child, .framer-1kMps .framer-fqcte7 > :last-child, .framer-1kMps .framer-umg2ge > :last-child, .framer-1kMps .framer-11tdiut > :last-child, .framer-1kMps .framer-h2wime > :last-child, .framer-1kMps .framer-xpnjog > :last-child, .framer-1kMps .framer-l0n7xm > :last-child, .framer-1kMps .framer-1cok278 > :last-child, .framer-1kMps .framer-clcj46 > :last-child, .framer-1kMps .framer-12e0un3 > :last-child, .framer-1kMps .framer-wfgpgl > :last-child, .framer-1kMps .framer-1j39byq > :last-child, .framer-1kMps .framer-1nl0pee > :last-child, .framer-1kMps .framer-4udvbf > :last-child, .framer-1kMps .framer-1u8vl68 > :last-child, .framer-1kMps .framer-mawbbv > :last-child, .framer-1kMps .framer-ftk2id > :last-child, .framer-1kMps .framer-1jqfkvq > :last-child, .framer-1kMps .framer-1n5qtwa > :last-child, .framer-1kMps .framer-1cob2bm > :last-child, .framer-1kMps .framer-wz6rn3 > :last-child, .framer-1kMps .framer-q87q75 > :last-child, .framer-1kMps .framer-14khz10 > :last-child, .framer-1kMps .framer-t4n42t > :last-child, .framer-1kMps .framer-duvnfp > :last-child, .framer-1kMps .framer-w32g95 > :last-child, .framer-1kMps .framer-1ovr9jt > :last-child, .framer-1kMps .framer-123dng8 > :last-child, .framer-1kMps .framer-14roq61 > :last-child, .framer-1kMps .framer-tyavmz > :last-child, .framer-1kMps .framer-1pfk6qq > :last-child, .framer-1kMps .framer-m6qh7c > :last-child, .framer-1kMps .framer-auab0y > :last-child, .framer-1kMps .framer-1ci92mj > :last-child, .framer-1kMps .framer-1m7yjmt > :last-child { margin-bottom: 0px; } .framer-1kMps .framer-k6jalx > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-1kMps .framer-aimela > *, .framer-1kMps .framer-1u990qq > *, .framer-1kMps .framer-1c9ome5 > *, .framer-1kMps .framer-j0is6x > *, .framer-1kMps .framer-1bgwztr > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-1kMps .framer-aimela > :first-child, .framer-1kMps .framer-1ognymo > :first-child, .framer-1kMps .framer-1ppeqfl > :first-child, .framer-1kMps .framer-1uglx2o > :first-child, .framer-1kMps .framer-122uu0a > :first-child, .framer-1kMps .framer-hff1gq > :first-child, .framer-1kMps .framer-5a0fn8 > :first-child, .framer-1kMps .framer-etwy9v > :first-child, .framer-1kMps .framer-1ni52p6 > :first-child, .framer-1kMps .framer-atqd65 > :first-child, .framer-1kMps .framer-18j6xwf > :first-child, .framer-1kMps .framer-1u990qq > :first-child, .framer-1kMps .framer-1lmt562 > :first-child, .framer-1kMps .framer-tiv9d1 > :first-child, .framer-1kMps .framer-1xj3cwr > :first-child, .framer-1kMps .framer-1097dj9 > :first-child, .framer-1kMps .framer-hg1y0 > :first-child, .framer-1kMps .framer-10vv412 > :first-child, .framer-1kMps .framer-1c9ome5 > :first-child, .framer-1kMps .framer-4i9ln7 > :first-child, .framer-1kMps .framer-j0is6x > :first-child, .framer-1kMps .framer-jieiic > :first-child, .framer-1kMps .framer-1bgwztr > :first-child, .framer-1kMps .framer-3e0mqh > :first-child, .framer-1kMps .framer-eckukl > :first-child, .framer-1kMps .framer-1h77qya > :first-child, .framer-1kMps .framer-1avnpcp > :first-child, .framer-1kMps .framer-1oqu531 > :first-child, .framer-1kMps .framer-1src0yu > :first-child { margin-left: 0px; } .framer-1kMps .framer-aimela > :last-child, .framer-1kMps .framer-1ognymo > :last-child, .framer-1kMps .framer-1ppeqfl > :last-child, .framer-1kMps .framer-1uglx2o > :last-child, .framer-1kMps .framer-122uu0a > :last-child, .framer-1kMps .framer-hff1gq > :last-child, .framer-1kMps .framer-5a0fn8 > :last-child, .framer-1kMps .framer-etwy9v > :last-child, .framer-1kMps .framer-1ni52p6 > :last-child, .framer-1kMps .framer-atqd65 > :last-child, .framer-1kMps .framer-18j6xwf > :last-child, .framer-1kMps .framer-1u990qq > :last-child, .framer-1kMps .framer-1lmt562 > :last-child, .framer-1kMps .framer-tiv9d1 > :last-child, .framer-1kMps .framer-1xj3cwr > :last-child, .framer-1kMps .framer-1097dj9 > :last-child, .framer-1kMps .framer-hg1y0 > :last-child, .framer-1kMps .framer-10vv412 > :last-child, .framer-1kMps .framer-1c9ome5 > :last-child, .framer-1kMps .framer-4i9ln7 > :last-child, .framer-1kMps .framer-j0is6x > :last-child, .framer-1kMps .framer-jieiic > :last-child, .framer-1kMps .framer-1bgwztr > :last-child, .framer-1kMps .framer-3e0mqh > :last-child, .framer-1kMps .framer-eckukl > :last-child, .framer-1kMps .framer-1h77qya > :last-child, .framer-1kMps .framer-1avnpcp > :last-child, .framer-1kMps .framer-1oqu531 > :last-child, .framer-1kMps .framer-1src0yu > :last-child { margin-right: 0px; } .framer-1kMps .framer-1ognymo > *, .framer-1kMps .framer-1ppeqfl > *, .framer-1kMps .framer-1097dj9 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-1kMps .framer-155hhsw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1kMps .framer-1qxkdrs > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-1kMps .framer-11fcpn0 > *, .framer-1kMps .framer-auab0y > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-1kMps .framer-a6s4o5 > *, .framer-1kMps .framer-1cok278 > *, .framer-1kMps .framer-ftk2id > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1kMps .framer-1uglx2o > *, .framer-1kMps .framer-122uu0a > *, .framer-1kMps .framer-hff1gq > *, .framer-1kMps .framer-5a0fn8 > *, .framer-1kMps .framer-etwy9v > *, .framer-1kMps .framer-1ni52p6 > *, .framer-1kMps .framer-atqd65 > *, .framer-1kMps .framer-tiv9d1 > *, .framer-1kMps .framer-1xj3cwr > *, .framer-1kMps .framer-eckukl > *, .framer-1kMps .framer-1src0yu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1kMps .framer-1k9faql > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-1kMps .framer-1f8w5sn > *, .framer-1kMps .framer-12e0un3 > *, .framer-1kMps .framer-1n5qtwa > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1kMps .framer-z2j4v7 > *, .framer-1kMps .framer-yu2q60 > *, .framer-1kMps .framer-1dk9auv > *, .framer-1kMps .framer-1p4pe1b > *, .framer-1kMps .framer-umg2ge > *, .framer-1kMps .framer-xpnjog > *, .framer-1kMps .framer-clcj46 > *, .framer-1kMps .framer-1j39byq > *, .framer-1kMps .framer-4udvbf > *, .framer-1kMps .framer-1jqfkvq > *, .framer-1kMps .framer-123dng8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1kMps .framer-1fzrbe4 > * { margin: 0px; margin-bottom: calc(122px / 2); margin-top: calc(122px / 2); } .framer-1kMps .framer-18j6xwf > *, .framer-1kMps .framer-hg1y0 > *, .framer-1kMps .framer-10vv412 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-1kMps .framer-gi7fgo > *, .framer-1kMps .framer-11tdiut > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-1kMps .framer-fqcte7 > *, .framer-1kMps .framer-h2wime > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-1kMps .framer-l0n7xm > *, .framer-1kMps .framer-wfgpgl > *, .framer-1kMps .framer-mawbbv > *, .framer-1kMps .framer-duvnfp > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1kMps .framer-1lmt562 > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } .framer-1kMps .framer-1nl0pee > *, .framer-1kMps .framer-1u8vl68 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1kMps .framer-4i9ln7 > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-1kMps .framer-1cob2bm > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-1kMps .framer-jieiic > *, .framer-1kMps .framer-3e0mqh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-1kMps .framer-wz6rn3 > *, .framer-1kMps .framer-q87q75 > *, .framer-1kMps .framer-14khz10 > *, .framer-1kMps .framer-t4n42t > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-1kMps .framer-1ovr9jt > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-1kMps .framer-1h77qya > * { margin: 0px; margin-left: calc(61px / 2); margin-right: calc(61px / 2); } .framer-1kMps .framer-1avnpcp > * { margin: 0px; margin-left: calc(133px / 2); margin-right: calc(133px / 2); } .framer-1kMps .framer-14roq61 > *, .framer-1kMps .framer-tyavmz > *, .framer-1kMps .framer-1pfk6qq > *, .framer-1kMps .framer-m6qh7c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1kMps .framer-1oqu531 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-1kMps .framer-1ci92mj > *, .framer-1kMps .framer-1m7yjmt > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-1kMps[data-border=\"true\"]::after, .framer-1kMps [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-1kMps.framer-72rtr7 { width: 810px; } .framer-1kMps .framer-k6jalx { gap: 45px; order: 0; } .framer-1kMps .framer-vpjptw-container { left: 50%; position: relative; top: 1%; transform: translate(-50%, -50%); } .framer-1kMps .framer-aimela { flex-direction: column; } .framer-1kMps .framer-2zckt { flex: none; padding: 24px; width: 100%; } .framer-1kMps .framer-1ognymo { padding: 70px 16px 54px 16px; z-index: 5; } .framer-1kMps .framer-155hhsw { flex: none; width: 41%; } .framer-1kMps .framer-gk8lco { width: 97%; } .framer-1kMps .framer-1qxkdrs, .framer-1kMps .framer-j0is6x, .framer-1kMps .framer-1bgwztr { flex: 1 0 0px; width: 1px; } .framer-1kMps .framer-zv766h, .framer-1kMps .framer-tiv9d1, .framer-1kMps .framer-re2zhk { width: 100%; } .framer-1kMps .framer-1c1h0it { height: 36px; left: 0px; width: 355px; } .framer-1kMps .framer-h6eo9p { height: 56%; } .framer-1kMps .framer-1biefho { height: var(--framer-aspect-ratio-supported, 442px); left: -49px; right: -49px; top: -118px; } .framer-1kMps .framer-11fcpn0 { gap: 80px; order: 1; padding: 0px 30px 120px 30px; } .framer-1kMps .framer-1uglx2o { padding: 36px 0px 36px 0px; } .framer-1kMps .framer-k6tssn { width: 69%; } .framer-1kMps .framer-1k9faql { gap: 48px; } .framer-1kMps .framer-18j6xwf { align-content: center; align-items: center; flex-direction: column; padding: 0px 30px 0px 30px; } .framer-1kMps .framer-gi7fgo { align-content: center; align-items: center; gap: 80px; width: 100%; } .framer-1kMps .framer-11tdiut { align-content: center; align-items: center; gap: 80px; width: 98%; } .framer-1kMps .framer-govm22 { width: 63%; } .framer-1kMps .framer-l0n7xm { gap: 80px; order: 2; padding: 0px 0px 120px 0px; } .framer-1kMps .framer-87x5i1, .framer-1kMps .framer-1gzhqxb { width: 80%; } .framer-1kMps .framer-12e0un3 { max-width: unset; } .framer-1kMps .framer-wfgpgl { gap: 653px; padding: 66px 0px 66px 0px; width: 90%; } .framer-1kMps .framer-1lmt562 { flex-direction: column; height: 579px; width: 100%; } .framer-1kMps .framer-1xj3cwr { height: min-content; justify-content: flex-start; width: 100%; } .framer-1kMps .framer-a4onl3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; padding: 0px; width: min-content; } .framer-1kMps .framer-1i7sapo { height: 172%; left: unset; position: relative; top: unset; width: var(--framer-aspect-ratio-supported, 810px); } .framer-1kMps .framer-1097dj9 { flex-direction: column; gap: 24px; width: 730px; } .framer-1kMps .framer-tu6f11 { width: 36%; } .framer-1kMps .framer-mawbbv { gap: 37px; order: 3; padding: 0px 0px 120px 0px; } .framer-1kMps .framer-4i9ln7 { flex-direction: column; height: min-content; } .framer-1kMps .framer-1cob2bm { flex-direction: row; gap: 39px; order: 1; width: 89%; } .framer-1kMps .framer-eckukl { flex: none; height: min-content; order: 0; width: min-content; } .framer-1kMps .framer-1rdo4cm { height: 469px; width: 817px; } .framer-1kMps .framer-duvnfp { order: 6; padding: 56px 0px 56px 0px; } .framer-1kMps .framer-w32g95 { padding: 0px 32px 8px 32px; } .framer-1kMps .framer-1ovr9jt { padding: 40px; } .framer-1kMps .framer-1avnpcp { gap: 32px; } .framer-1kMps .framer-1src0yu { order: 7; } .framer-1kMps .framer-fhhegt { bottom: -11px; height: var(--framer-aspect-ratio-supported, 847px); left: -280px; right: -280px; top: unset; transform: unset; width: unset; } .framer-1kMps .framer-1wqvx6q { width: 221px; } .framer-1kMps .framer-auab0y { gap: 50px; height: 600px; } .framer-1kMps .framer-101bu81-container { order: 0; width: 286px; } .framer-1kMps .framer-1nbowom-container { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1kMps .framer-k6jalx, .framer-1kMps .framer-aimela, .framer-1kMps .framer-11fcpn0, .framer-1kMps .framer-1k9faql, .framer-1kMps .framer-18j6xwf, .framer-1kMps .framer-gi7fgo, .framer-1kMps .framer-11tdiut, .framer-1kMps .framer-l0n7xm, .framer-1kMps .framer-wfgpgl, .framer-1kMps .framer-1lmt562, .framer-1kMps .framer-a4onl3, .framer-1kMps .framer-1097dj9, .framer-1kMps .framer-mawbbv, .framer-1kMps .framer-4i9ln7, .framer-1kMps .framer-1cob2bm, .framer-1kMps .framer-1avnpcp, .framer-1kMps .framer-auab0y { gap: 0px; } .framer-1kMps .framer-k6jalx > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-1kMps .framer-k6jalx > :first-child, .framer-1kMps .framer-aimela > :first-child, .framer-1kMps .framer-11fcpn0 > :first-child, .framer-1kMps .framer-1k9faql > :first-child, .framer-1kMps .framer-18j6xwf > :first-child, .framer-1kMps .framer-gi7fgo > :first-child, .framer-1kMps .framer-11tdiut > :first-child, .framer-1kMps .framer-l0n7xm > :first-child, .framer-1kMps .framer-wfgpgl > :first-child, .framer-1kMps .framer-1lmt562 > :first-child, .framer-1kMps .framer-1097dj9 > :first-child, .framer-1kMps .framer-mawbbv > :first-child, .framer-1kMps .framer-4i9ln7 > :first-child, .framer-1kMps .framer-auab0y > :first-child { margin-top: 0px; } .framer-1kMps .framer-k6jalx > :last-child, .framer-1kMps .framer-aimela > :last-child, .framer-1kMps .framer-11fcpn0 > :last-child, .framer-1kMps .framer-1k9faql > :last-child, .framer-1kMps .framer-18j6xwf > :last-child, .framer-1kMps .framer-gi7fgo > :last-child, .framer-1kMps .framer-11tdiut > :last-child, .framer-1kMps .framer-l0n7xm > :last-child, .framer-1kMps .framer-wfgpgl > :last-child, .framer-1kMps .framer-1lmt562 > :last-child, .framer-1kMps .framer-1097dj9 > :last-child, .framer-1kMps .framer-mawbbv > :last-child, .framer-1kMps .framer-4i9ln7 > :last-child, .framer-1kMps .framer-auab0y > :last-child { margin-bottom: 0px; } .framer-1kMps .framer-aimela > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1kMps .framer-11fcpn0 > *, .framer-1kMps .framer-gi7fgo > *, .framer-1kMps .framer-11tdiut > *, .framer-1kMps .framer-l0n7xm > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-1kMps .framer-1k9faql > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1kMps .framer-18j6xwf > *, .framer-1kMps .framer-1097dj9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1kMps .framer-wfgpgl > * { margin: 0px; margin-bottom: calc(653px / 2); margin-top: calc(653px / 2); } .framer-1kMps .framer-1lmt562 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-1kMps .framer-a4onl3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1kMps .framer-a4onl3 > :first-child, .framer-1kMps .framer-1cob2bm > :first-child, .framer-1kMps .framer-1avnpcp > :first-child { margin-left: 0px; } .framer-1kMps .framer-a4onl3 > :last-child, .framer-1kMps .framer-1cob2bm > :last-child, .framer-1kMps .framer-1avnpcp > :last-child { margin-right: 0px; } .framer-1kMps .framer-mawbbv > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-1kMps .framer-4i9ln7 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-1kMps .framer-1cob2bm > * { margin: 0px; margin-left: calc(39px / 2); margin-right: calc(39px / 2); } .framer-1kMps .framer-1avnpcp > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-1kMps .framer-auab0y > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (max-width: 809px) { .framer-1kMps.framer-72rtr7 { overflow: hidden; width: 390px; } .framer-1kMps .framer-k6jalx { gap: 12px; order: 0; padding: 0px 0px 60px 0px; } .framer-1kMps .framer-aimela { flex-direction: column; padding: 0px 24px 0px 24px; } .framer-1kMps .framer-2zckt { flex: none; justify-content: flex-start; width: 100%; } .framer-1kMps .framer-1ognymo { flex-direction: column; gap: 28px; } .framer-1kMps .framer-155hhsw { flex: none; width: 100%; } .framer-1kMps .framer-gk8lco { white-space: pre; width: auto; } .framer-1kMps .framer-1qxkdrs { gap: 32px; width: 100%; } .framer-1kMps .framer-zv766h { order: 0; width: 91%; } .framer-1kMps .framer-17ag4wy, .framer-1kMps .framer-1nl0pee { order: 1; } .framer-1kMps .framer-1c1h0it { height: 33px; left: 0px; width: 328px; } .framer-1kMps .framer-h6eo9p { border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 30px; border-top-right-radius: 30px; height: 446px; } .framer-1kMps .framer-1biefho { align-content: center; align-items: center; aspect-ratio: unset; bottom: -13px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; padding: 0px; right: unset; top: unset; transform: translateX(-50%); width: 1002px; } .framer-1kMps .framer-umpfl { height: 605px; left: unset; position: relative; top: unset; width: 100%; } .framer-1kMps .framer-11fcpn0 { gap: 56px; order: 1; padding: 0px 0px 63px 0px; } .framer-1kMps .framer-a6s4o5, .framer-1kMps .framer-1fzrbe4, .framer-1kMps .framer-1cok278, .framer-1kMps .framer-ftk2id { padding: 0px 24px 0px 24px; } .framer-1kMps .framer-1ppeqfl { flex-direction: column; gap: 8px; } .framer-1kMps .framer-k6tssn, .framer-1kMps .framer-tiv9d1, .framer-1kMps .framer-1xj3cwr, .framer-1kMps .framer-1gzhqxb, .framer-1kMps .framer-1jtp24h-container, .framer-1kMps .framer-14roq61, .framer-1kMps .framer-1urpwcx-container, .framer-1kMps .framer-re2zhk, .framer-1kMps .framer-tyavmz, .framer-1kMps .framer-1pfk6qq, .framer-1kMps .framer-m6qh7c { width: 100%; } .framer-1kMps .framer-1k9faql { gap: 60px; padding: 32px 32px 40px 32px; } .framer-1kMps .framer-vi64u6 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-1kMps .framer-18j6xwf, .framer-1kMps .framer-1c9ome5, .framer-1kMps .framer-1h77qya, .framer-1kMps .framer-1oqu531 { flex-direction: column; } .framer-1kMps .framer-gi7fgo { gap: 80px; padding: 38px 48px 90px 48px; width: 100%; } .framer-1kMps .framer-fqcte7 { width: 105%; } .framer-1kMps .framer-1kj9wrl { width: 91%; } .framer-1kMps .framer-11tdiut { gap: 80px; padding: 38px 48px 73px 48px; width: 101%; } .framer-1kMps .framer-h2wime, .framer-1kMps .framer-7i1mqw { width: 95%; } .framer-1kMps .framer-l0n7xm { gap: 56px; order: 2; padding: 0px 0px 100px 0px; } .framer-1kMps .framer-87x5i1 { flex: 1 0 0px; width: 1px; } .framer-1kMps .framer-12e0un3 { padding: 0px 16px 0px 16px; } .framer-1kMps .framer-wfgpgl { align-content: center; align-items: center; } .framer-1kMps .framer-1lmt562 { align-self: stretch; flex-direction: column; gap: 40px; width: auto; } .framer-1kMps .framer-a4onl3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: min-content; } .framer-1kMps .framer-1i7sapo { left: unset; position: relative; top: unset; width: var(--framer-aspect-ratio-supported, 168px); } .framer-1kMps .framer-1097dj9 { align-content: center; align-items: center; flex-direction: column; justify-content: center; width: 380px; } .framer-1kMps .framer-tu6f11 { width: 57%; } .framer-1kMps .framer-1j39byq, .framer-1kMps .framer-96jprb, .framer-1kMps .framer-4udvbf { order: 0; } .framer-1kMps .framer-10vv412 { justify-content: center; } .framer-1kMps .framer-1u8vl68 { order: 1; width: 226px; } .framer-1kMps .framer-4fra2a { width: 78%; } .framer-1kMps .framer-mawbbv { gap: 19px; order: 3; padding: 0px 0px 148px 0px; } .framer-1kMps .framer-1n5qtwa { padding: 0px 16px 457px 16px; } .framer-1kMps .framer-4i9ln7 { flex-direction: column; gap: 40px; } .framer-1kMps .framer-1cob2bm { order: 1; width: 97%; } .framer-1kMps .framer-j0is6x { width: 231%; } .framer-1kMps .framer-1b1e8r5 { width: 35%; } .framer-1kMps .framer-6scv8n { width: 31%; } .framer-1kMps .framer-eckukl { flex: none; height: min-content; order: 0; width: 100%; } .framer-1kMps .framer-duvnfp { order: 6; padding: 40px 0px 40px 0px; } .framer-1kMps .framer-w32g95 { max-width: unset; padding: 0px 24px 8px 24px; } .framer-1kMps .framer-1ovr9jt { padding: 24px; } .framer-1kMps .framer-1avnpcp { flex: none; flex-direction: column; gap: 32px; width: 100%; } .framer-1kMps .framer-1src0yu { flex-direction: column; gap: 28px; height: min-content; order: 7; padding: 0px 0px 40px 0px; width: 305%; } .framer-1kMps .framer-fhhegt { aspect-ratio: unset; bottom: -14px; height: unset; left: 50px; right: -414px; top: -13px; transform: unset; width: unset; } .framer-1kMps .framer-1wqvx6q { height: 378px; width: 433px; } .framer-1kMps .framer-auab0y { gap: 30px; height: 485px; padding: 60px; width: 29%; } .framer-1kMps .framer-101bu81-container { height: 358px; width: 250px; } .framer-1kMps .framer-1fcwhdl { bottom: 764px; height: 831px; } .framer-1kMps .framer-1nbowom-container { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1kMps .framer-k6jalx, .framer-1kMps .framer-aimela, .framer-1kMps .framer-1ognymo, .framer-1kMps .framer-1qxkdrs, .framer-1kMps .framer-1biefho, .framer-1kMps .framer-11fcpn0, .framer-1kMps .framer-1ppeqfl, .framer-1kMps .framer-1k9faql, .framer-1kMps .framer-18j6xwf, .framer-1kMps .framer-gi7fgo, .framer-1kMps .framer-11tdiut, .framer-1kMps .framer-l0n7xm, .framer-1kMps .framer-1lmt562, .framer-1kMps .framer-a4onl3, .framer-1kMps .framer-1097dj9, .framer-1kMps .framer-mawbbv, .framer-1kMps .framer-1c9ome5, .framer-1kMps .framer-4i9ln7, .framer-1kMps .framer-1h77qya, .framer-1kMps .framer-1avnpcp, .framer-1kMps .framer-1oqu531, .framer-1kMps .framer-1src0yu, .framer-1kMps .framer-auab0y { gap: 0px; } .framer-1kMps .framer-k6jalx > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1kMps .framer-k6jalx > :first-child, .framer-1kMps .framer-aimela > :first-child, .framer-1kMps .framer-1ognymo > :first-child, .framer-1kMps .framer-1qxkdrs > :first-child, .framer-1kMps .framer-1biefho > :first-child, .framer-1kMps .framer-11fcpn0 > :first-child, .framer-1kMps .framer-1ppeqfl > :first-child, .framer-1kMps .framer-1k9faql > :first-child, .framer-1kMps .framer-18j6xwf > :first-child, .framer-1kMps .framer-gi7fgo > :first-child, .framer-1kMps .framer-11tdiut > :first-child, .framer-1kMps .framer-l0n7xm > :first-child, .framer-1kMps .framer-1lmt562 > :first-child, .framer-1kMps .framer-1097dj9 > :first-child, .framer-1kMps .framer-mawbbv > :first-child, .framer-1kMps .framer-1c9ome5 > :first-child, .framer-1kMps .framer-4i9ln7 > :first-child, .framer-1kMps .framer-1h77qya > :first-child, .framer-1kMps .framer-1avnpcp > :first-child, .framer-1kMps .framer-1oqu531 > :first-child, .framer-1kMps .framer-1src0yu > :first-child, .framer-1kMps .framer-auab0y > :first-child { margin-top: 0px; } .framer-1kMps .framer-k6jalx > :last-child, .framer-1kMps .framer-aimela > :last-child, .framer-1kMps .framer-1ognymo > :last-child, .framer-1kMps .framer-1qxkdrs > :last-child, .framer-1kMps .framer-1biefho > :last-child, .framer-1kMps .framer-11fcpn0 > :last-child, .framer-1kMps .framer-1ppeqfl > :last-child, .framer-1kMps .framer-1k9faql > :last-child, .framer-1kMps .framer-18j6xwf > :last-child, .framer-1kMps .framer-gi7fgo > :last-child, .framer-1kMps .framer-11tdiut > :last-child, .framer-1kMps .framer-l0n7xm > :last-child, .framer-1kMps .framer-1lmt562 > :last-child, .framer-1kMps .framer-1097dj9 > :last-child, .framer-1kMps .framer-mawbbv > :last-child, .framer-1kMps .framer-1c9ome5 > :last-child, .framer-1kMps .framer-4i9ln7 > :last-child, .framer-1kMps .framer-1h77qya > :last-child, .framer-1kMps .framer-1avnpcp > :last-child, .framer-1kMps .framer-1oqu531 > :last-child, .framer-1kMps .framer-1src0yu > :last-child, .framer-1kMps .framer-auab0y > :last-child { margin-bottom: 0px; } .framer-1kMps .framer-aimela > *, .framer-1kMps .framer-1qxkdrs > *, .framer-1kMps .framer-1c9ome5 > *, .framer-1kMps .framer-1avnpcp > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1kMps .framer-1ognymo > *, .framer-1kMps .framer-1src0yu > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-1kMps .framer-1biefho > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1kMps .framer-11fcpn0 > *, .framer-1kMps .framer-l0n7xm > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-1kMps .framer-1ppeqfl > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-1kMps .framer-1k9faql > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-1kMps .framer-18j6xwf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1kMps .framer-gi7fgo > *, .framer-1kMps .framer-11tdiut > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-1kMps .framer-1lmt562 > *, .framer-1kMps .framer-4i9ln7 > *, .framer-1kMps .framer-1oqu531 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1kMps .framer-a4onl3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1kMps .framer-a4onl3 > :first-child { margin-left: 0px; } .framer-1kMps .framer-a4onl3 > :last-child { margin-right: 0px; } .framer-1kMps .framer-1097dj9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1kMps .framer-mawbbv > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-1kMps .framer-1h77qya > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-1kMps .framer-auab0y > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1399px) { .framer-1kMps.framer-72rtr7 { overflow: hidden; width: 1200px; } .framer-1kMps .framer-k6jalx { gap: 45px; padding: 0px 0px 50px 0px; } .framer-1kMps .framer-11fcpn0 { padding: 30px 40px 98px 40px; } .framer-1kMps .framer-k6tssn { width: 74%; } .framer-1kMps .framer-11tdiut { padding: 38px 48px 98px 48px; } .framer-1kMps .framer-l0n7xm, .framer-1kMps .framer-mawbbv { padding: 50px 40px 50px 40px; } .framer-1kMps .framer-wfgpgl { align-content: center; align-items: center; justify-content: center; } .framer-1kMps .framer-1lmt562 { justify-content: center; } .framer-1kMps .framer-tiv9d1, .framer-1kMps .framer-1xj3cwr { height: 515px; width: 565px; } .framer-1kMps .framer-1i7sapo { bottom: -160px; height: var(--framer-aspect-ratio-supported, 710px); right: -20px; top: unset; width: unset; } .framer-1kMps .framer-1097dj9 { align-content: center; align-items: center; gap: 18px; justify-content: center; } .framer-1kMps .framer-1nl0pee { width: 173px; } .framer-1kMps .framer-96jprb { width: 101%; } .framer-1kMps .framer-1u8vl68 { width: 197px; } .framer-1kMps .framer-4fra2a { width: 99%; } .framer-1kMps .framer-4i9ln7 { gap: 43px; width: 93%; } .framer-1kMps .framer-1src0yu { gap: 0px; height: 694px; } .framer-1kMps .framer-fhhegt { height: var(--framer-aspect-ratio-supported, 123px); } .framer-1kMps .framer-auab0y { height: 539px; } .framer-1kMps .framer-101bu81-container { height: 92%; width: 379px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1kMps .framer-k6jalx, .framer-1kMps .framer-1097dj9, .framer-1kMps .framer-4i9ln7, .framer-1kMps .framer-1src0yu { gap: 0px; } .framer-1kMps .framer-k6jalx > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-1kMps .framer-k6jalx > :first-child { margin-top: 0px; } .framer-1kMps .framer-k6jalx > :last-child { margin-bottom: 0px; } .framer-1kMps .framer-1097dj9 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-1kMps .framer-1097dj9 > :first-child, .framer-1kMps .framer-4i9ln7 > :first-child, .framer-1kMps .framer-1src0yu > :first-child { margin-left: 0px; } .framer-1kMps .framer-1097dj9 > :last-child, .framer-1kMps .framer-4i9ln7 > :last-child, .framer-1kMps .framer-1src0yu > :last-child { margin-right: 0px; } .framer-1kMps .framer-4i9ln7 > * { margin: 0px; margin-left: calc(43px / 2); margin-right: calc(43px / 2); } .framer-1kMps .framer-1src0yu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }}\",\"@media (min-width: 1800px) { .framer-1kMps.framer-72rtr7 { overflow: hidden; width: 1800px; } .framer-1kMps .framer-k6jalx { padding: 0px 0px 50px 0px; } .framer-1kMps .framer-11fcpn0 { padding: 30px 0px 98px 0px; } .framer-1kMps .framer-k6tssn { width: 66%; } .framer-1kMps .framer-11tdiut { padding: 38px 48px 98px 48px; } .framer-1kMps .framer-wfgpgl { align-content: center; align-items: center; justify-content: center; } .framer-1kMps .framer-1lmt562 { justify-content: center; } .framer-1kMps .framer-tiv9d1, .framer-1kMps .framer-1xj3cwr { height: 515px; width: 565px; } .framer-1kMps .framer-1i7sapo { bottom: -160px; height: var(--framer-aspect-ratio-supported, 710px); right: -20px; top: unset; width: unset; } .framer-1kMps .framer-1097dj9 { align-content: center; align-items: center; gap: 18px; justify-content: center; } .framer-1kMps .framer-1nl0pee { width: 173px; } .framer-1kMps .framer-96jprb { width: 101%; } .framer-1kMps .framer-1u8vl68 { width: 197px; } .framer-1kMps .framer-4fra2a { width: 99%; } .framer-1kMps .framer-4i9ln7 { gap: 43px; width: 93%; } .framer-1kMps .framer-fhhegt { height: var(--framer-aspect-ratio-supported, 123px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1kMps .framer-1097dj9, .framer-1kMps .framer-4i9ln7 { gap: 0px; } .framer-1kMps .framer-1097dj9 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-1kMps .framer-1097dj9 > :first-child, .framer-1kMps .framer-4i9ln7 > :first-child { margin-left: 0px; } .framer-1kMps .framer-1097dj9 > :last-child, .framer-1kMps .framer-4i9ln7 > :last-child { margin-right: 0px; } .framer-1kMps .framer-4i9ln7 > * { margin: 0px; margin-left: calc(43px / 2); margin-right: calc(43px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5913\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ulru_24ch\":{\"layout\":[\"fixed\",\"auto\"]},\"jvCw4IpzG\":{\"layout\":[\"fixed\",\"auto\"]},\"apIDecqGd\":{\"layout\":[\"fixed\",\"auto\"]},\"RapriGU19\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"f9TE_m4ak\":{\"pattern\":\":f9TE_m4ak\",\"name\":\"top\"},\"W6jgFvve7\":{\"pattern\":\":W6jgFvve7\",\"name\":\"solutions\"},\"voOpIFLtx\":{\"pattern\":\":voOpIFLtx\",\"name\":\"how-it-works\"},\"Qosj7Vhqt\":{\"pattern\":\":Qosj7Vhqt\",\"name\":\"arc\"},\"nV7Mj7DPi\":{\"pattern\":\":nV7Mj7DPi\",\"name\":\"metrics\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-1kMps\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5913,width:1400};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"FFF Acid Grotesk Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/raZE2BhRmRvOyd6LPQOd2qGiE.woff2\"},{family:\"FFF Acid Grotesk Normal\",source:\"custom\",url:\"https://framerusercontent.com/assets/0ZgmlAxvIMzrFV9lD3Z5ufkSgg.woff2\"},{family:\"FFF Acid Grotesk Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/AZG5z2RjKd3PJBFjkQx5UWqTs.woff2\"},{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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavigationBarFonts,...SectionBadgeFonts,...TickerFonts,...ButtonFonts,...SlideshowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ulru_24ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jvCw4IpzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"apIDecqGd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RapriGU19\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"f9TE_m4ak\\\":{\\\"pattern\\\":\\\":f9TE_m4ak\\\",\\\"name\\\":\\\"top\\\"},\\\"W6jgFvve7\\\":{\\\"pattern\\\":\\\":W6jgFvve7\\\",\\\"name\\\":\\\"solutions\\\"},\\\"voOpIFLtx\\\":{\\\"pattern\\\":\\\":voOpIFLtx\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"Qosj7Vhqt\\\":{\\\"pattern\\\":\\\":Qosj7Vhqt\\\",\\\"name\\\":\\\"arc\\\"},\\\"nV7Mj7DPi\\\":{\\\"pattern\\\":\\\":nV7Mj7DPi\\\",\\\"name\\\":\\\"metrics\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1400\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"5913\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationBarFonts", "getFonts", "lWUcIJP0H_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithFX", "withFX", "motion", "SectionBadgeFonts", "DT9isorhv_default", "RichTextWithFX", "TickerFonts", "Ticker", "ButtonFonts", "beqLwtpNS_default", "SlideshowFonts", "Slideshow", "FooterFonts", "zOCvedWwi_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "transition2", "animation2", "animation3", "transformTemplate2", "animation4", "transition3", "animation5", "transition4", "animation6", "transition5", "transition6", "animation7", "transition7", "transformTemplate3", "transition8", "transition9", "transition10", "animation8", "animation9", "transition11", "transition12", "transition13", "animation10", "transition14", "transition15", "transition16", "transition17", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "usePreloadLocalizedValues", "elementId1", "ref3", "elementId2", "ref4", "router", "useRouter", "elementId3", "ref5", "elementId4", "ref6", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "lWUcIJP0H_default", "getLocalizedValue", "x", "RichTextWithOptimizedAppearEffect", "RichText2", "Link", "SVG", "MotionDivWithFX", "getLoadingLazyAtYPosition", "Image2", "Container", "DT9isorhv_default", "RichTextWithFX", "Ticker", "ResolveLinks", "resolvedLinks", "beqLwtpNS_default", "resolvedLinks1", "Slideshow", "zOCvedWwi_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationBarFonts", "SectionBadgeFonts", "TickerFonts", "ButtonFonts", "SlideshowFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
