{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/kPVTlwP1tuQ0P2Y5nVOb/GL0Rj0m0IeSCQgXvGcfD/SRl9Yase3.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/zjgFhIFFb0BS6NwvUgUn/fdZ5XetyCEvejSUiaPsA/pBNQNZe1C.js", "ssg:https://framerusercontent.com/modules/mQzu3GRLP9wlC3auf2d0/1rmStXIVelnj19Km6r8z/rV0WvUeYt.js", "ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js", "ssg:https://framerusercontent.com/modules/q06UUu8zdMJIYcgx86w7/Lo6IeTNzuJVzvfuD8ZuJ/fODiDv3UW.js", "ssg:https://framerusercontent.com/modules/cCpI0EY8HkcUQGl1RRZv/CWQyTEyZiC3Lu1X4wcKq/C3ydHbDVC.js", "ssg:https://framerusercontent.com/modules/y6FIjncBmrKUxfPpKpWW/5oLg292yPWU6lp8LpTQg/JgOnmcTtx.js", "ssg:https://framerusercontent.com/modules/A3voofOdDgQWiqHZ907o/ENqH6YzZaaJrpIba0Zfm/FyWNZdsMO.js", "ssg:https://framerusercontent.com/modules/e0SKKVmoQCtcRxDN9gR0/VCDnyjV6V9i8NhSSejsI/CQevR49Jp.js", "ssg:https://framerusercontent.com/modules/AJPxwOIviTJhmWfNy8C1/U2cTVMoSqi9sLZaPK55U/TxIxZ9R20.js", "ssg:https://framerusercontent.com/modules/Sn1pLF51M7f8TxY2l21K/GLba7qHsH8an4JT4DoW0/KxbC4e4FX.js", "ssg:https://framerusercontent.com/modules/lRoUhlm4750NtjIV7DFk/kN4Xjv4hzz7ZhuAvx5tR/vA25Rl_61.js", "ssg:https://framerusercontent.com/modules/nEB0edBLxkMGokTz6nC2/k8EytPNSqC4Es9v1LBJl/hmKhdD_wU.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){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[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */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}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"LjYaOH_w0\"];const serializationHash=\"framer-zpAob\";const variantClassNames={LjYaOH_w0:\"framer-v-1yv8bxi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"LjYaOH_w0\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yv8bxi\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"LjYaOH_w0\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(94, 96, 117, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lt6wq7-container\",layoutDependency:layoutDependency,layoutId:\"mj60DPtrf-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:13,height:\"100%\",hoverFactor:1,id:\"mj60DPtrf\",layoutId:\"mj60DPtrf\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/bD0rtVge6YE64KYYXM50DMtIQ0.svg\"},className:\"framer-8ljq66\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"ohKyyT2BC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/wT6saLsFtUzCMCntzmapkTw1w58.svg\"},className:\"framer-1efq28t\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"bWYmQVL85\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Kup3b4lyvABANf5fbGqeurZ8XD0.svg\"},className:\"framer-us227p\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"xMeco1TUk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/kPMFIfnl410RRBlPRXloR0OUz4.svg\"},className:\"framer-1f24wl3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qjNZI4Ity\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/278haR5ZCCkP0IUbd9KMAb72w.svg\"},className:\"framer-hiamue\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"eT9gGx3sw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/kPMFIfnl410RRBlPRXloR0OUz4.svg\"},className:\"framer-1f24wl3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qjNZI4Ity\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/FZqIi8moTJQrdeVBrUW5YucSNyw.svg\"},className:\"framer-gbw1vb\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"oTibQTK5S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/FZqIi8moTJQrdeVBrUW5YucSNyw.svg\"},className:\"framer-gbw1vb\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"oTibQTK5S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/YqjgdHu8kII1lZUT4UyZK88eY.svg\"},className:\"framer-1aesfh2\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"l1gAXEg52\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/UEVdOHISlktX5FWDLpRhfVu6uH4.svg\"},className:\"framer-c8qjxa\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"e_iGWhROG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/u8y3dqlMLMKWuuabeaf7ItNvjA.svg\"},className:\"framer-5cigpi\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"ern1DfCXM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/DVQ4vKmBs63sCCsEi6FrJYNRBM.svg\"},className:\"framer-1vqhszy\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"lO03IAQcC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/UEVdOHISlktX5FWDLpRhfVu6uH4.svg\"},className:\"framer-hp5lrz\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"x5A0sJwLv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/VLzwXLgyGYBccEcfpLH6sBqmQI.svg\"},className:\"framer-1o6o38u\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"LWMXclEFd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/ZDARjrugSTSUzCpn6hYzxAEWg.svg\"},className:\"framer-1ilhckv\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"pnmEUQlve\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/278haR5ZCCkP0IUbd9KMAb72w.svg\"},className:\"framer-hiamue\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"eT9gGx3sw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Xgzvep0UkvZ0QhIYvNX7lA3WtI.svg\"},className:\"framer-1xii4fj\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"otMcl8wkb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/LjntJOW9YNDrjHatRWoCi7vxcs.svg\"},className:\"framer-623g21\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"DC6lH8FUE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/YIVlr8uf2aGbKErtBzDPKScJUA.svg\"},className:\"framer-10v1ez3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qzhbDkdGS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Xgzvep0UkvZ0QhIYvNX7lA3WtI.svg\"},className:\"framer-1xii4fj\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"otMcl8wkb\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nmajku-container\",layoutDependency:layoutDependency,layoutId:\"m43e8dtab-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:13,height:\"100%\",hoverFactor:1,id:\"m43e8dtab\",layoutId:\"m43e8dtab\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/bD0rtVge6YE64KYYXM50DMtIQ0.svg\"},className:\"framer-8ljq66\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"ohKyyT2BC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/wT6saLsFtUzCMCntzmapkTw1w58.svg\"},className:\"framer-1efq28t\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"bWYmQVL85\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Kup3b4lyvABANf5fbGqeurZ8XD0.svg\"},className:\"framer-us227p\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"xMeco1TUk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/kPMFIfnl410RRBlPRXloR0OUz4.svg\"},className:\"framer-1f24wl3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qjNZI4Ity\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/278haR5ZCCkP0IUbd9KMAb72w.svg\"},className:\"framer-hiamue\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"eT9gGx3sw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/kPMFIfnl410RRBlPRXloR0OUz4.svg\"},className:\"framer-1f24wl3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qjNZI4Ity\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/FZqIi8moTJQrdeVBrUW5YucSNyw.svg\"},className:\"framer-gbw1vb\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"oTibQTK5S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/FZqIi8moTJQrdeVBrUW5YucSNyw.svg\"},className:\"framer-gbw1vb\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"oTibQTK5S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/YqjgdHu8kII1lZUT4UyZK88eY.svg\"},className:\"framer-1aesfh2\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"l1gAXEg52\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/UEVdOHISlktX5FWDLpRhfVu6uH4.svg\"},className:\"framer-c8qjxa\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"e_iGWhROG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/u8y3dqlMLMKWuuabeaf7ItNvjA.svg\"},className:\"framer-5cigpi\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"ern1DfCXM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/DVQ4vKmBs63sCCsEi6FrJYNRBM.svg\"},className:\"framer-1vqhszy\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"lO03IAQcC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/UEVdOHISlktX5FWDLpRhfVu6uH4.svg\"},className:\"framer-hp5lrz\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"x5A0sJwLv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/VLzwXLgyGYBccEcfpLH6sBqmQI.svg\"},className:\"framer-1o6o38u\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"LWMXclEFd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/ZDARjrugSTSUzCpn6hYzxAEWg.svg\"},className:\"framer-1ilhckv\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"pnmEUQlve\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/278haR5ZCCkP0IUbd9KMAb72w.svg\"},className:\"framer-hiamue\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"eT9gGx3sw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Xgzvep0UkvZ0QhIYvNX7lA3WtI.svg\"},className:\"framer-1xii4fj\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"otMcl8wkb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/LjntJOW9YNDrjHatRWoCi7vxcs.svg\"},className:\"framer-623g21\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"DC6lH8FUE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/YIVlr8uf2aGbKErtBzDPKScJUA.svg\"},className:\"framer-10v1ez3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qzhbDkdGS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Xgzvep0UkvZ0QhIYvNX7lA3WtI.svg\"},className:\"framer-1xii4fj\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"otMcl8wkb\"})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w6ahg7-container\",layoutDependency:layoutDependency,layoutId:\"M_1r4i3jC-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:13,height:\"100%\",hoverFactor:1,id:\"M_1r4i3jC\",layoutId:\"M_1r4i3jC\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/bD0rtVge6YE64KYYXM50DMtIQ0.svg\"},className:\"framer-8ljq66\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"ohKyyT2BC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/wT6saLsFtUzCMCntzmapkTw1w58.svg\"},className:\"framer-1efq28t\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"bWYmQVL85\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Kup3b4lyvABANf5fbGqeurZ8XD0.svg\"},className:\"framer-us227p\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"xMeco1TUk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/kPMFIfnl410RRBlPRXloR0OUz4.svg\"},className:\"framer-1f24wl3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qjNZI4Ity\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/278haR5ZCCkP0IUbd9KMAb72w.svg\"},className:\"framer-hiamue\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"eT9gGx3sw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/kPMFIfnl410RRBlPRXloR0OUz4.svg\"},className:\"framer-1f24wl3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qjNZI4Ity\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/FZqIi8moTJQrdeVBrUW5YucSNyw.svg\"},className:\"framer-gbw1vb\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"oTibQTK5S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/FZqIi8moTJQrdeVBrUW5YucSNyw.svg\"},className:\"framer-gbw1vb\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"oTibQTK5S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/YqjgdHu8kII1lZUT4UyZK88eY.svg\"},className:\"framer-1aesfh2\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"l1gAXEg52\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/UEVdOHISlktX5FWDLpRhfVu6uH4.svg\"},className:\"framer-c8qjxa\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"e_iGWhROG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/u8y3dqlMLMKWuuabeaf7ItNvjA.svg\"},className:\"framer-5cigpi\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"ern1DfCXM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/DVQ4vKmBs63sCCsEi6FrJYNRBM.svg\"},className:\"framer-1vqhszy\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"lO03IAQcC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/UEVdOHISlktX5FWDLpRhfVu6uH4.svg\"},className:\"framer-hp5lrz\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"x5A0sJwLv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/VLzwXLgyGYBccEcfpLH6sBqmQI.svg\"},className:\"framer-1o6o38u\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"LWMXclEFd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/ZDARjrugSTSUzCpn6hYzxAEWg.svg\"},className:\"framer-1ilhckv\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"pnmEUQlve\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/278haR5ZCCkP0IUbd9KMAb72w.svg\"},className:\"framer-hiamue\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"eT9gGx3sw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Xgzvep0UkvZ0QhIYvNX7lA3WtI.svg\"},className:\"framer-1xii4fj\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"otMcl8wkb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/LjntJOW9YNDrjHatRWoCi7vxcs.svg\"},className:\"framer-623g21\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"DC6lH8FUE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/YIVlr8uf2aGbKErtBzDPKScJUA.svg\"},className:\"framer-10v1ez3\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"qzhbDkdGS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:141,pixelHeight:55,pixelWidth:141,src:\"https://framerusercontent.com/images/Xgzvep0UkvZ0QhIYvNX7lA3WtI.svg\"},className:\"framer-1xii4fj\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"otMcl8wkb\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})})});});const css=['.framer-zpAob[data-border=\"true\"]::after, .framer-zpAob [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zpAob.framer-1o5ld4v, .framer-zpAob .framer-1o5ld4v { display: block; }\",\".framer-zpAob.framer-1yv8bxi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: 798px; }\",\".framer-zpAob .framer-1lt6wq7-container, .framer-zpAob .framer-nmajku-container, .framer-zpAob .framer-w6ahg7-container { flex: none; height: 56px; position: relative; width: 100%; }\",\".framer-zpAob .framer-8ljq66, .framer-zpAob .framer-1efq28t, .framer-zpAob .framer-us227p, .framer-zpAob .framer-1f24wl3, .framer-zpAob .framer-hiamue, .framer-zpAob .framer-gbw1vb, .framer-zpAob .framer-1aesfh2, .framer-zpAob .framer-c8qjxa, .framer-zpAob .framer-5cigpi, .framer-zpAob .framer-1vqhszy, .framer-zpAob .framer-hp5lrz, .framer-zpAob .framer-1o6o38u, .framer-zpAob .framer-1ilhckv, .framer-zpAob .framer-1xii4fj, .framer-zpAob .framer-623g21, .framer-zpAob .framer-10v1ez3 { aspect-ratio: 2.5636363636363635 / 1; height: var(--framer-aspect-ratio-supported, 55px); position: relative; width: 141px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zpAob.framer-1yv8bxi { gap: 0px; } .framer-zpAob.framer-1yv8bxi > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-zpAob.framer-1yv8bxi > :first-child { margin-top: 0px; } .framer-zpAob.framer-1yv8bxi > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 226\n * @framerIntrinsicWidth 798\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerSRl9Yase3=withCSS(Component,css,\"framer-zpAob\");export default FramerSRl9Yase3;FramerSRl9Yase3.displayName=\"Brand Ticker\";FramerSRl9Yase3.defaultProps={height:226,width:798};addFonts(FramerSRl9Yase3,[...TickerFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSRl9Yase3\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"798\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"226\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SRl9Yase3.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Urbanist-700\",\"GF;Urbanist-900\",\"GF;Urbanist-900italic\",\"GF;Urbanist-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfE5OrS8SlKw.woff2\",weight:\"700\"},{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfE5OrS8SlKw.woff2\",weight:\"900\"},{family:\"Urbanist\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmqacG1K4S1.woff2\",weight:\"900\"},{family:\"Urbanist\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmqacG1K4S1.woff2\",weight:\"700\"}]}];export const css=['.framer-gljZ4 .framer-styles-preset-15xe0d3:not(.rich-text-wrapper), .framer-gljZ4 .framer-styles-preset-15xe0d3.rich-text-wrapper h4 { --framer-font-family: \"Urbanist\", \"Urbanist Placeholder\", sans-serif; --framer-font-family-bold: \"Urbanist\", sans-serif; --framer-font-family-bold-italic: \"Urbanist\", sans-serif; --framer-font-family-italic: \"Urbanist\", \"Urbanist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, #01081b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 0px) { .framer-gljZ4 .framer-styles-preset-15xe0d3:not(.rich-text-wrapper), .framer-gljZ4 .framer-styles-preset-15xe0d3.rich-text-wrapper h4 { --framer-font-family: \"Urbanist\", \"Urbanist Placeholder\", sans-serif; --framer-font-family-bold: \"Urbanist\", sans-serif; --framer-font-family-bold-italic: \"Urbanist\", sans-serif; --framer-font-family-italic: \"Urbanist\", \"Urbanist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, #01081b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-gljZ4\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zjgFhIFFb0BS6NwvUgUn/fdZ5XetyCEvejSUiaPsA/pBNQNZe1C.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bJ6u2LxLcBDWwVDMODj9/SrRtRCVdZSTOjqTOqkpK/VZ7J1pnFq.js\";const cycleOrder=[\"QFIFroso4\",\"I7iY3fBIY\"];const serializationHash=\"framer-c8qpT\";const variantClassNames={I7iY3fBIY:\"framer-v-n5a359\",QFIFroso4:\"framer-v-1ac37nj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"QFIFroso4\",Phone:\"I7iY3fBIY\"};const getProps=({background,height,icon,id,text,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,G2JTyjlTh:(_ref=title!==null&&title!==void 0?title:props.G2JTyjlTh)!==null&&_ref!==void 0?_ref:\"Instant payments\",lPKjHXKWo:(_ref1=icon!==null&&icon!==void 0?icon:props.lPKjHXKWo)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/io4FDfe4k1Y0GYoqAac26YNKg.svg\"},o4k5UlkuX:(_ref2=text!==null&&text!==void 0?text:props.o4k5UlkuX)!==null&&_ref2!==void 0?_ref2:\"Send money to friends or family in real-time, for free.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"QFIFroso4\",y0HEf03Fo:(_ref4=background!==null&&background!==void 0?background:props.y0HEf03Fo)!==null&&_ref4!==void 0?_ref4:\"var(--token-57dd8577-e537-4956-a282-f1b904f7699c, rgb(243, 247, 255))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,G2JTyjlTh,o4k5UlkuX,lPKjHXKWo,y0HEf03Fo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QFIFroso4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ac37nj\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"QFIFroso4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:y0HEf03Fo,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({I7iY3fBIY:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||244)-64-252)/2+0+0)),pixelHeight:60,pixelWidth:61,sizes:\"60px\",...toResponsiveImage(lPKjHXKWo),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-q8tt8g\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"bWU4n733S\",...addPropertyOverrides({I7iY3fBIY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||212)-48-236)/2+0+0)),pixelHeight:60,pixelWidth:61,sizes:\"60px\",...toResponsiveImage(lPKjHXKWo),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n1sgct\",\"data-framer-name\":\"Text Block\",layoutDependency:layoutDependency,layoutId:\"OT4lTzBJS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-15xe0d3\",\"data-styles-preset\":\"pBNQNZe1C\",style:{\"--framer-text-alignment\":\"center\"},children:\"Instant payments\"})}),className:\"framer-aulsyv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zQoUicEnB\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:G2JTyjlTh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5xhumn\",\"data-styles-preset\":\"VZ7J1pnFq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Send money to friends or family in real-time, for free.\"})}),className:\"framer-13gkd1t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XsjmX079I\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:o4k5UlkuX,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c8qpT.framer-1hsmpr7, .framer-c8qpT .framer-1hsmpr7 { display: block; }\",\".framer-c8qpT.framer-1ac37nj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 32px 22.25px 32px 22.25px; position: relative; width: 275px; }\",\".framer-c8qpT .framer-q8tt8g { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 60px; }\",\".framer-c8qpT .framer-n1sgct { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8qpT .framer-aulsyv, .framer-c8qpT .framer-13gkd1t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c8qpT.framer-1ac37nj, .framer-c8qpT .framer-n1sgct { gap: 0px; } .framer-c8qpT.framer-1ac37nj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-c8qpT.framer-1ac37nj > :first-child, .framer-c8qpT .framer-n1sgct > :first-child { margin-top: 0px; } .framer-c8qpT.framer-1ac37nj > :last-child, .framer-c8qpT .framer-n1sgct > :last-child { margin-bottom: 0px; } .framer-c8qpT .framer-n1sgct > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-c8qpT.framer-v-n5a359.framer-1ac37nj { gap: 24px; padding: 24px 16px 24px 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c8qpT.framer-v-n5a359.framer-1ac37nj { gap: 0px; } .framer-c8qpT.framer-v-n5a359.framer-1ac37nj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-c8qpT.framer-v-n5a359.framer-1ac37nj > :first-child { margin-top: 0px; } .framer-c8qpT.framer-v-n5a359.framer-1ac37nj > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 244\n * @framerIntrinsicWidth 275\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I7iY3fBIY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"G2JTyjlTh\":\"title\",\"o4k5UlkuX\":\"text\",\"lPKjHXKWo\":\"icon\",\"y0HEf03Fo\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrV0WvUeYt=withCSS(Component,css,\"framer-c8qpT\");export default FramerrV0WvUeYt;FramerrV0WvUeYt.displayName=\"Card / Feature\";FramerrV0WvUeYt.defaultProps={height:244,width:275};addPropertyControls(FramerrV0WvUeYt,{variant:{options:[\"QFIFroso4\",\"I7iY3fBIY\"],optionTitles:[\"Default\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},G2JTyjlTh:{defaultValue:\"Instant payments\",displayTextArea:false,title:\"Title\",type:ControlType.String},o4k5UlkuX:{defaultValue:\"Send money to friends or family in real-time, for free.\",displayTextArea:false,title:\"Text\",type:ControlType.String},lPKjHXKWo:{__defaultAssetReference:\"data:framer/asset-reference,io4FDfe4k1Y0GYoqAac26YNKg.svg?originalFilename=feature-1.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},y0HEf03Fo:{defaultValue:'var(--token-57dd8577-e537-4956-a282-f1b904f7699c, rgb(243, 247, 255)) /* {\"name\":\"Primary / 10\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerrV0WvUeYt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrV0WvUeYt\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I7iY3fBIY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"275\",\"framerVariables\":\"{\\\"G2JTyjlTh\\\":\\\"title\\\",\\\"o4k5UlkuX\\\":\\\"text\\\",\\\"lPKjHXKWo\\\":\\\"icon\\\",\\\"y0HEf03Fo\\\":\\\"background\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"244\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rV0WvUeYt.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Generated by Framer (12cfc32)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{Image as Image1,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState,Stack}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"];const variantClassNames={\"AD1uRb789\":\"framer-v-rqhbs3\",\"t6uYX0tBZ\":\"framer-v-ina8tq\",\"AnI2DvQZf\":\"framer-v-lwbc2o\",\"JG7MxGgTY\":\"framer-v-vqryag\",\"snFARdAmz\":\"framer-v-kwp1i3\",\"Nz_Z2NTH0\":\"framer-v-1h8ejmh\",\"cHv8JY9g7\":\"framer-v-c75qsa\",\"tR7FlThNE\":\"framer-v-1ftwjq5\",\"bg0lLngd2\":\"framer-v-osfy8l\",\"FKNQjSL73\":\"framer-v-5qhg5s\",\"UozSdcuUY\":\"framer-v-5ats54\",\"EgLxQrxHD\":\"framer-v-z5mnn6\",\"vol5AdrV3\":\"framer-v-6xnqop\",\"rbMcqs1eA\":\"framer-v-xmx6ye\",\"OY_j7HdJV\":\"framer-v-a1v8wx\",\"mcvPgNUgN\":\"framer-v-1oj0oue\",\"Jj_gJ6raO\":\"framer-v-19e1lqz\",\"UYFenO8zH\":\"framer-v-16en86l\",\"RpMB9X2cU\":\"framer-v-1vzsblg\",\"tExww8aRk\":\"framer-v-1kgllbw\",\"anaA6RL0b\":\"framer-v-zia1yx\",\"y8osi5SA0\":\"framer-v-9mi1m7\",\"v2n6jd8d8\":\"framer-v-zgdwlg\",\"vrPxXX3Sq\":\"framer-v-1dgnypb\",\"YC5psLXzO\":\"framer-v-rum36c\",\"wQ9whLvFH\":\"framer-v-1u5c2u8\",\"hUi9TraZo\":\"framer-v-1dt8e1w\",\"ji0e3Gqv5\":\"framer-v-1rkl824\",\"nMHdUM1t6\":\"framer-v-17d51pb\",\"Stnp3oRU4\":\"framer-v-158neyh\",\"TxmZTsvXB\":\"framer-v-1atb71u\",\"bNhqIdQoj\":\"framer-v-1x8h963\",\"OYkCSZPL0\":\"framer-v-hblyuj\",\"bOMpuyzc_\":\"framer-v-cra8ie\",\"NqCoJY2pH\":\"framer-v-1sz721s\"};const humanReadableVariantMap={\"Jason\":\"AD1uRb789\",\"Jess\":\"t6uYX0tBZ\",\"Olli\":\"AnI2DvQZf\",\"Myah\":\"JG7MxGgTY\",\"Ammaar\":\"snFARdAmz\",\"Siena\":\"Nz_Z2NTH0\",\"Cheryl\":\"cHv8JY9g7\",\"Aleeza\":\"tR7FlThNE\",\"Elli\":\"bg0lLngd2\",\"Piotr\":\"FKNQjSL73\",\"Ayisha\":\"UozSdcuUY\",\"Nataniel\":\"EgLxQrxHD\",\"Nikita\":\"vol5AdrV3\",\"Tim\":\"rbMcqs1eA\",\"Carley\":\"OY_j7HdJV\",\"Arda\":\"mcvPgNUgN\",\"Lacey-Mae\":\"Jj_gJ6raO\",\"Bo\":\"UYFenO8zH\",\"Shelbie\":\"RpMB9X2cU\",\"Dillon\":\"tExww8aRk\",\"Selin\":\"OYkCSZPL0\",\"Rhian\":\"y8osi5SA0\",\"Ada\":\"v2n6jd8d8\",\"Lois\":\"vrPxXX3Sq\",\"Maisie\":\"YC5psLXzO\",\"Lori\":\"wQ9whLvFH\",\"Jardel\":\"hUi9TraZo\",\"Jethro\":\"ji0e3Gqv5\",\"Carmen\":\"nMHdUM1t6\",\"Patrik\":\"Stnp3oRU4\",\"Barry\":\"TxmZTsvXB\",\"Alejandro\":\"bNhqIdQoj\",\"Denny\":\"bOMpuyzc_\",\"Becca\":\"NqCoJY2pH\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style,className,layoutId,width,height,variant:outerVariant=\"AD1uRb789\",background:VurELiPqN=\"rgb(255, 219, 222)\",radius:Z2NuoQS1k=60,rotation:tc_6nmlts=0,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"AD1uRb789\",variant,transitions,variantClassNames,cycleOrder});const variantProps=React.useMemo(()=>({\"t6uYX0tBZ\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jess\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/XfjXHJ2H7SzzlzPr1bGFm1T9BpI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"AnI2DvQZf\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Olli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/qCpU7HJtiveCC9wTFuh7L4wc8YM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"JG7MxGgTY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Myah\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Q8IGGb6PvVKrjNuovM2HijDWFU.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"snFARdAmz\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ammaar\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/iGk4x1NJSVgWzFvuQQADJp9I.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Nz_Z2NTH0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Siena\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ikD34vgzaLM6N50MKdcR9HVBnk.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"cHv8JY9g7\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Cheryl\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mUVPNgOqhd1MFYjLtFtiBwvxfY.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tR7FlThNE\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Aleeza\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/62fnqd1V6QN3j0vPr4hlpB3HnQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bg0lLngd2\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Elli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Vu8TxX7VMCMZDjoliFK7D0nOyX0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"FKNQjSL73\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Piotr\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ofIUD8MCjke7Xz8jkh29AWqajJo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UozSdcuUY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ayisha\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/5nnqp2inSINDktAAWpI7gxJei0w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"EgLxQrxHD\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nataniel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/lKaaStgbmdIe8TfrIkFlKzHazV0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vol5AdrV3\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nikita\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/bpeWvtoxuajqEtlukZhUFt9KM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"rbMcqs1eA\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Tim\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GoWNvgKZvVTzmZQKHoh2Ccnk4E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OY_j7HdJV\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carley\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/40ioqcNOrsoBIVnpfGVsXh9jpM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"mcvPgNUgN\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Arda\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/U8RU6HcYtcK32VUY2uTSF9QTqo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Jj_gJ6raO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lacey-Mae\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/1OwzdZHx9ElDw1ZAavs6WGWBSw.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UYFenO8zH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Bo\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Tlwk5hINm0ferm6DGDyUoqL6pc.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"RpMB9X2cU\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Shelbie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Pm9TTOkN341IYtePLdPGmhG0E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tExww8aRk\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Dillon\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GOsVbTpzcPHfZ9EMcOSPddNS6go.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"anaA6RL0b\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GaxkgrTkzKlxI7B3EJtZp4dabI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"y8osi5SA0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Rhian\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/LEd8c4Zf28fU29XZ4c04ImOzs.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"v2n6jd8d8\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ada\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/3oPVBjvZEnTN9DZf7tUMW54TS2k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vrPxXX3Sq\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lois\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/99qcDQP7xzsxlgXsq47uID7sAm4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"YC5psLXzO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Maisie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BRu6MhHhp9NjldqU9TTCEAEoGKg.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"wQ9whLvFH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lori\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ebCaegtDakUaQGRtXSYmPR43Q.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"hUi9TraZo\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jardel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/B8580pOtLEBrg7wIFp62oXfFQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"ji0e3Gqv5\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jethro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/szTmT1K4f8nn5CutvLWFlBdt8k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"nMHdUM1t6\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carmen\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/e6GZhp0s96FXaIiLYSRyZYZYypo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Stnp3oRU4\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Patrik\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/6xGPl1j87mG8XoUzCwRYzEohM8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"TxmZTsvXB\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Barry\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mhC7dhzvLcqmUofPcC2BW8vh4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bNhqIdQoj\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Alejandro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/YynUn6LSLWVQia4pOtIxhY77SSA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OYkCSZPL0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/u2K6WSbQVKHiOUvOF3auFya79y8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bOMpuyzc_\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Denny\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BJytCbStiWSy9rxpQ0wU6I3SNiI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"NqCoJY2pH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Becca\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/xyIaIR0LhPm1PVVUVrQ7TDGTyA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}}}),[]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,className:cx(\"framer-47hmZ\",classNames),style:{\"display\":\"contents\"},onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),children:/*#__PURE__*/ _jsx(Stack,{...restProps,layoutId:\"AD1uRb789\",className:cx(\"framer-rqhbs3\",className),style:{\"borderBottomLeftRadius\":Z2NuoQS1k,\"borderBottomRightRadius\":Z2NuoQS1k,\"borderTopRightRadius\":Z2NuoQS1k,\"borderTopLeftRadius\":Z2NuoQS1k,\"backgroundColor\":VurELiPqN,...style},direction:\"horizontal\",distribution:\"center\",alignment:\"center\",gap:10,__fromCanvasComponent:true,__contentWrapperStyle:{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"},center:false,\"data-framer-name\":\"Jason\",transition:transition,ref:ref,...addVariantProps(\"AD1uRb789\"),children:/*#__PURE__*/ _jsx(Image1,{layoutId:\"XGgsiaAin\",className:\"framer-kj56m6\",style:{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60,\"rotate\":tc_6nmlts},background:{\"src\":new URL(\"assets/CPGgYEBeFy4gDXe5dDzh1qjQG1w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"data-framer-name\":\"Avatar\",variants:{\"t6uYX0tBZ\":{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60}},transition:transition,...addVariantProps(\"XGgsiaAin\")})})})}));});const css=[\".framer-47hmZ [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;}\",\".framer-47hmZ .framer-rqhbs3 { position: relative; overflow: hidden; width: 100px; height: 100px; }\",\".framer-47hmZ .framer-kj56m6 { position: relative; overflow: visible; width: 1px; height: 100%; flex: 1 0 0px; }\",\".framer-47hmZ.framer-v-ina8tq .framer-rqhbs3, .framer-47hmZ.framer-v-lwbc2o .framer-rqhbs3, .framer-47hmZ.framer-v-vqryag .framer-rqhbs3, .framer-47hmZ.framer-v-kwp1i3 .framer-rqhbs3, .framer-47hmZ.framer-v-1h8ejmh .framer-rqhbs3, .framer-47hmZ.framer-v-c75qsa .framer-rqhbs3, .framer-47hmZ.framer-v-1ftwjq5 .framer-rqhbs3, .framer-47hmZ.framer-v-osfy8l .framer-rqhbs3, .framer-47hmZ.framer-v-5qhg5s .framer-rqhbs3, .framer-47hmZ.framer-v-5ats54 .framer-rqhbs3, .framer-47hmZ.framer-v-z5mnn6 .framer-rqhbs3, .framer-47hmZ.framer-v-6xnqop .framer-rqhbs3, .framer-47hmZ.framer-v-xmx6ye .framer-rqhbs3, .framer-47hmZ.framer-v-a1v8wx .framer-rqhbs3, .framer-47hmZ.framer-v-1oj0oue .framer-rqhbs3, .framer-47hmZ.framer-v-19e1lqz .framer-rqhbs3, .framer-47hmZ.framer-v-16en86l .framer-rqhbs3, .framer-47hmZ.framer-v-1vzsblg .framer-rqhbs3, .framer-47hmZ.framer-v-1kgllbw .framer-rqhbs3, .framer-47hmZ.framer-v-zia1yx .framer-rqhbs3, .framer-47hmZ.framer-v-9mi1m7 .framer-rqhbs3, .framer-47hmZ.framer-v-zgdwlg .framer-rqhbs3, .framer-47hmZ.framer-v-1dgnypb .framer-rqhbs3, .framer-47hmZ.framer-v-rum36c .framer-rqhbs3, .framer-47hmZ.framer-v-1u5c2u8 .framer-rqhbs3, .framer-47hmZ.framer-v-1dt8e1w .framer-rqhbs3, .framer-47hmZ.framer-v-1rkl824 .framer-rqhbs3, .framer-47hmZ.framer-v-17d51pb .framer-rqhbs3, .framer-47hmZ.framer-v-158neyh .framer-rqhbs3, .framer-47hmZ.framer-v-1atb71u .framer-rqhbs3, .framer-47hmZ.framer-v-1x8h963 .framer-rqhbs3, .framer-47hmZ.framer-v-hblyuj .framer-rqhbs3, .framer-47hmZ.framer-v-cra8ie .framer-rqhbs3, .framer-47hmZ.framer-v-1sz721s .framer-rqhbs3 { width: 100px; height: 100px; }\",\".framer-47hmZ.framer-v-1ftwjq5 .framer-kj56m6, .framer-47hmZ.framer-v-osfy8l .framer-kj56m6 { width: 1px; height: 100%; right: auto; bottom: auto; left: auto; top: auto; flex: 1 0 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"t6uYX0tBZ\": {\"layout\": [\"fixed\", \"fixed\"]}, \"AnI2DvQZf\": {\"layout\": [\"fixed\", \"fixed\"]}, \"JG7MxGgTY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"snFARdAmz\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Nz_Z2NTH0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"cHv8JY9g7\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tR7FlThNE\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bg0lLngd2\": {\"layout\": [\"fixed\", \"fixed\"]}, \"FKNQjSL73\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UozSdcuUY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"EgLxQrxHD\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vol5AdrV3\": {\"layout\": [\"fixed\", \"fixed\"]}, \"rbMcqs1eA\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OY_j7HdJV\": {\"layout\": [\"fixed\", \"fixed\"]}, \"mcvPgNUgN\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Jj_gJ6raO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UYFenO8zH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"RpMB9X2cU\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tExww8aRk\": {\"layout\": [\"fixed\", \"fixed\"]}, \"anaA6RL0b\": {\"layout\": [\"fixed\", \"fixed\"]}, \"y8osi5SA0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"v2n6jd8d8\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vrPxXX3Sq\": {\"layout\": [\"fixed\", \"fixed\"]}, \"YC5psLXzO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"wQ9whLvFH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"hUi9TraZo\": {\"layout\": [\"fixed\", \"fixed\"]}, \"ji0e3Gqv5\": {\"layout\": [\"fixed\", \"fixed\"]}, \"nMHdUM1t6\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Stnp3oRU4\": {\"layout\": [\"fixed\", \"fixed\"]}, \"TxmZTsvXB\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bNhqIdQoj\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OYkCSZPL0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bOMpuyzc_\": {\"layout\": [\"fixed\", \"fixed\"]}, \"NqCoJY2pH\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"VurELiPqN\": \"background\", \"Z2NuoQS1k\": \"radius\", \"tc_6nmlts\": \"rotation\"}\n */ const FramerdkRfXNUhM=withCSS(Component,css);export default FramerdkRfXNUhM;FramerdkRfXNUhM.displayName=\"Memoji\";FramerdkRfXNUhM.defaultProps={\"width\":100,\"height\":100};addPropertyControls(FramerdkRfXNUhM,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"],\"optionTitles\":[\"Jason\",\"Jess\",\"Olli\",\"Myah\",\"Ammaar\",\"Siena\",\"Cheryl\",\"Aleeza\",\"Elli\",\"Piotr\",\"Ayisha\",\"Nataniel\",\"Nikita\",\"Tim\",\"Carley\",\"Arda\",\"Lacey-Mae\",\"Bo\",\"Shelbie\",\"Dillon\",\"Selin\",\"Rhian\",\"Ada\",\"Lois\",\"Maisie\",\"Lori\",\"Jardel\",\"Jethro\",\"Carmen\",\"Patrik\",\"Barry\",\"Alejandro\",\"Selin\",\"Denny\",\"Becca\"]},\"VurELiPqN\":{\"type\":ControlType.Color,\"title\":\"Background\",\"defaultValue\":\"rgb(255, 219, 222)\"},\"Z2NuoQS1k\":{\"type\":ControlType.Number,\"title\":\"Radius\",\"defaultValue\":60,\"min\":0},\"tc_6nmlts\":{\"type\":ControlType.Number,\"title\":\"Rotation\",\"defaultValue\":0,\"min\":-180,\"max\":180,\"unit\":\"\u00B0\"}});addFonts(FramerdkRfXNUhM,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdkRfXNUhM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"t6uYX0tBZ\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"AnI2DvQZf\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"JG7MxGgTY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"snFARdAmz\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Nz_Z2NTH0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"cHv8JY9g7\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tR7FlThNE\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bg0lLngd2\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"FKNQjSL73\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UozSdcuUY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"EgLxQrxHD\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vol5AdrV3\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"rbMcqs1eA\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OY_j7HdJV\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"mcvPgNUgN\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Jj_gJ6raO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UYFenO8zH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"RpMB9X2cU\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tExww8aRk\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"anaA6RL0b\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"y8osi5SA0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"v2n6jd8d8\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vrPxXX3Sq\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"YC5psLXzO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"wQ9whLvFH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"hUi9TraZo\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"ji0e3Gqv5\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"nMHdUM1t6\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Stnp3oRU4\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"TxmZTsvXB\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bNhqIdQoj\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OYkCSZPL0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bOMpuyzc_\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"NqCoJY2pH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"100\",\"framerIntrinsicHeight\":\"100\",\"framerVariables\":\"{\\\"VurELiPqN\\\": \\\"background\\\", \\\"Z2NuoQS1k\\\": \\\"radius\\\", \\\"tc_6nmlts\\\": \\\"rotation\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./dkRfXNUhM.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useActiveVariantCallback,useConstant,useIsOnFramerCanvas,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"dUHkf3gjK\",\"Ss_t4Imf5\",\"ro05AgtD0\"];const serializationHash=\"framer-fLt86\";const variantClassNames={dUHkf3gjK:\"framer-v-o49cd6\",ro05AgtD0:\"framer-v-9735dl\",Ss_t4Imf5:\"framer-v-cw7kq6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"dUHkf3gjK\",\"Variant 2\":\"Ss_t4Imf5\",\"Variant 3\":\"ro05AgtD0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dUHkf3gjK\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"dUHkf3gjK\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear11r16we=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Ss_t4Imf5\"),1e3);});const onAppear15iuf6z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ro05AgtD0\"),1e3);});const onAppeark6bu2f=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dUHkf3gjK\"),1e3);});useOnVariantChange(baseVariant,{default:onAppear11r16we,ro05AgtD0:onAppeark6bu2f,Ss_t4Imf5:onAppear15iuf6z});const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-o49cd6\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"dUHkf3gjK\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 3px 4px 0px rgba(0, 0, 0, 0.05)\",...style},...addPropertyOverrides({ro05AgtD0:{\"data-framer-name\":\"Variant 3\"},Ss_t4Imf5:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:221,pixelHeight:77,pixelWidth:221,src:\"https://framerusercontent.com/images/RA9NQ6ipkUfVZybdQaaM04IQ.png\"},className:\"framer-31jkn0\",\"data-framer-name\":\"Cursor 1\",layoutDependency:layoutDependency,layoutId:\"vCkNzJ0LI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:222,pixelHeight:77,pixelWidth:222,src:\"https://framerusercontent.com/images/QoGZPfL0T9TWHuAZIRpABkIMaiY.png\"},className:\"framer-lpgxdb\",\"data-framer-name\":\"Cursor 1\",layoutDependency:layoutDependency,layoutId:\"GHms6ESNp\",transformTemplate:transformTemplate1,...addPropertyOverrides({ro05AgtD0:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:186,pixelHeight:77,pixelWidth:186,src:\"https://framerusercontent.com/images/nFrpbDVJ7FjkVaQ3CAWSTSHCZE.png\"},className:\"framer-1xce9kd\",\"data-framer-name\":\"Cursor 1\",layoutDependency:layoutDependency,layoutId:\"hgr03dqkb\"})]})})});});const css=['.framer-fLt86[data-border=\"true\"]::after, .framer-fLt86 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fLt86.framer-a8b237, .framer-fLt86 .framer-a8b237 { display: block; }\",\".framer-fLt86.framer-o49cd6 { height: 282px; position: relative; width: 474px; }\",\".framer-fLt86 .framer-31jkn0 { aspect-ratio: 2.923076923076923 / 1; bottom: 70px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 51px; position: absolute; width: 141px; }\",\".framer-fLt86 .framer-lpgxdb { aspect-ratio: 2.923076923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 46%; position: absolute; top: 63px; width: 141px; }\",\".framer-fLt86 .framer-1xce9kd { aspect-ratio: 2.3867924528301887 / 1; bottom: 68px; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: absolute; right: 59px; width: 126px; }\",\".framer-fLt86.framer-v-cw7kq6.framer-o49cd6, .framer-fLt86.framer-v-9735dl.framer-o49cd6 { aspect-ratio: 1.6828358208955223 / 1; height: var(--framer-aspect-ratio-supported, 282px); }\",\".framer-fLt86.framer-v-cw7kq6 .framer-31jkn0 { bottom: 45px; left: 71px; }\",\".framer-fLt86.framer-v-cw7kq6 .framer-lpgxdb { left: 46%; top: 29px; }\",\".framer-fLt86.framer-v-cw7kq6 .framer-1xce9kd { bottom: 65px; right: 111px; }\",\".framer-fLt86.framer-v-9735dl .framer-31jkn0 { bottom: 68px; left: 41px; }\",\".framer-fLt86.framer-v-9735dl .framer-lpgxdb { left: unset; right: 135px; top: 29px; }\",\".framer-fLt86.framer-v-9735dl .framer-1xce9kd { bottom: 100px; right: 111px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 281.5\n * @framerIntrinsicWidth 474\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ss_t4Imf5\":{\"layout\":[\"fixed\",\"fixed\"]},\"ro05AgtD0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerfODiDv3UW=withCSS(Component,css,\"framer-fLt86\");export default FramerfODiDv3UW;FramerfODiDv3UW.displayName=\"Animated Illustration 01\";FramerfODiDv3UW.defaultProps={height:281.5,width:474};addPropertyControls(FramerfODiDv3UW,{variant:{options:[\"dUHkf3gjK\",\"Ss_t4Imf5\",\"ro05AgtD0\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfODiDv3UW,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfODiDv3UW\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ss_t4Imf5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ro05AgtD0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"474\",\"framerIntrinsicHeight\":\"281.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fODiDv3UW.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"tpNtu7eLx\",\"uUSQNkIGP\",\"CoRQbNpsI\"];const serializationHash=\"framer-Lvhk5\";const variantClassNames={CoRQbNpsI:\"framer-v-j2pth0\",tpNtu7eLx:\"framer-v-6cdtim\",uUSQNkIGP:\"framer-v-b95l7c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Product Card 1\":\"tpNtu7eLx\",\"Product Card 2\":\"uUSQNkIGP\",\"Product Card 3\":\"CoRQbNpsI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tpNtu7eLx\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tpNtu7eLx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"uUSQNkIGP\",\"CoRQbNpsI\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"uUSQNkIGP\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"CoRQbNpsI\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-6cdtim\",className,classNames),\"data-framer-name\":\"Product Card 1\",layoutDependency:layoutDependency,layoutId:\"tpNtu7eLx\",ref:ref??ref1,style:{...style},...addPropertyOverrides({CoRQbNpsI:{\"data-framer-name\":\"Product Card 3\"},uUSQNkIGP:{\"data-framer-name\":\"Product Card 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-spodag\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"Pk9nPdRHt\",style:{backgroundColor:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.0181), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ylhqou\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FOuVnCdRi\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:2240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12+(((componentViewport?.height||199)-24-175)/2+0+0)+10+0+0),pixelHeight:3036,pixelWidth:3850,src:\"https://framerusercontent.com/images/yCcyXXnlSxsnynkfXT6uzTu1dY.jpg?scale-down-to=1024\"},className:\"framer-1pu1ksi\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BHsUBLeoY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u2jp10\",\"data-framer-name\":\"Information\",layoutDependency:layoutDependency,layoutId:\"Eks0kyu55\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20)))\"},children:\"Website Branding\"})}),className:\"framer-1yvthwi\",fonts:[\"GF;Inter Tight-600\"],layoutDependency:layoutDependency,layoutId:\"PtBLaUzex\",style:{\"--extracted-r6o4lv\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o8maee\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"kViTfWsoj\",style:{backgroundColor:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.0181), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-90s0t\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VtsOL6o1m\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:2240,pixelHeight:3712,pixelWidth:5568,src:\"https://framerusercontent.com/images/iwNXp5FbnVuonnC3boDtFbw8Mk.jpg?scale-down-to=1024\"},className:\"framer-126lcv4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"O0J6iMHJP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({uUSQNkIGP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:2240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12+(((componentViewport?.height||199)-24-175)/2+0+0)+10+0+0),pixelHeight:3712,pixelWidth:5568,src:\"https://framerusercontent.com/images/iwNXp5FbnVuonnC3boDtFbw8Mk.jpg?scale-down-to=1024\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1qlx7\",\"data-framer-name\":\"Information\",layoutDependency:layoutDependency,layoutId:\"bnij0agom\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-41ksdc\",\"data-framer-name\":\"Name & Price\",layoutDependency:layoutDependency,layoutId:\"jGMVUCEUm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20)))\"},children:\"Branding Web Flow\"})}),className:\"framer-1m8xx2t\",fonts:[\"GF;Inter Tight-600\"],layoutDependency:layoutDependency,layoutId:\"ITruXw65_\",style:{\"--extracted-r6o4lv\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-te0c7x\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"v3owJaRrP\",style:{backgroundColor:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.0181), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pkadf6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"c51IXSbfU\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:2240,pixelHeight:4e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/SeMPT8BAdxiZtn9UOhs0qffw4A.jpg?scale-down-to=1024\"},className:\"framer-uz7i47\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"z89xLOv2t\",...addPropertyOverrides({CoRQbNpsI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:2240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12+(((componentViewport?.height||199)-24-175)/2+0+0)+10+0+0),pixelHeight:4e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/SeMPT8BAdxiZtn9UOhs0qffw4A.jpg?scale-down-to=1024\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-txzo9b\",\"data-framer-name\":\"Information\",layoutDependency:layoutDependency,layoutId:\"XLBIL6WUC\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9qv89q\",\"data-framer-name\":\"Name & Price\",layoutDependency:layoutDependency,layoutId:\"QIZxzkqDN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20)))\"},children:\"Mobile App Branding\"})}),className:\"framer-1d8hjsw\",fonts:[\"GF;Inter Tight-600\"],layoutDependency:layoutDependency,layoutId:\"FY2A6fP3V\",style:{\"--extracted-r6o4lv\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lvhk5.framer-125btun, .framer-Lvhk5 .framer-125btun { display: block; }\",\".framer-Lvhk5.framer-6cdtim { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 200px; }\",\".framer-Lvhk5 .framer-spodag, .framer-Lvhk5 .framer-o8maee, .framer-Lvhk5 .framer-te0c7x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Lvhk5 .framer-ylhqou, .framer-Lvhk5 .framer-90s0t, .framer-Lvhk5 .framer-1pkadf6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lvhk5 .framer-1pu1ksi { aspect-ratio: 1.3 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 1px; }\",\".framer-Lvhk5 .framer-u2jp10 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lvhk5 .framer-1yvthwi, .framer-Lvhk5 .framer-1m8xx2t, .framer-Lvhk5 .framer-1d8hjsw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Lvhk5 .framer-126lcv4, .framer-Lvhk5 .framer-uz7i47 { aspect-ratio: 1.3 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 154px); overflow: visible; position: relative; width: 1px; }\",\".framer-Lvhk5 .framer-1m1qlx7, .framer-Lvhk5 .framer-txzo9b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lvhk5 .framer-41ksdc, .framer-Lvhk5 .framer-9qv89q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Lvhk5.framer-6cdtim, .framer-Lvhk5 .framer-spodag, .framer-Lvhk5 .framer-ylhqou, .framer-Lvhk5 .framer-u2jp10, .framer-Lvhk5 .framer-o8maee, .framer-Lvhk5 .framer-90s0t, .framer-Lvhk5 .framer-1m1qlx7, .framer-Lvhk5 .framer-te0c7x, .framer-Lvhk5 .framer-1pkadf6, .framer-Lvhk5 .framer-txzo9b { gap: 0px; } .framer-Lvhk5.framer-6cdtim > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Lvhk5.framer-6cdtim > :first-child, .framer-Lvhk5 .framer-spodag > :first-child, .framer-Lvhk5 .framer-u2jp10 > :first-child, .framer-Lvhk5 .framer-o8maee > :first-child, .framer-Lvhk5 .framer-1m1qlx7 > :first-child, .framer-Lvhk5 .framer-te0c7x > :first-child, .framer-Lvhk5 .framer-txzo9b > :first-child { margin-top: 0px; } .framer-Lvhk5.framer-6cdtim > :last-child, .framer-Lvhk5 .framer-spodag > :last-child, .framer-Lvhk5 .framer-u2jp10 > :last-child, .framer-Lvhk5 .framer-o8maee > :last-child, .framer-Lvhk5 .framer-1m1qlx7 > :last-child, .framer-Lvhk5 .framer-te0c7x > :last-child, .framer-Lvhk5 .framer-txzo9b > :last-child { margin-bottom: 0px; } .framer-Lvhk5 .framer-spodag > *, .framer-Lvhk5 .framer-o8maee > *, .framer-Lvhk5 .framer-te0c7x > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-Lvhk5 .framer-ylhqou > *, .framer-Lvhk5 .framer-90s0t > *, .framer-Lvhk5 .framer-1pkadf6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Lvhk5 .framer-ylhqou > :first-child, .framer-Lvhk5 .framer-90s0t > :first-child, .framer-Lvhk5 .framer-1pkadf6 > :first-child { margin-left: 0px; } .framer-Lvhk5 .framer-ylhqou > :last-child, .framer-Lvhk5 .framer-90s0t > :last-child, .framer-Lvhk5 .framer-1pkadf6 > :last-child { margin-right: 0px; } .framer-Lvhk5 .framer-u2jp10 > *, .framer-Lvhk5 .framer-1m1qlx7 > *, .framer-Lvhk5 .framer-txzo9b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-Lvhk5.framer-v-b95l7c .framer-126lcv4, .framer-Lvhk5.framer-v-j2pth0 .framer-uz7i47 { height: var(--framer-aspect-ratio-supported, 120px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 199\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uUSQNkIGP\":{\"layout\":[\"fixed\",\"auto\"]},\"CoRQbNpsI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC3ydHbDVC=withCSS(Component,css,\"framer-Lvhk5\");export default FramerC3ydHbDVC;FramerC3ydHbDVC.displayName=\"Cards\";FramerC3ydHbDVC.defaultProps={height:199,width:200};addPropertyControls(FramerC3ydHbDVC,{variant:{options:[\"tpNtu7eLx\",\"uUSQNkIGP\",\"CoRQbNpsI\"],optionTitles:[\"Product Card 1\",\"Product Card 2\",\"Product Card 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerC3ydHbDVC,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC3ydHbDVC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uUSQNkIGP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CoRQbNpsI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"199\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C3ydHbDVC.map", "// Generated by Framer (bdfb9a2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"JpA4D8_9J\",\"iDKw4ek_E\",\"wHyk6jz45\"];const variantClassNames={iDKw4ek_E:\"framer-v-681m0p\",JpA4D8_9J:\"framer-v-sotxwg\",wHyk6jz45:\"framer-v-1chok0t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Variant 1\":\"JpA4D8_9J\",\"Variant 2\":\"iDKw4ek_E\",\"Variant 3\":\"wHyk6jz45\"};const transitions={default:{damping:60,delay:0,duration:0,ease:[0,0,1,1],mass:1,stiffness:500,type:\"tween\"},iDKw4ek_E:{damping:80,delay:0,duration:1,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"tween\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"JpA4D8_9J\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"JpA4D8_9J\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1ium6q4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iDKw4ek_E\"),900);});const onAppear16yfd7e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"wHyk6jz45\"),1e3);});const onAppear7a1474=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"JpA4D8_9J\"),100);});useOnVariantChange(baseVariant,{default:onAppear1ium6q4,iDKw4ek_E:onAppear16yfd7e,wHyk6jz45:onAppear7a1474});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-ssL1h\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-sotxwg\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JpA4D8_9J\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({iDKw4ek_E:{\"data-framer-name\":\"Variant 2\"},wHyk6jz45:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-15e6j7s\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"ZNvMfhPpn\",style:{background:\"linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, hsl(0, 0%, 100%) 100%)\"},transition:transition})})})});});const css=['.framer-ssL1h [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ssL1h .framer-1i8g7nl { display: block; }\",\".framer-ssL1h .framer-sotxwg { height: 34px; overflow: hidden; position: relative; width: 234px; }\",\".framer-ssL1h .framer-15e6j7s { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: -70px; top: 0px; width: 70px; }\",\".framer-ssL1h.framer-v-681m0p .framer-15e6j7s { left: -70px; right: unset; }\",\".framer-ssL1h.framer-v-1chok0t .framer-15e6j7s { bottom: unset; height: 1px; left: -70px; right: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 234\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"iDKw4ek_E\":{\"layout\":[\"fixed\",\"fixed\"]},\"wHyk6jz45\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerJgOnmcTtx=withCSS(Component,css,\"framer-ssL1h\");export default FramerJgOnmcTtx;FramerJgOnmcTtx.displayName=\"Shimmer Bottom\";FramerJgOnmcTtx.defaultProps={height:34,width:234};addPropertyControls(FramerJgOnmcTtx,{variant:{options:[\"JpA4D8_9J\",\"iDKw4ek_E\",\"wHyk6jz45\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJgOnmcTtx,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJgOnmcTtx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iDKw4ek_E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wHyk6jz45\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"34\",\"framerIntrinsicWidth\":\"234\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JgOnmcTtx.map", "// Generated by Framer (10960d4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"nN_q8ZDPM\",\"i8cu6MLy4\",\"bIb70LeeG\"];const serializationHash=\"framer-qQP55\";const variantClassNames={bIb70LeeG:\"framer-v-1b1bsf1\",i8cu6MLy4:\"framer-v-1nlw66n\",nN_q8ZDPM:\"framer-v-1ketd9g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"},i8cu6MLy4:{delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"nN_q8ZDPM\",\"Variant 2\":\"i8cu6MLy4\",\"Variant 3\":\"bIb70LeeG\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"nN_q8ZDPM\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"nN_q8ZDPM\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearwhxyi6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"i8cu6MLy4\"),300);});const onAppear1rt3jl6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bIb70LeeG\"),1400);});const onAppear1gsqn2b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nN_q8ZDPM\"),300);});useOnVariantChange(baseVariant,{bIb70LeeG:onAppear1gsqn2b,default:onAppearwhxyi6,i8cu6MLy4:onAppear1rt3jl6});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-qQP55\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-1ketd9g\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nN_q8ZDPM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bIb70LeeG:{\"data-framer-name\":\"Variant 3\"},i8cu6MLy4:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d4r5sq\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"NMje9lPCi\",style:{background:\"linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, hsl(0, 0%, 100%) 100%)\"}})})})})});});const css=['.framer-qQP55 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qQP55 .framer-uo0848 { display: block; }\",\".framer-qQP55 .framer-1ketd9g { height: 34px; overflow: hidden; position: relative; width: 234px; }\",\".framer-qQP55 .framer-1d4r5sq { bottom: 0px; flex: none; left: -70px; overflow: hidden; position: absolute; top: 0px; width: 70px; }\",\".framer-qQP55.framer-v-1nlw66n .framer-1d4r5sq { left: unset; right: -70px; }\",\".framer-qQP55.framer-v-1b1bsf1 .framer-1d4r5sq { bottom: unset; height: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 234\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"i8cu6MLy4\":{\"layout\":[\"fixed\",\"fixed\"]},\"bIb70LeeG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n */const FramerFyWNZdsMO=withCSS(Component,css,\"framer-qQP55\");export default FramerFyWNZdsMO;FramerFyWNZdsMO.displayName=\"Shimmer Top\";FramerFyWNZdsMO.defaultProps={height:34,width:234};addPropertyControls(FramerFyWNZdsMO,{variant:{options:[\"nN_q8ZDPM\",\"i8cu6MLy4\",\"bIb70LeeG\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFyWNZdsMO,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFyWNZdsMO\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"234\",\"framerIntrinsicHeight\":\"34\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i8cu6MLy4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bIb70LeeG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FyWNZdsMO.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ShimmerBottom from\"https://framerusercontent.com/modules/y6FIjncBmrKUxfPpKpWW/5oLg292yPWU6lp8LpTQg/JgOnmcTtx.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3GJaAoht9zjCI8fs1TI5/hg5Fi44P15EfQ4tyvkZY/gAXV4PV23.js\";import ShimmerTop from\"https://framerusercontent.com/modules/A3voofOdDgQWiqHZ907o/ENqH6YzZaaJrpIba0Zfm/FyWNZdsMO.js\";const MotionDivWithFX=withFX(motion.div);const ShimmerBottomFonts=getFonts(ShimmerBottom);const ShimmerTopFonts=getFonts(ShimmerTop);const MotionAWithFX=withFX(motion.a);const cycleOrder=[\"sq4N93447\",\"Wh7D2yWON\",\"fIUsVgO_M\",\"baxmeZXZI\"];const serializationHash=\"framer-EOWMK\";const variantClassNames={baxmeZXZI:\"framer-v-67hr8o\",fIUsVgO_M:\"framer-v-1hy84nm\",sq4N93447:\"framer-v-hazlxt\",Wh7D2yWON:\"framer-v-yhsce4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:100,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation1={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop (Hover)\":\"Wh7D2yWON\",\"Tablet (Hover)\":\"baxmeZXZI\",Desktop:\"sq4N93447\",Tablet:\"fIUsVgO_M\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,fRpVlbSPr:link!==null&&link!==void 0?link:props.fRpVlbSPr,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"sq4N93447\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fRpVlbSPr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sq4N93447\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1kisdr2=activeVariantCallback(async(...args)=>{setVariant(\"Wh7D2yWON\");});const onMouseLeave1wb39fx=activeVariantCallback(async(...args)=>{setVariant(\"sq4N93447\");});const onMouseEnterrors53=activeVariantCallback(async(...args)=>{setVariant(\"baxmeZXZI\");});const onMouseLeave115ytes=activeVariantCallback(async(...args)=>{setVariant(\"fIUsVgO_M\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hazlxt\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sq4N93447\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({baxmeZXZI:{\"data-framer-name\":\"Tablet (Hover)\"},fIUsVgO_M:{\"data-framer-name\":\"Tablet\"},Wh7D2yWON:{\"data-framer-name\":\"Desktop (Hover)\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-b41zct\",\"data-framer-name\":\"Outer Glow\",layoutDependency:layoutDependency,layoutId:\"TQgjKn5d6\",style:{borderBottomLeftRadius:34,borderBottomRightRadius:34,borderTopLeftRadius:34,borderTopRightRadius:34,boxShadow:\"0px 0px 0px 0px rgba(146, 56, 255, 0)\"},variants:{baxmeZXZI:{boxShadow:\"0px 0px 280px 60px rgba(255, 13, 178, 0.4)\"},Wh7D2yWON:{boxShadow:\"0px 0px 280px 60px rgba(255, 13, 178, 0.4)\"}}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:0,className:\"framer-84nbzg\",\"data-framer-name\":\"Focus Ring\",layoutDependency:layoutDependency,layoutId:\"HqZunQi1i\",style:{background:\"radial-gradient(68.5% 119.73800000000001% at 49.1% 100%, #af78f5 0%, #7438ff 100%)\",borderBottomLeftRadius:39,borderBottomRightRadius:39,borderTopLeftRadius:39,borderTopRightRadius:39,boxShadow:\"0px 0px 0px 0px rgba(15, 7, 32, 0)\",opacity:0},variants:{baxmeZXZI:{background:\"radial-gradient(68.5% 119.73800000000001% at 49.1% 100%, rgb(255, 171, 61) 0%, rgb(255, 134, 13) 19.36936936936937%, rgb(255, 8, 82) 65.76576576576578%, rgb(255, 56, 169) 100%)\",boxShadow:\"0px 16px 32px 0px rgb(15, 7, 32)\",opacity:.5},Wh7D2yWON:{background:\"radial-gradient(68.5% 119.73800000000001% at 49.1% 100%, rgb(255, 171, 61) 0%, rgb(255, 134, 13) 19.36936936936937%, rgb(255, 8, 82) 65.76576576576578%, rgb(255, 56, 169) 100%)\",boxShadow:\"0px 16px 32px 0px rgb(15, 7, 32)\",opacity:.5}},...addPropertyOverrides({baxmeZXZI:{__targetOpacity:.5},Wh7D2yWON:{__targetOpacity:.5}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{nodeId:\"pmYltV1NK\",...addPropertyOverrides({baxmeZXZI:{href:fRpVlbSPr,openInNewTab:false,smoothScroll:true},Wh7D2yWON:{href:fRpVlbSPr,openInNewTab:false,smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1eyzmlb framer-1acxhqb\",\"data-border\":true,\"data-framer-name\":\"Button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pmYltV1NK\",onMouseEnter:onMouseEnter1kisdr2,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:34,borderBottomRightRadius:34,borderTopLeftRadius:34,borderTopRightRadius:34,boxShadow:\"0px 0px 0px 0px rgba(32, 8, 73, 0), 0px 0px 0px 0px rgba(115, 59, 247, 0), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2), 0px 1px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(91, 61, 199, 0)\"},transformTemplate:transformTemplate1,variants:{baxmeZXZI:{\"--border-bottom-width\":\"1px\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",background:\"linear-gradient(180deg, rgb(250, 0, 87) 0%, rgb(252, 0, 252) 26.126126126126124%, rgb(255, 115, 131) 50.45045045045045%, rgb(255, 219, 74) 73.42342342342343%, rgb(253, 204, 255) 100%)\",boxShadow:\"0px 16px 32px 0px hsla(262, 80%, 16%, 0.3), 0px 16px 32px 0px rgba(255, 13, 178, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2), 0px 1px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 120px 0px rgb(255, 171, 135)\"},Wh7D2yWON:{\"--border-bottom-width\":\"1px\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",background:\"linear-gradient(180deg, rgb(250, 0, 87) 0%, rgb(252, 0, 252) 26.126126126126124%, rgb(255, 115, 131) 50.45045045045045%, rgb(255, 219, 74) 73.42342342342343%, rgb(253, 204, 255) 100%)\",boxShadow:\"0px 16px 32px 0px hsla(262, 80%, 16%, 0.3), 0px 16px 32px 0px rgba(255, 13, 178, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2), 0px 1px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 120px 0px rgb(255, 171, 135)\"}},...addPropertyOverrides({baxmeZXZI:{onMouseEnter:undefined,onMouseLeave:onMouseLeave115ytes},fIUsVgO_M:{onMouseEnter:onMouseEnterrors53,transformTemplate:undefined},Wh7D2yWON:{onMouseEnter:undefined,onMouseLeave:onMouseLeave1wb39fx}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dm444c-container\",layoutDependency:layoutDependency,layoutId:\"nT2NW0C6n-container\",style:{opacity:0},variants:{baxmeZXZI:{opacity:1},Wh7D2yWON:{opacity:1}},children:/*#__PURE__*/_jsx(ShimmerBottom,{height:\"100%\",id:\"nT2NW0C6n\",layoutId:\"nT2NW0C6n\",style:{height:\"100%\",width:\"100%\"},variant:\"JpA4D8_9J\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-etn4ey-container\",layoutDependency:layoutDependency,layoutId:\"cudaofJ31-container\",style:{opacity:0},variants:{baxmeZXZI:{opacity:1},Wh7D2yWON:{opacity:1}},children:/*#__PURE__*/_jsx(ShimmerTop,{height:\"100%\",id:\"cudaofJ31\",layoutId:\"cudaofJ31\",style:{height:\"100%\",width:\"100%\"},variant:\"nN_q8ZDPM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bg21lt\",\"data-framer-name\":\"Inner Fill\",layoutDependency:layoutDependency,layoutId:\"ZYtFzkTPZ\",style:{background:\"linear-gradient(180deg, rgb(46, 46, 46) 0%, rgb(46, 46, 46) 100%)\",backgroundColor:\"rgb(46, 46, 46)\",borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},variants:{baxmeZXZI:{background:\"linear-gradient(180deg, rgb(255, 20, 56) 0%, rgb(255, 10, 133) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},Wh7D2yWON:{background:\"linear-gradient(180deg, rgb(255, 20, 56) 0%, rgb(255, 10, 133) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:0,className:\"framer-1fpc57u\",\"data-framer-name\":\"Inner Glow\",layoutDependency:layoutDependency,layoutId:\"ZtxOEP18g\",style:{background:\"radial-gradient(50% 50% at 50% 50%, hsl(271, 96%, 75%) 0%, rgba(118, 58, 254, 0) 100%)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",opacity:0},variants:{baxmeZXZI:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 8, 177) 0%, rgba(118, 58, 254, 0) 100%)\",opacity:1},Wh7D2yWON:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 8, 177) 0%, rgba(118, 58, 254, 0) 100%)\",opacity:1}},...addPropertyOverrides({baxmeZXZI:{__targetOpacity:1},Wh7D2yWON:{__targetOpacity:1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255)))\"},children:\"Be a Pilot with a CoPilot\"})}),className:\"framer-qbwj7b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D5MD8rB2T\",style:{\"--extracted-r6o4lv\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({baxmeZXZI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%)\"},children:\"Be a Pilot with a CoPilot\"})})})},Wh7D2yWON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%)\"},children:\"Be a Pilot with a CoPilot\"})})})}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EOWMK.framer-1acxhqb, .framer-EOWMK .framer-1acxhqb { display: block; }\",\".framer-EOWMK.framer-hazlxt { height: 98px; overflow: visible; position: relative; width: 350px; }\",\".framer-EOWMK .framer-b41zct { flex: none; height: 48px; left: calc(49.83333333333336% - 300px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 48px / 2); width: 300px; }\",\".framer-EOWMK .framer-84nbzg { flex: none; height: 54px; left: calc(50.00000000000002% - 306px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 54px / 2); width: 306px; }\",\".framer-EOWMK .framer-1eyzmlb { aspect-ratio: 6.25 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EOWMK .framer-1dm444c-container { bottom: 0px; flex: none; height: 34px; left: 0px; position: absolute; right: 0px; }\",\".framer-EOWMK .framer-etn4ey-container { flex: none; height: 34px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-EOWMK .framer-1bg21lt { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-EOWMK .framer-1fpc57u { bottom: -54px; flex: none; height: 103px; left: -9px; overflow: hidden; position: absolute; right: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EOWMK .framer-qbwj7b { -webkit-user-select: none; cursor: pointer; flex: none; height: auto; left: 50%; overflow: visible; pointer-events: none; position: absolute; top: 50%; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-EOWMK.framer-v-yhsce4 .framer-1eyzmlb { text-decoration: none; }\",\".framer-EOWMK.framer-v-yhsce4 .framer-1dm444c-container, .framer-EOWMK.framer-v-67hr8o .framer-1dm444c-container { bottom: -5px; height: 24px; }\",\".framer-EOWMK.framer-v-yhsce4 .framer-etn4ey-container, .framer-EOWMK.framer-v-67hr8o .framer-etn4ey-container { height: 24px; top: -8px; }\",\".framer-EOWMK.framer-v-yhsce4 .framer-1bg21lt, .framer-EOWMK.framer-v-67hr8o .framer-1bg21lt { bottom: 2px; overflow: hidden; top: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EOWMK.framer-v-yhsce4 .framer-1fpc57u, .framer-EOWMK.framer-v-67hr8o .framer-1fpc57u { bottom: -4px; height: unset; left: 0px; right: 0px; top: 0px; }\",\".framer-EOWMK.framer-v-1hy84nm .framer-b41zct, .framer-EOWMK.framer-v-67hr8o .framer-b41zct { left: calc(49.83333333333336% - 200px / 2); width: 200px; }\",\".framer-EOWMK.framer-v-1hy84nm .framer-84nbzg { left: calc(50.00000000000002% - 300px / 2); width: 300px; }\",\".framer-EOWMK.framer-v-1hy84nm .framer-1eyzmlb { aspect-ratio: unset; height: 48px; left: calc(49.83333333333336% - 300px / 2); top: calc(50.00000000000002% - 48px / 2); }\",\".framer-EOWMK.framer-v-1hy84nm .framer-1dm444c-container, .framer-EOWMK.framer-v-1hy84nm .framer-etn4ey-container, .framer-EOWMK.framer-v-1hy84nm .framer-1bg21lt { right: -100px; }\",\".framer-EOWMK.framer-v-67hr8o .framer-84nbzg { left: calc(50.00000000000002% - 206px / 2); width: 206px; }\",\".framer-EOWMK.framer-v-67hr8o .framer-1eyzmlb { aspect-ratio: 4.166666666666667 / 1; text-decoration: none; width: 200px; }\",...sharedStyle.css,'.framer-EOWMK[data-border=\"true\"]::after, .framer-EOWMK [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 98\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wh7D2yWON\":{\"layout\":[\"fixed\",\"fixed\"]},\"fIUsVgO_M\":{\"layout\":[\"fixed\",\"fixed\"]},\"baxmeZXZI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fRpVlbSPr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCQevR49Jp=withCSS(Component,css,\"framer-EOWMK\");export default FramerCQevR49Jp;FramerCQevR49Jp.displayName=\"Glowing Button\";FramerCQevR49Jp.defaultProps={height:98,width:350};addPropertyControls(FramerCQevR49Jp,{variant:{options:[\"sq4N93447\",\"Wh7D2yWON\",\"fIUsVgO_M\",\"baxmeZXZI\"],optionTitles:[\"Desktop\",\"Desktop (Hover)\",\"Tablet\",\"Tablet (Hover)\"],title:\"Variant\",type:ControlType.Enum},fRpVlbSPr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerCQevR49Jp,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ShimmerBottomFonts,...ShimmerTopFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCQevR49Jp\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"fRpVlbSPr\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"350\",\"framerIntrinsicHeight\":\"98\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wh7D2yWON\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fIUsVgO_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"baxmeZXZI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a96673f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"NJl38_xRw\",\"rzUXjG03D\",\"bfBHRkWgd\"];const serializationHash=\"framer-K0JK6\";const variantClassNames={bfBHRkWgd:\"framer-v-1h6d0ka\",NJl38_xRw:\"framer-v-14zgxt6\",rzUXjG03D:\"framer-v-jnejo7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Large Image\":\"NJl38_xRw\",\"Medium Image\":\"rzUXjG03D\",\"Small Image\":\"bfBHRkWgd\"};const getProps=({height,id,image,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,j_lJfiUWA:(_ref=image!==null&&image!==void 0?image:props.j_lJfiUWA)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/TvRymMb9eE6gexPti05pMO8KzfI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TvRymMb9eE6gexPti05pMO8KzfI.png 784w\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"NJl38_xRw\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,j_lJfiUWA,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"NJl38_xRw\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14zgxt6\",className,classNames),\"data-framer-name\":\"Large Image\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"NJl38_xRw\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bfBHRkWgd:{\"data-framer-name\":\"Small Image\"},rzUXjG03D:{\"data-framer-name\":\"Medium Image\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:784,pixelHeight:1024,pixelWidth:784,sizes:\"max(min(392px, 100vw), 0px)\",...toResponsiveImage(j_lJfiUWA)},className:\"framer-1gcicot\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Y01hPbUws\"})})})});});const css=['.framer-K0JK6[data-border=\"true\"]::after, .framer-K0JK6 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K0JK6.framer-3zyc9h, .framer-K0JK6 .framer-3zyc9h { display: block; }\",\".framer-K0JK6.framer-14zgxt6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 512px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 392px; }\",\".framer-K0JK6 .framer-1gcicot { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K0JK6.framer-14zgxt6 { gap: 0px; } .framer-K0JK6.framer-14zgxt6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-K0JK6.framer-14zgxt6 > :first-child { margin-left: 0px; } .framer-K0JK6.framer-14zgxt6 > :last-child { margin-right: 0px; } }\",\".framer-K0JK6.framer-v-jnejo7.framer-14zgxt6 { height: 460px; }\",\".framer-K0JK6.framer-v-1h6d0ka.framer-14zgxt6 { height: 380px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 512\n * @framerIntrinsicWidth 392\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rzUXjG03D\":{\"layout\":[\"fixed\",\"fixed\"]},\"bfBHRkWgd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"j_lJfiUWA\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerTxIxZ9R20=withCSS(Component,css,\"framer-K0JK6\");export default FramerTxIxZ9R20;FramerTxIxZ9R20.displayName=\"Image Box\";FramerTxIxZ9R20.defaultProps={height:512,width:392};addPropertyControls(FramerTxIxZ9R20,{variant:{options:[\"NJl38_xRw\",\"rzUXjG03D\",\"bfBHRkWgd\"],optionTitles:[\"Large Image\",\"Medium Image\",\"Small Image\"],title:\"Variant\",type:ControlType.Enum},j_lJfiUWA:{__defaultAssetReference:\"data:framer/asset-reference,TvRymMb9eE6gexPti05pMO8KzfI.png?originalFilename=about-img1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerTxIxZ9R20,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTxIxZ9R20\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"512\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rzUXjG03D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bfBHRkWgd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"392\",\"framerVariables\":\"{\\\"j_lJfiUWA\\\":\\\"image\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TxIxZ9R20.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ImageBox from\"https://framerusercontent.com/modules/AJPxwOIviTJhmWfNy8C1/U2cTVMoSqi9sLZaPK55U/TxIxZ9R20.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";const ImageBoxFonts=getFonts(ImageBox);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-NmNRC\";const variantClassNames={Tkexp4FY7:\"framer-v-1uf5ue9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Tkexp4FY7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1uf5ue9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Tkexp4FY7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ffioi-container\",layoutDependency:layoutDependency,layoutId:\"oA0Z3L2gk-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:24,height:\"100%\",hoverFactor:.5,id:\"oA0Z3L2gk\",layoutId:\"oA0Z3L2gk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-npaf91-container\",layoutDependency:layoutDependency,layoutId:\"BEku1fT4r-container\",children:/*#__PURE__*/_jsx(ImageBox,{height:\"100%\",id:\"BEku1fT4r\",j_lJfiUWA:addImageAlt({src:\"https://framerusercontent.com/images/Xinn1Lxi2AxV6d8op8OUGEVic0.webp\",srcSet:\"https://framerusercontent.com/images/Xinn1Lxi2AxV6d8op8OUGEVic0.webp?scale-down-to=1024 1000w,https://framerusercontent.com/images/Xinn1Lxi2AxV6d8op8OUGEVic0.webp 1504w\"},\"\"),layoutId:\"BEku1fT4r\",style:{height:\"100%\",width:\"100%\"},variant:\"NJl38_xRw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11x407x-container\",layoutDependency:layoutDependency,layoutId:\"Ig3GYoJ68-container\",children:/*#__PURE__*/_jsx(ImageBox,{height:\"100%\",id:\"Ig3GYoJ68\",j_lJfiUWA:addImageAlt({src:\"https://framerusercontent.com/images/qIoE4laBAjVejd4fJTlsSyJf7Uc.webp\",srcSet:\"https://framerusercontent.com/images/qIoE4laBAjVejd4fJTlsSyJf7Uc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qIoE4laBAjVejd4fJTlsSyJf7Uc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qIoE4laBAjVejd4fJTlsSyJf7Uc.webp 2048w\"},\"\"),layoutId:\"Ig3GYoJ68\",style:{height:\"100%\",width:\"100%\"},variant:\"rzUXjG03D\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i4vt4a-container\",layoutDependency:layoutDependency,layoutId:\"X4_1KNQ4O-container\",children:/*#__PURE__*/_jsx(ImageBox,{height:\"100%\",id:\"X4_1KNQ4O\",j_lJfiUWA:addImageAlt({src:\"https://framerusercontent.com/images/97xCYGanYF2o1s7tiYiuQZOrrc.webp\",srcSet:\"https://framerusercontent.com/images/97xCYGanYF2o1s7tiYiuQZOrrc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/97xCYGanYF2o1s7tiYiuQZOrrc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/97xCYGanYF2o1s7tiYiuQZOrrc.webp 2048w\"},\"\"),layoutId:\"X4_1KNQ4O\",style:{height:\"100%\",width:\"100%\"},variant:\"bfBHRkWgd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ed3hn-container\",layoutDependency:layoutDependency,layoutId:\"xoId7i81h-container\",children:/*#__PURE__*/_jsx(ImageBox,{height:\"100%\",id:\"xoId7i81h\",j_lJfiUWA:addImageAlt({src:\"https://framerusercontent.com/images/vO7d92oPZ0li5Ic5TBAzRu7lF4.webp\",srcSet:\"https://framerusercontent.com/images/vO7d92oPZ0li5Ic5TBAzRu7lF4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vO7d92oPZ0li5Ic5TBAzRu7lF4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vO7d92oPZ0li5Ic5TBAzRu7lF4.webp 1504w\"},\"\"),layoutId:\"xoId7i81h\",style:{height:\"100%\",width:\"100%\"},variant:\"NJl38_xRw\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NmNRC.framer-s11v6o, .framer-NmNRC .framer-s11v6o { display: block; }\",\".framer-NmNRC.framer-1uf5ue9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-NmNRC .framer-12ffioi-container { flex: 1 0 0px; height: 530px; position: relative; width: 1px; }\",\".framer-NmNRC .framer-npaf91-container, .framer-NmNRC .framer-11x407x-container, .framer-NmNRC .framer-1i4vt4a-container, .framer-NmNRC .framer-7ed3hn-container { height: 413px; position: relative; width: 392px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NmNRC.framer-1uf5ue9 { gap: 0px; } .framer-NmNRC.framer-1uf5ue9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-NmNRC.framer-1uf5ue9 > :first-child { margin-left: 0px; } .framer-NmNRC.framer-1uf5ue9 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 530\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKxbC4e4FX=withCSS(Component,css,\"framer-NmNRC\");export default FramerKxbC4e4FX;FramerKxbC4e4FX.displayName=\"Image Ticker\";FramerKxbC4e4FX.defaultProps={height:530,width:1440};addFonts(FramerKxbC4e4FX,[{explicitInter:true,fonts:[]},...ImageBoxFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKxbC4e4FX\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"530\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KxbC4e4FX.map", "// Generated by Framer (6266459)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-tSDTt .framer-styles-preset-19lg6cu:not(.rich-text-wrapper), .framer-tSDTt .framer-styles-preset-19lg6cu.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-tSDTt\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SliderTestimonialBlock from\"https://framerusercontent.com/modules/5G4rYQe4ky6JT8rAB45g/OsThI6ju5nRjda70DD0c/JbmqOAAh_.js\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import CardTestimonial from\"https://framerusercontent.com/modules/kfosZsyMdLXfME9ArNaK/5DmDl9DvxZwJU1uW8i0l/GNvU9Qirz.js\";import BrandTicker from\"https://framerusercontent.com/modules/kPVTlwP1tuQ0P2Y5nVOb/GL0Rj0m0IeSCQgXvGcfD/SRl9Yase3.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import CardFeature from\"https://framerusercontent.com/modules/mQzu3GRLP9wlC3auf2d0/1rmStXIVelnj19Km6r8z/rV0WvUeYt.js\";import Memoji from\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\";import AnimatedIllustration01 from\"https://framerusercontent.com/modules/q06UUu8zdMJIYcgx86w7/Lo6IeTNzuJVzvfuD8ZuJ/fODiDv3UW.js\";import Cards from\"#framer/local/canvasComponent/C3ydHbDVC/C3ydHbDVC.js\";import GlowingButton from\"#framer/local/canvasComponent/CQevR49Jp/CQevR49Jp.js\";import WorkCard from\"#framer/local/canvasComponent/DFu8RQ93Z/DFu8RQ93Z.js\";import FooterNew from\"#framer/local/canvasComponent/GmXyBUjOE/GmXyBUjOE.js\";import BlogCard from\"#framer/local/canvasComponent/hlqozoj6D/hlqozoj6D.js\";import ImageTicker from\"#framer/local/canvasComponent/KxbC4e4FX/KxbC4e4FX.js\";import TextCycle from\"#framer/local/canvasComponent/M4w01zU55/M4w01zU55.js\";import Button2 from\"#framer/local/canvasComponent/sxwwlQ42X/sxwwlQ42X.js\";import PartnerLogos from\"#framer/local/canvasComponent/Wvk4aPTHr/Wvk4aPTHr.js\";import Header from\"#framer/local/canvasComponent/YDQc93oh7/YDQc93oh7.js\";import CaseStudies from\"#framer/local/collection/IlTNCULTU/IlTNCULTU.js\";import Insights,{enumToDisplayNameFunctions}from\"#framer/local/collection/q9eRUDnKi/q9eRUDnKi.js\";import*as sharedStyle from\"#framer/local/css/BRyT8PKiE/BRyT8PKiE.js\";import*as sharedStyle1 from\"#framer/local/css/gAXV4PV23/gAXV4PV23.js\";import*as sharedStyle3 from\"#framer/local/css/IOEcq6nbj/IOEcq6nbj.js\";import*as sharedStyle9 from\"#framer/local/css/k44p3jO_l/k44p3jO_l.js\";import*as sharedStyle7 from\"#framer/local/css/Ld3XZnCzd/Ld3XZnCzd.js\";import*as sharedStyle6 from\"#framer/local/css/OD35kBoCL/OD35kBoCL.js\";import*as sharedStyle10 from\"#framer/local/css/OqmRRFH9F/OqmRRFH9F.js\";import*as sharedStyle4 from\"#framer/local/css/QelX6IwCS/QelX6IwCS.js\";import*as sharedStyle8 from\"#framer/local/css/sVPNSz4GR/sVPNSz4GR.js\";import*as sharedStyle5 from\"#framer/local/css/vA25Rl_61/vA25Rl_61.js\";import*as sharedStyle2 from\"#framer/local/css/YenLnnXAf/YenLnnXAf.js\";import metadataProvider from\"#framer/local/webPageMetadata/hmKhdD_wU/hmKhdD_wU.js\";const HeaderFonts=getFonts(Header);const TextCycleFonts=getFonts(TextCycle);const Button2Fonts=getFonts(Button2);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const ImageTickerFonts=getFonts(ImageTicker);const MotionDivWithFX=withFX(motion.div);const GlowingButtonFonts=getFonts(GlowingButton);const ContainerWithFX=withFX(Container);const MaterialFonts=getFonts(Material);const FeatherFonts=getFonts(Feather);const MemojiFonts=getFonts(Memoji);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const CardsFonts=getFonts(Cards);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const PartnerLogosFonts=getFonts(PartnerLogos);const WorkCardFonts=getFonts(WorkCard);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const BrandTickerFonts=getFonts(BrandTicker);const AnimatedIllustration01Fonts=getFonts(AnimatedIllustration01);const CardFeatureFonts=getFonts(CardFeature);const SliderTestimonialBlockFonts=getFonts(SliderTestimonialBlock);const CardTestimonialFonts=getFonts(CardTestimonial);const BlogCardFonts=getFonts(BlogCard);const FooterNewFonts=getFonts(FooterNew);const breakpoints={nN51sTC9a:\"(min-width: 992px) and (max-width: 1439px)\",qotNqqVtL:\"(max-width: 767px)\",XXkSNY3Hg:\"(min-width: 768px) and (max-width: 991px)\",zK0LzOV0D:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-cOCUB\";const variantClassNames={nN51sTC9a:\"framer-v-4wz2p6\",qotNqqVtL:\"framer-v-sxuywj\",XXkSNY3Hg:\"framer-v-16gbzkb\",zK0LzOV0D:\"framer-v-172g3ra\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:60,delay:.6,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition5={damping:30,delay:0,mass:2,stiffness:100,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:60};const transition6={damping:60,delay:0,mass:.8,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:50};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:380,y:0};const transition7={damping:35,delay:.3,mass:1,stiffness:179,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,transition:transition7,x:380,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition8={damping:73,delay:.7,mass:1,stiffness:306,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-360,y:0};const transition9={damping:37,delay:.65,mass:1,stiffness:158,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:-360,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-250,y:0};const transition10={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:-250,y:0};const transition11={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,y:-8};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const animation14={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition12={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition13={damping:30,delay:.4,mass:2,stiffness:100,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:120};const transition14={delay:0,duration:.35,ease:[.44,0,.5,1],type:\"tween\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,y:-20};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition15={damping:40,delay:0,mass:1.1,stiffness:150,type:\"spring\"};const transition16={damping:40,delay:.2,mass:1.1,stiffness:150,type:\"spring\"};const transition17={damping:40,delay:.4,mass:1.1,stiffness:150,type:\"spring\"};const transition18={damping:40,delay:.6,mass:1.1,stiffness:150,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition19={damping:40,delay:.8,mass:1.1,stiffness:150,type:\"spring\"};const transition20={damping:40,delay:1,mass:1.1,stiffness:150,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={Desktop:\"zK0LzOV0D\",Laptop:\"nN51sTC9a\",Phone:\"qotNqqVtL\",Tablet:\"XXkSNY3Hg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zK0LzOV0D\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,eqfqUBAEOiTncmlxoo,VZ8KJACVNiTncmlxoo,y_wIuADU_iTncmlxoo,kfjd9Ya4_iTncmlxoo,lL7OOh74TiTncmlxoo,Ia_oYNfo3iTncmlxoo,idiTncmlxoo,a75gLUnJIdXLdIu0uC,XP4L96gRTdXLdIu0uC,gF2AE4f22dXLdIu0uC,qZpNoEtDJdXLdIu0uC,iddXLdIu0uC,...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,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"UXf13jjOc\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"pvyJvQjur\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"FKX2qdzD0\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"a7OhrQIqE\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"MLwwlGOie\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"qotNqqVtL\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"qotNqqVtL\")return true;return false;};const elementId5=useRouteElementId(\"rKDTIf2Zn\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zK0LzOV0D\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-172g3ra\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{height:84},qotNqqVtL:{height:84},XXkSNY3Hg:{height:84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10pfsf2-container\",layoutScroll:true,nodeId:\"qsBbblVAZ\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{style:{width:\"100%\"},variant:\"v1l24KrQP\"},qotNqqVtL:{style:{width:\"100%\"},variant:\"v1l24KrQP\"},XXkSNY3Hg:{style:{width:\"100%\"},variant:\"v1l24KrQP\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"qsBbblVAZ\",layoutId:\"qsBbblVAZ\",style:{height:\"100%\",width:\"100%\"},variant:\"vHYyCHGCE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png\",srcSet:\"https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png 2880w\"}},qotNqqVtL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png\",srcSet:\"https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png 2880w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png\",srcSet:\"https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uzpCtuYDgW95T4BOxvHZMRJKE.png 2880w\"},className:\"framer-vw6eev\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ujgs6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mv2xf6\",\"data-framer-name\":\"Hero Section Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-athuzc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sgigkb\",\"data-styles-preset\":\"BRyT8PKiE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"We harbour industry\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sgigkb\",\"data-styles-preset\":\"BRyT8PKiE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"We harbour industry\"})}),className:\"framer-11faudn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1sgigkb\",\"data-styles-preset\":\"BRyT8PKiE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"leading experts for your\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1sgigkb\",\"data-styles-preset\":\"BRyT8PKiE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"leading experts for your\"})}),className:\"framer-uiv7gm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8g91sm\",\"data-framer-name\":\"Text Switch\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+0+0+132.9+0+0+0+0+172.8+11.2},qotNqqVtL:{y:(componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+172.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mpm12v-container\",nodeId:\"VboHD167b\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{Jdc7uHPvt:48},qotNqqVtL:{Jdc7uHPvt:36},XXkSNY3Hg:{Jdc7uHPvt:48}},children:/*#__PURE__*/_jsx(TextCycle,{CjEp5VjhY:\"Blockchain\",gEGKSTDO9:\"Product\",height:\"100%\",id:\"VboHD167b\",Jdc7uHPvt:72,layoutId:\"VboHD167b\",R1wtBsjHx:\"Generative AI\",variant:\"FkdOYCCIx\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1sgigkb\",\"data-styles-preset\":\"BRyT8PKiE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"demands\"})}),className:\"framer-4cr92v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d1yrdz\",\"data-framer-name\":\"Hero Button Area\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"We join forces with dedicated companies who wants to address real human needs. Leveraging our full-cycle digital capabilities, we shape brands, experiences, and products that enrich the lives of peoples every day.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"We join forces with dedicated companies who wants to address real human needs. Leveraging our full-cycle digital capabilities, we shape brands, experiences, and products that enrich the lives of peoples every day.\"})}),className:\"framer-1fp5vas\",\"data-framer-name\":\"We specialize in transforming visions into reality. Explore our work of innovative architectural.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"suCmzpHhM\"},implicitPathVariables:undefined},{href:{webPageId:\"suCmzpHhM\"},implicitPathVariables:undefined},{href:{webPageId:\"suCmzpHhM\"},implicitPathVariables:undefined},{href:{webPageId:\"suCmzpHhM\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+0+0+132.9+0+291.2+0},qotNqqVtL:{y:(componentViewport?.y||0)+0+0+100+0+0+363.2+0+183}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3fwn7q-container\",nodeId:\"gXPfu2KMb\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{fzPQj5vxM:resolvedLinks[1]},qotNqqVtL:{fzPQj5vxM:resolvedLinks[2]},XXkSNY3Hg:{fzPQj5vxM:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button2,{BlJNMfRrN:true,fzPQj5vxM:resolvedLinks[0],height:\"100%\",icFgveKzp:\"arrow-up-right\",id:\"gXPfu2KMb\",layoutId:\"gXPfu2KMb\",qWQ35JEj6:\"Get in touch\",variant:\"jP67CW24r\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nuhjf\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4w3im-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SqMGHbgH_\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"SqMGHbgH_\",isMixedBorderRadius:false,layoutId:\"SqMGHbgH_\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/173CWLh19zIqpGlzdzeabBsZfDQ.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ycn8ip\",\"data-framer-name\":\"About Secton\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qu08is\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yo5cjq\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6dg39u\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Who we are\"})}),className:\"framer-17yr9zy\",\"data-framer-name\":\"FAQS\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Strong products & even stronger partnerships\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Strong products & even stronger partnerships\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Strong products & even stronger partnerships\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Strong products & even stronger partnerships\"})}),className:\"framer-1jli7jx\",\"data-framer-name\":\"Still Have A Question?\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mm5bvl\",\"data-framer-name\":\"Title Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19rgmse\",\"data-styles-preset\":\"QelX6IwCS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7ba9acdf-338f-43d0-9fd7-a40ca1655446, rgb(100, 100, 102))\"},children:\"Our goal is to foster a cultural ecosystem where the growth of the company aligns with the professional growth of the associates.\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19rgmse\",\"data-styles-preset\":\"QelX6IwCS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7ba9acdf-338f-43d0-9fd7-a40ca1655446, rgb(100, 100, 102))\"},children:\"Our goal is to foster a cultural ecosystem where the growth of the company aligns with the professional growth of the associates.\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19rgmse\",\"data-styles-preset\":\"QelX6IwCS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7ba9acdf-338f-43d0-9fd7-a40ca1655446, rgb(100, 100, 102))\"},children:\"Our goal is to foster a cultural ecosystem where the growth of the company aligns with the professional growth of the associates.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19rgmse\",\"data-styles-preset\":\"QelX6IwCS\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-7ba9acdf-338f-43d0-9fd7-a40ca1655446, rgb(100, 100, 102))\"},children:\"Our goal is to foster a cultural ecosystem where the growth of the company aligns with the professional growth of the associates.\"})}),className:\"framer-wjb1rv\",\"data-framer-name\":\"We specialize in transforming visions into reality. Explore our portfolio of innovative architectural and interior design projects crafted with precision.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+710+100+397.2},qotNqqVtL:{height:435,y:(componentViewport?.y||0)+0+768.2+60+357.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-160hs-container\",nodeId:\"LmM8UlMCb\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ImageTicker,{height:\"100%\",id:\"LmM8UlMCb\",layoutId:\"LmM8UlMCb\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pnbdao\",\"data-framer-name\":\"Counter Secton\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p6uniz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-125i69a\",\"data-framer-name\":\"Single Counter\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"376+\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"376+\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"376+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"376+\"})}),className:\"framer-1l8nxq2\",\"data-framer-name\":\"8k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gx56uz\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Projects Collaborated\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Projects Collaborated\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Projects Collaborated\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Projects Collaborated\"})}),className:\"framer-1ob2406\",\"data-framer-name\":\"Interior Projects\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"in last 4 years of Engineering\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"in last 4 years of Engineering\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"in last 4 years of Engineering\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"in last 4 years of Engineering\"})}),className:\"framer-19g0nzd\",\"data-framer-name\":\"Designs we have finished in last 32 years.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pwwgra\",\"data-framer-name\":\"Single Counter\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"67%\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"67%\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"67%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"67%\"})}),className:\"framer-wulm2a\",\"data-framer-name\":\"8k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13nlimt\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Senior Engineers\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Senior Engineers\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Senior Engineers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Senior Engineers\"})}),className:\"framer-t80t6s\",\"data-framer-name\":\"Interior Projects\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"who know how to deliver\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"who know how to deliver\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"who know how to deliver\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"who know how to deliver\"})}),className:\"framer-pbho62\",\"data-framer-name\":\"Designs we have finished in last 32 years.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hh0f3y\",\"data-framer-name\":\"Single Counter\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-351fdcd2-b067-4a02-bc65-1f6aa017123e, rgb(12, 12, 13))\"},children:\"26+ Yrs\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-351fdcd2-b067-4a02-bc65-1f6aa017123e, rgb(12, 12, 13))\"},children:\"26+ Yrs\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-351fdcd2-b067-4a02-bc65-1f6aa017123e, rgb(12, 12, 13))\"},children:\"26+ Yrs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-color\":\"var(--token-351fdcd2-b067-4a02-bc65-1f6aa017123e, rgb(12, 12, 13))\"},children:\"26+ Yrs\"})}),className:\"framer-1vreitb\",\"data-framer-name\":\"8k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106wlb6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Combined Experience\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Combined Experience\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Combined Experience\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Combined Experience\"})}),className:\"framer-sg0zbv\",\"data-framer-name\":\"Interior Projects\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"of our team members\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"of our team members\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"of our team members\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"of our team members\"})}),className:\"framer-1ol6fq3\",\"data-framer-name\":\"Designs we have finished in last 32 years.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15mr5sf\",\"data-framer-name\":\"Single Counter\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50e7fb22-cf1e-4d87-8975-af8ed0eefe92, rgb(54, 54, 54))\"},children:\"99%\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50e7fb22-cf1e-4d87-8975-af8ed0eefe92, rgb(54, 54, 54))\"},children:\"99%\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50e7fb22-cf1e-4d87-8975-af8ed0eefe92, rgb(54, 54, 54))\"},children:\"99%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19lg6cu\",\"data-styles-preset\":\"vA25Rl_61\",style:{\"--framer-text-color\":\"var(--token-50e7fb22-cf1e-4d87-8975-af8ed0eefe92, rgb(54, 54, 54))\"},children:\"99%\"})}),className:\"framer-1rs0znq\",\"data-framer-name\":\"8k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wbx61t\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Completion Rate\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Completion Rate\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Completion Rate\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Completion Rate\"})}),className:\"framer-582lh5\",\"data-framer-name\":\"Interior Projects\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"with 100+ testimonials\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"with 100+ testimonials\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"with 100+ testimonials\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"with 100+ testimonials\"})}),className:\"framer-xpabr8\",\"data-framer-name\":\"Designs we have finished in last 32 years.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"t9iSPZ7Az\"},implicitPathVariables:undefined},{href:{webPageId:\"t9iSPZ7Az\"},implicitPathVariables:undefined},{href:{webPageId:\"t9iSPZ7Az\"},implicitPathVariables:undefined},{href:{webPageId:\"t9iSPZ7Az\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+1737.2+50+798},qotNqqVtL:{y:(componentViewport?.y||0)+0+1650.4+30+1440}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1150sc6-container\",nodeId:\"FPX3h5c8a\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{fzPQj5vxM:resolvedLinks1[1]},qotNqqVtL:{fzPQj5vxM:resolvedLinks1[2]},XXkSNY3Hg:{fzPQj5vxM:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button2,{BlJNMfRrN:true,fzPQj5vxM:resolvedLinks1[0],height:\"100%\",icFgveKzp:\"arrow-up-right\",id:\"FPX3h5c8a\",layoutId:\"FPX3h5c8a\",qWQ35JEj6:\"Learn more about us\",variant:\"N_jVfmMy3\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-59dxhk\",\"data-framer-name\":\"How we work\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4f7a0\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-6rih5x\",\"data-styles-preset\":\"Ld3XZnCzd\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We expertise in digital acceleration\"})}),className:\"framer-1iylcx4\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1f7d8f1b-ac05-41b3-99ae-7359dfdddc3c, rgb(69, 69, 69))\"},children:\"Our methods don't take cues from traditional models. We're an adaptive organism that changes with the needs of the work at hand.\"})}),className:\"framer-bcqfsa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ke2qa4\",\"data-framer-name\":\"cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ix7o2v\",\"data-border\":true,\"data-framer-name\":\"card1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uoxsaz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mj0dts\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cja005\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(111deg, rgb(138, 99, 255) 0%, rgb(255, 46, 46) 50%, rgb(255, 49, 193) 100%)\"},children:[\"Scale with?\",/*#__PURE__*/_jsx(\"br\",{}),\"Confidence!\",/*#__PURE__*/_jsx(\"br\",{})]})})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(111deg, rgb(138, 99, 255) 0%, rgb(255, 46, 46) 50%, rgb(255, 49, 193) 100%)\"},children:[\"Scale with?\",/*#__PURE__*/_jsx(\"br\",{}),\"Confidence!\",/*#__PURE__*/_jsx(\"br\",{})]})})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(111deg, rgb(138, 99, 255) 0%, rgb(255, 46, 46) 50%, rgb(255, 49, 193) 100%)\"},children:[\"Scale with?\",/*#__PURE__*/_jsx(\"br\",{}),\"Confidence!\",/*#__PURE__*/_jsx(\"br\",{})]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(111deg, rgb(138, 99, 255) 0%, rgb(255, 46, 46) 50%, rgb(255, 49, 193) 100%)\"},children:[\"Scale with?\",/*#__PURE__*/_jsx(\"br\",{}),\"Confidence!\",/*#__PURE__*/_jsx(\"br\",{})]})})}),className:\"framer-r75utn\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-einwaz\",\"data-styles-preset\":\"sVPNSz4GR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\"},children:\"Worry Free Business & Software Automations\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-einwaz\",\"data-styles-preset\":\"sVPNSz4GR\",style:{\"--framer-text-color\":\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\"},children:\"Worry Free Business & Software Automations\"})}),className:\"framer-rlt3qc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W44MCJrGI\"},implicitPathVariables:undefined},{href:{webPageId:\"W44MCJrGI\"},implicitPathVariables:undefined},{href:{webPageId:\"W44MCJrGI\"},implicitPathVariables:undefined},{href:{webPageId:\"W44MCJrGI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{height:98,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 16px) / 2, 200px), 256px) - 40px)`,y:(componentViewport?.y||0)+0+2747.2+120+267.4+0+0+20+0+0+181.4},qotNqqVtL:{width:\"300px\",y:(componentViewport?.y||0)+0+3242.4+60+263.4+0+0+20+0+0+246.3},XXkSNY3Hg:{height:98,width:`calc(max(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 200px), 256px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 2, 200px) - 40px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3ad6p0-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"gbVuM9PVJ\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{fRpVlbSPr:resolvedLinks2[1],style:{width:\"100%\"}},qotNqqVtL:{fRpVlbSPr:resolvedLinks2[2],variant:\"fIUsVgO_M\"},XXkSNY3Hg:{fRpVlbSPr:resolvedLinks2[3],style:{width:\"100%\"},variant:\"fIUsVgO_M\"}},children:/*#__PURE__*/_jsx(GlowingButton,{fRpVlbSPr:resolvedLinks2[0],height:\"100%\",id:\"gbVuM9PVJ\",layoutId:\"gbVuM9PVJ\",name:\"Button\",style:{height:\"100%\",width:\"100%\"},variant:\"sq4N93447\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zo6q42\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tw1woj\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k54ggk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cPqC0skRn\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Accessibility\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"cPqC0skRn\",layoutId:\"cPqC0skRn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Business Automations\"})}),className:\"framer-1770obk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ls4h2y\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xgim50\",\"data-framer-name\":\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1b5vkpe\",\"data-styles-preset\":\"k44p3jO_l\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:[\"We help businesses go on autopilot.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a03acdeb-4b6c-4f3c-bd68-4eff683cb948, rgb(0, 207, 148))\"},children:\" Effectively!\"})]})}),className:\"framer-115haf7\",\"data-framer-name\":\"Heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wtso0h\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:\"Every business requires automation to scale. We first understand your needs and create processes, training software and people for daily operations. Leveraging AI on time-consuming tasks, businesses confidently scale.\"})}),className:\"framer-rmwglo\",\"data-framer-name\":\"Body3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12i4wto\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{q8odyXmZ9:\"launching-soon\"},unresolvedPathSlugs:{q8odyXmZ9:{collectionId:\"rdW2QHRPu\",collectionItemId:\"Yg9fCslGO\"}},webPageId:\"W44MCJrGI\"},motionChild:true,nodeId:\"lwTYS4xsa\",openInNewTab:false,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ua6x1v framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7uiii\",\"data-framer-name\":\"Icon & Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f95e3s\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"Automate your business\"})}),className:\"framer-m3dg7l\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-528ks5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Cm_OssyOZ\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"Cm_OssyOZ\",layoutId:\"Cm_OssyOZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewrisc\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p5KzKy8kD\"},motionChild:true,nodeId:\"DQBaG74Ii\",openInNewTab:false,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-a43msa framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kg6xvc\",\"data-framer-name\":\"Icon & Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aw89io\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Learn 2025 Guide\"})}),className:\"framer-1fcqq5\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1az5yav\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-63gv3b\",\"data-border\":true,\"data-framer-name\":\"card1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-av2xoo\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:600,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i89ex4\",\"data-border\":true,\"data-framer-name\":\"Task Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4u73\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y31ey4\",\"data-framer-name\":\"Category Tag + More Info\",children:[/*#__PURE__*/_jsx(\"button\",{className:\"framer-dbyte1\",\"data-border\":true,\"data-framer-name\":\"More Info\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(74, 15, 252)\"},children:\"Feature Development\"})}),className:\"framer-rjffo9\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-zfoaa3\",\"data-framer-name\":\"Category Tag\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1na05w5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NrEYTtff9\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"MoreHoriz\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"NrEYTtff9\",layoutId:\"NrEYTtff9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dxmyz2\",\"data-framer-name\":\"Task Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Add Support for Light & Dark theme\"})}),className:\"framer-1iwx2ix\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-einwaz\",\"data-styles-preset\":\"sVPNSz4GR\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:\"Make our product capable of toggling b/w light \u2026\"})}),className:\"framer-x5fyw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nyy8cy\",\"data-framer-name\":\"Progress Bar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{__framer__styleAppearEffectEnabled:undefined,style:{}},qotNqqVtL:{__framer__styleAppearEffectEnabled:undefined,style:{}},XXkSNY3Hg:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r5n0xw\",\"data-framer-name\":\"Progress\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kvifp8\",\"data-framer-name\":\"Bar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-snbc0n\",\"data-framer-name\":\"Progress %\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c08kqa\",\"data-styles-preset\":\"OqmRRFH9F\",style:{\"--framer-text-color\":\"var(--token-21c6069c-1433-4acb-82a8-8b87ddca87df, rgb(173, 172, 176))\"},children:\"74% completed\"})}),className:\"framer-kv497\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sawpeh\",\"data-framer-name\":\"Comments, Attachment & Icon\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7cdm9\",\"data-framer-name\":\"Comments & Attachments\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6yoez\",\"data-framer-name\":\"Comments\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8w4t7c-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon\",nodeId:\"VRrfgIg9U\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-21c6069c-1433-4acb-82a8-8b87ddca87df, rgb(173, 172, 176))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChatBubbleOutline\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"VRrfgIg9U\",layoutId:\"VRrfgIg9U\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c08kqa\",\"data-styles-preset\":\"OqmRRFH9F\",style:{\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:\"6\"})}),className:\"framer-e058wu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-105zc33\",\"data-framer-name\":\"Attachments\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wbh3ts-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon\",nodeId:\"rDOOpOnjr\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-21c6069c-1433-4acb-82a8-8b87ddca87df, rgb(173, 172, 176))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"AttachFile\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"rDOOpOnjr\",layoutId:\"rDOOpOnjr\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c08kqa\",\"data-styles-preset\":\"OqmRRFH9F\",style:{\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:\"2\"})}),className:\"framer-er0eyp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kow295-container\",isModuleExternal:true,nodeId:\"rpvS7fZIq\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Memoji,{background:\"rgb(212, 184, 255)\",height:\"100%\",id:\"rpvS7fZIq\",layoutId:\"rpvS7fZIq\",radius:60,rotation:0,style:{height:\"100%\",width:\"100%\"},variant:\"tExww8aRk\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-600,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation13,className:\"framer-ic0yrk\",\"data-border\":true,\"data-framer-appear-id\":\"ic0yrk\",\"data-framer-name\":\"Add Button\",initial:animation14,optimized:true,style:{transformPerspective:1200},whileHover:animation12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15o0x55\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"button\",{className:\"framer-1nyfrtn\",\"data-border\":true,\"data-framer-name\":\"Icon\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4lyub-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon\",nodeId:\"g9325RZHl\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Add\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"g9325RZHl\",layoutId:\"g9325RZHl\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-einwaz\",\"data-styles-preset\":\"sVPNSz4GR\",style:{\"--framer-text-color\":\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\"},children:\"Create a new task for Deliverable\"})}),className:\"framer-3gjly5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c6j4bt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1do9di8\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nsgrvi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vZGOW8LLu\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Accessibility\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"vZGOW8LLu\",layoutId:\"vZGOW8LLu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Web / App Engineering\"})}),className:\"framer-fglxg0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qn7ghc\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tsw29q\",\"data-framer-name\":\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1b5vkpe\",\"data-styles-preset\":\"k44p3jO_l\",children:[\"Web & App Engineering & Development.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a03acdeb-4b6c-4f3c-bd68-4eff683cb948, rgb(0, 207, 148))\"},children:\" Agile!\"})]})}),className:\"framer-18x23kh\",\"data-framer-name\":\"Heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gpbtse\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:\"Engineering is more than functionality; it\u2019s about crafting the right brand experience at every touchpoint while ensuring adaptability. We build scalable products with intuitive interfaces and optimal performance.\"})}),className:\"framer-1vq1ccs\",\"data-framer-name\":\"Body3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11zsovg\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"suCmzpHhM\"},motionChild:true,nodeId:\"hfQhWskxo\",openInNewTab:false,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-135bpzz framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1id9cmv\",\"data-framer-name\":\"Icon & Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1udy2y4\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"12px\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"Discuss with team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"Discuss with team\"})}),className:\"framer-9dqllq\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dbv04g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eW2DyIqWx\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"eW2DyIqWx\",layoutId:\"eW2DyIqWx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5se8hg\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p5KzKy8kD\"},motionChild:true,nodeId:\"jHUtM6Os6\",openInNewTab:false,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-3nf3jf framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wy1l27\",\"data-framer-name\":\"Icon & Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pw5kkx\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Engineering Standards\"})}),className:\"framer-uph71m\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5cxqvf\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-171dyij\",\"data-border\":true,\"data-framer-name\":\"card1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-172ijag\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:80,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:600}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-c5rc50-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TxCjdtz1d\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.8,id:\"TxCjdtz1d\",layoutId:\"TxCjdtz1d\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"250px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-aslk6p-container\",inComponentSlot:true,nodeId:\"XImdwD34X\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"XImdwD34X\",layoutId:\"XImdwD34X\",style:{height:\"100%\",width:\"100%\"},variant:\"tpNtu7eLx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"250px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1shgbmw-container\",inComponentSlot:true,nodeId:\"frUJ3o6vg\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"frUJ3o6vg\",layoutId:\"frUJ3o6vg\",style:{height:\"100%\",width:\"100%\"},variant:\"uUSQNkIGP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"250px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ngarpt-container\",inComponentSlot:true,nodeId:\"YQIwns7hY\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"YQIwns7hY\",layoutId:\"YQIwns7hY\",style:{height:\"100%\",width:\"100%\"},variant:\"CoRQbNpsI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"250px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-aslk6p-container\",inComponentSlot:true,nodeId:\"XImdwD34X\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"XImdwD34X\",layoutId:\"XImdwD34X\",style:{height:\"100%\",width:\"100%\"},variant:\"tpNtu7eLx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"250px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1shgbmw-container\",inComponentSlot:true,nodeId:\"frUJ3o6vg\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"frUJ3o6vg\",layoutId:\"frUJ3o6vg\",style:{height:\"100%\",width:\"100%\"},variant:\"uUSQNkIGP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"250px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ngarpt-container\",inComponentSlot:true,nodeId:\"YQIwns7hY\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"YQIwns7hY\",layoutId:\"YQIwns7hY\",style:{height:\"100%\",width:\"100%\"},variant:\"CoRQbNpsI\",width:\"100%\"})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v1o1mz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12iy8vk\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h7a1rt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PGkZINPUQ\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Accessibility\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"PGkZINPUQ\",layoutId:\"PGkZINPUQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Branding & Experience\"})}),className:\"framer-jimgq7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-142jtx2\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6ul9l\",\"data-framer-name\":\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1b5vkpe\",\"data-styles-preset\":\"k44p3jO_l\",children:[\"Branding, User Experience, Visuals\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a03acdeb-4b6c-4f3c-bd68-4eff683cb948, rgb(0, 207, 148))\"},children:\" Simplified!\"})]})}),className:\"framer-1gj69ce\",\"data-framer-name\":\"Heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-etg3jk\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:\"Say goodbye to additional charges for revisions \u2013 we're committed to refining the designs until you're completely satisfied with unlimited edits, modifications, adjustments, refinements, and improvements.\"})}),className:\"framer-1mmj2uh\",\"data-framer-name\":\"Body3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-195t8z5\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{q8odyXmZ9:\"launching-soon\"},unresolvedPathSlugs:{q8odyXmZ9:{collectionId:\"rdW2QHRPu\",collectionItemId:\"Yg9fCslGO\"}},webPageId:\"W44MCJrGI\"},motionChild:true,nodeId:\"nWFqmTODD\",openInNewTab:false,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-h5cwo4 framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ft66dd\",\"data-framer-name\":\"Icon & Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-33jtin\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"Check Our Services\"})}),className:\"framer-1jqxqim\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dv8gu5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XpoPMZ5GK\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"XpoPMZ5GK\",layoutId:\"XpoPMZ5GK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9aw6n6\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p5KzKy8kD\"},motionChild:true,nodeId:\"YFgbUNlWF\",openInNewTab:false,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-a0qni framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d2ii71\",\"data-framer-name\":\"Icon & Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8w6uir\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Get Unlimited Designs\"})}),className:\"framer-gljdov\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jcdcu0\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k6gsuk\",\"data-border\":true,\"data-framer-name\":\"card1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eh8ll0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9izskw\",\"data-framer-name\":\"Background Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:900}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:1650,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2747.2+120+267.4+0+761.8+20+0+0+45),pixelHeight:1650,pixelWidth:750,src:\"https://framerusercontent.com/images/K7vd3id872BAfy3TvXDxHsqD78.png?scale-down-to=1024\"},transformTemplate:undefined},qotNqqVtL:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:900}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:1650,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3242.4+60+263.4+0+2407+20+0+0+45),pixelHeight:1650,pixelWidth:750,src:\"https://framerusercontent.com/images/K7vd3id872BAfy3TvXDxHsqD78.png?scale-down-to=1024\"},transformTemplate:undefined},XXkSNY3Hg:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:900}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:800}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1650,intrinsicWidth:750,pixelHeight:1650,pixelWidth:750,src:\"https://framerusercontent.com/images/K7vd3id872BAfy3TvXDxHsqD78.png?scale-down-to=1024\"},className:\"framer-jgqomu\",\"data-framer-name\":\"App UI\",style:{transformPerspective:1200},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:284,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2747.2+120+267.4+0+761.8+20+0+0+300-195),pixelHeight:284,pixelWidth:360,src:\"https://framerusercontent.com/images/6mR8zbI7pA8BTN3L885oDxXtfc.png\"}},qotNqqVtL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:284,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3242.4+60+263.4+0+2407+20+0+0+350-157),pixelHeight:284,pixelWidth:360,src:\"https://framerusercontent.com/images/6mR8zbI7pA8BTN3L885oDxXtfc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-800,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:284,intrinsicWidth:360,pixelHeight:284,pixelWidth:360,src:\"https://framerusercontent.com/images/6mR8zbI7pA8BTN3L885oDxXtfc.png\"},className:\"framer-v0vi2e\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2747.2+120+267.4+0+761.8+20+0+0+20),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/iqyWnjiJRl1P6EgWmUA6TThLBJ0.png\"}},qotNqqVtL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3242.4+60+263.4+0+2407+20+0+0+20),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/iqyWnjiJRl1P6EgWmUA6TThLBJ0.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:600,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/iqyWnjiJRl1P6EgWmUA6TThLBJ0.png\"},className:\"framer-106yxsi\",\"data-framer-name\":\"Memoji\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2747.2+120+267.4+0+761.8+20+0+0+300-100),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/jSCx6DKYLmWfToIOD8EypIYm3b8.png\"}},qotNqqVtL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3242.4+60+263.4+0+2407+20+0+0+350-100),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/jSCx6DKYLmWfToIOD8EypIYm3b8.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:300,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/jSCx6DKYLmWfToIOD8EypIYm3b8.png\"},className:\"framer-jucx6u\",\"data-framer-name\":\"Icon\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2747.2+120+267.4+0+761.8+20+0+0+160),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/fYPKhzKLSoid3C5nYmIqa3ojuQ.png\"}},qotNqqVtL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3242.4+60+263.4+0+2407+20+0+0+70),pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/fYPKhzKLSoid3C5nYmIqa3ojuQ.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-400,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/fYPKhzKLSoid3C5nYmIqa3ojuQ.png\"},className:\"framer-qtns79\",\"data-framer-name\":\"Memoji\",style:{transformPerspective:1200}})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-owdm7g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3bd38s\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mj0hv5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aAHFDabKK\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Accessibility\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"aAHFDabKK\",layoutId:\"aAHFDabKK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Branding & Experience\"})}),className:\"framer-1sstxtt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnhgil\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zy4tiw\",\"data-framer-name\":\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1b5vkpe\",\"data-styles-preset\":\"k44p3jO_l\",children:[\"Intelligence in your fingertips.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a03acdeb-4b6c-4f3c-bd68-4eff683cb948, rgb(0, 207, 148))\"},children:\" Integrated!\"})]})}),className:\"framer-teika8\",\"data-framer-name\":\"Heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xuk5r7\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:\"Integrate the power of GenAI into your products or leverage it unlocking intelligent insights from diverse data sources using GenAI solutions. Enabling seamless access through an intuitive interface for informed decision-making.\"})}),className:\"framer-qpvbwo\",\"data-framer-name\":\"Body3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jpqgq8\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/deliverable/30min\",motionChild:true,nodeId:\"U48VRwPSd\",openInNewTab:true,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-155q3tf framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pht0ab\",\"data-framer-name\":\"Icon & Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1makwbj\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\"},children:\"Discuss with team\"})}),className:\"framer-8i0alx\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sz11ia-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uEq1ckWjo\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"uEq1ckWjo\",layoutId:\"uEq1ckWjo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m96x0y\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p5KzKy8kD\"},motionChild:true,nodeId:\"Nb8c7bGIB\",openInNewTab:false,scopeId:\"hmKhdD_wU\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gvw08l framer-n1e2sj\",\"data-framer-name\":\"Button 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-72w23t\",\"data-framer-name\":\"Icon & Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3wn73b\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Use Cases of AI\"})}),className:\"framer-1t9gjqm\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-108vobm\",\"data-framer-name\":\"Hover Fill\",style:{rotate:45}})]})})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1nwj4ap\",\"data-framer-name\":\"Testominials\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v7gspd\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rfw4q5\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-158kiws\",\"data-styles-preset\":\"OD35kBoCL\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"What we have delivered\"})}),className:\"framer-1jfd4qo\",\"data-framer-name\":\"FAQS\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-6rih5x\",\"data-styles-preset\":\"Ld3XZnCzd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Inspire to Work, Work to Inspire!\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-6rih5x\",\"data-styles-preset\":\"Ld3XZnCzd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Inspire to Work, Work to Inspire!\"})}),className:\"framer-1083db\",\"data-framer-name\":\"Still Have A Question?\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1f7d8f1b-ac05-41b3-99ae-7359dfdddc3c, rgb(69, 69, 69))\"},children:\"Our industry case studies - Know more on how we worked with our ambitious partners to facilitate there digitisation journey.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f7d8f1b-ac05-41b3-99ae-7359dfdddc3c, rgb(69, 69, 69))\"},children:\"Our industry case studies - Know more on how we worked with our ambitious partners to facilitate there digitisation journey.\"})}),className:\"framer-wd7ukx\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fGRtGn2hR\"},implicitPathVariables:undefined},{href:{webPageId:\"fGRtGn2hR\"},implicitPathVariables:undefined},{href:{webPageId:\"fGRtGn2hR\"},implicitPathVariables:undefined},{href:{webPageId:\"fGRtGn2hR\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+4732.2+100+0+102.3},qotNqqVtL:{y:(componentViewport?.y||0)+0+6835.8+60+0+0+296.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iyc221-container\",nodeId:\"v8PRRbkZ0\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{fzPQj5vxM:resolvedLinks3[1]},qotNqqVtL:{fzPQj5vxM:resolvedLinks3[2]},XXkSNY3Hg:{fzPQj5vxM:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Button2,{BlJNMfRrN:true,fzPQj5vxM:resolvedLinks3[0],height:\"100%\",icFgveKzp:\"arrow-up-right\",id:\"v8PRRbkZ0\",layoutId:\"v8PRRbkZ0\",qWQ35JEj6:\"View All Projects\",variant:\"jP67CW24r\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s9qik-container\",\"data-framer-name\":\"Logo\",isAuthoredByUser:true,isModuleExternal:true,name:\"Logo\",nodeId:\"iuR_wKvQp\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"iuR_wKvQp\",layoutId:\"iuR_wKvQp\",name:\"Logo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1taqy9j-container\",inComponentSlot:true,nodeId:\"BVL_4xCZj\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"BVL_4xCZj\",layoutId:\"BVL_4xCZj\",style:{height:\"100%\",width:\"100%\"},variant:\"H4QPSo8li\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b4rp9h-container\",inComponentSlot:true,nodeId:\"eoBIV2T2O\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"eoBIV2T2O\",layoutId:\"eoBIV2T2O\",style:{height:\"100%\",width:\"100%\"},variant:\"uIHj_Defl\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ga5ipa-container\",inComponentSlot:true,nodeId:\"RBYIh43rC\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"RBYIh43rC\",layoutId:\"RBYIh43rC\",style:{height:\"100%\",width:\"100%\"},variant:\"SozWDvEgb\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-171rcjw-container\",inComponentSlot:true,nodeId:\"ua39eApBL\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"ua39eApBL\",layoutId:\"ua39eApBL\",style:{height:\"100%\",width:\"100%\"},variant:\"YdLtaFI8u\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xh7yd2-container\",inComponentSlot:true,nodeId:\"P5NUiedX4\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"P5NUiedX4\",layoutId:\"P5NUiedX4\",style:{height:\"100%\",width:\"100%\"},variant:\"SozWDvEgb\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mvopco-container\",inComponentSlot:true,nodeId:\"qXjWeTELi\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"qXjWeTELi\",layoutId:\"qXjWeTELi\",style:{height:\"100%\",width:\"100%\"},variant:\"ELIG1hLCs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16eptb9-container\",inComponentSlot:true,nodeId:\"UTuMG0Ci6\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"UTuMG0Ci6\",layoutId:\"UTuMG0Ci6\",style:{height:\"100%\",width:\"100%\"},variant:\"cLeqzHeb7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y976fc-container\",inComponentSlot:true,nodeId:\"ksulJyQKL\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"ksulJyQKL\",layoutId:\"ksulJyQKL\",style:{height:\"100%\",width:\"100%\"},variant:\"hBteW_XbU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d1pbtw-container\",inComponentSlot:true,nodeId:\"wLtwLyUih\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"wLtwLyUih\",layoutId:\"wLtwLyUih\",style:{height:\"100%\",width:\"100%\"},variant:\"IGUSsChqD\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation15,className:\"framer-118qkgi\",\"data-framer-appear-id\":\"118qkgi\",initial:animation16,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{query:{from:{alias:\"iTncmlxoo\",data:CaseStudies,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"iTncmlxoo\",name:\"eqfqUBAEO\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"VZ8KJACVN\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"y_wIuADU_\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"kfjd9Ya4_\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"lL7OOh74T\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"Ia_oYNfo3\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"id\",type:\"Identifier\"}]}},XXkSNY3Hg:{query:{from:{alias:\"iTncmlxoo\",data:CaseStudies,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"iTncmlxoo\",name:\"eqfqUBAEO\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"VZ8KJACVN\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"y_wIuADU_\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"kfjd9Ya4_\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"lL7OOh74T\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"Ia_oYNfo3\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iTncmlxoo\",data:CaseStudies,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"iTncmlxoo\",name:\"eqfqUBAEO\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"VZ8KJACVN\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"y_wIuADU_\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"kfjd9Ya4_\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"lL7OOh74T\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"Ia_oYNfo3\",type:\"Identifier\"},{collection:\"iTncmlxoo\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({eqfqUBAEO:eqfqUBAEOiTncmlxoo,Ia_oYNfo3:Ia_oYNfo3iTncmlxoo,id:idiTncmlxoo,kfjd9Ya4_:kfjd9Ya4_iTncmlxoo,lL7OOh74T:lL7OOh74TiTncmlxoo,VZ8KJACVN:VZ8KJACVNiTncmlxoo,y_wIuADU_:y_wIuADU_iTncmlxoo},index)=>{eqfqUBAEOiTncmlxoo??=\"\";lL7OOh74TiTncmlxoo??=\"\";Ia_oYNfo3iTncmlxoo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iTncmlxoo-${idiTncmlxoo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{eqfqUBAEO:eqfqUBAEOiTncmlxoo},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{eqfqUBAEO:eqfqUBAEOiTncmlxoo},webPageId:\"MkaaTZygt\"},implicitPathVariables:undefined},{href:{pathVariables:{eqfqUBAEO:eqfqUBAEOiTncmlxoo},webPageId:\"MkaaTZygt\"},implicitPathVariables:undefined},{href:{pathVariables:{eqfqUBAEO:eqfqUBAEOiTncmlxoo},webPageId:\"MkaaTZygt\"},implicitPathVariables:undefined},{href:{pathVariables:{eqfqUBAEO:eqfqUBAEOiTncmlxoo},webPageId:\"MkaaTZygt\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1224px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4732.2+100+426.6+0+0},qotNqqVtL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1224px), 120px)`,y:(componentViewport?.y||0)+0+6835.8+60+558.6+0+0},XXkSNY3Hg:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1224px) - 40px) / 3, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1224px) - 120px) / 4, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l0y35f-container\",nodeId:\"R93FRizz0\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",whileHover:animation17,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{XjkTk7R5a:resolvedLinks4[1]},qotNqqVtL:{XjkTk7R5a:resolvedLinks4[2]},XXkSNY3Hg:{XjkTk7R5a:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(WorkCard,{height:\"100%\",id:\"R93FRizz0\",Jx4BuwdB1:toResponsiveImage(kfjd9Ya4_iTncmlxoo),kHidhWEAZ:toResponsiveImage(y_wIuADU_iTncmlxoo),layoutId:\"R93FRizz0\",lf8sQqtMz:toResponsiveImage(VZ8KJACVNiTncmlxoo),style:{width:\"100%\"},Sx6Oq4i5H:Ia_oYNfo3iTncmlxoo,width:\"100%\",XjkTk7R5a:resolvedLinks4[0],zeBHfhhT2:lL7OOh74TiTncmlxoo})})})})})})})},idiTncmlxoo);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7ylpo\",\"data-framer-name\":\"Bento\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ja0mmd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-6rih5x\",\"data-styles-preset\":\"Ld3XZnCzd\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We're different. Seriously!\"})}),className:\"framer-gwu5ck\",\"data-framer-name\":\"Still Have A Question?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1f7d8f1b-ac05-41b3-99ae-7359dfdddc3c, rgb(69, 69, 69))\"},children:\"Where others see roadblocks, we uncover opportunities.\"})}),className:\"framer-18hrctb\",\"data-framer-name\":\"We specialize in transforming visions into reality. Explore our portfolio of innovative architectural and interior design projects crafted with precision.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r1b2mk\",\"data-framer-name\":\"Feature List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5p4r5t\",\"data-framer-name\":\"List 02\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lzwc3q\",\"data-border\":true,\"data-framer-name\":\"Single Feature 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xa5v30\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:462,intrinsicWidth:820,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6606.8+100+267.4+0+0+0+50+16.25+0),pixelHeight:462,pixelWidth:820,src:\"https://framerusercontent.com/images/e6uxzKdr4YVqpZ6Oo33IP4Svyk.png\"}},qotNqqVtL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:462,intrinsicWidth:820,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12566.4+60+267.4+0+0+0+0+34+-270+0),pixelHeight:462,pixelWidth:820,src:\"https://framerusercontent.com/images/e6uxzKdr4YVqpZ6Oo33IP4Svyk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:462,intrinsicWidth:820,pixelHeight:462,pixelWidth:820,src:\"https://framerusercontent.com/images/e6uxzKdr4YVqpZ6Oo33IP4Svyk.png\"},className:\"framer-1y220hw\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1afe5\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We invest in companies\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We invest in companies\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We invest in companies\"})}),className:\"framer-igszvb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Progress tracking is a crucial feature in a task management app as it allows users.\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Progress tracking is a crucial feature in a task management app as it allows users.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Progress tracking is a crucial feature in a task management app as it allows users.\"})}),className:\"framer-nmu2s4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+6606.8+100+267.4+0+0+0+50+211.75+0+200},qotNqqVtL:{y:(componentViewport?.y||0)+0+12566.4+60+267.4+0+0+0+0+34+-59+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1475823-container\",nodeId:\"M2HXpb72b\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button2,{BlJNMfRrN:true,fzPQj5vxM:\"https://calendly.com/deliverable/30min\",height:\"100%\",icFgveKzp:\"arrow-up-right\",id:\"M2HXpb72b\",layoutId:\"M2HXpb72b\",qWQ35JEj6:\"Check our companies\",variant:\"N_jVfmMy3\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ia097q\",\"data-border\":true,\"data-framer-name\":\"Single Feature 02\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lmvi00-container\",isModuleExternal:true,nodeId:\"Jdlwy_8BB\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(BrandTicker,{height:\"100%\",id:\"Jdlwy_8BB\",layoutId:\"Jdlwy_8BB\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-epsedh\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We partner with companies & brands\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We partner with companies & brands\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We partner with companies & brands\"})}),className:\"framer-16pttbi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Our interdisciplinary experts are clear-eyed problem solvers & design innovators. Our lean team leave no room for mediocrity, welcoming only the most experienced talent. We've no patience for traditional agency bulk & fluff.\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Our interdisciplinary experts are clear-eyed problem solvers & design innovators. Our lean team leave no room for mediocrity, welcoming only the most experienced talent. We've no patience for traditional agency bulk & fluff.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Our interdisciplinary experts are clear-eyed problem solvers & design innovators. Our lean team leave no room for mediocrity, welcoming only the most experienced talent. We've no patience for traditional agency bulk & fluff.\"})}),className:\"framer-123k06c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+6606.8+100+267.4+0+0+0+35+258+0+200},qotNqqVtL:{y:(componentViewport?.y||0)+0+12566.4+60+267.4+0+0+0+32+35+258+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15heibu-container\",nodeId:\"dp96nWgeF\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button2,{BlJNMfRrN:true,fzPQj5vxM:\"https://calendly.com/deliverable/30min\",height:\"100%\",icFgveKzp:\"arrow-up-right\",id:\"dp96nWgeF\",layoutId:\"dp96nWgeF\",qWQ35JEj6:\"Check our projects\",variant:\"N_jVfmMy3\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1liq96s\",\"data-framer-name\":\"List 01\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mdmiqo\",\"data-border\":true,\"data-framer-name\":\"Single Feature 01\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10z2d6h\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We build our own products\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We build our own products\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We build our own products\"})}),className:\"framer-coh2wg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Founders at our core, we couldn't help but put our own ideas into action through a portfolio of pursuits that we can team jams.\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Founders at our core, we couldn't help but put our own ideas into action through a portfolio of pursuits that we can team jams.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"Founders at our core, we couldn't help but put our own ideas into action through a portfolio of pursuits that we can team jams.\"})}),className:\"framer-867ex7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+6606.8+100+267.4+0+622+0+27+0+0+200},qotNqqVtL:{y:(componentViewport?.y||0)+0+12566.4+60+267.4+0+654+0+0+27+0+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y6tk04-container\",nodeId:\"feZhSu5k9\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button2,{BlJNMfRrN:true,fzPQj5vxM:\"https://calendly.com/deliverable/30min\",height:\"100%\",icFgveKzp:\"arrow-up-right\",id:\"feZhSu5k9\",layoutId:\"feZhSu5k9\",qWQ35JEj6:\"Check out products\",variant:\"N_jVfmMy3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:602,intrinsicWidth:1434,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6606.8+100+267.4+0+622+0+27+290),pixelHeight:602,pixelWidth:1434,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) * 0.53 - 52px)`,src:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png\",srcSet:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png 1434w\"}},qotNqqVtL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:602,intrinsicWidth:1434,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12566.4+60+267.4+0+654+0+0+27+290),pixelHeight:602,pixelWidth:1434,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1240px) - 52px)`,src:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png\",srcSet:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png 1434w\"}},XXkSNY3Hg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:602,intrinsicWidth:1434,pixelHeight:602,pixelWidth:1434,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 52px)`,src:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png\",srcSet:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png 1434w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:602,intrinsicWidth:1434,pixelHeight:602,pixelWidth:1434,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) * 0.5833 - 52px)`,src:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png\",srcSet:\"https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pSGcLEavSp00sTTKgdjd7NDmUU.png 1434w\"},className:\"framer-los1y4\",\"data-framer-name\":\"Card Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mf9z8q\",\"data-border\":true,\"data-framer-name\":\"Single Feature 02\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4xn8e0\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m7l5rd\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We love open-source\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We love open-source\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"We love open-source\"})}),className:\"framer-yzjm35\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"From coming year, we're committing to donating annually a portion of our profits to open-source projects that drive growth with their incredible tools. Our goal is to support smaller projects that have great potential but lack attention.\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"From coming year, we're committing to donating annually a portion of our profits to open-source projects that drive growth with their incredible tools. Our goal is to support smaller projects that have great potential but lack attention.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cuerrt\",\"data-styles-preset\":\"YenLnnXAf\",style:{\"--framer-text-color\":\"var(--token-91847328-e24e-4a9a-a22b-1faa7fb346f9, rgb(82, 91, 91))\"},children:\"From coming year, we're committing to donating annually a portion of our profits to open-source projects that drive growth with their incredible tools. Our goal is to support smaller projects that have great potential but lack attention.\"})}),className:\"framer-ypfqf1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1am8qbz-container\",isModuleExternal:true,nodeId:\"YEi2RGk1R\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(AnimatedIllustration01,{height:\"100%\",id:\"YEi2RGk1R\",layoutId:\"YEi2RGk1R\",style:{height:\"100%\",width:\"100%\"},variant:\"dUHkf3gjK\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ix1xwr\",\"data-framer-name\":\"Features Section\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pk7d1t\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19h4mk1\",\"data-framer-name\":\"Section Title Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b9d0bf9-100d-4696-998e-a49a1961b281, rgb(147, 46, 250))\"},children:\"WHY CHOOSE US?\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b9d0bf9-100d-4696-998e-a49a1961b281, rgb(147, 46, 250))\"},children:\"WHY CHOOSE US?\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b9d0bf9-100d-4696-998e-a49a1961b281, rgb(147, 46, 250))\"},children:\"WHY CHOOSE US?\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2b9d0bf9-100d-4696-998e-a49a1961b281, rgb(147, 46, 250))\"},children:\"WHY CHOOSE US?\"})}),className:\"framer-e200gc\",\"data-framer-name\":\"Tag\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNzAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, rgb(1, 8, 27))\"},children:\"We offers compelling reasons to partner with us\"})})},qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNzAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, rgb(1, 8, 27))\"},children:\"We offers compelling reasons to partner with us\"})})},XXkSNY3Hg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNzAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, rgb(1, 8, 27))\"},children:\"We offers compelling reasons to partner with us\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNzAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, rgb(1, 8, 27))\"},children:\"We offers compelling reasons to partner with us\"})}),className:\"framer-1u6bpi9\",\"data-framer-name\":\"Title\",fonts:[\"GF;Urbanist-700\"],id:\"1u6bpi9\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1igrvnv\",\"data-framer-name\":\"Feature Card Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+8361.2+0+0+0+210.1+0+0},qotNqqVtL:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 275px), 10px)`,y:(componentViewport?.y||0)+0+14821.8+60+0+0+180.1+0+0},XXkSNY3Hg:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 574px) - 24px) / 2, 10px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:244,width:`max((min(${componentViewport?.width||\"100vw\"}, 1224px) - 112px) / 4, 10px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3d1lwu-container\",isModuleExternal:true,nodeId:\"Mk9PNQpFQ\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{variant:\"I7iY3fBIY\"},XXkSNY3Hg:{variant:\"I7iY3fBIY\"}},children:/*#__PURE__*/_jsx(CardFeature,{G2JTyjlTh:\"Comprehensive Automation Solutions\",height:\"100%\",id:\"Mk9PNQpFQ\",layoutId:\"Mk9PNQpFQ\",o4k5UlkuX:\"We specialize in automating business processes, leveraging AI to handle time-consuming tasks, enabling businesses to scale efficiently.\",style:{height:\"100%\",width:\"100%\"},variant:\"QFIFroso4\",width:\"100%\",y0HEf03Fo:\"var(--token-f5581270-7538-4c9e-88c9-60d34bb3e432, rgb(246, 246, 246))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+8361.2+0+0+0+210.1+0+0},qotNqqVtL:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 275px), 10px)`,y:(componentViewport?.y||0)+0+14821.8+60+0+0+180.1+0+268},XXkSNY3Hg:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 574px) - 24px) / 2, 10px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:244,width:`max((min(${componentViewport?.width||\"100vw\"}, 1224px) - 112px) / 4, 10px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o763s8-container\",isModuleExternal:true,nodeId:\"CN7ptjvny\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{variant:\"I7iY3fBIY\"},XXkSNY3Hg:{variant:\"I7iY3fBIY\"}},children:/*#__PURE__*/_jsx(CardFeature,{G2JTyjlTh:\"Expertise in Web and App Development\",height:\"100%\",id:\"CN7ptjvny\",layoutId:\"CN7ptjvny\",lPKjHXKWo:addImageAlt({src:\"https://framerusercontent.com/images/NxwnfLXwGSgqykABSiy0sZneh0.svg\"},\"Feature Icon\"),o4k5UlkuX:\"Our team excels in crafting scalable products with intuitive interfaces, ensuring optimal performance and adaptability across various platforms.\",style:{height:\"100%\",width:\"100%\"},variant:\"QFIFroso4\",width:\"100%\",y0HEf03Fo:\"var(--token-f5581270-7538-4c9e-88c9-60d34bb3e432, rgb(246, 246, 246))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+8361.2+0+0+0+210.1+0+0},qotNqqVtL:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 275px), 10px)`,y:(componentViewport?.y||0)+0+14821.8+60+0+0+180.1+0+536},XXkSNY3Hg:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 574px) - 24px) / 2, 10px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:244,width:`max((min(${componentViewport?.width||\"100vw\"}, 1224px) - 112px) / 4, 10px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gkdw36-container\",isModuleExternal:true,nodeId:\"RXxHzIZWk\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{variant:\"I7iY3fBIY\"},XXkSNY3Hg:{variant:\"I7iY3fBIY\"}},children:/*#__PURE__*/_jsx(CardFeature,{G2JTyjlTh:\"Proven Client Satisfaction\",height:\"100%\",id:\"RXxHzIZWk\",layoutId:\"RXxHzIZWk\",lPKjHXKWo:addImageAlt({src:\"https://framerusercontent.com/images/s4JDt6b1rA8uEtDuoR3TIKsBIw.svg\"},\"Feature Icon\"),o4k5UlkuX:\"Clients have praised our responsiveness, reliability, and the ability to elevate projects, reflecting a strong commitment to client success.\",style:{height:\"100%\",width:\"100%\"},variant:\"QFIFroso4\",width:\"100%\",y0HEf03Fo:\"var(--token-f5581270-7538-4c9e-88c9-60d34bb3e432, rgb(246, 246, 246))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+8361.2+0+0+0+210.1+0+0},qotNqqVtL:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 275px), 10px)`,y:(componentViewport?.y||0)+0+14821.8+60+0+0+180.1+0+804},XXkSNY3Hg:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 574px) - 24px) / 2, 10px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:244,width:`max((min(${componentViewport?.width||\"100vw\"}, 1224px) - 112px) / 4, 10px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yds5nr-container\",isModuleExternal:true,nodeId:\"chiAct8gi\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{variant:\"I7iY3fBIY\"},XXkSNY3Hg:{variant:\"I7iY3fBIY\"}},children:/*#__PURE__*/_jsx(CardFeature,{G2JTyjlTh:\"Innovative Digital Marketing Strategies\",height:\"100%\",id:\"chiAct8gi\",layoutId:\"chiAct8gi\",lPKjHXKWo:addImageAlt({src:\"https://framerusercontent.com/images/RLpG4XpvvlIQNMZ27RGhXuPxu5U.svg\"},\"Feature Icon\"),o4k5UlkuX:\"They offer top-tier website design, SEO, and sponsored search marketing services, ensuring brands maximize their online presence and reach.\",style:{height:\"100%\",width:\"100%\"},variant:\"QFIFroso4\",width:\"100%\",y0HEf03Fo:\"var(--token-f5581270-7538-4c9e-88c9-60d34bb3e432, rgb(246, 246, 246))\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1qb1omm\",\"data-framer-name\":\"Testimonial Section\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hihg6o\",\"data-framer-name\":\"Blash\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-at66w1\",\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+8935.3+120+0+0+0},XXkSNY3Hg:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:304,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1224px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lne0kc-container hidden-sxuywj\",\"data-framer-name\":\"Testimonial Slider \",isModuleExternal:true,name:\"Testimonial Slider \",nodeId:\"T5ym77zRV\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XXkSNY3Hg:{variant:\"BzISoygeM\"}},children:/*#__PURE__*/_jsx(SliderTestimonialBlock,{height:\"100%\",id:\"T5ym77zRV\",layoutId:\"T5ym77zRV\",name:\"Testimonial Slider \",style:{width:\"100%\"},variant:\"DSrTAPn8c\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tsh28 hidden-172g3ra hidden-4wz2p6 hidden-16gbzkb\",\"data-framer-name\":\"Testimonial Content Block\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9vi8ps\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pnnro7\",\"data-framer-name\":\"Text Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9srj6i\",\"data-framer-name\":\"Title block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bc15d2e5-016b-412a-a669-0f4c268e5153, rgb(147, 46, 250))\"},children:\"TESTIMONIAL\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bc15d2e5-016b-412a-a669-0f4c268e5153, rgb(147, 46, 250))\"},children:\"TESTIMONIAL\"})}),className:\"framer-1r6vpps\",\"data-framer-name\":\"Tag\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNzAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, rgb(1, 8, 27))\"},children:\"We\u2019ve build trust with reviews from real users\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNzAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46eef77c-19f6-4f9a-9c69-c6cd2e9d66a0, rgb(1, 8, 27))\"},children:\"We\u2019ve build trust with reviews from real users\"})}),className:\"framer-y6ianw\",\"data-framer-name\":\"Title\",fonts:[\"GF;Urbanist-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-28e2bff7-a691-46e9-a673-788a186659d4, rgb(77, 82, 95))\"},children:\"Boost your credibility by featuring genuine testimonials from real users, showcasing their positive experiences and satisfaction with Monks Pay services.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-28e2bff7-a691-46e9-a673-788a186659d4, rgb(77, 82, 95))\"},children:\"Boost your credibility by featuring genuine testimonials from real users, showcasing their positive experiences and satisfaction with Monks Pay services.\"})}),className:\"framer-vkotqo\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pz5ldu\",\"data-framer-name\":\"Testimonial Slider\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 419px)`,y:(componentViewport?.y||0)+0+16169.9+60+0+0+0+0+304.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v5c63m-container\",\"data-framer-name\":\"Card One\",isModuleExternal:true,name:\"Card One\",nodeId:\"L6UaKOx3e\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(CardTestimonial,{FfZXP2YGW:\"Ethan Williams\",height:\"100%\",id:\"L6UaKOx3e\",layoutId:\"L6UaKOx3e\",name:\"Card One\",ooB5fXQkh:\"Digital Marketing Specialist\",style:{width:\"100%\"},variant:\"ConE4Rfqx\",WCTCXOtd2:\"Experience a payment app built on simplicity and transparency. No hidden fees, just a seamless user experience that makes every transaction easy and stress-free. Say goodbye to confusion and hello to straightforward payments.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 419px)`,y:(componentViewport?.y||0)+0+16169.9+60+0+0+0+0+304.6+0+329}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gcmoho-container\",\"data-framer-name\":\"Card Two\",isModuleExternal:true,name:\"Card Two\",nodeId:\"bolm9_ndh\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(CardTestimonial,{FfZXP2YGW:\"Daniel Thompson\",height:\"100%\",id:\"bolm9_ndh\",layoutId:\"bolm9_ndh\",name:\"Card Two\",ooB5fXQkh:\"Product Designer\",style:{width:\"100%\"},uoDzj3cab:addImageAlt({src:\"https://framerusercontent.com/images/kE9TP1fLtZ2KuTe6GwxXNKSUQ.png\"},\"User Image\"),variant:\"ConE4Rfqx\",WCTCXOtd2:\"Discover a payment app focused on simplicity and transparency. Enjoy a seamless experience with no hidden fees, providing clarity and ease in every transaction. It\u2019s designed to put you in control of your payments.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 419px)`,y:(componentViewport?.y||0)+0+16169.9+60+0+0+0+0+304.6+0+658}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nsl6uw-container\",\"data-framer-name\":\"Card Three\",isModuleExternal:true,name:\"Card Three\",nodeId:\"qAguoFFAH\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(CardTestimonial,{FfZXP2YGW:\"Ethan Williams\",height:\"100%\",id:\"qAguoFFAH\",layoutId:\"qAguoFFAH\",name:\"Card Three\",ooB5fXQkh:\"Digital Marketing Specialist\",style:{width:\"100%\"},uoDzj3cab:addImageAlt({src:\"https://framerusercontent.com/images/cNZuC4dTKkOUiF5TUL086784.png\"},\"User Image\"),variant:\"ConE4Rfqx\",WCTCXOtd2:\"Experience a payment app built on simplicity and transparency. No hidden fees, just a seamless user experience that makes every transaction easy and stress-free. Say goodbye to confusion and hello to straightforward payments.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 520px) - 40px, 419px)`,y:(componentViewport?.y||0)+0+16169.9+60+0+0+0+0+304.6+0+987}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,children:/*#__PURE__*/_jsx(Container,{className:\"framer-abrla-container\",\"data-framer-name\":\"Card Four\",isModuleExternal:true,name:\"Card Four\",nodeId:\"knZwvPO6L\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(CardTestimonial,{FfZXP2YGW:\"Williams Irish\",height:\"100%\",id:\"knZwvPO6L\",layoutId:\"knZwvPO6L\",name:\"Card Four\",ooB5fXQkh:\"Digital Marketing Specialist\",style:{width:\"100%\"},uoDzj3cab:addImageAlt({src:\"https://framerusercontent.com/images/umAYK0PU1qIV3QTacKblPqhRDk.png\"},\"User Image\"),variant:\"ConE4Rfqx\",WCTCXOtd2:\"Experience a payment app built on simplicity and transparency. No hidden fees, just a seamless user experience that makes every transaction easy and stress-free. Say goodbye to confusion and hello to straightforward payments.\",width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m01sqa\",\"data-framer-name\":\"Services\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l3r5m\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-me01ci\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k57v86\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-6rih5x\",\"data-styles-preset\":\"Ld3XZnCzd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Our Industry Insights & News\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-6rih5x\",\"data-styles-preset\":\"Ld3XZnCzd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\"},children:\"Our Industry Insights & News\"})}),className:\"framer-1bpjsmo\",\"data-framer-name\":\"Still Have A Question?\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qotNqqVtL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1f7d8f1b-ac05-41b3-99ae-7359dfdddc3c, rgb(69, 69, 69))\"},children:\"We write our perspective, experience & knowledge in various industries & latest news.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vxz2o\",\"data-styles-preset\":\"gAXV4PV23\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f7d8f1b-ac05-41b3-99ae-7359dfdddc3c, rgb(69, 69, 69))\"},children:\"We write our perspective, experience & knowledge in various industries & latest news.\"})}),className:\"framer-1fxtmm1\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JhazAgrBy\"},implicitPathVariables:undefined},{href:{webPageId:\"JhazAgrBy\"},implicitPathVariables:undefined},{href:{webPageId:\"JhazAgrBy\"},implicitPathVariables:undefined},{href:{webPageId:\"JhazAgrBy\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+9479.3+120+0+0+0+79.7},qotNqqVtL:{y:(componentViewport?.y||0)+0+17886.5+60+0+0+0+0+251.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1afv0ef-container\",nodeId:\"gVzKxyvjQ\",rendersWithMotion:true,scopeId:\"hmKhdD_wU\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{fzPQj5vxM:resolvedLinks5[1]},qotNqqVtL:{fzPQj5vxM:resolvedLinks5[2]},XXkSNY3Hg:{fzPQj5vxM:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button2,{BlJNMfRrN:true,fzPQj5vxM:resolvedLinks5[0],height:\"100%\",icFgveKzp:\"arrow-up-right\",id:\"gVzKxyvjQ\",layoutId:\"gVzKxyvjQ\",qWQ35JEj6:\"Explore our Insights\",variant:\"wq74ax28Z\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1li2fcq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{query:{from:{alias:\"dXLdIu0uC\",data:Insights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"dXLdIu0uC\",name:\"a75gLUnJI\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"XP4L96gRT\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"gF2AE4f22\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"qZpNoEtDJ\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"id\",type:\"Identifier\"}]}},XXkSNY3Hg:{query:{from:{alias:\"dXLdIu0uC\",data:Insights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"dXLdIu0uC\",name:\"a75gLUnJI\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"XP4L96gRT\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"gF2AE4f22\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"qZpNoEtDJ\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dXLdIu0uC\",data:Insights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"dXLdIu0uC\",name:\"a75gLUnJI\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"XP4L96gRT\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"gF2AE4f22\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"qZpNoEtDJ\",type:\"Identifier\"},{collection:\"dXLdIu0uC\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({a75gLUnJI:a75gLUnJIdXLdIu0uC,gF2AE4f22:gF2AE4f22dXLdIu0uC,id:iddXLdIu0uC,qZpNoEtDJ:qZpNoEtDJdXLdIu0uC,XP4L96gRT:XP4L96gRTdXLdIu0uC},index1)=>{XP4L96gRTdXLdIu0uC??=\"\";qZpNoEtDJdXLdIu0uC??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dXLdIu0uC-${iddXLdIu0uC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qZpNoEtDJ:qZpNoEtDJdXLdIu0uC},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sysc8v\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{qZpNoEtDJ:qZpNoEtDJdXLdIu0uC},webPageId:\"o5fr7aRBm\"},implicitPathVariables:undefined},{href:{pathVariables:{qZpNoEtDJ:qZpNoEtDJdXLdIu0uC},webPageId:\"o5fr7aRBm\"},implicitPathVariables:undefined},{href:{pathVariables:{qZpNoEtDJ:qZpNoEtDJdXLdIu0uC},webPageId:\"o5fr7aRBm\"},implicitPathVariables:undefined},{href:{pathVariables:{qZpNoEtDJ:qZpNoEtDJdXLdIu0uC},webPageId:\"o5fr7aRBm\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px) / 2, 80px)`,y:(componentViewport?.y||0)+0+9479.3+120+0+0+273.4+0+0+0+0},qotNqqVtL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 80px)`,y:(componentViewport?.y||0)+0+17886.5+60+0+0+365.4+0+0+0+0},XXkSNY3Hg:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px) / 2, 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:385,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 80px) / 3, 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3dyty-container\",nodeId:\"sPKUgsgWu\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{STKBIxOe3:resolvedLinks6[1]},qotNqqVtL:{STKBIxOe3:resolvedLinks6[2]},XXkSNY3Hg:{STKBIxOe3:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(BlogCard,{AeTnLPbbQ:toResponsiveImage(a75gLUnJIdXLdIu0uC),gxFOb9Xvl:XP4L96gRTdXLdIu0uC,height:\"100%\",id:\"sPKUgsgWu\",layoutId:\"sPKUgsgWu\",STKBIxOe3:resolvedLinks6[0],style:{width:\"100%\"},Vssf0bHn1:enumToDisplayNameFunctions[\"gF2AE4f22\"]?.(gF2AE4f22dXLdIu0uC,activeLocale),width:\"100%\"})})})})})})})})},iddXLdIu0uC);})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{y:(componentViewport?.y||0)+0+10417.7},qotNqqVtL:{y:(componentViewport?.y||0)+0+18796.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1198,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o9uuyp-container\",nodeId:\"tzlYNfWba\",scopeId:\"hmKhdD_wU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nN51sTC9a:{variant:\"XTImbXFZX\"},qotNqqVtL:{variant:\"bXsAgweh6\"},XXkSNY3Hg:{variant:\"kCLS4xSew\"}},children:/*#__PURE__*/_jsx(FooterNew,{D3HxQVPwj:true,height:\"100%\",id:\"tzlYNfWba\",layoutId:\"tzlYNfWba\",style:{width:\"100%\"},variant:\"M3pln0zYW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cOCUB.framer-n1e2sj, .framer-cOCUB .framer-n1e2sj { display: block; }\",\".framer-cOCUB.framer-172g3ra { align-content: center; align-items: center; background-color: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, #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: 1440px; }\",\".framer-cOCUB .framer-10pfsf2-container { flex: none; height: 74px; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 8; }\",\".framer-cOCUB .framer-vw6eev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 820px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-9ujgs6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-cOCUB .framer-mv2xf6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-athuzc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-cOCUB .framer-11faudn, .framer-cOCUB .framer-uiv7gm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-8g91sm, .framer-cOCUB .framer-zo6q42, .framer-cOCUB .framer-1c6j4bt, .framer-cOCUB .framer-v1o1mz, .framer-cOCUB .framer-owdm7g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1mpm12v-container, .framer-cOCUB .framer-3fwn7q-container, .framer-cOCUB .framer-1150sc6-container, .framer-cOCUB .framer-iyc221-container, .framer-cOCUB .framer-1475823-container, .framer-cOCUB .framer-15heibu-container, .framer-cOCUB .framer-y6tk04-container, .framer-cOCUB .framer-1afv0ef-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cOCUB .framer-4cr92v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-1d1yrdz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1fp5vas { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 684px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-15nuhjf { background-color: rgba(0, 0, 0, 0.69); bottom: -1px; flex: none; height: 100%; left: 0px; min-height: 820px; overflow: hidden; position: absolute; right: 0px; z-index: 2; }\",\".framer-cOCUB .framer-s4w3im-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-cOCUB .framer-1ycn8ip { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 28px 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-qu08is { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-yo5cjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-6dg39u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 35%; }\",\".framer-cOCUB .framer-17yr9zy, .framer-cOCUB .framer-1jfd4qo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cOCUB .framer-1jli7jx, .framer-cOCUB .framer-wjb1rv, .framer-cOCUB .framer-1l8nxq2, .framer-cOCUB .framer-1ob2406, .framer-cOCUB .framer-19g0nzd, .framer-cOCUB .framer-wulm2a, .framer-cOCUB .framer-t80t6s, .framer-cOCUB .framer-pbho62, .framer-cOCUB .framer-1vreitb, .framer-cOCUB .framer-sg0zbv, .framer-cOCUB .framer-1ol6fq3, .framer-cOCUB .framer-1rs0znq, .framer-cOCUB .framer-582lh5, .framer-cOCUB .framer-1083db, .framer-cOCUB .framer-gwu5ck, .framer-cOCUB .framer-e200gc, .framer-cOCUB .framer-1u6bpi9, .framer-cOCUB .framer-1r6vpps, .framer-cOCUB .framer-1bpjsmo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-mm5bvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 55%; }\",\".framer-cOCUB .framer-160hs-container, .framer-cOCUB .framer-lmvi00-container, .framer-cOCUB .framer-1lne0kc-container, .framer-cOCUB .framer-1n3dyty-container, .framer-cOCUB .framer-1o9uuyp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-cOCUB .framer-pnbdao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-p6uniz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-125i69a, .framer-cOCUB .framer-1pwwgra, .framer-cOCUB .framer-hh0f3y, .framer-cOCUB .framer-15mr5sf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 20%; }\",\".framer-cOCUB .framer-gx56uz, .framer-cOCUB .framer-13nlimt, .framer-cOCUB .framer-106wlb6, .framer-cOCUB .framer-wbx61t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-xpabr8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 184px; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-59dxhk { align-content: center; align-items: center; background-color: var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: visible; padding: 120px 40px 140px 40px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-m4f7a0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 800px; }\",\".framer-cOCUB .framer-1iylcx4, .framer-cOCUB .framer-bcqfsa, .framer-cOCUB .framer-wd7ukx, .framer-cOCUB .framer-1fxtmm1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-ke2qa4 { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-ix7o2v, .framer-cOCUB .framer-63gv3b, .framer-cOCUB .framer-171dyij, .framer-cOCUB .framer-1k6gsuk { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 4.987576484680176px 17.356765747070312px 0px rgba(30, 35, 41, 0.02), 0px 16.75223159790039px 58.297767639160156px 0px rgba(30, 35, 41, 0.03576643392443657), 0px 75px 261px 0px rgba(30, 35, 41, 0.05999999865889549); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 20px 20px 30px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-1uoxsaz, .framer-cOCUB .framer-av2xoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 350px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1mj0dts { 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: min-content; }\",\".framer-cOCUB .framer-1cja005 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-r75utn, .framer-cOCUB .framer-rlt3qc, .framer-cOCUB .framer-1770obk, .framer-cOCUB .framer-fglxg0, .framer-cOCUB .framer-jimgq7, .framer-cOCUB .framer-1sstxtt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cOCUB .framer-3ad6p0-container { flex: none; height: 77px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-tw1woj, .framer-cOCUB .framer-1do9di8, .framer-cOCUB .framer-12iy8vk, .framer-cOCUB .framer-3bd38s { aspect-ratio: 1 / 1; background-color: #96a8fa; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: hidden; position: relative; width: 26px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-1k54ggk-container, .framer-cOCUB .framer-nsgrvi-container, .framer-cOCUB .framer-h7a1rt-container, .framer-cOCUB .framer-mj0hv5-container { flex: none; height: 20px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 16px; }\",\".framer-cOCUB .framer-ls4h2y, .framer-cOCUB .framer-qn7ghc, .framer-cOCUB .framer-142jtx2, .framer-cOCUB .framer-cnhgil { 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: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-xgim50, .framer-cOCUB .framer-1xa5v30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-115haf7, .framer-cOCUB .framer-rmwglo, .framer-cOCUB .framer-1vq1ccs, .framer-cOCUB .framer-1mmj2uh, .framer-cOCUB .framer-qpvbwo { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-1wtso0h, .framer-cOCUB .framer-gpbtse, .framer-cOCUB .framer-etg3jk, .framer-cOCUB .framer-1xuk5r7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-12i4wto, .framer-cOCUB .framer-11zsovg, .framer-cOCUB .framer-195t8z5, .framer-cOCUB .framer-jpqgq8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-ua6x1v, .framer-cOCUB .framer-h5cwo4, .framer-cOCUB .framer-155q3tf { align-content: center; align-items: center; background-color: var(--token-473fb4f3-8471-4242-a4fe-1f85752b78dd, #1c33da); 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: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: hidden; padding: 16px 20px 16px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-1o7uiii, .framer-cOCUB .framer-kg6xvc, .framer-cOCUB .framer-1id9cmv, .framer-cOCUB .framer-1wy1l27, .framer-cOCUB .framer-ft66dd, .framer-cOCUB .framer-d2ii71, .framer-cOCUB .framer-pht0ab, .framer-cOCUB .framer-72w23t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-1f95e3s, .framer-cOCUB .framer-1aw89io, .framer-cOCUB .framer-1udy2y4, .framer-cOCUB .framer-pw5kkx, .framer-cOCUB .framer-33jtin, .framer-cOCUB .framer-8w6uir, .framer-cOCUB .framer-1makwbj, .framer-cOCUB .framer-3wn73b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-m3dg7l, .framer-cOCUB .framer-1fcqq5, .framer-cOCUB .framer-9dqllq, .framer-cOCUB .framer-uph71m, .framer-cOCUB .framer-1jqxqim, .framer-cOCUB .framer-gljdov, .framer-cOCUB .framer-8i0alx, .framer-cOCUB .framer-1t9gjqm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 3; }\",\".framer-cOCUB .framer-528ks5-container, .framer-cOCUB .framer-dbv04g-container, .framer-cOCUB .framer-1dv8gu5-container, .framer-cOCUB .framer-sz11ia-container { flex: none; height: 18px; position: relative; width: 18px; z-index: 3; }\",\".framer-cOCUB .framer-ewrisc, .framer-cOCUB .framer-5se8hg, .framer-cOCUB .framer-9aw6n6, .framer-cOCUB .framer-m96x0y { align-content: center; align-items: center; background-color: var(--token-914c2340-1782-441a-8f85-0a9af2ab1eee, #02312f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 0%; justify-content: flex-start; left: calc(50.00000000000002% - 175px / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 0% / 2); width: 175px; z-index: 2; }\",\".framer-cOCUB .framer-a43msa { align-content: center; align-items: center; background-color: var(--token-f5581270-7538-4c9e-88c9-60d34bb3e432, #f6f6f6); 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: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: hidden; padding: 16px 20px 16px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-1az5yav, .framer-cOCUB .framer-5cxqvf, .framer-cOCUB .framer-1jcdcu0, .framer-cOCUB .framer-108vobm { align-content: center; align-items: center; background-color: var(--token-b4caa2e7-d6d6-400e-bb17-41867aa6aafd, #f8f9fa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 0%; justify-content: flex-start; left: calc(50.00000000000002% - 435px / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 0% / 2); width: 435px; z-index: 2; }\",\".framer-cOCUB .framer-1i89ex4 { --border-bottom-width: 1px; --border-color: rgba(212, 212, 212, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #f7f7f7); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; box-shadow: 0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; z-index: 1; }\",\".framer-cOCUB .framer-1d4u73 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-y31ey4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-dbyte1 { --border-bottom-width: 1px; --border-color: rgba(74, 15, 252, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(227, 209, 255, 0.5); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; padding: 6px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-rjffo9, .framer-cOCUB .framer-1iwx2ix, .framer-cOCUB .framer-kv497, .framer-cOCUB .framer-e058wu, .framer-cOCUB .framer-er0eyp, .framer-cOCUB .framer-3gjly5 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-cOCUB .framer-zfoaa3 { align-content: center; align-items: center; background-color: var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #f7f7f7); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; padding: 6px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-1na05w5-container, .framer-cOCUB .framer-8w4t7c-container, .framer-cOCUB .framer-wbh3ts-container, .framer-cOCUB .framer-s4lyub-container { flex: none; height: 20px; position: relative; width: 16px; }\",\".framer-cOCUB .framer-1dxmyz2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-x5fyw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-nyy8cy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1r5n0xw { background-color: #4a0ffc; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 250px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-cOCUB .framer-kvifp8 { aspect-ratio: 42 / 1; background-color: var(--token-026dd3db-221f-4946-8b1c-63e0b5fca156, #d4d4d4); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-snbc0n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1sawpeh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-k7cdm9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-1y6yoez, .framer-cOCUB .framer-105zc33 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-1kow295-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-cOCUB .framer-ic0yrk { --border-bottom-width: 1px; --border-color: rgba(212, 212, 212, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #f7f7f7); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; box-shadow: 0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-cOCUB .framer-15o0x55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-1nyfrtn { --border-bottom-width: 1px; --border-color: var(--token-026dd3db-221f-4946-8b1c-63e0b5fca156, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-5d5b2bf4-8bd3-4671-b8c8-7ef0c88f4c80, rgba(235, 235, 235, 0.8)); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; padding: 6px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-1tsw29q, .framer-cOCUB .framer-r6ul9l, .framer-cOCUB .framer-zy4tiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-cOCUB .framer-18x23kh, .framer-cOCUB .framer-1gj69ce, .framer-cOCUB .framer-teika8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cOCUB .framer-135bpzz { align-content: center; align-items: center; background-color: var(--token-473fb4f3-8471-4242-a4fe-1f85752b78dd, #1c33da); 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: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-3nf3jf, .framer-cOCUB .framer-a0qni, .framer-cOCUB .framer-1gvw08l { align-content: center; align-items: center; background-color: var(--token-f5581270-7538-4c9e-88c9-60d34bb3e432, #f6f6f6); 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: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-172ijag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-c5rc50-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 2; }\",\".framer-cOCUB .framer-aslk6p-container, .framer-cOCUB .framer-1shgbmw-container, .framer-cOCUB .framer-1ngarpt-container { height: 300px; position: relative; width: 250px; z-index: 1; }\",\".framer-cOCUB .framer-eh8ll0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-9izskw { background-color: var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #fafafa); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; flex: 1 0 0px; height: 300px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-jgqomu { aspect-ratio: 0.5 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; bottom: -20px; box-shadow: 0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.04), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.03862), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.04457), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.065); flex: none; height: var(--framer-aspect-ratio-supported, 300px); left: 50%; overflow: hidden; position: absolute; transform: translateX(-50%); width: 150px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-cOCUB .framer-v0vi2e { aspect-ratio: 1.267605633802817 / 1; bottom: 40px; box-shadow: 0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325); flex: none; height: var(--framer-aspect-ratio-supported, 142px); left: 300px; overflow: hidden; position: absolute; width: 180px; z-index: 1; }\",\".framer-cOCUB .framer-106yxsi { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; box-shadow: 0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325); flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 50px; overflow: hidden; position: absolute; top: 100px; width: 80px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-cOCUB .framer-jucx6u { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; bottom: 20px; box-shadow: 0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325); flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 30px; overflow: hidden; position: absolute; width: 80px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-cOCUB .framer-qtns79 { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; box-shadow: 0px 0.7961918735236395px 0.7961918735236395px -0.4375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 2.414506143104518px -0.875px rgba(0, 0, 0, 0.01931), 0px 6.382653521484461px 6.382653521484461px -1.3125px rgba(0, 0, 0, 0.02229), 0px 20px 20px -1.75px rgba(0, 0, 0, 0.0325); flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: absolute; right: 50px; top: 160px; width: 80px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-cOCUB .framer-1nwj4ap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-v7gspd, .framer-cOCUB .framer-me01ci { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1220px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-rfw4q5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-cOCUB .framer-1s9qik-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1taqy9j-container, .framer-cOCUB .framer-b4rp9h-container, .framer-cOCUB .framer-1ga5ipa-container, .framer-cOCUB .framer-171rcjw-container, .framer-cOCUB .framer-xh7yd2-container, .framer-cOCUB .framer-mvopco-container, .framer-cOCUB .framer-16eptb9-container, .framer-cOCUB .framer-1y976fc-container, .framer-cOCUB .framer-d1pbtw-container { height: 30px; opacity: 0.25; position: relative; width: 120px; }\",\".framer-cOCUB .framer-118qkgi { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1224px; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-cOCUB .framer-l0y35f-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",'.framer-cOCUB .framer-1r7ylpo { align-content: center; align-items: center; background: radial-gradient(50% 35.3% at 50% 50%, var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #fafafa) /* {\"name\":\"Gray 100\"} */ 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 120px 40px; position: relative; scroll-margin-top: 100px; width: 100%; }',\".framer-cOCUB .framer-1ja0mmd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 820px; }\",\".framer-cOCUB .framer-18hrctb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-cOCUB .framer-r1b2mk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-5p4r5t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1lzwc3q { --border-bottom-width: 1px; --border-color: rgba(32, 30, 28, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: #fdf3e2; 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: 32px; height: auto; justify-content: center; overflow: hidden; padding: 34px 22px 33px 28px; position: relative; width: 33%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-1y220hw { -webkit-filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.05)); filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.05)); flex: none; height: 200px; position: relative; width: 100%; z-index: 1; }\",\".framer-cOCUB .framer-d1afe5, .framer-cOCUB .framer-10z2d6h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-igszvb, .framer-cOCUB .framer-nmu2s4, .framer-cOCUB .framer-16pttbi, .framer-cOCUB .framer-123k06c, .framer-cOCUB .framer-coh2wg, .framer-cOCUB .framer-867ex7, .framer-cOCUB .framer-yzjm35, .framer-cOCUB .framer-ypfqf1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-ia097q { --border-bottom-width: 1px; --border-color: rgba(32, 30, 28, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #fdf3e2; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 0px 35px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-epsedh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 50px 0px 38px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1liq96s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1mdmiqo { --border-bottom-width: 1px; --border-color: rgba(32, 30, 28, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fdf3e2; 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: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 27px 26px 27px 26px; position: relative; width: 58%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-los1y4 { -webkit-filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.05)); aspect-ratio: 2.3853820598006643 / 1; filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.05)); flex: none; height: var(--framer-aspect-ratio-supported, 282px); position: relative; width: 100%; }\",\".framer-cOCUB .framer-1mf9z8q { --border-bottom-width: 1px; --border-color: rgba(32, 30, 28, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fdf3e2; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 25px 22px 24px 22px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cOCUB .framer-4xn8e0, .framer-cOCUB .framer-1m7l5rd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1am8qbz-container { flex: none; height: 268px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-ix1xwr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1pk7d1t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1224px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-19h4mk1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 490px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1igrvnv { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(10px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-3d1lwu-container, .framer-cOCUB .framer-o763s8-container, .framer-cOCUB .framer-1gkdw36-container, .framer-cOCUB .framer-yds5nr-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1qb1omm { align-content: center; align-items: center; background-color: var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-hihg6o { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: #cc9bff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 83%; max-width: 200px; min-width: 150px; opacity: 0.6; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14%; z-index: 0; }\",\".framer-cOCUB .framer-at66w1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1224px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1tsh28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-9vi8ps { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1pnnro7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-9srj6i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-y6ianw { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-vkotqo { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 461px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cOCUB .framer-1pz5ldu { 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: 419px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-v5c63m-container, .framer-cOCUB .framer-1gcmoho-container, .framer-cOCUB .framer-nsl6uw-container, .framer-cOCUB .framer-abrla-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\".framer-cOCUB .framer-1m01sqa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-l3r5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1k57v86 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-cOCUB .framer-1li2fcq { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(80px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-cOCUB .framer-1sysc8v { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cOCUB.framer-172g3ra, .framer-cOCUB .framer-vw6eev, .framer-cOCUB .framer-9ujgs6, .framer-cOCUB .framer-mv2xf6, .framer-cOCUB .framer-athuzc, .framer-cOCUB .framer-8g91sm, .framer-cOCUB .framer-1d1yrdz, .framer-cOCUB .framer-1ycn8ip, .framer-cOCUB .framer-qu08is, .framer-cOCUB .framer-6dg39u, .framer-cOCUB .framer-mm5bvl, .framer-cOCUB .framer-pnbdao, .framer-cOCUB .framer-125i69a, .framer-cOCUB .framer-gx56uz, .framer-cOCUB .framer-1pwwgra, .framer-cOCUB .framer-13nlimt, .framer-cOCUB .framer-hh0f3y, .framer-cOCUB .framer-106wlb6, .framer-cOCUB .framer-15mr5sf, .framer-cOCUB .framer-wbx61t, .framer-cOCUB .framer-59dxhk, .framer-cOCUB .framer-m4f7a0, .framer-cOCUB .framer-ix7o2v, .framer-cOCUB .framer-1uoxsaz, .framer-cOCUB .framer-1mj0dts, .framer-cOCUB .framer-1cja005, .framer-cOCUB .framer-zo6q42, .framer-cOCUB .framer-ls4h2y, .framer-cOCUB .framer-xgim50, .framer-cOCUB .framer-1wtso0h, .framer-cOCUB .framer-12i4wto, .framer-cOCUB .framer-ua6x1v, .framer-cOCUB .framer-1o7uiii, .framer-cOCUB .framer-1f95e3s, .framer-cOCUB .framer-ewrisc, .framer-cOCUB .framer-a43msa, .framer-cOCUB .framer-kg6xvc, .framer-cOCUB .framer-1aw89io, .framer-cOCUB .framer-1az5yav, .framer-cOCUB .framer-63gv3b, .framer-cOCUB .framer-av2xoo, .framer-cOCUB .framer-1i89ex4, .framer-cOCUB .framer-1d4u73, .framer-cOCUB .framer-dbyte1, .framer-cOCUB .framer-zfoaa3, .framer-cOCUB .framer-1dxmyz2, .framer-cOCUB .framer-nyy8cy, .framer-cOCUB .framer-snbc0n, .framer-cOCUB .framer-k7cdm9, .framer-cOCUB .framer-1y6yoez, .framer-cOCUB .framer-105zc33, .framer-cOCUB .framer-ic0yrk, .framer-cOCUB .framer-15o0x55, .framer-cOCUB .framer-1nyfrtn, .framer-cOCUB .framer-1c6j4bt, .framer-cOCUB .framer-qn7ghc, .framer-cOCUB .framer-1tsw29q, .framer-cOCUB .framer-gpbtse, .framer-cOCUB .framer-11zsovg, .framer-cOCUB .framer-135bpzz, .framer-cOCUB .framer-1id9cmv, .framer-cOCUB .framer-1udy2y4, .framer-cOCUB .framer-5se8hg, .framer-cOCUB .framer-3nf3jf, .framer-cOCUB .framer-1wy1l27, .framer-cOCUB .framer-pw5kkx, .framer-cOCUB .framer-5cxqvf, .framer-cOCUB .framer-171dyij, .framer-cOCUB .framer-172ijag, .framer-cOCUB .framer-v1o1mz, .framer-cOCUB .framer-142jtx2, .framer-cOCUB .framer-r6ul9l, .framer-cOCUB .framer-etg3jk, .framer-cOCUB .framer-195t8z5, .framer-cOCUB .framer-h5cwo4, .framer-cOCUB .framer-ft66dd, .framer-cOCUB .framer-33jtin, .framer-cOCUB .framer-9aw6n6, .framer-cOCUB .framer-a0qni, .framer-cOCUB .framer-d2ii71, .framer-cOCUB .framer-8w6uir, .framer-cOCUB .framer-1jcdcu0, .framer-cOCUB .framer-1k6gsuk, .framer-cOCUB .framer-eh8ll0, .framer-cOCUB .framer-owdm7g, .framer-cOCUB .framer-cnhgil, .framer-cOCUB .framer-zy4tiw, .framer-cOCUB .framer-1xuk5r7, .framer-cOCUB .framer-jpqgq8, .framer-cOCUB .framer-155q3tf, .framer-cOCUB .framer-pht0ab, .framer-cOCUB .framer-1makwbj, .framer-cOCUB .framer-m96x0y, .framer-cOCUB .framer-1gvw08l, .framer-cOCUB .framer-72w23t, .framer-cOCUB .framer-3wn73b, .framer-cOCUB .framer-108vobm, .framer-cOCUB .framer-1nwj4ap, .framer-cOCUB .framer-rfw4q5, .framer-cOCUB .framer-1r7ylpo, .framer-cOCUB .framer-1ja0mmd, .framer-cOCUB .framer-r1b2mk, .framer-cOCUB .framer-5p4r5t, .framer-cOCUB .framer-1lzwc3q, .framer-cOCUB .framer-1xa5v30, .framer-cOCUB .framer-d1afe5, .framer-cOCUB .framer-ia097q, .framer-cOCUB .framer-epsedh, .framer-cOCUB .framer-1liq96s, .framer-cOCUB .framer-1mdmiqo, .framer-cOCUB .framer-10z2d6h, .framer-cOCUB .framer-1mf9z8q, .framer-cOCUB .framer-4xn8e0, .framer-cOCUB .framer-1m7l5rd, .framer-cOCUB .framer-ix1xwr, .framer-cOCUB .framer-1pk7d1t, .framer-cOCUB .framer-19h4mk1, .framer-cOCUB .framer-1qb1omm, .framer-cOCUB .framer-at66w1, .framer-cOCUB .framer-1tsh28, .framer-cOCUB .framer-9vi8ps, .framer-cOCUB .framer-1pnnro7, .framer-cOCUB .framer-9srj6i, .framer-cOCUB .framer-1pz5ldu, .framer-cOCUB .framer-1m01sqa, .framer-cOCUB .framer-l3r5m, .framer-cOCUB .framer-1k57v86, .framer-cOCUB .framer-1sysc8v { gap: 0px; } .framer-cOCUB.framer-172g3ra > *, .framer-cOCUB .framer-athuzc > *, .framer-cOCUB .framer-mm5bvl > *, .framer-cOCUB .framer-gx56uz > *, .framer-cOCUB .framer-13nlimt > *, .framer-cOCUB .framer-106wlb6 > *, .framer-cOCUB .framer-wbx61t > *, .framer-cOCUB .framer-ua6x1v > *, .framer-cOCUB .framer-1f95e3s > *, .framer-cOCUB .framer-ewrisc > *, .framer-cOCUB .framer-a43msa > *, .framer-cOCUB .framer-1aw89io > *, .framer-cOCUB .framer-1az5yav > *, .framer-cOCUB .framer-1i89ex4 > *, .framer-cOCUB .framer-ic0yrk > *, .framer-cOCUB .framer-135bpzz > *, .framer-cOCUB .framer-1udy2y4 > *, .framer-cOCUB .framer-5se8hg > *, .framer-cOCUB .framer-3nf3jf > *, .framer-cOCUB .framer-pw5kkx > *, .framer-cOCUB .framer-5cxqvf > *, .framer-cOCUB .framer-h5cwo4 > *, .framer-cOCUB .framer-33jtin > *, .framer-cOCUB .framer-9aw6n6 > *, .framer-cOCUB .framer-a0qni > *, .framer-cOCUB .framer-8w6uir > *, .framer-cOCUB .framer-1jcdcu0 > *, .framer-cOCUB .framer-155q3tf > *, .framer-cOCUB .framer-1makwbj > *, .framer-cOCUB .framer-m96x0y > *, .framer-cOCUB .framer-1gvw08l > *, .framer-cOCUB .framer-3wn73b > *, .framer-cOCUB .framer-108vobm > *, .framer-cOCUB .framer-1qb1omm > *, .framer-cOCUB .framer-at66w1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cOCUB.framer-172g3ra > :first-child, .framer-cOCUB .framer-vw6eev > :first-child, .framer-cOCUB .framer-9ujgs6 > :first-child, .framer-cOCUB .framer-athuzc > :first-child, .framer-cOCUB .framer-1ycn8ip > :first-child, .framer-cOCUB .framer-qu08is > :first-child, .framer-cOCUB .framer-6dg39u > :first-child, .framer-cOCUB .framer-mm5bvl > :first-child, .framer-cOCUB .framer-pnbdao > :first-child, .framer-cOCUB .framer-125i69a > :first-child, .framer-cOCUB .framer-gx56uz > :first-child, .framer-cOCUB .framer-1pwwgra > :first-child, .framer-cOCUB .framer-13nlimt > :first-child, .framer-cOCUB .framer-hh0f3y > :first-child, .framer-cOCUB .framer-106wlb6 > :first-child, .framer-cOCUB .framer-15mr5sf > :first-child, .framer-cOCUB .framer-wbx61t > :first-child, .framer-cOCUB .framer-59dxhk > :first-child, .framer-cOCUB .framer-m4f7a0 > :first-child, .framer-cOCUB .framer-ix7o2v > :first-child, .framer-cOCUB .framer-1uoxsaz > :first-child, .framer-cOCUB .framer-1mj0dts > :first-child, .framer-cOCUB .framer-1cja005 > :first-child, .framer-cOCUB .framer-ls4h2y > :first-child, .framer-cOCUB .framer-ua6x1v > :first-child, .framer-cOCUB .framer-1f95e3s > :first-child, .framer-cOCUB .framer-ewrisc > :first-child, .framer-cOCUB .framer-a43msa > :first-child, .framer-cOCUB .framer-1aw89io > :first-child, .framer-cOCUB .framer-1az5yav > :first-child, .framer-cOCUB .framer-63gv3b > :first-child, .framer-cOCUB .framer-av2xoo > :first-child, .framer-cOCUB .framer-1i89ex4 > :first-child, .framer-cOCUB .framer-1d4u73 > :first-child, .framer-cOCUB .framer-1dxmyz2 > :first-child, .framer-cOCUB .framer-nyy8cy > :first-child, .framer-cOCUB .framer-ic0yrk > :first-child, .framer-cOCUB .framer-qn7ghc > :first-child, .framer-cOCUB .framer-135bpzz > :first-child, .framer-cOCUB .framer-1udy2y4 > :first-child, .framer-cOCUB .framer-5se8hg > :first-child, .framer-cOCUB .framer-3nf3jf > :first-child, .framer-cOCUB .framer-pw5kkx > :first-child, .framer-cOCUB .framer-5cxqvf > :first-child, .framer-cOCUB .framer-171dyij > :first-child, .framer-cOCUB .framer-142jtx2 > :first-child, .framer-cOCUB .framer-h5cwo4 > :first-child, .framer-cOCUB .framer-33jtin > :first-child, .framer-cOCUB .framer-9aw6n6 > :first-child, .framer-cOCUB .framer-a0qni > :first-child, .framer-cOCUB .framer-8w6uir > :first-child, .framer-cOCUB .framer-1jcdcu0 > :first-child, .framer-cOCUB .framer-1k6gsuk > :first-child, .framer-cOCUB .framer-cnhgil > :first-child, .framer-cOCUB .framer-155q3tf > :first-child, .framer-cOCUB .framer-1makwbj > :first-child, .framer-cOCUB .framer-m96x0y > :first-child, .framer-cOCUB .framer-1gvw08l > :first-child, .framer-cOCUB .framer-3wn73b > :first-child, .framer-cOCUB .framer-108vobm > :first-child, .framer-cOCUB .framer-1nwj4ap > :first-child, .framer-cOCUB .framer-rfw4q5 > :first-child, .framer-cOCUB .framer-1r7ylpo > :first-child, .framer-cOCUB .framer-1ja0mmd > :first-child, .framer-cOCUB .framer-r1b2mk > :first-child, .framer-cOCUB .framer-1lzwc3q > :first-child, .framer-cOCUB .framer-d1afe5 > :first-child, .framer-cOCUB .framer-ia097q > :first-child, .framer-cOCUB .framer-epsedh > :first-child, .framer-cOCUB .framer-1mdmiqo > :first-child, .framer-cOCUB .framer-10z2d6h > :first-child, .framer-cOCUB .framer-1mf9z8q > :first-child, .framer-cOCUB .framer-4xn8e0 > :first-child, .framer-cOCUB .framer-1m7l5rd > :first-child, .framer-cOCUB .framer-ix1xwr > :first-child, .framer-cOCUB .framer-1pk7d1t > :first-child, .framer-cOCUB .framer-19h4mk1 > :first-child, .framer-cOCUB .framer-1qb1omm > :first-child, .framer-cOCUB .framer-at66w1 > :first-child, .framer-cOCUB .framer-1tsh28 > :first-child, .framer-cOCUB .framer-9vi8ps > :first-child, .framer-cOCUB .framer-1pnnro7 > :first-child, .framer-cOCUB .framer-9srj6i > :first-child, .framer-cOCUB .framer-1pz5ldu > :first-child, .framer-cOCUB .framer-1m01sqa > :first-child, .framer-cOCUB .framer-l3r5m > :first-child, .framer-cOCUB .framer-1k57v86 > :first-child, .framer-cOCUB .framer-1sysc8v > :first-child { margin-top: 0px; } .framer-cOCUB.framer-172g3ra > :last-child, .framer-cOCUB .framer-vw6eev > :last-child, .framer-cOCUB .framer-9ujgs6 > :last-child, .framer-cOCUB .framer-athuzc > :last-child, .framer-cOCUB .framer-1ycn8ip > :last-child, .framer-cOCUB .framer-qu08is > :last-child, .framer-cOCUB .framer-6dg39u > :last-child, .framer-cOCUB .framer-mm5bvl > :last-child, .framer-cOCUB .framer-pnbdao > :last-child, .framer-cOCUB .framer-125i69a > :last-child, .framer-cOCUB .framer-gx56uz > :last-child, .framer-cOCUB .framer-1pwwgra > :last-child, .framer-cOCUB .framer-13nlimt > :last-child, .framer-cOCUB .framer-hh0f3y > :last-child, .framer-cOCUB .framer-106wlb6 > :last-child, .framer-cOCUB .framer-15mr5sf > :last-child, .framer-cOCUB .framer-wbx61t > :last-child, .framer-cOCUB .framer-59dxhk > :last-child, .framer-cOCUB .framer-m4f7a0 > :last-child, .framer-cOCUB .framer-ix7o2v > :last-child, .framer-cOCUB .framer-1uoxsaz > :last-child, .framer-cOCUB .framer-1mj0dts > :last-child, .framer-cOCUB .framer-1cja005 > :last-child, .framer-cOCUB .framer-ls4h2y > :last-child, .framer-cOCUB .framer-ua6x1v > :last-child, .framer-cOCUB .framer-1f95e3s > :last-child, .framer-cOCUB .framer-ewrisc > :last-child, .framer-cOCUB .framer-a43msa > :last-child, .framer-cOCUB .framer-1aw89io > :last-child, .framer-cOCUB .framer-1az5yav > :last-child, .framer-cOCUB .framer-63gv3b > :last-child, .framer-cOCUB .framer-av2xoo > :last-child, .framer-cOCUB .framer-1i89ex4 > :last-child, .framer-cOCUB .framer-1d4u73 > :last-child, .framer-cOCUB .framer-1dxmyz2 > :last-child, .framer-cOCUB .framer-nyy8cy > :last-child, .framer-cOCUB .framer-ic0yrk > :last-child, .framer-cOCUB .framer-qn7ghc > :last-child, .framer-cOCUB .framer-135bpzz > :last-child, .framer-cOCUB .framer-1udy2y4 > :last-child, .framer-cOCUB .framer-5se8hg > :last-child, .framer-cOCUB .framer-3nf3jf > :last-child, .framer-cOCUB .framer-pw5kkx > :last-child, .framer-cOCUB .framer-5cxqvf > :last-child, .framer-cOCUB .framer-171dyij > :last-child, .framer-cOCUB .framer-142jtx2 > :last-child, .framer-cOCUB .framer-h5cwo4 > :last-child, .framer-cOCUB .framer-33jtin > :last-child, .framer-cOCUB .framer-9aw6n6 > :last-child, .framer-cOCUB .framer-a0qni > :last-child, .framer-cOCUB .framer-8w6uir > :last-child, .framer-cOCUB .framer-1jcdcu0 > :last-child, .framer-cOCUB .framer-1k6gsuk > :last-child, .framer-cOCUB .framer-cnhgil > :last-child, .framer-cOCUB .framer-155q3tf > :last-child, .framer-cOCUB .framer-1makwbj > :last-child, .framer-cOCUB .framer-m96x0y > :last-child, .framer-cOCUB .framer-1gvw08l > :last-child, .framer-cOCUB .framer-3wn73b > :last-child, .framer-cOCUB .framer-108vobm > :last-child, .framer-cOCUB .framer-1nwj4ap > :last-child, .framer-cOCUB .framer-rfw4q5 > :last-child, .framer-cOCUB .framer-1r7ylpo > :last-child, .framer-cOCUB .framer-1ja0mmd > :last-child, .framer-cOCUB .framer-r1b2mk > :last-child, .framer-cOCUB .framer-1lzwc3q > :last-child, .framer-cOCUB .framer-d1afe5 > :last-child, .framer-cOCUB .framer-ia097q > :last-child, .framer-cOCUB .framer-epsedh > :last-child, .framer-cOCUB .framer-1mdmiqo > :last-child, .framer-cOCUB .framer-10z2d6h > :last-child, .framer-cOCUB .framer-1mf9z8q > :last-child, .framer-cOCUB .framer-4xn8e0 > :last-child, .framer-cOCUB .framer-1m7l5rd > :last-child, .framer-cOCUB .framer-ix1xwr > :last-child, .framer-cOCUB .framer-1pk7d1t > :last-child, .framer-cOCUB .framer-19h4mk1 > :last-child, .framer-cOCUB .framer-1qb1omm > :last-child, .framer-cOCUB .framer-at66w1 > :last-child, .framer-cOCUB .framer-1tsh28 > :last-child, .framer-cOCUB .framer-9vi8ps > :last-child, .framer-cOCUB .framer-1pnnro7 > :last-child, .framer-cOCUB .framer-9srj6i > :last-child, .framer-cOCUB .framer-1pz5ldu > :last-child, .framer-cOCUB .framer-1m01sqa > :last-child, .framer-cOCUB .framer-l3r5m > :last-child, .framer-cOCUB .framer-1k57v86 > :last-child, .framer-cOCUB .framer-1sysc8v > :last-child { margin-bottom: 0px; } .framer-cOCUB .framer-vw6eev > *, .framer-cOCUB .framer-1uoxsaz > *, .framer-cOCUB .framer-av2xoo > *, .framer-cOCUB .framer-1sysc8v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cOCUB .framer-9ujgs6 > *, .framer-cOCUB .framer-1r7ylpo > *, .framer-cOCUB .framer-9vi8ps > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-cOCUB .framer-mv2xf6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-cOCUB .framer-mv2xf6 > :first-child, .framer-cOCUB .framer-8g91sm > :first-child, .framer-cOCUB .framer-1d1yrdz > :first-child, .framer-cOCUB .framer-zo6q42 > :first-child, .framer-cOCUB .framer-xgim50 > :first-child, .framer-cOCUB .framer-1wtso0h > :first-child, .framer-cOCUB .framer-12i4wto > :first-child, .framer-cOCUB .framer-1o7uiii > :first-child, .framer-cOCUB .framer-kg6xvc > :first-child, .framer-cOCUB .framer-dbyte1 > :first-child, .framer-cOCUB .framer-zfoaa3 > :first-child, .framer-cOCUB .framer-snbc0n > :first-child, .framer-cOCUB .framer-k7cdm9 > :first-child, .framer-cOCUB .framer-1y6yoez > :first-child, .framer-cOCUB .framer-105zc33 > :first-child, .framer-cOCUB .framer-15o0x55 > :first-child, .framer-cOCUB .framer-1nyfrtn > :first-child, .framer-cOCUB .framer-1c6j4bt > :first-child, .framer-cOCUB .framer-1tsw29q > :first-child, .framer-cOCUB .framer-gpbtse > :first-child, .framer-cOCUB .framer-11zsovg > :first-child, .framer-cOCUB .framer-1id9cmv > :first-child, .framer-cOCUB .framer-1wy1l27 > :first-child, .framer-cOCUB .framer-172ijag > :first-child, .framer-cOCUB .framer-v1o1mz > :first-child, .framer-cOCUB .framer-r6ul9l > :first-child, .framer-cOCUB .framer-etg3jk > :first-child, .framer-cOCUB .framer-195t8z5 > :first-child, .framer-cOCUB .framer-ft66dd > :first-child, .framer-cOCUB .framer-d2ii71 > :first-child, .framer-cOCUB .framer-eh8ll0 > :first-child, .framer-cOCUB .framer-owdm7g > :first-child, .framer-cOCUB .framer-zy4tiw > :first-child, .framer-cOCUB .framer-1xuk5r7 > :first-child, .framer-cOCUB .framer-jpqgq8 > :first-child, .framer-cOCUB .framer-pht0ab > :first-child, .framer-cOCUB .framer-72w23t > :first-child, .framer-cOCUB .framer-5p4r5t > :first-child, .framer-cOCUB .framer-1xa5v30 > :first-child, .framer-cOCUB .framer-1liq96s > :first-child { margin-left: 0px; } .framer-cOCUB .framer-mv2xf6 > :last-child, .framer-cOCUB .framer-8g91sm > :last-child, .framer-cOCUB .framer-1d1yrdz > :last-child, .framer-cOCUB .framer-zo6q42 > :last-child, .framer-cOCUB .framer-xgim50 > :last-child, .framer-cOCUB .framer-1wtso0h > :last-child, .framer-cOCUB .framer-12i4wto > :last-child, .framer-cOCUB .framer-1o7uiii > :last-child, .framer-cOCUB .framer-kg6xvc > :last-child, .framer-cOCUB .framer-dbyte1 > :last-child, .framer-cOCUB .framer-zfoaa3 > :last-child, .framer-cOCUB .framer-snbc0n > :last-child, .framer-cOCUB .framer-k7cdm9 > :last-child, .framer-cOCUB .framer-1y6yoez > :last-child, .framer-cOCUB .framer-105zc33 > :last-child, .framer-cOCUB .framer-15o0x55 > :last-child, .framer-cOCUB .framer-1nyfrtn > :last-child, .framer-cOCUB .framer-1c6j4bt > :last-child, .framer-cOCUB .framer-1tsw29q > :last-child, .framer-cOCUB .framer-gpbtse > :last-child, .framer-cOCUB .framer-11zsovg > :last-child, .framer-cOCUB .framer-1id9cmv > :last-child, .framer-cOCUB .framer-1wy1l27 > :last-child, .framer-cOCUB .framer-172ijag > :last-child, .framer-cOCUB .framer-v1o1mz > :last-child, .framer-cOCUB .framer-r6ul9l > :last-child, .framer-cOCUB .framer-etg3jk > :last-child, .framer-cOCUB .framer-195t8z5 > :last-child, .framer-cOCUB .framer-ft66dd > :last-child, .framer-cOCUB .framer-d2ii71 > :last-child, .framer-cOCUB .framer-eh8ll0 > :last-child, .framer-cOCUB .framer-owdm7g > :last-child, .framer-cOCUB .framer-zy4tiw > :last-child, .framer-cOCUB .framer-1xuk5r7 > :last-child, .framer-cOCUB .framer-jpqgq8 > :last-child, .framer-cOCUB .framer-pht0ab > :last-child, .framer-cOCUB .framer-72w23t > :last-child, .framer-cOCUB .framer-5p4r5t > :last-child, .framer-cOCUB .framer-1xa5v30 > :last-child, .framer-cOCUB .framer-1liq96s > :last-child { margin-right: 0px; } .framer-cOCUB .framer-8g91sm > *, .framer-cOCUB .framer-zo6q42 > *, .framer-cOCUB .framer-1o7uiii > *, .framer-cOCUB .framer-kg6xvc > *, .framer-cOCUB .framer-1c6j4bt > *, .framer-cOCUB .framer-1id9cmv > *, .framer-cOCUB .framer-1wy1l27 > *, .framer-cOCUB .framer-v1o1mz > *, .framer-cOCUB .framer-ft66dd > *, .framer-cOCUB .framer-d2ii71 > *, .framer-cOCUB .framer-owdm7g > *, .framer-cOCUB .framer-pht0ab > *, .framer-cOCUB .framer-72w23t > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-cOCUB .framer-1d1yrdz > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-cOCUB .framer-1ycn8ip > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-cOCUB .framer-qu08is > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-cOCUB .framer-6dg39u > *, .framer-cOCUB .framer-m4f7a0 > *, .framer-cOCUB .framer-1cja005 > *, .framer-cOCUB .framer-nyy8cy > *, .framer-cOCUB .framer-d1afe5 > *, .framer-cOCUB .framer-epsedh > *, .framer-cOCUB .framer-10z2d6h > *, .framer-cOCUB .framer-4xn8e0 > *, .framer-cOCUB .framer-1m7l5rd > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-cOCUB .framer-pnbdao > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-cOCUB .framer-125i69a > *, .framer-cOCUB .framer-1pwwgra > *, .framer-cOCUB .framer-hh0f3y > *, .framer-cOCUB .framer-15mr5sf > *, .framer-cOCUB .framer-1dxmyz2 > *, .framer-cOCUB .framer-19h4mk1 > *, .framer-cOCUB .framer-9srj6i > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-cOCUB .framer-59dxhk > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-cOCUB .framer-ix7o2v > *, .framer-cOCUB .framer-63gv3b > *, .framer-cOCUB .framer-171dyij > *, .framer-cOCUB .framer-1k6gsuk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-cOCUB .framer-1mj0dts > *, .framer-cOCUB .framer-ls4h2y > *, .framer-cOCUB .framer-qn7ghc > *, .framer-cOCUB .framer-142jtx2 > *, .framer-cOCUB .framer-cnhgil > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-cOCUB .framer-xgim50 > *, .framer-cOCUB .framer-1wtso0h > *, .framer-cOCUB .framer-12i4wto > *, .framer-cOCUB .framer-1tsw29q > *, .framer-cOCUB .framer-gpbtse > *, .framer-cOCUB .framer-11zsovg > *, .framer-cOCUB .framer-172ijag > *, .framer-cOCUB .framer-r6ul9l > *, .framer-cOCUB .framer-etg3jk > *, .framer-cOCUB .framer-195t8z5 > *, .framer-cOCUB .framer-eh8ll0 > *, .framer-cOCUB .framer-zy4tiw > *, .framer-cOCUB .framer-1xuk5r7 > *, .framer-cOCUB .framer-jpqgq8 > *, .framer-cOCUB .framer-1xa5v30 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cOCUB .framer-1d4u73 > *, .framer-cOCUB .framer-1pz5ldu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-cOCUB .framer-dbyte1 > *, .framer-cOCUB .framer-zfoaa3 > *, .framer-cOCUB .framer-1nyfrtn > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-cOCUB .framer-snbc0n > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-cOCUB .framer-k7cdm9 > *, .framer-cOCUB .framer-15o0x55 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-cOCUB .framer-1y6yoez > *, .framer-cOCUB .framer-105zc33 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-cOCUB .framer-1nwj4ap > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-cOCUB .framer-rfw4q5 > *, .framer-cOCUB .framer-1ja0mmd > *, .framer-cOCUB .framer-1pnnro7 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-cOCUB .framer-r1b2mk > *, .framer-cOCUB .framer-1lzwc3q > *, .framer-cOCUB .framer-ia097q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-cOCUB .framer-5p4r5t > *, .framer-cOCUB .framer-1liq96s > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-cOCUB .framer-1mdmiqo > *, .framer-cOCUB .framer-1mf9z8q > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-cOCUB .framer-ix1xwr > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-cOCUB .framer-1pk7d1t > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-cOCUB .framer-1tsh28 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-cOCUB .framer-1m01sqa > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-cOCUB .framer-l3r5m > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-cOCUB .framer-1k57v86 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-cOCUB[data-border=\"true\"]::after, .framer-cOCUB [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: 992px) and (max-width: 1439px) { .framer-cOCUB.framer-172g3ra { width: 992px; } .framer-cOCUB .framer-10pfsf2-container, .framer-cOCUB .framer-3ad6p0-container { height: auto; } .framer-cOCUB .framer-vw6eev { min-height: 710px; padding: 0px 30px 0px 30px; } .framer-cOCUB .framer-9ujgs6 { gap: 32px; } .framer-cOCUB .framer-mv2xf6 { gap: 30px; } .framer-cOCUB .framer-15nuhjf { aspect-ratio: 1.3952180028129395 / 1; height: var(--framer-aspect-ratio-supported, 711px); min-height: unset; } .framer-cOCUB .framer-1ycn8ip { gap: 70px; padding: 100px 0px 0px 0px; } .framer-cOCUB .framer-qu08is { max-width: 1000px; } .framer-cOCUB .framer-yo5cjq { flex-direction: column; gap: 40px; justify-content: center; } .framer-cOCUB .framer-6dg39u { align-content: center; align-items: center; justify-content: center; width: 100%; } .framer-cOCUB .framer-mm5bvl { width: 86%; } .framer-cOCUB .framer-pnbdao { gap: 70px; padding: 50px 30px 100px 30px; } .framer-cOCUB .framer-p6uniz { align-content: unset; align-items: unset; display: grid; gap: 88px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; max-width: 1000px; } .framer-cOCUB .framer-125i69a { align-content: center; align-items: center; align-self: start; justify-self: start; width: 100%; } .framer-cOCUB .framer-1pwwgra, .framer-cOCUB .framer-hh0f3y, .framer-cOCUB .framer-15mr5sf { align-self: start; justify-self: start; width: 100%; } .framer-cOCUB .framer-xpabr8, .framer-cOCUB .framer-kg6xvc, .framer-cOCUB .framer-15o0x55, .framer-cOCUB .framer-1tsw29q, .framer-cOCUB .framer-1wy1l27, .framer-cOCUB .framer-r6ul9l, .framer-cOCUB .framer-d2ii71, .framer-cOCUB .framer-zy4tiw, .framer-cOCUB .framer-72w23t { width: 100%; } .framer-cOCUB .framer-ke2qa4 { gap: 16px; grid-template-rows: repeat(1, min-content); } .framer-cOCUB .framer-ix7o2v, .framer-cOCUB .framer-ls4h2y, .framer-cOCUB .framer-63gv3b, .framer-cOCUB .framer-qn7ghc, .framer-cOCUB .framer-171dyij, .framer-cOCUB .framer-142jtx2, .framer-cOCUB .framer-1k6gsuk, .framer-cOCUB .framer-cnhgil { min-width: 256px; } .framer-cOCUB .framer-1mj0dts { align-content: center; align-items: center; width: 100%; } .framer-cOCUB .framer-ua6x1v, .framer-cOCUB .framer-h5cwo4, .framer-cOCUB .framer-155q3tf { height: min-content; padding: 10px 20px 10px 20px; } .framer-cOCUB .framer-528ks5-container, .framer-cOCUB .framer-dbv04g-container, .framer-cOCUB .framer-1dv8gu5-container, .framer-cOCUB .framer-sz11ia-container { height: 14px; width: 14px; } .framer-cOCUB .framer-ewrisc, .framer-cOCUB .framer-1az5yav, .framer-cOCUB .framer-5se8hg, .framer-cOCUB .framer-5cxqvf, .framer-cOCUB .framer-9aw6n6, .framer-cOCUB .framer-1jcdcu0, .framer-cOCUB .framer-m96x0y, .framer-cOCUB .framer-108vobm { height: 0px; top: calc(50.00000000000002% - 0px / 2); } .framer-cOCUB .framer-a43msa, .framer-cOCUB .framer-3nf3jf, .framer-cOCUB .framer-a0qni, .framer-cOCUB .framer-1gvw08l { flex: 1 0 0px; height: min-content; padding: 10px 16px 10px 16px; width: 1px; } .framer-cOCUB .framer-1i89ex4 { height: 289px; } .framer-cOCUB .framer-1d4u73 { height: 200px; } .framer-cOCUB .framer-1iwx2ix { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-cOCUB .framer-1r5n0xw { height: 6px; width: 180px; } .framer-cOCUB .framer-kvifp8 { height: var(--framer-aspect-ratio-supported, 9px); } .framer-cOCUB .framer-ic0yrk { height: 41px; } .framer-cOCUB .framer-3gjly5, .framer-cOCUB .framer-18x23kh, .framer-cOCUB .framer-1gj69ce, .framer-cOCUB .framer-teika8 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-cOCUB .framer-135bpzz { height: min-content; padding: 10px 32px 10px 32px; } .framer-cOCUB .framer-jgqomu { aspect-ratio: unset; bottom: unset; height: 300px; left: 120px; right: 138px; top: 45px; transform: unset; width: unset; } .framer-cOCUB .framer-v0vi2e { aspect-ratio: unset; bottom: 95px; height: 100px; left: 230px; right: 58px; width: unset; } .framer-cOCUB .framer-106yxsi { height: var(--framer-aspect-ratio-supported, 40px); left: 20px; top: 20px; width: 40px; } .framer-cOCUB .framer-jucx6u { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; } .framer-cOCUB .framer-qtns79 { height: var(--framer-aspect-ratio-supported, 40px); right: 30px; width: 40px; } .framer-cOCUB .framer-1nwj4ap { padding: 100px 40px 100px 40px; } .framer-cOCUB .framer-rfw4q5, .framer-cOCUB .framer-1k57v86 { width: 52%; } .framer-cOCUB .framer-118qkgi { gap: 20px; grid-template-columns: repeat(3, minmax(200px, 1fr)); } .framer-cOCUB .framer-18hrctb { width: 63%; } .framer-cOCUB .framer-1lzwc3q { padding: 50px 22px 50px 28px; width: 36%; } .framer-cOCUB .framer-1y220hw { aspect-ratio: 1.7033639143730888 / 1; height: var(--framer-aspect-ratio-supported, 163px); } .framer-cOCUB .framer-1mdmiqo { width: 53%; } .framer-cOCUB .framer-los1y4 { height: var(--framer-aspect-ratio-supported, 181px); } .framer-cOCUB .framer-1am8qbz-container { aspect-ratio: 2.0451977401129944 / 1; height: var(--framer-aspect-ratio-supported, 172px); } .framer-cOCUB .framer-hihg6o { height: var(--framer-aspect-ratio-supported, 150px); } .framer-cOCUB .framer-1m01sqa { padding: 120px 40px 120px 40px; } .framer-cOCUB .framer-1li2fcq { grid-template-columns: repeat(2, minmax(80px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cOCUB .framer-9ujgs6, .framer-cOCUB .framer-mv2xf6, .framer-cOCUB .framer-1ycn8ip, .framer-cOCUB .framer-yo5cjq, .framer-cOCUB .framer-pnbdao, .framer-cOCUB .framer-p6uniz, .framer-cOCUB .framer-ke2qa4, .framer-cOCUB .framer-118qkgi { gap: 0px; } .framer-cOCUB .framer-9ujgs6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-cOCUB .framer-9ujgs6 > :first-child, .framer-cOCUB .framer-1ycn8ip > :first-child, .framer-cOCUB .framer-yo5cjq > :first-child, .framer-cOCUB .framer-pnbdao > :first-child { margin-top: 0px; } .framer-cOCUB .framer-9ujgs6 > :last-child, .framer-cOCUB .framer-1ycn8ip > :last-child, .framer-cOCUB .framer-yo5cjq > :last-child, .framer-cOCUB .framer-pnbdao > :last-child { margin-bottom: 0px; } .framer-cOCUB .framer-mv2xf6 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-cOCUB .framer-mv2xf6 > :first-child { margin-left: 0px; } .framer-cOCUB .framer-mv2xf6 > :last-child { margin-right: 0px; } .framer-cOCUB .framer-1ycn8ip > *, .framer-cOCUB .framer-pnbdao > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-cOCUB .framer-yo5cjq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-cOCUB .framer-p6uniz > *, .framer-cOCUB .framer-p6uniz > :first-child, .framer-cOCUB .framer-p6uniz > :last-child, .framer-cOCUB .framer-ke2qa4 > *, .framer-cOCUB .framer-ke2qa4 > :first-child, .framer-cOCUB .framer-ke2qa4 > :last-child, .framer-cOCUB .framer-118qkgi > *, .framer-cOCUB .framer-118qkgi > :first-child, .framer-cOCUB .framer-118qkgi > :last-child { margin: 0px; } }}\",\"@media (max-width: 767px) { .framer-cOCUB.framer-172g3ra { width: 390px; } .framer-cOCUB .framer-10pfsf2-container { height: auto; } .framer-cOCUB .framer-vw6eev { min-height: unset; padding: 100px 0px 60px 0px; } .framer-cOCUB .framer-9ujgs6 { max-width: unset; padding: 0px 20px 0px 20px; } .framer-cOCUB .framer-mv2xf6, .framer-cOCUB .framer-12i4wto, .framer-cOCUB .framer-11zsovg, .framer-cOCUB .framer-195t8z5, .framer-cOCUB .framer-jpqgq8, .framer-cOCUB .framer-5p4r5t, .framer-cOCUB .framer-1liq96s { flex-direction: column; } .framer-cOCUB .framer-athuzc, .framer-cOCUB .framer-1fp5vas, .framer-cOCUB .framer-ia097q, .framer-cOCUB .framer-1mf9z8q { flex: none; width: 100%; } .framer-cOCUB .framer-8g91sm { flex-direction: column; gap: 0px; justify-content: center; } .framer-cOCUB .framer-4cr92v { flex: none; white-space: pre; width: auto; } .framer-cOCUB .framer-1d1yrdz { align-content: center; align-items: center; flex-direction: column; gap: 30px; justify-content: center; } .framer-cOCUB .framer-15nuhjf { height: unset; min-height: unset; top: 0px; } .framer-cOCUB .framer-1ycn8ip { gap: 40px; padding: 60px 0px 30px 0px; } .framer-cOCUB .framer-qu08is { max-width: 390px; padding: 0px 20px 0px 20px; } .framer-cOCUB .framer-yo5cjq, .framer-cOCUB .framer-v7gspd, .framer-cOCUB .framer-me01ci { flex-direction: column; gap: 30px; justify-content: center; } .framer-cOCUB .framer-6dg39u, .framer-cOCUB .framer-1cja005 { align-content: center; align-items: center; width: 100%; } .framer-cOCUB .framer-mm5bvl { gap: 12px; width: 100%; } .framer-cOCUB .framer-160hs-container { height: 435px; } .framer-cOCUB .framer-pnbdao { gap: 40px; padding: 30px 20px 60px 20px; } .framer-cOCUB .framer-p6uniz { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: center; max-width: 390px; } .framer-cOCUB .framer-125i69a, .framer-cOCUB .framer-1pwwgra, .framer-cOCUB .framer-hh0f3y, .framer-cOCUB .framer-15mr5sf, .framer-cOCUB .framer-xpabr8, .framer-cOCUB .framer-m4f7a0, .framer-cOCUB .framer-1mj0dts, .framer-cOCUB .framer-15o0x55, .framer-cOCUB .framer-1tsw29q, .framer-cOCUB .framer-r6ul9l, .framer-cOCUB .framer-zy4tiw, .framer-cOCUB .framer-1ja0mmd, .framer-cOCUB .framer-1mdmiqo { width: 100%; } .framer-cOCUB .framer-59dxhk, .framer-cOCUB .framer-1m01sqa { gap: 40px; padding: 60px 20px 60px 20px; } .framer-cOCUB .framer-1iylcx4, .framer-cOCUB .framer-bcqfsa, .framer-cOCUB .framer-wd7ukx, .framer-cOCUB .framer-1fxtmm1 { max-width: 280px; } .framer-cOCUB .framer-ke2qa4 { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-cOCUB .framer-rlt3qc, .framer-cOCUB .framer-1iwx2ix { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-cOCUB .framer-3ad6p0-container { aspect-ratio: 3.896103896103896 / 1; height: var(--framer-aspect-ratio-supported, 77px); width: 300px; } .framer-cOCUB .framer-zo6q42, .framer-cOCUB .framer-1c6j4bt, .framer-cOCUB .framer-v1o1mz, .framer-cOCUB .framer-owdm7g { justify-content: center; } .framer-cOCUB .framer-ua6x1v, .framer-cOCUB .framer-a43msa, .framer-cOCUB .framer-h5cwo4, .framer-cOCUB .framer-155q3tf { height: min-content; padding: 10px 20px 10px 20px; width: 100%; } .framer-cOCUB .framer-ewrisc, .framer-cOCUB .framer-1az5yav, .framer-cOCUB .framer-5se8hg, .framer-cOCUB .framer-5cxqvf, .framer-cOCUB .framer-9aw6n6, .framer-cOCUB .framer-1jcdcu0, .framer-cOCUB .framer-m96x0y, .framer-cOCUB .framer-108vobm { height: 0px; top: calc(50.00000000000002% - 0px / 2); } .framer-cOCUB .framer-1i89ex4, .framer-cOCUB .framer-ic0yrk { width: 240px; } .framer-cOCUB .framer-1d4u73 { gap: 8px; } .framer-cOCUB .framer-1r5n0xw { aspect-ratio: 26.666666666666668 / 1; height: var(--framer-aspect-ratio-supported, 6px); width: 160px; } .framer-cOCUB .framer-kvifp8 { aspect-ratio: 34.666666666666664 / 1; height: var(--framer-aspect-ratio-supported, 6px); } .framer-cOCUB .framer-3gjly5, .framer-cOCUB .framer-18x23kh, .framer-cOCUB .framer-1gj69ce, .framer-cOCUB .framer-teika8 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-cOCUB .framer-135bpzz, .framer-cOCUB .framer-3nf3jf, .framer-cOCUB .framer-a0qni, .framer-cOCUB .framer-1gvw08l { height: min-content; padding: 10px 32px 10px 32px; width: 100%; } .framer-cOCUB .framer-c5rc50-container { height: 352px; } .framer-cOCUB .framer-9izskw { aspect-ratio: 0.8857142857142857 / 1; height: var(--framer-aspect-ratio-supported, 350px); } .framer-cOCUB .framer-jgqomu { aspect-ratio: 0.4444444444444444 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 372px); left: 73px; right: 72px; top: 45px; transform: unset; width: unset; } .framer-cOCUB .framer-v0vi2e { bottom: 15px; left: unset; right: -60px; } .framer-cOCUB .framer-106yxsi { left: 20px; top: 20px; } .framer-cOCUB .framer-qtns79 { right: 30px; top: 70px; } .framer-cOCUB .framer-1nwj4ap { gap: 80px; padding: 60px 20px 60px 20px; } .framer-cOCUB .framer-rfw4q5, .framer-cOCUB .framer-1k57v86 { align-content: center; align-items: center; justify-content: center; width: 100%; } .framer-cOCUB .framer-118qkgi { gap: 20px; grid-template-columns: repeat(1, minmax(120px, 1fr)); } .framer-cOCUB .framer-1r7ylpo { padding: 60px 20px 60px 20px; } .framer-cOCUB .framer-1lzwc3q { align-self: unset; flex: 1 0 0px; height: 1px; padding: 34px 22px 33px 22px; width: 100%; } .framer-cOCUB .framer-1y220hw { aspect-ratio: 1.7094972067039107 / 1; height: var(--framer-aspect-ratio-supported, 179px); } .framer-cOCUB .framer-d1afe5, .framer-cOCUB .framer-10z2d6h { align-content: center; align-items: center; } .framer-cOCUB .framer-epsedh { align-content: center; align-items: center; padding: 0px 30px 0px 30px; } .framer-cOCUB .framer-los1y4 { height: var(--framer-aspect-ratio-supported, 125px); } .framer-cOCUB .framer-ix1xwr { gap: 50px; padding: 60px 0px 60px 0px; } .framer-cOCUB .framer-1pk7d1t { gap: 30px; max-width: 520px; } .framer-cOCUB .framer-1igrvnv { grid-template-columns: repeat(1, minmax(10px, 1fr)); max-width: 275px; } .framer-cOCUB .framer-1qb1omm { padding: 60px 0px 60px 0px; } .framer-cOCUB .framer-hihg6o { height: var(--framer-aspect-ratio-supported, 150px); } .framer-cOCUB .framer-at66w1 { max-width: 520px; } .framer-cOCUB .framer-1li2fcq { grid-template-columns: repeat(1, minmax(80px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cOCUB .framer-mv2xf6, .framer-cOCUB .framer-8g91sm, .framer-cOCUB .framer-1d1yrdz, .framer-cOCUB .framer-1ycn8ip, .framer-cOCUB .framer-yo5cjq, .framer-cOCUB .framer-mm5bvl, .framer-cOCUB .framer-pnbdao, .framer-cOCUB .framer-p6uniz, .framer-cOCUB .framer-59dxhk, .framer-cOCUB .framer-ke2qa4, .framer-cOCUB .framer-12i4wto, .framer-cOCUB .framer-1d4u73, .framer-cOCUB .framer-11zsovg, .framer-cOCUB .framer-195t8z5, .framer-cOCUB .framer-jpqgq8, .framer-cOCUB .framer-1nwj4ap, .framer-cOCUB .framer-v7gspd, .framer-cOCUB .framer-118qkgi, .framer-cOCUB .framer-5p4r5t, .framer-cOCUB .framer-1liq96s, .framer-cOCUB .framer-ix1xwr, .framer-cOCUB .framer-1pk7d1t, .framer-cOCUB .framer-1m01sqa, .framer-cOCUB .framer-me01ci { gap: 0px; } .framer-cOCUB .framer-mv2xf6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-cOCUB .framer-mv2xf6 > :first-child, .framer-cOCUB .framer-8g91sm > :first-child, .framer-cOCUB .framer-1d1yrdz > :first-child, .framer-cOCUB .framer-1ycn8ip > :first-child, .framer-cOCUB .framer-yo5cjq > :first-child, .framer-cOCUB .framer-mm5bvl > :first-child, .framer-cOCUB .framer-pnbdao > :first-child, .framer-cOCUB .framer-p6uniz > :first-child, .framer-cOCUB .framer-59dxhk > :first-child, .framer-cOCUB .framer-12i4wto > :first-child, .framer-cOCUB .framer-1d4u73 > :first-child, .framer-cOCUB .framer-11zsovg > :first-child, .framer-cOCUB .framer-195t8z5 > :first-child, .framer-cOCUB .framer-jpqgq8 > :first-child, .framer-cOCUB .framer-1nwj4ap > :first-child, .framer-cOCUB .framer-v7gspd > :first-child, .framer-cOCUB .framer-5p4r5t > :first-child, .framer-cOCUB .framer-1liq96s > :first-child, .framer-cOCUB .framer-ix1xwr > :first-child, .framer-cOCUB .framer-1pk7d1t > :first-child, .framer-cOCUB .framer-1m01sqa > :first-child, .framer-cOCUB .framer-me01ci > :first-child { margin-top: 0px; } .framer-cOCUB .framer-mv2xf6 > :last-child, .framer-cOCUB .framer-8g91sm > :last-child, .framer-cOCUB .framer-1d1yrdz > :last-child, .framer-cOCUB .framer-1ycn8ip > :last-child, .framer-cOCUB .framer-yo5cjq > :last-child, .framer-cOCUB .framer-mm5bvl > :last-child, .framer-cOCUB .framer-pnbdao > :last-child, .framer-cOCUB .framer-p6uniz > :last-child, .framer-cOCUB .framer-59dxhk > :last-child, .framer-cOCUB .framer-12i4wto > :last-child, .framer-cOCUB .framer-1d4u73 > :last-child, .framer-cOCUB .framer-11zsovg > :last-child, .framer-cOCUB .framer-195t8z5 > :last-child, .framer-cOCUB .framer-jpqgq8 > :last-child, .framer-cOCUB .framer-1nwj4ap > :last-child, .framer-cOCUB .framer-v7gspd > :last-child, .framer-cOCUB .framer-5p4r5t > :last-child, .framer-cOCUB .framer-1liq96s > :last-child, .framer-cOCUB .framer-ix1xwr > :last-child, .framer-cOCUB .framer-1pk7d1t > :last-child, .framer-cOCUB .framer-1m01sqa > :last-child, .framer-cOCUB .framer-me01ci > :last-child { margin-bottom: 0px; } .framer-cOCUB .framer-8g91sm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cOCUB .framer-1d1yrdz > *, .framer-cOCUB .framer-yo5cjq > *, .framer-cOCUB .framer-v7gspd > *, .framer-cOCUB .framer-1pk7d1t > *, .framer-cOCUB .framer-me01ci > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-cOCUB .framer-1ycn8ip > *, .framer-cOCUB .framer-pnbdao > *, .framer-cOCUB .framer-p6uniz > *, .framer-cOCUB .framer-59dxhk > *, .framer-cOCUB .framer-1m01sqa > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-cOCUB .framer-mm5bvl > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-cOCUB .framer-ke2qa4 > *, .framer-cOCUB .framer-ke2qa4 > :first-child, .framer-cOCUB .framer-ke2qa4 > :last-child, .framer-cOCUB .framer-118qkgi > *, .framer-cOCUB .framer-118qkgi > :first-child, .framer-cOCUB .framer-118qkgi > :last-child { margin: 0px; } .framer-cOCUB .framer-12i4wto > *, .framer-cOCUB .framer-11zsovg > *, .framer-cOCUB .framer-195t8z5 > *, .framer-cOCUB .framer-jpqgq8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cOCUB .framer-1d4u73 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-cOCUB .framer-1nwj4ap > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-cOCUB .framer-5p4r5t > *, .framer-cOCUB .framer-1liq96s > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-cOCUB .framer-ix1xwr > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-cOCUB.framer-172g3ra { width: 768px; } .framer-cOCUB .framer-10pfsf2-container, .framer-cOCUB .framer-3ad6p0-container { height: auto; } .framer-cOCUB .framer-vw6eev { min-height: unset; padding: 160px 20px 80px 20px; } .framer-cOCUB .framer-9ujgs6 { align-content: flex-start; align-items: flex-start; } .framer-cOCUB .framer-mv2xf6 { max-width: 80%; } .framer-cOCUB .framer-1d1yrdz, .framer-cOCUB .framer-5p4r5t, .framer-cOCUB .framer-1liq96s { flex-direction: column; } .framer-cOCUB .framer-1fp5vas, .framer-cOCUB .framer-ia097q, .framer-cOCUB .framer-1mf9z8q { flex: none; width: 100%; } .framer-cOCUB .framer-15nuhjf { height: unset; min-height: unset; top: 0px; } .framer-cOCUB .framer-1ycn8ip { gap: 60px; padding: 80px 0px 0px 0px; } .framer-cOCUB .framer-qu08is { max-width: 768px; padding: 0px 30px 0px 30px; } .framer-cOCUB .framer-yo5cjq { flex-direction: column; gap: 40px; justify-content: center; } .framer-cOCUB .framer-6dg39u, .framer-cOCUB .framer-1mj0dts { align-content: center; align-items: center; width: 100%; } .framer-cOCUB .framer-mm5bvl, .framer-cOCUB .framer-xpabr8, .framer-cOCUB .framer-m4f7a0, .framer-cOCUB .framer-15o0x55, .framer-cOCUB .framer-1mdmiqo { width: 100%; } .framer-cOCUB .framer-pnbdao { gap: 60px; padding: 40px 30px 80px 30px; } .framer-cOCUB .framer-p6uniz { gap: 60px; justify-content: center; max-width: 768px; padding: 0px 30px 0px 30px; } .framer-cOCUB .framer-125i69a, .framer-cOCUB .framer-1pwwgra, .framer-cOCUB .framer-hh0f3y, .framer-cOCUB .framer-15mr5sf { width: 40%; } .framer-cOCUB .framer-1iylcx4, .framer-cOCUB .framer-bcqfsa { max-width: unset; } .framer-cOCUB .framer-ke2qa4 { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-cOCUB .framer-ix7o2v, .framer-cOCUB .framer-ls4h2y, .framer-cOCUB .framer-63gv3b, .framer-cOCUB .framer-qn7ghc, .framer-cOCUB .framer-171dyij, .framer-cOCUB .framer-142jtx2, .framer-cOCUB .framer-1k6gsuk, .framer-cOCUB .framer-cnhgil { min-width: 256px; } .framer-cOCUB .framer-1iwx2ix { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-cOCUB .framer-1r5n0xw { height: 6px; width: 180px; } .framer-cOCUB .framer-kvifp8 { height: var(--framer-aspect-ratio-supported, 15px); } .framer-cOCUB .framer-3gjly5 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-cOCUB .framer-9izskw { height: 450px; } .framer-cOCUB .framer-jgqomu { aspect-ratio: unset; bottom: unset; height: 423px; left: 141px; right: 208px; top: 13px; transform: unset; width: unset; } .framer-cOCUB .framer-v0vi2e { bottom: 90px; left: unset; right: 51px; } .framer-cOCUB .framer-106yxsi { left: 47px; top: 13px; } .framer-cOCUB .framer-jucx6u { bottom: 27px; height: var(--framer-aspect-ratio-supported, 70px); left: 50px; width: 70px; } .framer-cOCUB .framer-qtns79 { right: 159px; top: 43px; } .framer-cOCUB .framer-1nwj4ap, .framer-cOCUB .framer-1r7ylpo { padding: 100px 40px 0px 40px; } .framer-cOCUB .framer-rfw4q5, .framer-cOCUB .framer-1k57v86 { width: 67%; } .framer-cOCUB .framer-118qkgi { gap: 20px; grid-template-columns: repeat(3, minmax(200px, 1fr)); } .framer-cOCUB .framer-1lzwc3q { align-self: unset; flex: 1 0 0px; height: 1px; padding: 34px 22px 33px 22px; width: 100%; } .framer-cOCUB .framer-1y220hw { aspect-ratio: 2.1231281198003327 / 1; height: var(--framer-aspect-ratio-supported, 304px); } .framer-cOCUB .framer-d1afe5, .framer-cOCUB .framer-epsedh, .framer-cOCUB .framer-10z2d6h { align-content: center; align-items: center; } .framer-cOCUB .framer-los1y4 { height: var(--framer-aspect-ratio-supported, 267px); } .framer-cOCUB .framer-ix1xwr { gap: 60px; padding: 80px 0px 80px 0px; } .framer-cOCUB .framer-1pk7d1t { gap: 40px; max-width: 810px; } .framer-cOCUB .framer-1igrvnv { grid-template-columns: repeat(2, minmax(10px, 1fr)); max-width: 574px; } .framer-cOCUB .framer-1qb1omm { padding: 80px 0px 80px 0px; } .framer-cOCUB .framer-hihg6o { height: var(--framer-aspect-ratio-supported, 150px); } .framer-cOCUB .framer-at66w1 { max-width: 810px; } .framer-cOCUB .framer-1m01sqa { padding: 120px 40px 120px 40px; } .framer-cOCUB .framer-1li2fcq { grid-template-columns: repeat(2, minmax(80px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cOCUB .framer-1d1yrdz, .framer-cOCUB .framer-1ycn8ip, .framer-cOCUB .framer-yo5cjq, .framer-cOCUB .framer-pnbdao, .framer-cOCUB .framer-p6uniz, .framer-cOCUB .framer-ke2qa4, .framer-cOCUB .framer-118qkgi, .framer-cOCUB .framer-5p4r5t, .framer-cOCUB .framer-1liq96s, .framer-cOCUB .framer-ix1xwr, .framer-cOCUB .framer-1pk7d1t { gap: 0px; } .framer-cOCUB .framer-1d1yrdz > *, .framer-cOCUB .framer-1ycn8ip > *, .framer-cOCUB .framer-pnbdao > *, .framer-cOCUB .framer-ix1xwr > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-cOCUB .framer-1d1yrdz > :first-child, .framer-cOCUB .framer-1ycn8ip > :first-child, .framer-cOCUB .framer-yo5cjq > :first-child, .framer-cOCUB .framer-pnbdao > :first-child, .framer-cOCUB .framer-5p4r5t > :first-child, .framer-cOCUB .framer-1liq96s > :first-child, .framer-cOCUB .framer-ix1xwr > :first-child, .framer-cOCUB .framer-1pk7d1t > :first-child { margin-top: 0px; } .framer-cOCUB .framer-1d1yrdz > :last-child, .framer-cOCUB .framer-1ycn8ip > :last-child, .framer-cOCUB .framer-yo5cjq > :last-child, .framer-cOCUB .framer-pnbdao > :last-child, .framer-cOCUB .framer-5p4r5t > :last-child, .framer-cOCUB .framer-1liq96s > :last-child, .framer-cOCUB .framer-ix1xwr > :last-child, .framer-cOCUB .framer-1pk7d1t > :last-child { margin-bottom: 0px; } .framer-cOCUB .framer-yo5cjq > *, .framer-cOCUB .framer-1pk7d1t > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-cOCUB .framer-p6uniz > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-cOCUB .framer-p6uniz > :first-child { margin-left: 0px; } .framer-cOCUB .framer-p6uniz > :last-child { margin-right: 0px; } .framer-cOCUB .framer-ke2qa4 > *, .framer-cOCUB .framer-ke2qa4 > :first-child, .framer-cOCUB .framer-ke2qa4 > :last-child, .framer-cOCUB .framer-118qkgi > *, .framer-cOCUB .framer-118qkgi > :first-child, .framer-cOCUB .framer-118qkgi > :last-child { margin: 0px; } .framer-cOCUB .framer-5p4r5t > *, .framer-cOCUB .framer-1liq96s > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9884.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nN51sTC9a\":{\"layout\":[\"fixed\",\"auto\"]},\"qotNqqVtL\":{\"layout\":[\"fixed\",\"auto\"]},\"XXkSNY3Hg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"UXf13jjOc\":{\"pattern\":\":UXf13jjOc\",\"name\":\"howwework\"},\"pvyJvQjur\":{\"pattern\":\":pvyJvQjur\",\"name\":\"testimonials\"},\"FKX2qdzD0\":{\"pattern\":\":FKX2qdzD0\",\"name\":\"why\"},\"a7OhrQIqE\":{\"pattern\":\":a7OhrQIqE\",\"name\":\"features\"},\"MLwwlGOie\":{\"pattern\":\":MLwwlGOie\",\"name\":\"testimonial\"},\"rKDTIf2Zn\":{\"pattern\":\":rKDTIf2Zn\",\"name\":\"services\"}}\n * @framerResponsiveScreen\n */const FramerhmKhdD_wU=withCSS(Component,css,\"framer-cOCUB\");export default FramerhmKhdD_wU;FramerhmKhdD_wU.displayName=\"Home\";FramerhmKhdD_wU.defaultProps={height:9884.5,width:1440};addFonts(FramerhmKhdD_wU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfE5OrS8SlKw.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"}]},...HeaderFonts,...TextCycleFonts,...Button2Fonts,...VideoFonts,...ImageTickerFonts,...GlowingButtonFonts,...MaterialFonts,...FeatherFonts,...MemojiFonts,...CardsFonts,...TickerFonts,...PartnerLogosFonts,...WorkCardFonts,...BrandTickerFonts,...AnimatedIllustration01Fonts,...CardFeatureFonts,...SliderTestimonialBlockFonts,...CardTestimonialFonts,...BlogCardFonts,...FooterNewFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhmKhdD_wU\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"UXf13jjOc\\\":{\\\"pattern\\\":\\\":UXf13jjOc\\\",\\\"name\\\":\\\"howwework\\\"},\\\"pvyJvQjur\\\":{\\\"pattern\\\":\\\":pvyJvQjur\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"FKX2qdzD0\\\":{\\\"pattern\\\":\\\":FKX2qdzD0\\\",\\\"name\\\":\\\"why\\\"},\\\"a7OhrQIqE\\\":{\\\"pattern\\\":\\\":a7OhrQIqE\\\",\\\"name\\\":\\\"features\\\"},\\\"MLwwlGOie\\\":{\\\"pattern\\\":\\\":MLwwlGOie\\\",\\\"name\\\":\\\"testimonial\\\"},\\\"rKDTIf2Zn\\\":{\\\"pattern\\\":\\\":rKDTIf2Zn\\\",\\\"name\\\":\\\"services\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nN51sTC9a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qotNqqVtL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XXkSNY3Hg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"9884.5\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "serializationHash", "Ticker", "Image2", "css", "FramerSRl9Yase3", "withCSS", "SRl9Yase3_default", "addFonts", "TickerFonts", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "icon", "id", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "G2JTyjlTh", "o4k5UlkuX", "lPKjHXKWo", "y0HEf03Fo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerrV0WvUeYt", "withCSS", "rV0WvUeYt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "style", "className", "layoutId", "width", "height", "outerVariant", "VurELiPqN", "Z2NuoQS1k", "tc_6nmlts", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "p", "LayoutGroup", "motion", "cx", "Stack", "Image2", "css", "FramerdkRfXNUhM", "withCSS", "dkRfXNUhM_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear11r16we", "args", "onAppear15iuf6z", "onAppeark6bu2f", "useOnVariantChange", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "css", "FramerfODiDv3UW", "withCSS", "fODiDv3UW_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerC3ydHbDVC", "withCSS", "C3ydHbDVC_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1ium6q4", "args", "onAppear16yfd7e", "onAppear7a1474", "useOnVariantChange", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "css", "FramerJgOnmcTtx", "withCSS", "JgOnmcTtx_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearwhxyi6", "args", "onAppear1rt3jl6", "onAppear1gsqn2b", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "css", "FramerFyWNZdsMO", "withCSS", "FyWNZdsMO_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "ShimmerBottomFonts", "getFonts", "JgOnmcTtx_default", "ShimmerTopFonts", "FyWNZdsMO_default", "MotionAWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fRpVlbSPr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1kisdr2", "args", "onMouseLeave1wb39fx", "onMouseEnterrors53", "onMouseLeave115ytes", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "ComponentViewportProvider", "RichText2", "css", "FramerCQevR49Jp", "withCSS", "CQevR49Jp_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "j_lJfiUWA", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Image2", "css", "FramerTxIxZ9R20", "withCSS", "TxIxZ9R20_default", "addPropertyControls", "ControlType", "addFonts", "ImageBoxFonts", "getFonts", "TxIxZ9R20_default", "TickerFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "Ticker", "TxIxZ9R20_default", "css", "FramerKxbC4e4FX", "withCSS", "KxbC4e4FX_default", "addFonts", "ImageBoxFonts", "TickerFonts", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "YDQc93oh7_default", "TextCycleFonts", "M4w01zU55_default", "Button2Fonts", "sxwwlQ42X_default", "VideoFonts", "Video", "RichTextWithFX", "withFX", "RichText2", "ImageTickerFonts", "KxbC4e4FX_default", "MotionDivWithFX", "motion", "GlowingButtonFonts", "CQevR49Jp_default", "ContainerWithFX", "Container", "MaterialFonts", "Icon", "FeatherFonts", "MemojiFonts", "dkRfXNUhM_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "CardsFonts", "C3ydHbDVC_default", "TickerFonts", "Ticker", "ImageWithFX", "Image2", "PartnerLogosFonts", "Wvk4aPTHr_default", "WorkCardFonts", "DFu8RQ93Z_default", "MotionDivWithOptimizedAppearEffect", "BrandTickerFonts", "SRl9Yase3_default", "AnimatedIllustration01Fonts", "fODiDv3UW_default", "CardFeatureFonts", "rV0WvUeYt_default", "SliderTestimonialBlockFonts", "JbmqOAAh_default", "CardTestimonialFonts", "GNvU9Qirz_default", "BlogCardFonts", "hlqozoj6D_default", "FooterNewFonts", "GmXyBUjOE_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "transition3", "transition4", "animation1", "transition5", "animation2", "transition6", "animation3", "animation4", "transition7", "animation5", "animation6", "transition8", "animation7", "animation8", "transition9", "animation9", "animation10", "transition10", "animation11", "transition11", "animation12", "animation13", "animation14", "transformTemplate1", "_", "t", "transition12", "transition13", "animation15", "animation16", "transition14", "animation17", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation18", "transition15", "transition16", "transition17", "transition18", "addImageAlt", "image", "alt", "transition19", "transition20", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "eqfqUBAEOiTncmlxoo", "VZ8KJACVNiTncmlxoo", "y_wIuADU_iTncmlxoo", "kfjd9Ya4_iTncmlxoo", "lL7OOh74TiTncmlxoo", "Ia_oYNfo3iTncmlxoo", "idiTncmlxoo", "a75gLUnJIdXLdIu0uC", "XP4L96gRTdXLdIu0uC", "gF2AE4f22dXLdIu0uC", "qZpNoEtDJdXLdIu0uC", "iddXLdIu0uC", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed", "isDisplayed1", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "Link", "resolvedLinks3", "ChildrenCanSuspend", "IlTNCULTU_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks4", "resolvedLinks5", "q9eRUDnKi_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks6", "enumToDisplayNameFunctions", "css", "FramerhmKhdD_wU", "withCSS", "hmKhdD_wU_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
