{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/ijKsDTGk7rQveAx7hdLo/kHvVDFK3cjs6bZ5gJugD/pRVWz2MeW.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.37", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/C31a5jsoI7tLti4X41zP/Phosphor.js", "ssg:https://framerusercontent.com/modules/oBK2HL5o1MnS63avTBvR/o9sZGL4buMzPwJRoRNFM/Em5_G8_lI.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/pUC2Q4HS9uuwHefZZ6Oq/SVG.js", "ssg:https://framerusercontent.com/modules/k7080ZL3yqFkJzUsXggh/CKROIaGXhCDrtDD6v2yG/pADv1mOO5.js", "ssg:https://framerusercontent.com/modules/rw9FeXbb3zVw19Iy63aI/tBRbOaxhCeMhLgwuTH8Y/sfQv53soN.js", "ssg:https://framerusercontent.com/modules/9BQhPZzdhGbJs77bSUeL/TldSL9DoyoXMfbiiRVyG/YXzfeRvd2.js", "ssg:https://framerusercontent.com/modules/ilChV8bXeg3tY2xgsXiK/pvt5EJYT1xUtIDhMIeZW/augiA20Il.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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.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)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(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%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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||supportsWaapi){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,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (3f003a4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"aubLLu7WS\",\"e6r0dtg24\"];const variantClassNames={aubLLu7WS:\"framer-v-1j66sqc\",e6r0dtg24:\"framer-v-2hw0wg\"};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\":\"aubLLu7WS\",\"Variant 2\":\"e6r0dtg24\"};const transitions={default:{delay:0,duration:2,ease:[0,0,1,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 Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"aubLLu7WS\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"aubLLu7WS\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1ls466=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"e6r0dtg24\"),100);});const onAppear69bp72=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aubLLu7WS\"),2e3);});useOnVariantChange(baseVariant,{default:onAppear1ls466,e6r0dtg24:onAppear69bp72});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-X7eCY\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,__perspectiveFX:false,__targetOpacity:1,className:cx(\"framer-1j66sqc\",className),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aubLLu7WS\",ref:ref,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.3)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",rotate:0,...style},variants:{e6r0dtg24:{rotate:360}},...addPropertyOverrides({e6r0dtg24:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant)})})})});});const css=['.framer-X7eCY [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-X7eCY .framer-m8o6jf { display: block; }\",\".framer-X7eCY .framer-1j66sqc { height: 200px; overflow: visible; position: relative; width: 200px; }\",\".framer-X7eCY.framer-v-2hw0wg .framer-1j66sqc { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"e6r0dtg24\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerpRVWz2MeW=withCSS(Component,css,\"framer-X7eCY\");export default FramerpRVWz2MeW;FramerpRVWz2MeW.displayName=\"Dotted Spinner\";FramerpRVWz2MeW.defaultProps={height:200,width:200};addPropertyControls(FramerpRVWz2MeW,{variant:{options:[\"aubLLu7WS\",\"e6r0dtg24\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpRVWz2MeW,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpRVWz2MeW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e6r0dtg24\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pRVWz2MeW.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", "// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.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{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "let l;var d=n=>{if(!l){const t=(o,i,a)=>a.get(o)?a.get(o)(i):null,r=new Map;r.set(\"bold\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"24\"}))),r.set(\"duotone\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",opacity:\"0.2\"}),n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"16\"}))),r.set(\"fill\",()=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M218.76367,103.7002,138.75684,30.96436a15.93657,15.93657,0,0,0-21.52637.00146L37.2373,103.69971A16.03108,16.03108,0,0,0,32,115.53857l0,92.09522a16.47275,16.47275,0,0,0,4.01066,10.96174A15.91729,15.91729,0,0,0,48.002,223.999H95.96484a8,8,0,0,0,8-8V167.9917a8,8,0,0,1,8-8h32a8,8,0,0,1,8,8V215.999a8,8,0,0,0,8,8h48.05731a15.40625,15.40625,0,0,0,7.53406-1.85584A16.08415,16.08415,0,0,0,224,207.999v-92.46A16.03567,16.03567,0,0,0,218.76367,103.7002Z\"}))),r.set(\"light\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"12\"}))),r.set(\"thin\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"8\"}))),r.set(\"regular\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"16\"})));const e=(o,i)=>t(o,i,r),s=n.forwardRef((o,i)=>n.createElement(\"g\",{ref:i,...o},e(o.weight,o.color)));s.displayName=\"House\",l=s}return l};export{d as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.37\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Activity\",\"AddressBook\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"AlignBottom\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignRight\",\"AlignTop\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Aperture\",\"AppWindow\",\"AppleLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"At\",\"Atom\",\"Baby\",\"Backspace\",\"Bag\",\"BagSimple\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Baseball\",\"Basketball\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryWarning\",\"Bed\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Bicycle\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Book\",\"BookBookmark\",\"BookOpen\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"BoundingBox\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"Camera\",\"CameraSlash\",\"Car\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartLine\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleWavy\",\"CircleWavyCheck\",\"CircleWavyQuestion\",\"CircleWavyWarning\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"Club\",\"Code\",\"CodeSimple\",\"Coffee\",\"Coin\",\"Columns\",\"Command\",\"Compass\",\"ComputerTower\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Cpu\",\"CreditCard\",\"Crop\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyRub\",\"Cursor\",\"Database\",\"Desktop\",\"DesktopTower\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Diamond\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dog\",\"Door\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"Ear\",\"EarSlash\",\"Eject\",\"EjectSimple\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equals\",\"Eraser\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FastForward\",\"FastForwardCircle\",\"FigmaLogo\",\"File\",\"FileArrowDown\",\"FileArrowUp\",\"FileDotted\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FileSearch\",\"FileText\",\"FileX\",\"Files\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"Folder\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"Folders\",\"Football\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"GasPump\",\"Gauge\",\"Gear\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"GoogleLogo\",\"GooglePlayLogo\",\"GraduationCap\",\"GridFour\",\"Hand\",\"HandFist\",\"HandGrabbing\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartStraight\",\"Heartbeat\",\"Hexagon\",\"HighlighterCircle\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"Jeep\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Knife\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lightning\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"List\",\"ListBullets\",\"ListDashes\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MathOperations\",\"Medal\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"Microphone\",\"MicrophoneSlash\",\"Minus\",\"MinusCircle\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesSimple\",\"NavigationArrow\",\"Newspaper\",\"NewspaperClipping\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Path\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"Percent\",\"Person\",\"PersonSimple\",\"PersonSimpleRun\",\"PersonSimpleWalk\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"PictureInPicture\",\"Pill\",\"PinterestLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Play\",\"PlayCircle\",\"Playlist\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PokerChip\",\"Polygon\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"Rainbow\",\"RainbowCloud\",\"Receipt\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Ruler\",\"Scales\",\"Scissors\",\"Screencast\",\"ScribbleLoop\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Share\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldWarning\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"SignIn\",\"SignOut\",\"SimCard\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Smiley\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"Spade\",\"Sparkle\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareLogo\",\"SquaresFour\",\"Stack\",\"StackSimple\",\"Star\",\"StarFour\",\"StarHalf\",\"Sticker\",\"Stop\",\"StopCircle\",\"Storefront\",\"StripeLogo\",\"Student\",\"Suitcase\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Swap\",\"Swatches\",\"Sword\",\"TShirt\",\"Table\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextBolder\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextItalic\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TiktokLogo\",\"Timer\",\"ToggleLeft\",\"ToggleRight\",\"ToiletPaper\",\"Tote\",\"ToteSimple\",\"TrafficSign\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Upload\",\"UploadSimple\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"Users\",\"UsersFour\",\"UsersThree\",\"Vibrate\",\"VideoCamera\",\"VideoCameraSlash\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warning\",\"WarningCircle\",\"WarningOctagon\",\"Watch\",\"Waves\",\"WhatsappLogo\",\"Wheelchair\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.37`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return(/*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState}));}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0623976)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,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/f9ZdVrsuH6mqVvS4O050/3FawCrI7fojWdlTUFH20/gVWlRQQoG.js\";const cycleOrder=[\"TTYnYSGt8\",\"SBEPoNGYV\"];const serializationHash=\"framer-zEyMQ\";const variantClassNames={SBEPoNGYV:\"framer-v-121uzcd\",TTYnYSGt8:\"framer-v-1xwel5i\"};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 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:\"TTYnYSGt8\",Phone:\"SBEPoNGYV\"};const getProps=({height,id,number,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,h1InRlYSG:(_ref=number!==null&&number!==void 0?number:props.h1InRlYSG)!==null&&_ref!==void 0?_ref:\"90k\",NIaNdRBFe:(_ref1=title!==null&&title!==void 0?title:props.NIaNdRBFe)!==null&&_ref1!==void 0?_ref1:\"Members\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"TTYnYSGt8\"};};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,h1InRlYSG,NIaNdRBFe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TTYnYSGt8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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-1xwel5i\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"TTYnYSGt8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SBEPoNGYV:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QmF5b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Bayon\", \"Bayon Placeholder\", sans-serif',\"--framer-font-size\":\"150px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(191, 0, 255, 0.8))\",\"--framer-text-transform\":\"uppercase\"},children:\"90k\"})}),className:\"framer-ya3foe\",fonts:[\"GF;Bayon-regular\"],layoutDependency:layoutDependency,layoutId:\"pUxZvkI3S\",style:{\"--extracted-gdpscs\":\"rgba(191, 0, 255, 0.8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:h1InRlYSG,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SBEPoNGYV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QmF5b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Bayon\", \"Bayon Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(191, 0, 255, 0.8))\",\"--framer-text-transform\":\"uppercase\"},children:\"90k\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nlh1m9\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ZvVNtbGeY\",style:{backgroundColor:\"rgba(7, 9, 21, 0.8)\"},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Members\"})}),className:\"framer-rszcqb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QkDge8dBi\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NIaNdRBFe,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zEyMQ.framer-zvnsne, .framer-zEyMQ .framer-zvnsne { display: block; }\",\".framer-zEyMQ.framer-1xwel5i { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zEyMQ .framer-ya3foe, .framer-zEyMQ .framer-rszcqb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zEyMQ .framer-1nlh1m9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 10px 0px 10px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zEyMQ.framer-1xwel5i, .framer-zEyMQ .framer-1nlh1m9 { gap: 0px; } .framer-zEyMQ.framer-1xwel5i > *, .framer-zEyMQ .framer-1nlh1m9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zEyMQ.framer-1xwel5i > :first-child, .framer-zEyMQ .framer-1nlh1m9 > :first-child { margin-left: 0px; } .framer-zEyMQ.framer-1xwel5i > :last-child, .framer-zEyMQ .framer-1nlh1m9 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 165\n * @framerIntrinsicWidth 212\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"SBEPoNGYV\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"h1InRlYSG\":\"number\",\"NIaNdRBFe\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEm5_G8_lI=withCSS(Component,css,\"framer-zEyMQ\");export default FramerEm5_G8_lI;FramerEm5_G8_lI.displayName=\"Helper/Counter\";FramerEm5_G8_lI.defaultProps={height:165,width:212};addPropertyControls(FramerEm5_G8_lI,{variant:{options:[\"TTYnYSGt8\",\"SBEPoNGYV\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},h1InRlYSG:{defaultValue:\"90k\",displayTextArea:false,title:\"Number\",type:ControlType.String},NIaNdRBFe:{defaultValue:\"Members\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerEm5_G8_lI,[{explicitInter:true,fonts:[{family:\"Bayon\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bayon/v34/9XUrlJNmn0LPFl-sOhYEd2NJ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEm5_G8_lI\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"h1InRlYSG\\\":\\\"number\\\",\\\"NIaNdRBFe\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"165\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SBEPoNGYV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"212\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/pUC2Q4HS9uuwHefZZ6Oq/SVG.js\";const SVGFonts=getFonts(SVG);const ClipboardFonts=getFonts(Clipboard);const enabledGestures={iqeQIl4oO:{hover:true}};const cycleOrder=[\"iqeQIl4oO\",\"OiWhrK0Hj\"];const serializationHash=\"framer-Vz4AV\";const variantClassNames={iqeQIl4oO:\"framer-v-z7jdlc\",OiWhrK0Hj:\"framer-v-1e535g4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:45,delay:0,mass:1,stiffness:600,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={Copied:\"OiWhrK0Hj\",Default:\"iqeQIl4oO\"};const getProps=({bG,bGHover,clipboardContent,height,iconCopied,iconCopy,icons,id,labelCopied,labels,width,...props})=>{return{...props,aCeOAHQBL:labels??props.aCeOAHQBL??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",b8ei7OpHv:bG??props.b8ei7OpHv??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",bcOKL_7fc:iconCopy??props.bcOKL_7fc??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H7V7H3V21H17V17H21V3ZM17 15H19V5H9V7H17V15Z\" fill=\"white\"/> </svg>',bPCJyrIbK:iconCopied??props.bPCJyrIbK??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',PbW7K4Unr:icons??props.PbW7K4Unr??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",qIDNNRI0q:clipboardContent??props.qIDNNRI0q??\"Copied text.\",rIGEnoYqD:labelCopied??props.rIGEnoYqD??\"Copied\",variant:humanReadableVariantMap[props.variant]??props.variant??\"iqeQIl4oO\",wr2g_fjxZ:bGHover??props.wr2g_fjxZ??\"rgb(212, 212, 212)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,bcOKL_7fc,bPCJyrIbK,rIGEnoYqD,b8ei7OpHv,wr2g_fjxZ,PbW7K4Unr,aCeOAHQBL,qIDNNRI0q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iqeQIl4oO\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1svvmtu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"OiWhrK0Hj\");});const onAppear1oa8e9r=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iqeQIl4oO\"),1500);});useOnVariantChange(baseVariant,{OiWhrK0Hj:onAppear1oa8e9r});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"OiWhrK0Hj\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-z7jdlc\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iqeQIl4oO\",onTap:onTap1svvmtu,ref:refBinding,style:{backgroundColor:b8ei7OpHv,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"iqeQIl4oO-hover\":{backgroundColor:wr2g_fjxZ}},...addPropertyOverrides({\"iqeQIl4oO-hover\":{\"data-framer-name\":undefined},OiWhrK0Hj:{\"data-framer-name\":\"Copied\",onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-187247y\",\"data-framer-name\":\"Content - Default\",layoutDependency:layoutDependency,layoutId:\"CNMsEI0yp\",style:{filter:\"none\",opacity:1,scale:1,WebkitFilter:\"none\"},variants:{\"iqeQIl4oO-hover\":{filter:\"none\",opacity:1,scale:1,WebkitFilter:\"none\"},OiWhrK0Hj:{filter:\"blur(4px)\",opacity:0,scale:1.2,WebkitFilter:\"blur(4px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rhrfz9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mFwB2cfm4-container\",nodeId:\"mFwB2cfm4\",rendersWithMotion:true,scopeId:\"pADv1mOO5\",children:/*#__PURE__*/_jsx(SVG,{customColor:PbW7K4Unr,customPadding:0,customStrokeWidth:2,customSvgCode:bcOKL_7fc,height:\"100%\",id:\"mFwB2cfm4\",layoutId:\"mFwB2cfm4\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yetjnk\",\"data-framer-name\":\"Content - Copied\",layoutDependency:layoutDependency,layoutId:\"NtmCtXQb6\",style:{filter:\"blur(4px)\",opacity:0,scale:.6,WebkitFilter:\"blur(4px)\"},transformTemplate:transformTemplate1,variants:{OiWhrK0Hj:{filter:\"blur(0px)\",opacity:1,scale:1,WebkitFilter:\"blur(0px)\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-thjv9z-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Wi8PsdKK7-container\",nodeId:\"Wi8PsdKK7\",rendersWithMotion:true,scopeId:\"pADv1mOO5\",children:/*#__PURE__*/_jsx(SVG,{customColor:PbW7K4Unr,customPadding:0,customStrokeWidth:2,customSvgCode:bPCJyrIbK,height:\"100%\",id:\"Wi8PsdKK7\",layoutId:\"Wi8PsdKK7\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-aCeOAHQBL-pADv1mOO5))\"},children:\"Copied\"})}),className:\"framer-ufcd5q\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"uSfYiwk0E\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-aCeOAHQBL-pADv1mOO5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-aCeOAHQBL-pADv1mOO5\":aCeOAHQBL},text:rIGEnoYqD,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f15moq-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IbupE68aO-container\",nodeId:\"IbupE68aO\",rendersWithMotion:true,scopeId:\"pADv1mOO5\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,color:\"rgba(255, 255, 255, 0)\",content:qIDNNRI0q,fill:\"rgba(0, 102, 255, 0)\",font:{},height:\"100%\",id:\"IbupE68aO\",isMixedBorderRadius:false,label:\"\",layoutId:\"IbupE68aO\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vz4AV.framer-1btogj9, .framer-Vz4AV .framer-1btogj9 { display: block; }\",\".framer-Vz4AV.framer-z7jdlc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 44px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vz4AV .framer-187247y { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Vz4AV .framer-rhrfz9-container, .framer-Vz4AV .framer-thjv9z-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Vz4AV .framer-1yetjnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 49%; overflow: hidden; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-Vz4AV .framer-ufcd5q { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Vz4AV .framer-f15moq-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vz4AV.framer-z7jdlc, .framer-Vz4AV .framer-187247y, .framer-Vz4AV .framer-1yetjnk { gap: 0px; } .framer-Vz4AV.framer-z7jdlc > *, .framer-Vz4AV .framer-187247y > *, .framer-Vz4AV .framer-1yetjnk > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Vz4AV.framer-z7jdlc > :first-child, .framer-Vz4AV .framer-187247y > :first-child, .framer-Vz4AV .framer-1yetjnk > :first-child { margin-left: 0px; } .framer-Vz4AV.framer-z7jdlc > :last-child, .framer-Vz4AV .framer-187247y > :last-child, .framer-Vz4AV .framer-1yetjnk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"OiWhrK0Hj\":{\"layout\":[\"auto\",\"fixed\"]},\"Z49VpeA6V\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"bcOKL_7fc\":\"iconCopy\",\"bPCJyrIbK\":\"iconCopied\",\"rIGEnoYqD\":\"labelCopied\",\"b8ei7OpHv\":\"bG\",\"wr2g_fjxZ\":\"bGHover\",\"PbW7K4Unr\":\"icons\",\"aCeOAHQBL\":\"labels\",\"qIDNNRI0q\":\"clipboardContent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpADv1mOO5=withCSS(Component,css,\"framer-Vz4AV\");export default FramerpADv1mOO5;FramerpADv1mOO5.displayName=\"Copy Button\";FramerpADv1mOO5.defaultProps={height:44,width:64};addPropertyControls(FramerpADv1mOO5,{variant:{options:[\"iqeQIl4oO\",\"OiWhrK0Hj\"],optionTitles:[\"Default\",\"Copied\"],title:\"Variant\",type:ControlType.Enum},bcOKL_7fc:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H7V7H3V21H17V17H21V3ZM17 15H19V5H9V7H17V15Z\" fill=\"white\"/> </svg>',displayTextArea:false,title:\"Icon - Copy\",type:ControlType.String},bPCJyrIbK:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',displayTextArea:false,title:\"Icon - Copied\",type:ControlType.String},rIGEnoYqD:{defaultValue:\"Copied\",displayTextArea:false,title:\"Label - Copied\",type:ControlType.String},b8ei7OpHv:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"BG\",type:ControlType.Color},wr2g_fjxZ:{defaultValue:\"rgb(212, 212, 212)\",title:\"BG - Hover\",type:ControlType.Color},PbW7K4Unr:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Icons\",type:ControlType.Color},aCeOAHQBL:{defaultValue:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",title:\"Labels\",type:ControlType.Color},qIDNNRI0q:{defaultValue:\"Copied text.\",displayTextArea:true,title:\"Clipboard Content\",type:ControlType.String}});addFonts(FramerpADv1mOO5,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SVGFonts,...ClipboardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpADv1mOO5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"OiWhrK0Hj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Z49VpeA6V\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"bcOKL_7fc\\\":\\\"iconCopy\\\",\\\"bPCJyrIbK\\\":\\\"iconCopied\\\",\\\"rIGEnoYqD\\\":\\\"labelCopied\\\",\\\"b8ei7OpHv\\\":\\\"bG\\\",\\\"wr2g_fjxZ\\\":\\\"bGHover\\\",\\\"PbW7K4Unr\\\":\\\"icons\\\",\\\"aCeOAHQBL\\\":\\\"labels\\\",\\\"qIDNNRI0q\\\":\\\"clipboardContent\\\"}\",\"framerIntrinsicWidth\":\"64\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"44\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pADv1mOO5.map", "// Generated by Framer (7f69244)\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=[\"pJgtxvcxA\",\"NwmYSqmZZ\"];const serializationHash=\"framer-oivQu\";const variantClassNames={NwmYSqmZZ:\"framer-v-1hilg2q\",pJgtxvcxA:\"framer-v-s8wiah\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 01\":\"pJgtxvcxA\",\"Phone 01\":\"NwmYSqmZZ\"};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:\"pJgtxvcxA\"};};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:\"pJgtxvcxA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-s8wiah\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop 01\",layoutDependency:layoutDependency,layoutId:\"pJgtxvcxA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(255, 255, 255, 0.05)\",...style},variants:{NwmYSqmZZ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({NwmYSqmZZ:{\"data-framer-name\":\"Phone 01\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-34swdt\",\"data-framer-name\":\"Top Avatar\",layoutDependency:layoutDependency,layoutId:\"BWREigeL6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Avatar Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/exODmcInDwTCs2F5WW9MxvBApE.png\"},className:\"framer-17dimku\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"GFtmnP9Wm\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80},variants:{NwmYSqmZZ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({NwmYSqmZZ:{background:{alt:\"Avatar Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+25+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/exODmcInDwTCs2F5WW9MxvBApE.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255)))\"},children:\"\u201CAt BdSound, we recognize that the single most crucial factor for the success of an AI project lies in having high-quality, meticulously verified real-world data. Ta-da\u2019s verification process impressed us, and we are delighted to collaborate with them in collecting data for our new applications in speech enhancement and voice recognition.\u201D\"})}),className:\"framer-5jygkf\",fonts:[\"FS;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"xkLBkcS6T\",style:{\"--extracted-r6o4lv\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ee2p4p\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"AhbeMYrvW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ywjnq\",\"data-framer-name\":\"Name & Designation\",layoutDependency:layoutDependency,layoutId:\"NNhAY7k9B\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255)))\"},children:\"Michele Buccoli\"})}),className:\"framer-pgpxe5\",fonts:[\"FS;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"QJ7MmM8oM\",style:{\"--extracted-1eung3n\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)))\"},children:\"Senior Innovation Scientist @BdSound\"})}),className:\"framer-1ov3iai\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"vIgqsdSwF\",style:{\"--extracted-r6o4lv\":\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oivQu.framer-iw5vtu, .framer-oivQu .framer-iw5vtu { display: block; }\",\".framer-oivQu.framer-s8wiah { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 90px 60px 90px; position: relative; width: 640px; }\",\".framer-oivQu .framer-34swdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oivQu .framer-17dimku { flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oivQu .framer-5jygkf, .framer-oivQu .framer-pgpxe5, .framer-oivQu .framer-1ov3iai { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oivQu .framer-1ee2p4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oivQu .framer-1ywjnq { 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: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oivQu.framer-s8wiah, .framer-oivQu .framer-34swdt, .framer-oivQu .framer-1ee2p4p, .framer-oivQu .framer-1ywjnq { gap: 0px; } .framer-oivQu.framer-s8wiah > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oivQu.framer-s8wiah > :first-child, .framer-oivQu .framer-1ee2p4p > :first-child, .framer-oivQu .framer-1ywjnq > :first-child { margin-top: 0px; } .framer-oivQu.framer-s8wiah > :last-child, .framer-oivQu .framer-1ee2p4p > :last-child, .framer-oivQu .framer-1ywjnq > :last-child { margin-bottom: 0px; } .framer-oivQu .framer-34swdt > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-oivQu .framer-34swdt > :first-child { margin-left: 0px; } .framer-oivQu .framer-34swdt > :last-child { margin-right: 0px; } .framer-oivQu .framer-1ee2p4p > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-oivQu .framer-1ywjnq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-oivQu.framer-v-1hilg2q.framer-s8wiah { padding: 25px; }\",\".framer-oivQu.framer-v-1hilg2q .framer-34swdt { gap: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oivQu.framer-v-1hilg2q .framer-34swdt { gap: 0px; } .framer-oivQu.framer-v-1hilg2q .framer-34swdt > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-oivQu.framer-v-1hilg2q .framer-34swdt > :first-child { margin-left: 0px; } .framer-oivQu.framer-v-1hilg2q .framer-34swdt > :last-child { margin-right: 0px; } }\",'.framer-oivQu[data-border=\"true\"]::after, .framer-oivQu [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 545\n * @framerIntrinsicWidth 640\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NwmYSqmZZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersfQv53soN=withCSS(Component,css,\"framer-oivQu\");export default FramersfQv53soN;FramersfQv53soN.displayName=\"Helper/Testimonial 2\";FramersfQv53soN.defaultProps={height:545,width:640};addPropertyControls(FramersfQv53soN,{variant:{options:[\"pJgtxvcxA\",\"NwmYSqmZZ\"],optionTitles:[\"Desktop 01\",\"Phone 01\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersfQv53soN,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZLH2B3SFZRQ3US4ZUYG2367OYUMTVTGK/RSOPFK2EORTGBCOBZRY42GDLXFFB4IQW/JZ35FM4UJSKC7X2PM65RH75Q5KLE552S.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersfQv53soN\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NwmYSqmZZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"640\",\"framerIntrinsicHeight\":\"545\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sfQv53soN.map", "// Generated by Framer (4240133)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"gkPhd7noU\",\"gCjvJMrb8\",\"w7Y8vhhJB\",\"EmVInF_mn\",\"ZbZW3goFX\",\"UqhOsWNt3\",\"LEzFGh2Sp\",\"RYNofwZIr\",\"VqIGAF5Ge\",\"bg7pMVtr5\",\"NJvdnWp49\",\"VHWkIoZzN\"];const serializationHash=\"framer-pTPty\";const variantClassNames={bg7pMVtr5:\"framer-v-1g2x91i\",EmVInF_mn:\"framer-v-16v5mv7\",gCjvJMrb8:\"framer-v-xkv30m\",gkPhd7noU:\"framer-v-ginkik\",LEzFGh2Sp:\"framer-v-1lldihl\",NJvdnWp49:\"framer-v-1ujxspv\",RYNofwZIr:\"framer-v-10yswvd\",UqhOsWNt3:\"framer-v-1dnunln\",VHWkIoZzN:\"framer-v-1o0rsac\",VqIGAF5Ge:\"framer-v-s3kzj8\",w7Y8vhhJB:\"framer-v-1fpwhhc\",ZbZW3goFX:\"framer-v-yztfgb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 01\":\"gkPhd7noU\",\"Desktop 02\":\"gCjvJMrb8\",\"Desktop 03\":\"w7Y8vhhJB\",\"Desktop 04\":\"EmVInF_mn\",\"Phone 01\":\"VqIGAF5Ge\",\"Phone 02\":\"bg7pMVtr5\",\"Phone 03\":\"NJvdnWp49\",\"Phone 04\":\"VHWkIoZzN\",\"Tablet 01\":\"ZbZW3goFX\",\"Tablet 02\":\"UqhOsWNt3\",\"Tablet 03\":\"LEzFGh2Sp\",\"Tablet 04\":\"RYNofwZIr\"};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:\"gkPhd7noU\"};};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:\"gkPhd7noU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ginkik\",className,classNames),\"data-framer-name\":\"Desktop 01\",layoutDependency:layoutDependency,layoutId:\"gkPhd7noU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bg7pMVtr5:{\"data-framer-name\":\"Phone 02\"},EmVInF_mn:{\"data-framer-name\":\"Desktop 04\"},gCjvJMrb8:{\"data-framer-name\":\"Desktop 02\"},LEzFGh2Sp:{\"data-framer-name\":\"Tablet 03\"},NJvdnWp49:{\"data-framer-name\":\"Phone 03\"},RYNofwZIr:{\"data-framer-name\":\"Tablet 04\"},UqhOsWNt3:{\"data-framer-name\":\"Tablet 02\"},VHWkIoZzN:{\"data-framer-name\":\"Phone 04\"},VqIGAF5Ge:{\"data-framer-name\":\"Phone 01\"},w7Y8vhhJB:{\"data-framer-name\":\"Desktop 03\"},ZbZW3goFX:{\"data-framer-name\":\"Tablet 01\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530)-0-530)/2+0+0)),pixelHeight:2148,pixelWidth:2693,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.0035)`,src:\"https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png\",srcSet:\"https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png 2693w\"},className:\"framer-1sd2rfu\",\"data-framer-name\":\"Large Image\",layoutDependency:layoutDependency,layoutId:\"d9I6S_1Ao\",...addPropertyOverrides({bg7pMVtr5:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-335)/2+0+0)),pixelHeight:440,pixelWidth:348,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/JhX1hFoxI4XFGB8FKEn4UbqQ4.png\"}},EmVInF_mn:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-530)/2+0+0)),pixelHeight:1068,pixelWidth:1120,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.0035)`,src:\"https://framerusercontent.com/images/o8u49DJFnsYYbai5L2DyUAY.png\",srcSet:\"https://framerusercontent.com/images/o8u49DJFnsYYbai5L2DyUAY.png?scale-down-to=512 512w,https://framerusercontent.com/images/o8u49DJFnsYYbai5L2DyUAY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o8u49DJFnsYYbai5L2DyUAY.png 1120w\"}},gCjvJMrb8:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530)-0-530)/2+0+0)),pixelHeight:1068,pixelWidth:1120,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.0035)`,src:\"https://framerusercontent.com/images/xOIMdKEcAFnkVvjw29UHQVV3E1k.png\",srcSet:\"https://framerusercontent.com/images/xOIMdKEcAFnkVvjw29UHQVV3E1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/xOIMdKEcAFnkVvjw29UHQVV3E1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xOIMdKEcAFnkVvjw29UHQVV3E1k.png 1120w\"}},LEzFGh2Sp:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-530)/2+0+0)),pixelHeight:440,pixelWidth:348,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N3AFGl2dzyEgNOU6kMbO1vOv04.png\"}},NJvdnWp49:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-335)/2+0+0)),pixelHeight:440,pixelWidth:348,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/N3AFGl2dzyEgNOU6kMbO1vOv04.png\"}},RYNofwZIr:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-530)/2+0+0)),pixelHeight:440,pixelWidth:348,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vPHSaN0XWxEO0f8GurklEzFQOZI.png\"}},UqhOsWNt3:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-530)/2+0+0)),pixelHeight:440,pixelWidth:348,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JhX1hFoxI4XFGB8FKEn4UbqQ4.png\"}},VHWkIoZzN:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-335)/2+0+0)),pixelHeight:440,pixelWidth:348,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/vPHSaN0XWxEO0f8GurklEzFQOZI.png\"}},VqIGAF5Ge:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-335)/2+0+0)),pixelHeight:2148,pixelWidth:2693,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png\",srcSet:\"https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png 2693w\"}},w7Y8vhhJB:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530)-0-530)/2+0+0)),pixelHeight:1068,pixelWidth:1120,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.0035)`,src:\"https://framerusercontent.com/images/yi36eYdYcPbAs8NFRxps5weI.png\",srcSet:\"https://framerusercontent.com/images/yi36eYdYcPbAs8NFRxps5weI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yi36eYdYcPbAs8NFRxps5weI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yi36eYdYcPbAs8NFRxps5weI.png 1120w\"}},ZbZW3goFX:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-530)/2+0+0)),pixelHeight:2148,pixelWidth:2693,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png\",srcSet:\"https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CTOouh7x2pwfmO8A9iWxZCS3fk.png 2693w\"}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pTPty.framer-lqsna2, .framer-pTPty .framer-lqsna2 { display: block; }\",\".framer-pTPty.framer-ginkik { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 568px; }\",\".framer-pTPty .framer-1sd2rfu { flex: none; height: 530px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pTPty.framer-ginkik { gap: 0px; } .framer-pTPty.framer-ginkik > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-pTPty.framer-ginkik > :first-child { margin-top: 0px; } .framer-pTPty.framer-ginkik > :last-child { margin-bottom: 0px; } }\",\".framer-pTPty.framer-v-yztfgb.framer-ginkik, .framer-pTPty.framer-v-1dnunln.framer-ginkik, .framer-pTPty.framer-v-1lldihl.framer-ginkik, .framer-pTPty.framer-v-10yswvd.framer-ginkik { align-content: center; align-items: center; width: 708px; }\",\".framer-pTPty.framer-v-yztfgb .framer-1sd2rfu, .framer-pTPty.framer-v-1dnunln .framer-1sd2rfu, .framer-pTPty.framer-v-1lldihl .framer-1sd2rfu, .framer-pTPty.framer-v-10yswvd .framer-1sd2rfu { width: 100%; }\",\".framer-pTPty.framer-v-s3kzj8.framer-ginkik { align-content: center; align-items: center; gap: 20px; width: 334px; }\",\".framer-pTPty.framer-v-s3kzj8 .framer-1sd2rfu, .framer-pTPty.framer-v-1g2x91i .framer-1sd2rfu, .framer-pTPty.framer-v-1ujxspv .framer-1sd2rfu, .framer-pTPty.framer-v-1o0rsac .framer-1sd2rfu { height: 335px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pTPty.framer-v-s3kzj8.framer-ginkik { gap: 0px; } .framer-pTPty.framer-v-s3kzj8.framer-ginkik > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pTPty.framer-v-s3kzj8.framer-ginkik > :first-child { margin-top: 0px; } .framer-pTPty.framer-v-s3kzj8.framer-ginkik > :last-child { margin-bottom: 0px; } }\",\".framer-pTPty.framer-v-1g2x91i.framer-ginkik { align-content: center; align-items: center; gap: 20px; width: 266px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pTPty.framer-v-1g2x91i.framer-ginkik { gap: 0px; } .framer-pTPty.framer-v-1g2x91i.framer-ginkik > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pTPty.framer-v-1g2x91i.framer-ginkik > :first-child { margin-top: 0px; } .framer-pTPty.framer-v-1g2x91i.framer-ginkik > :last-child { margin-bottom: 0px; } }\",\".framer-pTPty.framer-v-1ujxspv.framer-ginkik, .framer-pTPty.framer-v-1o0rsac.framer-ginkik { align-content: center; align-items: center; gap: 20px; width: 350px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pTPty.framer-v-1ujxspv.framer-ginkik { gap: 0px; } .framer-pTPty.framer-v-1ujxspv.framer-ginkik > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pTPty.framer-v-1ujxspv.framer-ginkik > :first-child { margin-top: 0px; } .framer-pTPty.framer-v-1ujxspv.framer-ginkik > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pTPty.framer-v-1o0rsac.framer-ginkik { gap: 0px; } .framer-pTPty.framer-v-1o0rsac.framer-ginkik > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pTPty.framer-v-1o0rsac.framer-ginkik > :first-child { margin-top: 0px; } .framer-pTPty.framer-v-1o0rsac.framer-ginkik > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 530\n * @framerIntrinsicWidth 568\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gCjvJMrb8\":{\"layout\":[\"fixed\",\"auto\"]},\"w7Y8vhhJB\":{\"layout\":[\"fixed\",\"auto\"]},\"EmVInF_mn\":{\"layout\":[\"fixed\",\"auto\"]},\"ZbZW3goFX\":{\"layout\":[\"fixed\",\"auto\"]},\"UqhOsWNt3\":{\"layout\":[\"fixed\",\"auto\"]},\"LEzFGh2Sp\":{\"layout\":[\"fixed\",\"auto\"]},\"RYNofwZIr\":{\"layout\":[\"fixed\",\"auto\"]},\"VqIGAF5Ge\":{\"layout\":[\"fixed\",\"auto\"]},\"bg7pMVtr5\":{\"layout\":[\"fixed\",\"auto\"]},\"NJvdnWp49\":{\"layout\":[\"fixed\",\"auto\"]},\"VHWkIoZzN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYXzfeRvd2=withCSS(Component,css,\"framer-pTPty\");export default FramerYXzfeRvd2;FramerYXzfeRvd2.displayName=\"Helper/About Image Gallery\";FramerYXzfeRvd2.defaultProps={height:530,width:568};addPropertyControls(FramerYXzfeRvd2,{variant:{options:[\"gkPhd7noU\",\"gCjvJMrb8\",\"w7Y8vhhJB\",\"EmVInF_mn\",\"ZbZW3goFX\",\"UqhOsWNt3\",\"LEzFGh2Sp\",\"RYNofwZIr\",\"VqIGAF5Ge\",\"bg7pMVtr5\",\"NJvdnWp49\",\"VHWkIoZzN\"],optionTitles:[\"Desktop 01\",\"Desktop 02\",\"Desktop 03\",\"Desktop 04\",\"Tablet 01\",\"Tablet 02\",\"Tablet 03\",\"Tablet 04\",\"Phone 01\",\"Phone 02\",\"Phone 03\",\"Phone 04\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYXzfeRvd2,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYXzfeRvd2\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"530\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gCjvJMrb8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w7Y8vhhJB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EmVInF_mn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZbZW3goFX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UqhOsWNt3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LEzFGh2Sp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RYNofwZIr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VqIGAF5Ge\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bg7pMVtr5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NJvdnWp49\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VHWkIoZzN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"568\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YXzfeRvd2.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,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 Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import DottedSpinner from\"https://framerusercontent.com/modules/ijKsDTGk7rQveAx7hdLo/kHvVDFK3cjs6bZ5gJugD/pRVWz2MeW.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/C31a5jsoI7tLti4X41zP/Phosphor.js\";import HelperCounter from\"#framer/local/canvasComponent/Em5_G8_lI/Em5_G8_lI.js\";import CopyButton from\"#framer/local/canvasComponent/pADv1mOO5/pADv1mOO5.js\";import NavigationNavigation from\"#framer/local/canvasComponent/QkqjwHonb/QkqjwHonb.js\";import HelperTestimonial2 from\"#framer/local/canvasComponent/sfQv53soN/sfQv53soN.js\";import CardServiceCard from\"#framer/local/canvasComponent/xJJsxpcUo/xJJsxpcUo.js\";import HelperAboutImageGallery from\"#framer/local/canvasComponent/YXzfeRvd2/YXzfeRvd2.js\";import Footer from\"#framer/local/canvasComponent/zJv0Dy9JV/zJv0Dy9JV.js\";import Service from\"#framer/local/collection/qWxQK3b2s/qWxQK3b2s.js\";import*as sharedStyle1 from\"#framer/local/css/DfEME7AA2/DfEME7AA2.js\";import*as sharedStyle from\"#framer/local/css/EvmOzb0jG/EvmOzb0jG.js\";import*as sharedStyle4 from\"#framer/local/css/gVWlRQQoG/gVWlRQQoG.js\";import*as sharedStyle2 from\"#framer/local/css/mmRGE_gBf/mmRGE_gBf.js\";import*as sharedStyle3 from\"#framer/local/css/oYZz5MurU/oYZz5MurU.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const TickerFonts=getFonts(Ticker);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const HelperCounterFonts=getFonts(HelperCounter);const MotionDivWithFX=withFX(motion.div);const HelperAboutImageGalleryFonts=getFonts(HelperAboutImageGallery);const DottedSpinnerFonts=getFonts(DottedSpinner);const ContainerWithFX=withFX(Container);const PhosphorFonts=getFonts(Phosphor);const ImageWithFX=withFX(Image);const HelperTestimonial2Fonts=getFonts(HelperTestimonial2);const CardServiceCardFonts=getFonts(CardServiceCard);const CopyButtonFonts=getFonts(CopyButton);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={HoEOTLT0R:\"(max-width: 767px)\",Wh21U2UXq:\"(min-width: 768px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-m5ZFc\";const variantClassNames={HoEOTLT0R:\"framer-v-cc23ns\",Wh21U2UXq:\"framer-v-10u2uls\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.2,duration:.6,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const transition3={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-10,y:0};const transition4={damping:60,delay:1,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:-10,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:10};const transition5={damping:60,delay:0,mass:4.1,stiffness:508,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition5,x:0,y:10};const transition6={damping:60,delay:.1,mass:4.1,stiffness:508,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition6,x:0,y:10};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition7={damping:60,delay:.2,mass:4.1,stiffness:508,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition7,x:0,y:10};const transition8={damping:60,delay:.3,mass:4.1,stiffness:508,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition8,x:0,y:10};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0};const transition9={damping:40,delay:.6,mass:1,stiffness:200,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:-40,y:0};const transition10={damping:60,delay:1.1,mass:1,stiffness:500,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:-10,y:0};const transition11={damping:60,delay:1.2,mass:1,stiffness:500,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:-10,y:0};const transition12={damping:60,delay:1.3,mass:1,stiffness:500,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:-10,y:0};const transition13={damping:60,delay:.9,mass:1,stiffness:500,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:-10,y:0};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:100};const transition14={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:100};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"HoEOTLT0R\",Tablet:\"Wh21U2UXq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,LIZ1nR2MBbntchpDyx,H_RNFQ85MbntchpDyx,jORsBLEQibntchpDyx,fpMtYReuobntchpDyx,jhJDFSTEAbntchpDyx,idbntchpDyx,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"BHjaRo029\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Wh21U2UXq\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"HoEOTLT0R\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"HoEOTLT0R\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"Wh21U2UXq\",\"HoEOTLT0R\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"Wh21U2UXq\")return false;return true;};const elementId1=useRouteElementId(\"mJxMPksP8\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"GDNk68rMZ\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-fd45d32f-1bf3-48a5-881a-3639bf9706fc, rgb(7, 9, 21)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-1qwdf7d\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-69d8dx\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0+0},Wh21U2UXq:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max(min(${componentViewport?.width||\"100vw\"}, 1320px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2hozpv-container\",nodeId:\"konyShHhk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{variant:\"g52eA1pAq\"},Wh21U2UXq:{variant:\"CaJesmMSp\"}},children:/*#__PURE__*/_jsx(NavigationNavigation,{height:\"100%\",id:\"konyShHhk\",layoutId:\"konyShHhk\",style:{width:\"100%\"},variant:\"jrtZcaNrA\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"section\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-2wmkfy\",\"data-framer-name\":\"Hero Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bcpwxs\",\"data-framer-name\":\"Quote Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eme4uh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Lx9R2MC74\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"Lx9R2MC74\",layoutId:\"Lx9R2MC74\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fvaq28\",\"data-framer-name\":\"logopartners\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"2417px\",src:\"https://framerusercontent.com/images/u4GwtgQczNKicWllYDpvZ21JC6E.png\",srcSet:\"https://framerusercontent.com/images/u4GwtgQczNKicWllYDpvZ21JC6E.png?scale-down-to=512 512w,https://framerusercontent.com/images/u4GwtgQczNKicWllYDpvZ21JC6E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u4GwtgQczNKicWllYDpvZ21JC6E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/u4GwtgQczNKicWllYDpvZ21JC6E.png 2417w\"},className:\"framer-czakr7\",\"data-framer-name\":\"Frame 1171276002\"})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{background:{alt:\"BG Hero\",fit:\"fill\",pixelHeight:2340,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/I0WDjHmKhq9UJX1KLx4imX6ZPQ4.png\",srcSet:\"https://framerusercontent.com/images/I0WDjHmKhq9UJX1KLx4imX6ZPQ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/I0WDjHmKhq9UJX1KLx4imX6ZPQ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I0WDjHmKhq9UJX1KLx4imX6ZPQ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/I0WDjHmKhq9UJX1KLx4imX6ZPQ4.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"BG Hero\",fit:\"fill\",pixelHeight:2340,pixelWidth:4096,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hA3ORY8zSP2eher9LqZ8JCyk8hc.png\",srcSet:\"https://framerusercontent.com/images/hA3ORY8zSP2eher9LqZ8JCyk8hc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hA3ORY8zSP2eher9LqZ8JCyk8hc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hA3ORY8zSP2eher9LqZ8JCyk8hc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hA3ORY8zSP2eher9LqZ8JCyk8hc.png 4096w\"},className:\"framer-17e3210\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{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:animation,className:\"framer-1lwb0vu\",\"data-framer-appear-id\":\"1lwb0vu\",\"data-framer-name\":\"Container\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ciu7gy\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lrl6bp\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gsnkfa\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qg0qom\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Contribute to building human-generated AI datasets\"})}),className:\"framer-typxj4\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1nc5qic\",\"data-styles-preset\":\"EvmOzb0jG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:[\"FUEL AI \",/*#__PURE__*/_jsx(\"br\",{}),\"EARN Crypto\"]})}),className:\"framer-1mxjouf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qmcy4h\",\"data-framer-name\":\"Button Wrapper\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hsa2qx\",whileHover:animation2,children:/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.vivoka.application.tada.prod&referrer=utm_source%3Dwebsite%26utm_medium%3Dgoogle-play%26anid%3Daarki%26aclid%3D{click_id}%26cp1%3D{app_id}\",motionChild:true,nodeId:\"cBYexRH5l\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-wc05ha framer-lux5qc\",\"data-framer-name\":\"Auto Layout Horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:161,svg:'<svg width=\"161\" height=\"50\" viewBox=\"0 0 161 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"160.79\" height=\"50\" rx=\"25\" fill=\"#262634\"/>\\n<path d=\"M32.7446 24.4232L22.0981 35.7232C22.0985 35.7256 22.0993 35.7275 22.0997 35.7299C22.4262 36.9568 23.5469 37.8604 24.877 37.8604C25.4087 37.8604 25.9079 37.7166 26.336 37.4643L26.37 37.4443L38.354 30.5291L32.7446 24.4232\" fill=\"#EA4335\"/>\\n<path d=\"M43.5158 22.4994L43.5056 22.4924L38.3318 19.4931L32.5029 24.6799L38.3521 30.5283L43.4986 27.5588C44.4009 27.0717 45.0134 26.1205 45.0134 25.0236C45.0134 23.9346 44.4091 22.9881 43.5158 22.4994\" fill=\"#FBBC04\"/>\\n<path d=\"M22.0976 14.2767C22.0336 14.5127 22 14.7599 22 15.0166V34.9842C22 35.2404 22.0332 35.4885 22.098 35.7236L33.1109 24.7127L22.0976 14.2767Z\" fill=\"#4285F4\"/>\\n<path d=\"M32.8231 25L38.3337 19.491L26.3633 12.5508C25.9282 12.2902 25.4204 12.1398 24.877 12.1398C23.5469 12.1398 22.4247 13.0449 22.0981 14.2734C22.0977 14.2746 22.0977 14.2754 22.0977 14.2765L32.8231 25Z\" fill=\"#34A853\"/>\\n<path d=\"M56.4344 11.2624C56.8721 11.2312 57.3113 11.297 57.7203 11.455C58.1294 11.613 58.498 11.8593 58.7998 12.1761C59.1015 12.493 59.3287 12.8725 59.4651 13.2872C59.6015 13.702 59.6436 14.1417 59.5884 14.5746C59.5884 16.7041 58.431 17.9282 56.4344 17.9282H54.0132V11.2624H56.4344ZM55.0543 16.9856H56.3181C56.6309 17.0041 56.9438 16.9532 57.2343 16.8363C57.5247 16.7194 57.7853 16.5396 57.9971 16.31C58.2088 16.0803 58.3664 15.8066 58.4584 15.5088C58.5503 15.2109 58.5743 14.8964 58.5287 14.5882C58.571 14.2811 58.5446 13.9686 58.4512 13.6729C58.3578 13.3773 58.1998 13.1058 57.9886 12.878C57.7773 12.6502 57.518 12.4716 57.2292 12.3552C56.9404 12.2387 56.6293 12.1873 56.3181 12.2044H55.0543V16.9856Z\" fill=\"white\"/>\\n<path d=\"M60.7642 15.4108C60.7324 15.0803 60.7704 14.7467 60.8759 14.4316C60.9813 14.1165 61.1518 13.8268 61.3764 13.581C61.601 13.3353 61.8748 13.1389 62.1802 13.0046C62.4856 12.8702 62.8158 12.8008 63.1498 12.8008C63.4837 12.8008 63.814 12.8702 64.1194 13.0046C64.4248 13.1389 64.6986 13.3353 64.9232 13.581C65.1478 13.8268 65.3183 14.1165 65.4237 14.4316C65.5291 14.7467 65.5671 15.0803 65.5353 15.4108C65.5677 15.7418 65.5302 16.0758 65.425 16.3914C65.3199 16.707 65.1495 16.9973 64.9248 17.2435C64.7002 17.4897 64.4262 17.6865 64.1205 17.8212C63.8148 17.9558 63.4841 18.0254 63.1498 18.0254C62.8154 18.0254 62.4848 17.9558 62.1791 17.8212C61.8734 17.6865 61.5994 17.4897 61.3747 17.2435C61.15 16.9973 60.9797 16.707 60.8745 16.3914C60.7694 16.0758 60.7318 15.7418 60.7642 15.4108ZM64.5085 15.4108C64.5085 14.3204 64.0159 13.6828 63.1514 13.6828C62.2836 13.6828 61.7955 14.3204 61.7955 15.4109C61.7955 16.51 62.2837 17.1427 63.1514 17.1427C64.0159 17.1427 64.5085 16.5056 64.5085 15.4108Z\" fill=\"white\"/>\\n<path d=\"M71.8772 17.9279H70.8416L69.7961 14.223H69.7171L68.676 17.9279H67.6502L66.2559 12.8975H67.2684L68.1746 16.736H68.2492L69.2892 12.8975H70.247L71.287 16.736H71.366L72.2677 12.8975H73.2661L71.8772 17.9279Z\" fill=\"white\"/>\\n<path d=\"M74.4395 12.898H75.4005V13.6971H75.4751C75.6016 13.4101 75.8151 13.1695 76.0857 13.0088C76.3563 12.8482 76.6705 12.7755 76.9846 12.8009C77.2308 12.7824 77.4779 12.8194 77.7078 12.9088C77.9376 12.9983 78.1443 13.1381 78.3124 13.3178C78.4806 13.4974 78.6059 13.7124 78.6791 13.9468C78.7524 14.1812 78.7717 14.429 78.7355 14.6718V17.9283H77.7372V14.9211C77.7372 14.1127 77.384 13.7107 76.6456 13.7107C76.4785 13.703 76.3117 13.7313 76.1566 13.7936C76.0015 13.856 75.8618 13.951 75.7471 14.0721C75.6324 14.1931 75.5453 14.3375 75.4919 14.4951C75.4386 14.6528 75.4201 14.8201 75.4378 14.9855V17.9284H74.4395L74.4395 12.898Z\" fill=\"white\"/>\\n<path d=\"M80.3262 10.9336H81.3245V17.9277H80.3262V10.9336Z\" fill=\"white\"/>\\n<path d=\"M82.7119 15.4109C82.6802 15.0803 82.7182 14.7468 82.8237 14.4317C82.9291 14.1165 83.0996 13.8268 83.3242 13.581C83.5489 13.3353 83.8227 13.1389 84.1281 13.0046C84.4335 12.8702 84.7638 12.8008 85.0978 12.8008C85.4317 12.8008 85.762 12.8702 86.0674 13.0046C86.3729 13.1389 86.6467 13.3353 86.8713 13.581C87.0959 13.8268 87.2664 14.1165 87.3719 14.4317C87.4773 14.7468 87.5154 15.0803 87.4836 15.4109C87.516 15.7419 87.4784 16.0759 87.3732 16.3915C87.268 16.7071 87.0976 16.9974 86.8729 17.2436C86.6482 17.4898 86.3742 17.6866 86.0685 17.8212C85.7628 17.9559 85.4321 18.0254 85.0978 18.0254C84.7634 18.0254 84.4328 17.9559 84.127 17.8212C83.8213 17.6866 83.5473 17.4898 83.3226 17.2436C83.0979 16.9974 82.9275 16.7071 82.8224 16.3915C82.7172 16.0759 82.6796 15.7419 82.7119 15.4109ZM86.4562 15.4109C86.4562 14.3205 85.9636 13.6829 85.0991 13.6829C84.2314 13.6829 83.7432 14.3205 83.7432 15.411C83.7432 16.5101 84.2314 17.1428 85.0991 17.1428C85.9636 17.1428 86.4562 16.5057 86.4562 15.4109Z\" fill=\"white\"/>\\n<path d=\"M88.5352 16.5057C88.5352 15.6002 89.2131 15.0782 90.4166 15.004L91.7868 14.9254V14.4912C91.7868 13.9599 91.4336 13.6599 90.7512 13.6599C90.1939 13.6599 89.8078 13.8634 89.6969 14.219H88.7304C88.8325 13.355 89.6498 12.8008 90.7973 12.8008C92.0655 12.8008 92.7808 13.4286 92.7808 14.4912V17.9283H91.8198V17.2213H91.7408C91.5804 17.4749 91.3553 17.6817 91.0884 17.8204C90.8214 17.9592 90.5222 18.025 90.2213 18.0112C90.009 18.0331 89.7943 18.0106 89.5913 17.945C89.3882 17.8794 89.2012 17.7723 89.0424 17.6304C88.8835 17.4886 88.7563 17.3152 88.6689 17.1215C88.5816 16.9278 88.536 16.718 88.5352 16.5057ZM91.7868 16.0758V15.6553L90.5516 15.7338C89.8549 15.7802 89.539 16.0158 89.539 16.4593C89.539 16.912 89.9339 17.1755 90.477 17.1755C90.6361 17.1915 90.7968 17.1755 90.9496 17.1285C91.1024 17.0815 91.2441 17.0044 91.3663 16.9018C91.4885 16.7992 91.5888 16.6732 91.661 16.5313C91.7332 16.3894 91.776 16.2345 91.7868 16.0758Z\" fill=\"white\"/>\\n<path d=\"M94.0923 15.4104C94.0923 13.8208 94.914 12.8139 96.1921 12.8139C96.5082 12.7994 96.822 12.8747 97.0967 13.031C97.3713 13.1873 97.5956 13.4181 97.7433 13.6964H97.8179V10.9336H98.8162V17.9277H97.8596V17.133H97.7806C97.6215 17.4094 97.3894 17.6374 97.1094 17.7921C96.8294 17.9468 96.5122 18.0224 96.1921 18.0106C94.9052 18.0107 94.0923 17.0037 94.0923 15.4104ZM95.1236 15.4104C95.1236 16.4773 95.6293 17.1193 96.4751 17.1193C97.3166 17.1193 97.8366 16.4681 97.8366 15.4147C97.8366 14.3663 97.3111 13.7057 96.4751 13.7057C95.6348 13.7057 95.1236 14.3521 95.1236 15.4104Z\" fill=\"white\"/>\\n<path d=\"M102.947 15.4108C102.915 15.0803 102.953 14.7467 103.058 14.4316C103.164 14.1165 103.334 13.8268 103.559 13.581C103.784 13.3353 104.057 13.1389 104.363 13.0046C104.668 12.8702 104.998 12.8008 105.332 12.8008C105.666 12.8008 105.997 12.8702 106.302 13.0046C106.607 13.1389 106.881 13.3353 107.106 13.581C107.33 13.8268 107.501 14.1165 107.606 14.4316C107.712 14.7467 107.75 15.0803 107.718 15.4108C107.75 15.7418 107.713 16.0758 107.608 16.3914C107.502 16.707 107.332 16.9973 107.107 17.2435C106.883 17.4897 106.609 17.6865 106.303 17.8212C105.997 17.9558 105.667 18.0254 105.332 18.0254C104.998 18.0254 104.667 17.9558 104.362 17.8212C104.056 17.6865 103.782 17.4897 103.557 17.2435C103.333 16.9973 103.162 16.707 103.057 16.3914C102.952 16.0758 102.914 15.7418 102.947 15.4108ZM106.691 15.4108C106.691 14.3204 106.199 13.6828 105.334 13.6828C104.466 13.6828 103.978 14.3204 103.978 15.4109C103.978 16.51 104.466 17.1427 105.334 17.1427C106.199 17.1427 106.691 16.5056 106.691 15.4108Z\" fill=\"white\"/>\\n<path d=\"M109.058 12.898H110.019V13.6971H110.093C110.22 13.4101 110.433 13.1695 110.704 13.0088C110.974 12.8482 111.289 12.7755 111.603 12.8009C111.849 12.7824 112.096 12.8194 112.326 12.9088C112.556 12.9983 112.762 13.1381 112.931 13.3178C113.099 13.4974 113.224 13.7124 113.297 13.9468C113.371 14.1812 113.39 14.429 113.354 14.6718V17.9283H112.355V14.9211C112.355 14.1127 112.002 13.7107 111.264 13.7107C111.097 13.703 110.93 13.7313 110.775 13.7936C110.62 13.856 110.48 13.951 110.365 14.0721C110.251 14.1931 110.164 14.3375 110.11 14.4951C110.057 14.6528 110.038 14.8201 110.056 14.9855V17.9284H109.058V12.898Z\" fill=\"white\"/>\\n<path d=\"M118.994 11.6455V12.9208H120.09V13.7571H118.994V16.3437C118.994 16.8707 119.213 17.1014 119.71 17.1014C119.837 17.101 119.964 17.0933 120.09 17.0785V17.9054C119.911 17.9373 119.729 17.9543 119.547 17.9561C118.437 17.9561 117.995 17.5678 117.995 16.5979V13.757H117.192V12.9208H117.995V11.6455H118.994Z\" fill=\"white\"/>\\n<path d=\"M121.454 10.9336H122.444V13.7057H122.523C122.655 13.416 122.875 13.1741 123.151 13.0128C123.427 12.8515 123.746 12.7788 124.065 12.8046C124.31 12.7913 124.555 12.832 124.782 12.9236C125.009 13.0153 125.213 13.1557 125.38 13.3348C125.546 13.5139 125.671 13.7274 125.745 13.9599C125.818 14.1924 125.84 14.4383 125.807 14.6799V17.9277H124.808V14.9249C124.808 14.1214 124.432 13.7144 123.726 13.7144C123.555 13.7004 123.382 13.7239 123.22 13.7832C123.059 13.8424 122.912 13.9361 122.791 14.0576C122.67 14.179 122.577 14.3254 122.518 14.4864C122.46 14.6474 122.437 14.8192 122.452 14.9898V17.9277H121.454L121.454 10.9336Z\" fill=\"white\"/>\\n<path d=\"M131.628 16.5701C131.492 17.0299 131.198 17.4276 130.798 17.6936C130.397 17.9596 129.915 18.0771 129.436 18.0255C129.103 18.0342 128.771 17.9707 128.465 17.8394C128.159 17.7081 127.886 17.5122 127.663 17.2651C127.441 17.0181 127.275 16.7259 127.178 16.4088C127.08 16.0917 127.054 15.7574 127.099 15.429C127.055 15.0996 127.082 14.7645 127.179 14.4465C127.276 14.1285 127.441 13.8349 127.662 13.5857C127.884 13.3365 128.156 13.1375 128.461 13.002C128.766 12.8666 129.097 12.798 129.432 12.8009C130.839 12.8009 131.688 13.7571 131.688 15.3368V15.6832H128.116V15.7388C128.101 15.9234 128.124 16.1092 128.185 16.2844C128.245 16.4595 128.342 16.62 128.469 16.7557C128.596 16.8914 128.75 16.9992 128.921 17.0723C129.092 17.1453 129.277 17.182 129.463 17.1799C129.702 17.2084 129.944 17.1657 130.158 17.0571C130.373 16.9485 130.55 16.779 130.667 16.5701L131.628 16.5701ZM128.116 14.949H130.671C130.684 14.7801 130.661 14.6105 130.603 14.4511C130.546 14.2917 130.456 14.1459 130.339 14.0232C130.222 13.9005 130.08 13.8035 129.923 13.7385C129.765 13.6735 129.596 13.6419 129.426 13.6458C129.253 13.6437 129.082 13.6759 128.922 13.7406C128.762 13.8054 128.617 13.9013 128.495 14.0227C128.373 14.1442 128.276 14.2887 128.211 14.4478C128.146 14.6068 128.114 14.7773 128.116 14.949Z\" fill=\"white\"/>\\n<path d=\"M119.908 34.9893H121.774V22.4877H119.908V34.9893ZM136.715 26.9913L134.576 32.4112H134.512L132.292 26.9913H130.282L133.612 34.5663L131.713 38.7803H133.659L138.79 26.9913H136.715ZM126.132 33.5694C125.522 33.5694 124.669 33.2635 124.669 32.5077C124.669 31.5428 125.731 31.1729 126.647 31.1729C127.467 31.1729 127.854 31.3495 128.352 31.5909C128.207 32.7491 127.21 33.5694 126.132 33.5694V33.5694ZM126.358 26.7178C125.007 26.7178 123.608 27.3131 123.029 28.6319L124.685 29.3233C125.039 28.6319 125.698 28.4069 126.39 28.4069C127.355 28.4069 128.336 28.9854 128.352 30.0151V30.1436C128.014 29.9506 127.29 29.6612 126.406 29.6612C124.62 29.6612 122.803 30.642 122.803 32.4756C122.803 34.1483 124.267 35.226 125.907 35.226C127.161 35.226 127.854 34.6631 128.287 34.0034H128.352V34.969H130.154V30.1756C130.154 27.9561 128.496 26.7178 126.358 26.7178V26.7178ZM114.826 28.5131H112.172V24.228H114.826C116.221 24.228 117.013 25.3827 117.013 26.3705C117.013 27.3393 116.221 28.5131 114.826 28.5131V28.5131ZM114.778 22.4877H110.307V34.9893H112.172V30.253H114.778C116.846 30.253 118.879 28.7561 118.879 26.3705C118.879 23.9854 116.846 22.4877 114.778 22.4877ZM90.3964 33.5717C89.1073 33.5717 88.0284 32.492 88.0284 31.0104C88.0284 29.5116 89.1073 28.4166 90.3964 28.4166C91.6691 28.4166 92.6679 29.5116 92.6679 31.0104C92.6679 32.492 91.6691 33.5717 90.3964 33.5717V33.5717ZM92.539 27.6913H92.4745C92.0558 27.192 91.2499 26.7409 90.2355 26.7409C88.1085 26.7409 86.1593 28.61 86.1593 31.0104C86.1593 33.3944 88.1085 35.2471 90.2355 35.2471C91.2499 35.2471 92.0558 34.7959 92.4745 34.2807H92.539V34.8924C92.539 36.5201 91.6691 37.3896 90.2675 37.3896C89.1241 37.3896 88.4152 36.5682 88.1249 35.8756L86.498 36.5521C86.9648 37.6795 88.205 39.0654 90.2675 39.0654C92.4589 39.0654 94.3116 37.7764 94.3116 34.6346V26.9987H92.539V27.6913ZM95.6007 34.9893H97.4687V22.4877H95.6007V34.9893ZM100.224 30.8651C100.176 29.2217 101.497 28.3842 102.447 28.3842C103.189 28.3842 103.816 28.7549 104.026 29.2862L100.224 30.8651ZM106.023 29.4471C105.669 28.4971 104.59 26.7409 102.383 26.7409C100.191 26.7409 98.371 28.4647 98.371 30.994C98.371 33.3784 100.176 35.2471 102.592 35.2471C104.541 35.2471 105.669 34.0553 106.137 33.3623L104.687 32.3955C104.203 33.1045 103.543 33.5717 102.592 33.5717C101.642 33.5717 100.965 33.1366 100.53 32.2827L106.217 29.9307L106.023 29.4471ZM60.7156 28.0459V29.8502H65.0331C64.9042 30.8651 64.5659 31.6061 64.0503 32.1217C63.4218 32.7498 62.439 33.4428 60.7156 33.4428C58.0573 33.4428 55.9792 31.3002 55.9792 28.642C55.9792 25.9838 58.0573 23.8409 60.7156 23.8409C62.1495 23.8409 63.1964 24.4049 63.9698 25.1299L65.2429 23.8569C64.1632 22.826 62.7296 22.0366 60.7156 22.0366C57.0741 22.0366 54.0132 25.001 54.0132 28.642C54.0132 32.2827 57.0741 35.2471 60.7156 35.2471C62.6808 35.2471 64.1632 34.6026 65.323 33.3944C66.5152 32.2022 66.8859 30.5268 66.8859 29.1733C66.8859 28.7549 66.8534 28.3682 66.789 28.0459H60.7156ZM71.7945 33.5717C70.5054 33.5717 69.3937 32.5084 69.3937 30.994C69.3937 29.4635 70.5054 28.4166 71.7945 28.4166C73.0831 28.4166 74.1948 29.4635 74.1948 30.994C74.1948 32.5084 73.0831 33.5717 71.7945 33.5717V33.5717ZM71.7945 26.7409C69.4417 26.7409 67.5249 28.5291 67.5249 30.994C67.5249 33.4428 69.4417 35.2471 71.7945 35.2471C74.1464 35.2471 76.0636 33.4428 76.0636 30.994C76.0636 28.5291 74.1464 26.7409 71.7945 26.7409ZM81.1073 33.5717C79.8191 33.5717 78.707 32.5084 78.707 30.994C78.707 29.4635 79.8191 28.4166 81.1073 28.4166C82.3964 28.4166 83.5077 29.4635 83.5077 30.994C83.5077 32.5084 82.3964 33.5717 81.1073 33.5717ZM81.1073 26.7409C78.7554 26.7409 76.8386 28.5291 76.8386 30.994C76.8386 33.4428 78.7554 35.2471 81.1073 35.2471C83.4601 35.2471 85.3769 33.4428 85.3769 30.994C85.3769 28.5291 83.4601 26.7409 81.1073 26.7409Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x5d1et\",whileHover:animation2,children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/app/apple-store/id6452014754?pt=118527183&ct=webbsite_ios&mt=8\",motionChild:true,nodeId:\"nh3otvxlI\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-18w6s6l framer-lux5qc\",\"data-framer-name\":\"Auto Layout Horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:160,svg:'<svg width=\"160\" height=\"50\" viewBox=\"0 0 160 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.389648\" width=\"159.322\" height=\"50\" rx=\"25\" fill=\"#262634\"/>\\n<path d=\"M40.7646 25.8549C40.778 24.8242 41.0533 23.8136 41.5649 22.9171C42.0766 22.0207 42.8079 21.2675 43.6909 20.7276C43.13 19.9309 42.3899 19.2753 41.5296 18.8128C40.6693 18.3502 39.7123 18.0936 38.7348 18.0632C36.6496 17.8455 34.628 19.304 33.5654 19.304C32.4822 19.304 30.8462 18.0848 29.0845 18.1208C27.9449 18.1574 26.8343 18.487 25.8609 19.0773C24.8875 19.6676 24.0845 20.4987 23.5301 21.4894C21.1285 25.6242 22.9199 31.7011 25.2204 35.0434C26.3714 36.68 27.7166 38.5082 29.4767 38.4434C31.1992 38.3723 31.8425 37.3512 33.9216 37.3512C35.9814 37.3512 36.5849 38.4434 38.3808 38.4022C40.229 38.3723 41.3935 36.7583 42.5041 35.1061C43.3311 33.94 43.9675 32.6511 44.3896 31.2873C43.3159 30.8356 42.3995 30.0797 41.7549 29.1137C41.1103 28.1476 40.7659 27.0143 40.7646 25.8549Z\" fill=\"white\"/>\\n<path d=\"M37.3723 15.8651C38.3801 14.6621 38.8765 13.1159 38.7563 11.5547C37.2167 11.7155 35.7946 12.4472 34.7732 13.6041C34.2738 14.1692 33.8914 14.8267 33.6477 15.539C33.404 16.2512 33.3038 17.0042 33.353 17.755C34.123 17.7629 34.8849 17.5969 35.5811 17.2695C36.2773 16.9422 36.8898 16.462 37.3723 15.8651Z\" fill=\"white\"/>\\n<path d=\"M59.1341 11.3289C59.5718 11.2976 60.011 11.3634 60.42 11.5214C60.8291 11.6794 61.1977 11.9257 61.4995 12.2425C61.8012 12.5594 62.0284 12.9389 62.1648 13.3536C62.3012 13.7684 62.3433 14.2081 62.2881 14.641C62.2881 16.7705 61.1308 17.9947 59.1341 17.9947H56.7129V11.3289H59.1341ZM57.754 17.052H59.0178C59.3306 17.0706 59.6435 17.0196 59.934 16.9027C60.2244 16.7858 60.485 16.606 60.6968 16.3764C60.9085 16.1467 61.0661 15.873 61.1581 15.5752C61.25 15.2773 61.274 14.9628 61.2284 14.6546C61.2707 14.3476 61.2443 14.035 61.1509 13.7393C61.0575 13.4437 60.8996 13.1722 60.6883 12.9444C60.477 12.7166 60.2177 12.538 59.9289 12.4216C59.6401 12.3051 59.329 12.2537 59.0178 12.2708H57.754V17.052Z\" fill=\"white\"/>\\n<path d=\"M63.4639 15.4773C63.4321 15.1467 63.4701 14.8131 63.5756 14.498C63.681 14.1829 63.8515 13.8932 64.0761 13.6474C64.3007 13.4017 64.5745 13.2053 64.8799 13.071C65.1853 12.9366 65.5155 12.8672 65.8495 12.8672C66.1834 12.8672 66.5137 12.9366 66.8191 13.071C67.1245 13.2053 67.3983 13.4017 67.6229 13.6474C67.8475 13.8932 68.018 14.1829 68.1234 14.498C68.2288 14.8131 68.2668 15.1467 68.235 15.4773C68.2674 15.8082 68.2299 16.1422 68.1247 16.4578C68.0196 16.7734 67.8492 17.0637 67.6245 17.3099C67.3999 17.5561 67.1259 17.7529 66.8202 17.8876C66.5145 18.0222 66.1838 18.0918 65.8495 18.0918C65.5151 18.0918 65.1845 18.0222 64.8788 17.8876C64.5731 17.7529 64.2991 17.5561 64.0744 17.3099C63.8498 17.0637 63.6794 16.7734 63.5742 16.4578C63.4691 16.1422 63.4315 15.8082 63.4639 15.4773ZM67.2082 15.4773C67.2082 14.3868 66.7156 13.7492 65.8511 13.7492C64.9833 13.7492 64.4952 14.3868 64.4952 15.4773C64.4952 16.5764 64.9834 17.2092 65.8511 17.2092C66.7156 17.2091 67.2082 16.572 67.2082 15.4773Z\" fill=\"white\"/>\\n<path d=\"M74.5769 17.9943H73.5413L72.4958 14.2894H72.4168L71.3757 17.9943H70.3499L68.9556 12.9639H69.9682L70.8743 16.8024H70.9489L71.9889 12.9639H72.9467L73.9867 16.8024H74.0657L74.9675 12.9639H75.9658L74.5769 17.9943Z\" fill=\"white\"/>\\n<path d=\"M77.1392 12.9644H78.1002V13.7635H78.1748C78.3013 13.4765 78.5148 13.2359 78.7854 13.0752C79.056 12.9146 79.3702 12.8419 79.6843 12.8673C79.9305 12.8489 80.1776 12.8858 80.4075 12.9752C80.6373 13.0647 80.844 13.2045 81.0121 13.3842C81.1803 13.5638 81.3056 13.7789 81.3789 14.0132C81.4521 14.2476 81.4714 14.4954 81.4352 14.7382V17.9947H80.4369V14.9875C80.4369 14.1791 80.0837 13.7771 79.3454 13.7771C79.1782 13.7694 79.0114 13.7977 78.8563 13.86C78.7012 13.9224 78.5615 14.0174 78.4468 14.1385C78.3321 14.2596 78.245 14.4039 78.1917 14.5615C78.1383 14.7192 78.1198 14.8865 78.1375 15.0519V17.9948H77.1392L77.1392 12.9644Z\" fill=\"white\"/>\\n<path d=\"M83.0259 11H84.0242V17.9941H83.0259V11Z\" fill=\"white\"/>\\n<path d=\"M85.4116 15.4773C85.3799 15.1467 85.4179 14.8132 85.5234 14.4981C85.6288 14.1829 85.7993 13.8932 86.024 13.6474C86.2486 13.4017 86.5224 13.2053 86.8278 13.071C87.1332 12.9366 87.4635 12.8672 87.7975 12.8672C88.1315 12.8672 88.4617 12.9366 88.7671 13.071C89.0726 13.2053 89.3464 13.4017 89.571 13.6474C89.7956 13.8932 89.9661 14.1829 90.0716 14.4981C90.177 14.8132 90.2151 15.1467 90.1833 15.4773C90.2157 15.8083 90.1781 16.1423 90.0729 16.4579C89.9677 16.7735 89.7973 17.0638 89.5726 17.31C89.3479 17.5562 89.0739 17.753 88.7682 17.8876C88.4625 18.0223 88.1318 18.0918 87.7975 18.0918C87.4631 18.0918 87.1325 18.0223 86.8268 17.8876C86.521 17.753 86.247 17.5562 86.0223 17.31C85.7976 17.0638 85.6272 16.7735 85.5221 16.4579C85.4169 16.1423 85.3793 15.8083 85.4116 15.4773ZM89.1559 15.4773C89.1559 14.3869 88.6633 13.7493 87.7988 13.7493C86.9311 13.7493 86.4429 14.3869 86.4429 15.4774C86.4429 16.5765 86.9311 17.2092 87.7988 17.2092C88.6633 17.2092 89.1559 16.5721 89.1559 15.4773Z\" fill=\"white\"/>\\n<path d=\"M91.2349 16.5721C91.2349 15.6666 91.9128 15.1446 93.1163 15.0704L94.4865 14.9918V14.5576C94.4865 14.0263 94.1333 13.7263 93.4509 13.7263C92.8936 13.7263 92.5075 13.9298 92.3966 14.2854H91.4301C91.5322 13.4214 92.3495 12.8672 93.497 12.8672C94.7652 12.8672 95.4805 13.495 95.4805 14.5576V17.9947H94.5195V17.2877H94.4405C94.2801 17.5413 94.055 17.7481 93.7881 17.8868C93.5211 18.0256 93.2219 18.0914 92.921 18.0776C92.7087 18.0995 92.4941 18.077 92.291 18.0114C92.0879 17.9459 91.9009 17.8387 91.7421 17.6968C91.5832 17.555 91.456 17.3816 91.3686 17.1879C91.2813 16.9942 91.2357 16.7844 91.2349 16.5721ZM94.4865 16.1422V15.7217L93.2513 15.8002C92.5546 15.8466 92.2387 16.0822 92.2387 16.5257C92.2387 16.9784 92.6336 17.2419 93.1767 17.2419C93.3358 17.2579 93.4966 17.242 93.6493 17.1949C93.8021 17.1479 93.9438 17.0708 94.066 16.9682C94.1883 16.8656 94.2885 16.7396 94.3607 16.5977C94.4329 16.4558 94.4757 16.3009 94.4865 16.1422Z\" fill=\"white\"/>\\n<path d=\"M96.792 15.4768C96.792 13.8872 97.6137 12.8803 98.8918 12.8803C99.2079 12.8658 99.5217 12.9411 99.7964 13.0974C100.071 13.2537 100.295 13.4845 100.443 13.7628H100.518V11H101.516V17.9941H100.559V17.1994H100.48C100.321 17.4758 100.089 17.7038 99.8091 17.8585C99.5291 18.0132 99.2119 18.0888 98.8918 18.077C97.6049 18.0771 96.792 17.0701 96.792 15.4768ZM97.8233 15.4768C97.8233 16.5437 98.329 17.1858 99.1748 17.1858C100.016 17.1858 100.536 16.5345 100.536 15.4811C100.536 14.4327 100.011 13.7721 99.1748 13.7721C98.3345 13.7721 97.8233 14.4185 97.8233 15.4768Z\" fill=\"white\"/>\\n<path d=\"M105.647 15.4773C105.615 15.1467 105.653 14.8131 105.758 14.498C105.864 14.1829 106.034 13.8932 106.259 13.6474C106.483 13.4017 106.757 13.2053 107.062 13.071C107.368 12.9366 107.698 12.8672 108.032 12.8672C108.366 12.8672 108.696 12.9366 109.002 13.071C109.307 13.2053 109.581 13.4017 109.805 13.6474C110.03 13.8932 110.201 14.1829 110.306 14.498C110.411 14.8131 110.449 15.1467 110.418 15.4773C110.45 15.8082 110.412 16.1422 110.307 16.4578C110.202 16.7734 110.032 17.0637 109.807 17.3099C109.582 17.5561 109.308 17.7529 109.003 17.8876C108.697 18.0222 108.366 18.0918 108.032 18.0918C107.698 18.0918 107.367 18.0222 107.061 17.8876C106.756 17.7529 106.482 17.5561 106.257 17.3099C106.032 17.0637 105.862 16.7734 105.757 16.4578C105.652 16.1422 105.614 15.8082 105.647 15.4773ZM109.391 15.4773C109.391 14.3868 108.898 13.7492 108.034 13.7492C107.166 13.7492 106.678 14.3868 106.678 15.4773C106.678 16.5764 107.166 17.2092 108.034 17.2092C108.898 17.2091 109.391 16.572 109.391 15.4773Z\" fill=\"white\"/>\\n<path d=\"M111.757 12.9644H112.718V13.7635H112.793C112.92 13.4765 113.133 13.2359 113.404 13.0752C113.674 12.9146 113.988 12.8419 114.303 12.8673C114.549 12.8489 114.796 12.8858 115.026 12.9752C115.255 13.0647 115.462 13.2045 115.63 13.3842C115.798 13.5638 115.924 13.7789 115.997 14.0132C116.07 14.2476 116.09 14.4954 116.053 14.7382V17.9947H115.055V14.9875C115.055 14.1791 114.702 13.7771 113.964 13.7771C113.796 13.7694 113.63 13.7977 113.474 13.86C113.319 13.9224 113.18 14.0174 113.065 14.1385C112.95 14.2596 112.863 14.4039 112.81 14.5615C112.756 14.7192 112.738 14.8865 112.756 15.0519V17.9948H111.757V12.9644Z\" fill=\"white\"/>\\n<path d=\"M121.694 11.7119V12.9872H122.79V13.8235H121.694V16.4101C121.694 16.9371 121.912 17.1678 122.409 17.1678C122.537 17.1674 122.664 17.1597 122.79 17.1449V17.9718C122.611 18.0037 122.429 18.0207 122.247 18.0226C121.137 18.0226 120.695 17.6342 120.695 16.6643V13.8234H119.892V12.9872H120.695V11.7119H121.694Z\" fill=\"white\"/>\\n<path d=\"M124.154 11H125.143V13.7721H125.222C125.355 13.4824 125.574 13.2405 125.85 13.0792C126.126 12.918 126.446 12.8452 126.765 12.871C127.01 12.8577 127.254 12.8984 127.482 12.9901C127.709 13.0817 127.913 13.2221 128.079 13.4012C128.246 13.5803 128.37 13.7938 128.444 14.0263C128.518 14.2588 128.54 14.5047 128.507 14.7464V17.9941H127.508V14.9913C127.508 14.1878 127.131 13.7808 126.426 13.7808C126.254 13.7668 126.082 13.7903 125.92 13.8496C125.759 13.9088 125.612 14.0025 125.491 14.124C125.369 14.2454 125.276 14.3918 125.218 14.5528C125.159 14.7139 125.137 14.8856 125.152 15.0562V17.9941H124.154L124.154 11Z\" fill=\"white\"/>\\n<path d=\"M134.328 16.6365C134.192 17.0963 133.898 17.494 133.497 17.76C133.097 18.0261 132.615 18.1435 132.136 18.0919C131.802 18.1006 131.471 18.0371 131.165 17.9058C130.859 17.7745 130.585 17.5786 130.363 17.3315C130.141 17.0845 129.975 16.7923 129.878 16.4752C129.78 16.1582 129.753 15.8238 129.799 15.4954C129.755 15.166 129.782 14.8309 129.879 14.5129C129.976 14.1949 130.141 13.9013 130.362 13.6521C130.583 13.4029 130.856 13.2039 131.161 13.0685C131.466 12.933 131.797 12.8644 132.131 12.8673C133.539 12.8673 134.388 13.8235 134.388 15.4032V15.7496H130.816V15.8052C130.8 15.9898 130.824 16.1756 130.884 16.3508C130.945 16.5259 131.042 16.6864 131.169 16.8221C131.296 16.9578 131.45 17.0656 131.621 17.1387C131.792 17.2117 131.977 17.2484 132.163 17.2463C132.402 17.2748 132.644 17.2321 132.858 17.1235C133.072 17.0149 133.249 16.8454 133.367 16.6365L134.328 16.6365ZM130.816 15.0154H133.371C133.383 14.8465 133.36 14.677 133.303 14.5175C133.246 14.3581 133.156 14.2123 133.039 14.0896C132.921 13.9669 132.779 13.8699 132.622 13.8049C132.465 13.7399 132.296 13.7083 132.126 13.7122C131.953 13.7101 131.782 13.7423 131.622 13.807C131.462 13.8718 131.317 13.9677 131.194 14.0891C131.072 14.2106 130.976 14.3551 130.911 14.5142C130.846 14.6733 130.814 14.8437 130.816 15.0154Z\" fill=\"white\"/>\\n<path d=\"M62.2363 31.9043H56.9189L55.6419 35.6539H53.3896L58.4263 21.7812H60.7663L65.8029 35.6539H63.5122L62.2363 31.9043ZM57.4696 30.174H61.6846L59.6067 24.0886H59.5486L57.4696 30.174Z\" fill=\"white\"/>\\n<path d=\"M76.6803 30.597C76.6803 33.7401 74.9886 35.7594 72.4357 35.7594C71.7891 35.7931 71.1459 35.6449 70.58 35.332C70.014 35.019 69.5481 34.5539 69.2356 33.9899H69.1873V38.9996H67.0996V25.5393H69.1204V27.2216H69.1588C69.4857 26.6603 69.9594 26.1976 70.5297 25.8827C71.1 25.5678 71.7454 25.4126 72.3973 25.4335C74.9787 25.4335 76.6803 27.4627 76.6803 30.597ZM74.5344 30.597C74.5344 28.5493 73.4703 27.203 71.8466 27.203C70.2515 27.203 69.1786 28.5777 69.1786 30.597C69.1786 32.6349 70.2515 33.9997 71.8466 33.9997C73.4703 33.9997 74.5344 32.6633 74.5344 30.597Z\" fill=\"white\"/>\\n<path d=\"M87.8751 30.597C87.8751 33.7401 86.1834 35.7594 83.6306 35.7594C82.9839 35.7931 82.3407 35.6449 81.7748 35.332C81.2088 35.019 80.7429 34.5539 80.4304 33.9899H80.3821V38.9996H78.2944V25.5393H80.3152V27.2216H80.3536C80.6805 26.6603 81.1542 26.1975 81.7245 25.8827C82.2948 25.5678 82.9402 25.4126 83.5921 25.4335C86.1735 25.4335 87.8751 27.4627 87.8751 30.597ZM85.7292 30.597C85.7292 28.5493 84.6651 27.203 83.0414 27.203C81.4463 27.203 80.3734 28.5776 80.3734 30.597C80.3734 32.6349 81.4463 33.9997 83.0414 33.9997C84.6651 33.9997 85.7292 32.6633 85.7292 30.597Z\" fill=\"white\"/>\\n<path d=\"M95.2728 31.7885C95.4275 33.1642 96.7714 34.0675 98.6079 34.0675C100.368 34.0675 101.634 33.1642 101.634 31.9237C101.634 30.847 100.87 30.2022 99.0621 29.7604L97.2541 29.3272C94.6925 28.712 93.5033 27.5206 93.5033 25.5874C93.5033 23.1939 95.6009 21.5498 98.5794 21.5498C101.527 21.5498 103.548 23.1939 103.616 25.5874H101.509C101.382 24.203 100.232 23.3673 98.5497 23.3673C96.8679 23.3673 95.7171 24.2128 95.7171 25.4434C95.7171 26.4242 96.4522 27.0013 98.2502 27.4431L99.7872 27.8184C102.649 28.4915 103.839 29.6349 103.839 31.664C103.839 34.2594 101.76 35.885 98.4532 35.885C95.3595 35.885 93.2707 34.2976 93.1357 31.7884L95.2728 31.7885Z\" fill=\"white\"/>\\n<path d=\"M108.344 23.1465V25.54H110.279V27.1841H108.344V32.76C108.344 33.6262 108.732 34.0299 109.582 34.0299C109.812 34.0259 110.041 34.0099 110.269 33.9818V35.6161C109.886 35.6871 109.498 35.7193 109.109 35.7121C107.05 35.7121 106.247 34.943 106.247 32.9814V27.1841H104.768V25.54H106.247V23.1465H108.344Z\" fill=\"white\"/>\\n<path d=\"M111.399 30.5981C111.399 27.4157 113.284 25.416 116.223 25.416C119.172 25.416 121.048 27.4157 121.048 30.5981C121.048 33.7891 119.181 35.7801 116.223 35.7801C113.265 35.7801 111.399 33.7891 111.399 30.5981ZM118.92 30.5981C118.92 28.4151 117.914 27.1266 116.223 27.1266C114.531 27.1266 113.526 28.4249 113.526 30.5981C113.526 32.7898 114.531 34.0684 116.223 34.0684C117.914 34.0684 118.92 32.7898 118.92 30.5981Z\" fill=\"white\"/>\\n<path d=\"M122.769 25.5392H124.76V27.2608H124.809C124.943 26.7231 125.26 26.2479 125.706 25.9152C126.151 25.5824 126.698 25.4123 127.255 25.4334C127.496 25.4326 127.735 25.4585 127.97 25.5109V27.4528C127.667 27.3605 127.35 27.3181 127.032 27.3273C126.729 27.3151 126.427 27.3683 126.146 27.4832C125.865 27.5981 125.613 27.7721 125.406 27.9932C125.2 28.2142 125.043 28.4772 124.949 28.7639C124.854 29.0507 124.822 29.3544 124.857 29.6543V35.6535H122.769L122.769 25.5392Z\" fill=\"white\"/>\\n<path d=\"M137.596 32.684C137.315 34.5201 135.517 35.7801 133.216 35.7801C130.257 35.7801 128.421 33.8087 128.421 30.6461C128.421 27.4736 130.267 25.416 133.128 25.416C135.942 25.416 137.712 27.3383 137.712 30.405V31.1163H130.528V31.2417C130.495 31.614 130.542 31.9889 130.666 32.3418C130.79 32.6946 130.987 33.0172 131.246 33.2882C131.505 33.5592 131.819 33.7723 132.167 33.9134C132.515 34.0545 132.889 34.1203 133.264 34.1066C133.758 34.1525 134.253 34.0389 134.676 33.7826C135.099 33.5263 135.428 33.141 135.613 32.684L137.596 32.684ZM130.538 29.6653H135.623C135.642 29.3306 135.591 28.9957 135.473 28.6815C135.356 28.3674 135.174 28.0808 134.94 27.8397C134.705 27.5987 134.424 27.4084 134.112 27.2808C133.8 27.1532 133.465 27.0911 133.128 27.0983C132.788 27.0963 132.451 27.1612 132.137 27.2894C131.822 27.4176 131.536 27.6064 131.295 27.8451C131.055 28.0838 130.864 28.3675 130.734 28.6799C130.604 28.9923 130.537 29.3272 130.538 29.6653Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1dpe4sa\",\"data-framer-name\":\"Counter Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xepim6\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{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-iiie1\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q06z5o\",\"data-framer-name\":\"Countere Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:165,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w6kbj1-container\",nodeId:\"Tj596mnMP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{variant:\"SBEPoNGYV\"},Wh21U2UXq:{variant:\"SBEPoNGYV\"}},children:/*#__PURE__*/_jsx(HelperCounter,{h1InRlYSG:\"+50\",height:\"100%\",id:\"Tj596mnMP\",layoutId:\"Tj596mnMP\",NIaNdRBFe:\"Clients\",variant:\"TTYnYSGt8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:165,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uets4q-container\",nodeId:\"C7An4P0vM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{variant:\"SBEPoNGYV\"},Wh21U2UXq:{variant:\"SBEPoNGYV\"}},children:/*#__PURE__*/_jsx(HelperCounter,{h1InRlYSG:\"+100K\",height:\"100%\",id:\"C7An4P0vM\",layoutId:\"C7An4P0vM\",NIaNdRBFe:\"Users\",variant:\"TTYnYSGt8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:165,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zq2i35-container\",nodeId:\"IMmmc6V5x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{variant:\"SBEPoNGYV\"},Wh21U2UXq:{variant:\"SBEPoNGYV\"}},children:/*#__PURE__*/_jsx(HelperCounter,{h1InRlYSG:\"6M\",height:\"100%\",id:\"IMmmc6V5x\",layoutId:\"IMmmc6V5x\",NIaNdRBFe:\"Datas\",variant:\"TTYnYSGt8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:165,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2oqol-container\",nodeId:\"WvbV0dAJP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{variant:\"SBEPoNGYV\"},Wh21U2UXq:{variant:\"SBEPoNGYV\"}},children:/*#__PURE__*/_jsx(HelperCounter,{h1InRlYSG:\"2K\",height:\"100%\",id:\"WvbV0dAJP\",layoutId:\"WvbV0dAJP\",NIaNdRBFe:\"Stakers\",variant:\"TTYnYSGt8\",width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-2mzc0q\",\"data-framer-name\":\"About Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-76dsxu\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{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-1u7hdg0\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},Wh21U2UXq:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1320px) * 0.45)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yfe8xo-container\",nodeId:\"tL4az7QDE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{variant:\"VqIGAF5Ge\"},Wh21U2UXq:{variant:\"ZbZW3goFX\"}},children:/*#__PURE__*/_jsx(HelperAboutImageGallery,{height:\"100%\",id:\"tL4az7QDE\",layoutId:\"tL4az7QDE\",style:{width:\"100%\"},variant:\"gkPhd7noU\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sd5b3u\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c2wzcz\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-171pvn5\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cayuvs\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j1ocbx\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"AI models need human-generated datasets\"})}),className:\"framer-1ae7b1b\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-ry08kv\",\"data-styles-preset\":\"DfEME7AA2\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:[\"Data is gas \",/*#__PURE__*/_jsx(\"br\",{}),\"for AI\"]})}),className:\"framer-gbdcup\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Problem:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"AI needs two things to perform well: a good algorithm, and a good dataset during training phases. Today's datasets often have uncertain quality, high costs for accessing specific data, and a lack of fair compensation for data providers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olfwrx\",\"data-styles-preset\":\"mmRGE_gBf\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Solution:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Ta-da is a platform that provides AI  training datasets. On Ta-da, data providers and data checkers collaborate to build tailor made datasets, worldwide, with an algorithmic data-checking layer and human-in-the-loop verification.\"})]}),fonts:[\"GF;Kode Mono-regular\"]},Wh21U2UXq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Problem:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"AI needs two things to perform well: a good algorithm, and a good dataset during training phases. Today's datasets often have uncertain quality, high costs for accessing specific data, and a lack of fair compensation for data providers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olfwrx\",\"data-styles-preset\":\"mmRGE_gBf\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Solution:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Ta-da is a platform that provides AI  training datasets. On Ta-da, data providers and data checkers collaborate to build tailor made datasets, worldwide, with an algorithmic data-checking layer and human-in-the-loop verification.\"})]}),fonts:[\"GF;Kode Mono-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Problem:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olfwrx\",\"data-styles-preset\":\"mmRGE_gBf\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"AI needs two things to perform well: a good algorithm, and a good dataset during training phases. Today's datasets often have uncertain quality, high costs for accessing specific data, and a lack of fair compensation for data providers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olfwrx\",\"data-styles-preset\":\"mmRGE_gBf\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Solution:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olfwrx\",\"data-styles-preset\":\"mmRGE_gBf\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Ta-da is a platform that provides AI  training datasets. On Ta-da, data providers and data checkers collaborate to build tailor made datasets, worldwide, with an algorithmic data-checking layer and human-in-the-loop verification.\"})]}),className:\"framer-1ag0rt3\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.ta-da.io/white-paper/human-generated-data\",motionChild:true,nodeId:\"njs3sQqhG\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1x2r5j9 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Learn more\"})}),className:\"framer-16shisn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14q0i9r\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1zway2\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujs073\",\"data-framer-name\":\"About Content 01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/Ux9QninTLNLJuqNd4XPs2F7ys.png\"},className:\"framer-hp7k32\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ufqhdx\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Quality\"})}),fonts:[\"GF;Kode Mono-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Quality\"})}),className:\"framer-1asegcu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r6r0r6\",\"data-framer-name\":\"About Content 02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/zq7hjxIx1GuVxegl3oVaZh3zT8.png\"},className:\"framer-12gttpp\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ru5smw\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Ethical\"})}),fonts:[\"GF;Kode Mono-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Ethical\"})}),className:\"framer-txkkmt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16h23lg\",\"data-framer-name\":\"About Content 02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/gYYNqSYHhSGn7LyyBMrF0I3Dxa4.png\"},className:\"framer-2jsh50\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12fmc18\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Unbiased\"})}),fonts:[\"GF;Kode Mono-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Unbiased\"})}),className:\"framer-1mzgpjc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wwmx9b\",\"data-framer-name\":\"About Content 01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/BQg2VbxN3BoM9nC4SesHhuEoFA.png\"},className:\"framer-13xj6mc\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1crfbaj\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Scalable\"})}),fonts:[\"GF;Kode Mono-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Scalable\"})}),className:\"framer-6o02q4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:[\"Your AI Deserves Better Data\",/*#__PURE__*/_jsx(\"br\",{}),\"We\u2019ve Got It\"]}),/*#__PURE__*/_jsx(\"ul\",{children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})})})]}),className:\"framer-1frmctu hidden-72rtr7 hidden-cc23ns\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4wmgos\",\"data-framer-name\":\"Service Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-exhjb\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{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-15sf5lh\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12qk2eu\",\"data-framer-name\":\"Top Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l0nts8\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oltzyi\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(191, 0, 255)\"},children:\"We provide data for AI companies\"})}),className:\"framer-e8fwgr\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ry08kv\",\"data-styles-preset\":\"DfEME7AA2\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Better data Stronger AI\"})}),className:\"framer-1c0nkwy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-je87us hidden-72rtr7 hidden-10u2uls\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pvwatq\",\"data-framer-name\":\"About Content 01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/fNHfINVNQq9TULboZW0thXsyo.png\"},className:\"framer-16l3gtv\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y9t0ks\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Audio\"})}),className:\"framer-1bfet5e\",fonts:[\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wd6nw\",\"data-framer-name\":\"About Content 02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/GQRF0j33HSuVC4z5KyQydqIYM4Y.png\"},className:\"framer-dy4y2u\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-he1lk\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Image\"})}),className:\"framer-1t7t7jo\",fonts:[\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rjd9gf\",\"data-framer-name\":\"About Content 02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/Y2H4WeQhdxIqiX3UiLb9z5TsJA.png\"},className:\"framer-13u0j7b\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pj6obh\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Video\"})}),className:\"framer-i5749a\",fonts:[\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ynetai\",\"data-framer-name\":\"About Content 01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/tQavt40oVxPlgmpEI5qXIPaq0v8.png\"},className:\"framer-1ncnsf2\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6liar7\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Text\"})}),className:\"framer-bunbio\",fonts:[\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our decentralized community is the muscle behind AI, gathering, refining, and labeling high-quality data to build stronger, smarter models at scale.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-6rg5m0\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rhk30 hidden-cc23ns\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vdgmbg\",\"data-framer-name\":\"About Content 01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/fNHfINVNQq9TULboZW0thXsyo.png\"},className:\"framer-124o2lk\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sryzh0\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Audio\"})}),className:\"framer-wb5dnw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6dvnjc\",\"data-framer-name\":\"About Content 02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/GQRF0j33HSuVC4z5KyQydqIYM4Y.png\"},className:\"framer-1uht0zv\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10gcrwt\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Image\"})}),className:\"framer-hzypup\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ara2yy\",\"data-framer-name\":\"About Content 02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/Y2H4WeQhdxIqiX3UiLb9z5TsJA.png\"},className:\"framer-16s0p0j\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syz41x\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Video\"})}),className:\"framer-1yk0x3r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ixtu8g\",\"data-framer-name\":\"About Content 01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:318,pixelWidth:318,src:\"https://framerusercontent.com/images/tQavt40oVxPlgmpEI5qXIPaq0v8.png\"},className:\"framer-u98crm\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uz1kxb\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qde4pc\",\"data-styles-preset\":\"gVWlRQQoG\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Text\"})}),className:\"framer-3fj2nq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r01ugo hidden-72rtr7 hidden-10u2uls\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ylgbsy\",style:{rotate:90},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1su3b2v\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4shf4n\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 186\"><path d=\"M 2.5 2.5 C 72 2.5 58.5 93.5 137.5 93.5\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path><path d=\"M 3 184 C 72.5 184 59 93 138 93\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path><path d=\"M 2.5 93.5 L 2.5 93 L 137.5 93 Z\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path></svg>',svgContentId:9874553089,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15lb4dz\",\"data-framer-name\":\"Center\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-13o4g6e-container\",isModuleExternal:true,nodeId:\"gRq2H6GyL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DottedSpinner,{height:\"100%\",id:\"gRq2H6GyL\",layoutId:\"gRq2H6GyL\",style:{height:\"100%\",width:\"100%\"},variant:\"aubLLu7WS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kilirm\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l3nk0y\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15udoig\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yml3wz\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-131hsm5-container\",isModuleExternal:true,nodeId:\"zkhka6aGG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Stack\",id:\"zkhka6aGG\",layoutId:\"zkhka6aGG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mstnd7\",\"data-framer-name\":\"Windows\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11xk9cv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{background:{alt:\"\",fit:\"fill\",pixelHeight:2336,pixelWidth:4096,sizes:\"350px\",src:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png\",srcSet:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2336,pixelWidth:4096,src:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png\",srcSet:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png 4096w\"},className:\"framer-1ry02as\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o6jzuy\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vge7hu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Data collection\"})}),className:\"framer-1t48kxc\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Gather raw data: images, videos, text files\"})}),className:\"framer-1s159yt\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vkv6b7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Data annotation\"})}),className:\"framer-1p0uyjq\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Add metadata on raw data to make it usable \"})}),className:\"framer-h9ecsn\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mtiepd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"RLHF\"})}),className:\"framer-ncega8\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reinforcement Learning \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"from Human Feedback\"})]}),className:\"framer-3p7sya\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1742t hidden-72rtr7 hidden-cc23ns\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gg1zok\",style:{rotate:90},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18va4vs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1taw7hc\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 186\"><path d=\"M 2.5 2.5 C 72 2.5 58.5 93.5 137.5 93.5\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path><path d=\"M 3 184 C 72.5 184 59 93 138 93\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path><path d=\"M 2.5 93.5 L 2.5 93 L 137.5 93 Z\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path></svg>',svgContentId:9874553089,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ouscy6\",\"data-framer-name\":\"Center\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-pfndmg-container\",isModuleExternal:true,nodeId:\"ypdbRqFUK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DottedSpinner,{height:\"100%\",id:\"ypdbRqFUK\",layoutId:\"ypdbRqFUK\",style:{height:\"100%\",width:\"100%\"},variant:\"aubLLu7WS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10cq2pu\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-168ehsl\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6s00wx\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w0jmhd\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fli72o-container\",isModuleExternal:true,nodeId:\"DYrE_LYmD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Stack\",id:\"DYrE_LYmD\",layoutId:\"DYrE_LYmD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bcbg18\",\"data-framer-name\":\"Windows\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7xg4f8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2336,pixelWidth:4096,sizes:\"405px\",src:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png\",srcSet:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png 4096w\"},className:\"framer-oi4iuc\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p2w8zd\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l2o3tx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Data \",/*#__PURE__*/_jsx(\"br\",{}),\"collection\"]})}),className:\"framer-lgl58f\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Gather raw data: images, videos, text files\"})}),className:\"framer-1fd9did\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ac58kl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Data \",/*#__PURE__*/_jsx(\"br\",{}),\"annotation\"]})}),className:\"framer-qcdlyy\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Add metadata on raw data to make it usable \"})}),className:\"framer-1t49wa1\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11cc31m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"RLHF\"})}),className:\"framer-z8fm12\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reinforcement Learning \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"from Human Feedback\"})]}),className:\"framer-ec3vwp\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfirmw hidden-10u2uls hidden-cc23ns\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2b0biu\",\"data-framer-name\":\"muscle 1\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vb1f6s\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8oucsy\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 266\"><path d=\"M 3.571 133.715 L 3.571 133 L 196.429 133\" fill=\"transparent\" stroke-width=\"5.71\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path></svg>',svgContentId:9473461785,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8uvbp2\",style:{rotate:-180},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sdl0fe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lbflwy\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 186\"><path d=\"M 2.5 2.5 C 72 2.5 58.5 93.5 137.5 93.5\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path><path d=\"M 3 184 C 72.5 184 59 93 138 93\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path><path d=\"M 2.5 93.5 L 2.5 93 L 137.5 93 Z\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255)) /* {&quot;name&quot;:&quot;Theme Primary&quot;} */\"></path></svg>',svgContentId:9874553089,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ncx8d\",\"data-framer-name\":\"Center\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-1a8wix0-container\",isModuleExternal:true,nodeId:\"hyyyE8AeH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DottedSpinner,{height:\"100%\",id:\"hyyyE8AeH\",layoutId:\"hyyyE8AeH\",style:{height:\"100%\",width:\"100%\"},variant:\"aubLLu7WS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bwvd4g\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-prllf5\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10zt0bd\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zjcf61\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1baxb08-container\",isModuleExternal:true,nodeId:\"LIXrFeupH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, rgb(191, 0, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Stack\",id:\"LIXrFeupH\",layoutId:\"LIXrFeupH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wcwnek\",\"data-framer-name\":\"Windows\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:2336,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:\"393px\",src:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png\",srcSet:\"https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hiXuKeyyBeo4wAAMcQSOv5JfQ.png 4096w\"},className:\"framer-162k8k\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e93lqy\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ra8oyz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Data collection\"})}),className:\"framer-2p804s\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Gather raw data: images, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"videos, audio, text files\"})]}),className:\"framer-dtur1e\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t0w5p1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Data labelling\"})}),className:\"framer-m71km5\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Structuring raw data \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"to provide useful metadata\"})]}),className:\"framer-5ck89m\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-185ecna\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"RLHF\"})}),className:\"framer-2eyisf\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reinforcement Learning \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"from Human Feedback\"})]}),className:\"framer-2ehg4n\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},Wh21U2UXq:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1320px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6bc0y0-container\",nodeId:\"lXHj1m0SF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperTestimonial2,{height:\"100%\",id:\"lXHj1m0SF\",layoutId:\"lXHj1m0SF\",style:{width:\"100%\"},variant:\"NwmYSqmZZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11k1gk2\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(191, 0, 255)\"},children:\"Usecases\"})}),className:\"framer-19v1e8r\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckpr32\",\"data-framer-name\":\"Card Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gnvg6u\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bntchpDyx\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"bntchpDyx\",name:\"LIZ1nR2MB\",type:\"Identifier\"},{collection:\"bntchpDyx\",name:\"H_RNFQ85M\",type:\"Identifier\"},{collection:\"bntchpDyx\",name:\"jORsBLEQi\",type:\"Identifier\"},{collection:\"bntchpDyx\",name:\"fpMtYReuo\",type:\"Identifier\"},{collection:\"bntchpDyx\",name:\"jhJDFSTEA\",type:\"Identifier\"},{collection:\"bntchpDyx\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({fpMtYReuo:fpMtYReuobntchpDyx,H_RNFQ85M:H_RNFQ85MbntchpDyx,id:idbntchpDyx,jhJDFSTEA:jhJDFSTEAbntchpDyx,jORsBLEQi:jORsBLEQibntchpDyx,LIZ1nR2MB:LIZ1nR2MBbntchpDyx},index)=>{H_RNFQ85MbntchpDyx??=\"\";jORsBLEQibntchpDyx??=\"\";jhJDFSTEAbntchpDyx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bntchpDyx-${idbntchpDyx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jhJDFSTEA:jhJDFSTEAbntchpDyx},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jhJDFSTEA:jhJDFSTEAbntchpDyx},webPageId:\"ia5sqTSBo\"},implicitPathVariables:undefined},{href:{pathVariables:{jhJDFSTEA:jhJDFSTEAbntchpDyx},webPageId:\"ia5sqTSBo\"},implicitPathVariables:undefined},{href:{pathVariables:{jhJDFSTEA:jhJDFSTEAbntchpDyx},webPageId:\"ia5sqTSBo\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`},Wh21U2UXq:{width:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.48)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:`calc((min(${componentViewport?.width||\"100vw\"} - 60px, 1320px) - 40px) * 0.32)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4vxtmr-container\",nodeId:\"PNVa70usB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{yZiAHbb3R:resolvedLinks[2]},Wh21U2UXq:{yZiAHbb3R:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CardServiceCard,{height:\"100%\",id:\"PNVa70usB\",kzO9XlHXl:jORsBLEQibntchpDyx,layoutId:\"PNVa70usB\",OEbYVBd8V:toResponsiveImage(fpMtYReuobntchpDyx),secZN7Ciy:H_RNFQ85MbntchpDyx,style:{width:\"100%\"},ubhRuvT7C:toResponsiveImage(LIZ1nR2MBbntchpDyx),width:\"100%\",yZiAHbb3R:resolvedLinks[0]})})})})})})})},idbntchpDyx);})})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:[\"Your AI Deserves Better Data\",/*#__PURE__*/_jsx(\"br\",{}),\"We\u2019ve Got It\"]}),/*#__PURE__*/_jsx(\"ul\",{children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})})})]}),className:\"framer-e0qmse hidden-10u2uls\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q6u35\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://forms.gle/Gxpm4FqZbS2K2Cbg7\",motionChild:true,nodeId:\"Hm4h91NHO\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gebgp6 framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Contact us\"})}),className:\"framer-k8x601\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.ta-da.io/white-paper/human-generated-data\",motionChild:true,nodeId:\"pk2A_VK8x\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11b1k7c framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Learn more\"})}),className:\"framer-q54m2x\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-178ife3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-100vge8\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"We build the future of AI with leaders\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"We build the future of AI with leaders\"})}),className:\"framer-aj9o2\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u4e516-container hidden-cc23ns\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dxT_do3uK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"dxT_do3uK\",layoutId:\"dxT_do3uK\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"1786px\",src:\"https://framerusercontent.com/images/JlXiHY8HWudf58Xp64M2ZlnhgcQ.png\",srcSet:\"https://framerusercontent.com/images/JlXiHY8HWudf58Xp64M2ZlnhgcQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/JlXiHY8HWudf58Xp64M2ZlnhgcQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JlXiHY8HWudf58Xp64M2ZlnhgcQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JlXiHY8HWudf58Xp64M2ZlnhgcQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JlXiHY8HWudf58Xp64M2ZlnhgcQ.png 5356w\"},className:\"framer-1iep055\",\"data-framer-name\":\"Frame 1171276830\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1h48uc1\",\"data-framer-name\":\"Testimonial Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ypxif2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pro28x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e1gu21\",\"data-framer-name\":\"Left Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c2dnc2\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p52t77\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rvunzb\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Our consensus system\"})}),className:\"framer-1q4regy\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ry08kv\",\"data-styles-preset\":\"DfEME7AA2\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Ensuring Quality Work\"})}),className:\"framer-13xbc0g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Quality work on Ta-da meets strict criteria of accuracy, completeness, and adherence to guidelines. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tasks are verified through community checking, where a subset of community members reviews and validates the work based on a shared standard of accuracy, following a Schelling point consensus model. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Producers lock a small token deposit, earning TADA tokens and XP if their work is validated. If not, they lose their deposit. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Similarly, checkers earn rewards if they align with the majority but are penalized for outlier judgments.\"})]}),className:\"framer-b3as8y\",fonts:[\"FS;Plus Jakarta Sans-regular\",\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.ta-da.io/white-paper/quality-assurance\",motionChild:true,nodeId:\"n5uQmiSAJ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-wvoukk framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Learn more\"})}),className:\"framer-170b67y\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9nv9r\",\"data-framer-name\":\"Right Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{background:{alt:\"Testimonial Image\",fit:\"fit\",pixelHeight:2131,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png\",srcSet:\"https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png 4096w\"}},Wh21U2UXq:{background:{alt:\"Testimonial Image\",fit:\"fit\",pixelHeight:2131,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png\",srcSet:\"https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Testimonial Image\",fit:\"fit\",pixelHeight:2131,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1320px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png\",srcSet:\"https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7tcJNkVHDeSiqFEVgIzQmDnqKE.png 4096w\"},className:\"framer-19fwzkm\",\"data-framer-name\":\"Testimonial Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eauv3p\",\"data-framer-name\":\"Fitness Scale\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-fd45d32f-1bf3-48a5-881a-3639bf9706fc, rgb(7, 9, 21))\"},children:\"Community checking\"})}),className:\"framer-l0q8l3\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xr3kw5\",\"data-framer-name\":\"Unit Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16wedvp\",\"data-framer-name\":\"unit Bar Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5avyil\",\"data-framer-name\":\"Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fd45d32f-1bf3-48a5-881a-3639bf9706fc, rgb(7, 9, 21))\"},children:\"Data producers\"})}),className:\"framer-to9q28\",fonts:[\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12phlgt\",\"data-framer-name\":\"unit Bar Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4k2ma\",\"data-framer-name\":\"Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fd45d32f-1bf3-48a5-881a-3639bf9706fc, rgb(7, 9, 21))\"},children:\"Data validators\"})}),className:\"framer-belvqg\",fonts:[\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tfyequ\",\"data-framer-name\":\"unit Bar Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g3wa22\",\"data-framer-name\":\"Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fd45d32f-1bf3-48a5-881a-3639bf9706fc, rgb(7, 9, 21))\"},children:\"Deposit system in $TADA\"})}),className:\"framer-aqs72t\",fonts:[\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]})})}),/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"Facilities BG\",fit:\"fill\",pixelHeight:2368,pixelWidth:4096,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uRuwvTFgty4fYKASmhPz5hZCWA.png\",srcSet:\"https://framerusercontent.com/images/uRuwvTFgty4fYKASmhPz5hZCWA.png?scale-down-to=512 512w,https://framerusercontent.com/images/uRuwvTFgty4fYKASmhPz5hZCWA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uRuwvTFgty4fYKASmhPz5hZCWA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uRuwvTFgty4fYKASmhPz5hZCWA.png 4096w\"},className:\"framer-11y3g6b\",\"data-framer-name\":\"Facilities Section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-151pf5e\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{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-q7lv3q\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jsc2o4\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v6d3rr\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13kltpo\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pkt9wf\",\"data-framer-name\":\"Sub-Title\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Subtitle Icon\",fit:\"fit\",pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9zopLMuzw54SB8k4sTuzN0GZbk.svg\"},className:\"framer-1dru9ij\",\"data-framer-name\":\"Subtitle Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(191, 0, 255)\"},children:\"Join the community\"})}),className:\"framer-pe6xud\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Earn $TADA from your couch!\"})}),className:\"framer-1ykvx8r\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"By contributing to the future of AI with Ta-da, you earn direct rewards sent to your wallet\u2014all accessible right from your phone. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ta-da offers the chance to be part of something bigger: advancing technology, enjoying the experience, and earning money along the way.\"})]}),className:\"framer-1up3ed0\",fonts:[\"FS;Plus Jakarta Sans-regular\",\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wu9gsg\",\"data-framer-name\":\"Button Wrapper\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i2uj7y\",whileHover:animation2,children:/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.vivoka.application.tada.prod&referrer=utm_source%3Dwebsite%26utm_medium%3Dgoogle-play%26anid%3Daarki%26aclid%3D{click_id}%26cp1%3D{app_id}\",motionChild:true,nodeId:\"PVqmIkFmb\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-69vjy4 framer-lux5qc\",\"data-framer-name\":\"Auto Layout Horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:161,svg:'<svg width=\"161\" height=\"50\" viewBox=\"0 0 161 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"160.79\" height=\"50\" rx=\"25\" fill=\"#262634\"/>\\n<path d=\"M32.7446 24.4232L22.0981 35.7232C22.0985 35.7256 22.0993 35.7275 22.0997 35.7299C22.4262 36.9568 23.5469 37.8604 24.877 37.8604C25.4087 37.8604 25.9079 37.7166 26.336 37.4643L26.37 37.4443L38.354 30.5291L32.7446 24.4232\" fill=\"#EA4335\"/>\\n<path d=\"M43.5158 22.4994L43.5056 22.4924L38.3318 19.4931L32.5029 24.6799L38.3521 30.5283L43.4986 27.5588C44.4009 27.0717 45.0134 26.1205 45.0134 25.0236C45.0134 23.9346 44.4091 22.9881 43.5158 22.4994\" fill=\"#FBBC04\"/>\\n<path d=\"M22.0976 14.2767C22.0336 14.5127 22 14.7599 22 15.0166V34.9842C22 35.2404 22.0332 35.4885 22.098 35.7236L33.1109 24.7127L22.0976 14.2767Z\" fill=\"#4285F4\"/>\\n<path d=\"M32.8231 25L38.3337 19.491L26.3633 12.5508C25.9282 12.2902 25.4204 12.1398 24.877 12.1398C23.5469 12.1398 22.4247 13.0449 22.0981 14.2734C22.0977 14.2746 22.0977 14.2754 22.0977 14.2765L32.8231 25Z\" fill=\"#34A853\"/>\\n<path d=\"M56.4344 11.2624C56.8721 11.2312 57.3113 11.297 57.7203 11.455C58.1294 11.613 58.498 11.8593 58.7998 12.1761C59.1015 12.493 59.3287 12.8725 59.4651 13.2872C59.6015 13.702 59.6436 14.1417 59.5884 14.5746C59.5884 16.7041 58.431 17.9282 56.4344 17.9282H54.0132V11.2624H56.4344ZM55.0543 16.9856H56.3181C56.6309 17.0041 56.9438 16.9532 57.2343 16.8363C57.5247 16.7194 57.7853 16.5396 57.9971 16.31C58.2088 16.0803 58.3664 15.8066 58.4584 15.5088C58.5503 15.2109 58.5743 14.8964 58.5287 14.5882C58.571 14.2811 58.5446 13.9686 58.4512 13.6729C58.3578 13.3773 58.1998 13.1058 57.9886 12.878C57.7773 12.6502 57.518 12.4716 57.2292 12.3552C56.9404 12.2387 56.6293 12.1873 56.3181 12.2044H55.0543V16.9856Z\" fill=\"white\"/>\\n<path d=\"M60.7642 15.4108C60.7324 15.0803 60.7704 14.7467 60.8759 14.4316C60.9813 14.1165 61.1518 13.8268 61.3764 13.581C61.601 13.3353 61.8748 13.1389 62.1802 13.0046C62.4856 12.8702 62.8158 12.8008 63.1498 12.8008C63.4837 12.8008 63.814 12.8702 64.1194 13.0046C64.4248 13.1389 64.6986 13.3353 64.9232 13.581C65.1478 13.8268 65.3183 14.1165 65.4237 14.4316C65.5291 14.7467 65.5671 15.0803 65.5353 15.4108C65.5677 15.7418 65.5302 16.0758 65.425 16.3914C65.3199 16.707 65.1495 16.9973 64.9248 17.2435C64.7002 17.4897 64.4262 17.6865 64.1205 17.8212C63.8148 17.9558 63.4841 18.0254 63.1498 18.0254C62.8154 18.0254 62.4848 17.9558 62.1791 17.8212C61.8734 17.6865 61.5994 17.4897 61.3747 17.2435C61.15 16.9973 60.9797 16.707 60.8745 16.3914C60.7694 16.0758 60.7318 15.7418 60.7642 15.4108ZM64.5085 15.4108C64.5085 14.3204 64.0159 13.6828 63.1514 13.6828C62.2836 13.6828 61.7955 14.3204 61.7955 15.4109C61.7955 16.51 62.2837 17.1427 63.1514 17.1427C64.0159 17.1427 64.5085 16.5056 64.5085 15.4108Z\" fill=\"white\"/>\\n<path d=\"M71.8772 17.9279H70.8416L69.7961 14.223H69.7171L68.676 17.9279H67.6502L66.2559 12.8975H67.2684L68.1746 16.736H68.2492L69.2892 12.8975H70.247L71.287 16.736H71.366L72.2677 12.8975H73.2661L71.8772 17.9279Z\" fill=\"white\"/>\\n<path d=\"M74.4395 12.898H75.4005V13.6971H75.4751C75.6016 13.4101 75.8151 13.1695 76.0857 13.0088C76.3563 12.8482 76.6705 12.7755 76.9846 12.8009C77.2308 12.7824 77.4779 12.8194 77.7078 12.9088C77.9376 12.9983 78.1443 13.1381 78.3124 13.3178C78.4806 13.4974 78.6059 13.7124 78.6791 13.9468C78.7524 14.1812 78.7717 14.429 78.7355 14.6718V17.9283H77.7372V14.9211C77.7372 14.1127 77.384 13.7107 76.6456 13.7107C76.4785 13.703 76.3117 13.7313 76.1566 13.7936C76.0015 13.856 75.8618 13.951 75.7471 14.0721C75.6324 14.1931 75.5453 14.3375 75.4919 14.4951C75.4386 14.6528 75.4201 14.8201 75.4378 14.9855V17.9284H74.4395L74.4395 12.898Z\" fill=\"white\"/>\\n<path d=\"M80.3262 10.9336H81.3245V17.9277H80.3262V10.9336Z\" fill=\"white\"/>\\n<path d=\"M82.7119 15.4109C82.6802 15.0803 82.7182 14.7468 82.8237 14.4317C82.9291 14.1165 83.0996 13.8268 83.3242 13.581C83.5489 13.3353 83.8227 13.1389 84.1281 13.0046C84.4335 12.8702 84.7638 12.8008 85.0978 12.8008C85.4317 12.8008 85.762 12.8702 86.0674 13.0046C86.3729 13.1389 86.6467 13.3353 86.8713 13.581C87.0959 13.8268 87.2664 14.1165 87.3719 14.4317C87.4773 14.7468 87.5154 15.0803 87.4836 15.4109C87.516 15.7419 87.4784 16.0759 87.3732 16.3915C87.268 16.7071 87.0976 16.9974 86.8729 17.2436C86.6482 17.4898 86.3742 17.6866 86.0685 17.8212C85.7628 17.9559 85.4321 18.0254 85.0978 18.0254C84.7634 18.0254 84.4328 17.9559 84.127 17.8212C83.8213 17.6866 83.5473 17.4898 83.3226 17.2436C83.0979 16.9974 82.9275 16.7071 82.8224 16.3915C82.7172 16.0759 82.6796 15.7419 82.7119 15.4109ZM86.4562 15.4109C86.4562 14.3205 85.9636 13.6829 85.0991 13.6829C84.2314 13.6829 83.7432 14.3205 83.7432 15.411C83.7432 16.5101 84.2314 17.1428 85.0991 17.1428C85.9636 17.1428 86.4562 16.5057 86.4562 15.4109Z\" fill=\"white\"/>\\n<path d=\"M88.5352 16.5057C88.5352 15.6002 89.2131 15.0782 90.4166 15.004L91.7868 14.9254V14.4912C91.7868 13.9599 91.4336 13.6599 90.7512 13.6599C90.1939 13.6599 89.8078 13.8634 89.6969 14.219H88.7304C88.8325 13.355 89.6498 12.8008 90.7973 12.8008C92.0655 12.8008 92.7808 13.4286 92.7808 14.4912V17.9283H91.8198V17.2213H91.7408C91.5804 17.4749 91.3553 17.6817 91.0884 17.8204C90.8214 17.9592 90.5222 18.025 90.2213 18.0112C90.009 18.0331 89.7943 18.0106 89.5913 17.945C89.3882 17.8794 89.2012 17.7723 89.0424 17.6304C88.8835 17.4886 88.7563 17.3152 88.6689 17.1215C88.5816 16.9278 88.536 16.718 88.5352 16.5057ZM91.7868 16.0758V15.6553L90.5516 15.7338C89.8549 15.7802 89.539 16.0158 89.539 16.4593C89.539 16.912 89.9339 17.1755 90.477 17.1755C90.6361 17.1915 90.7968 17.1755 90.9496 17.1285C91.1024 17.0815 91.2441 17.0044 91.3663 16.9018C91.4885 16.7992 91.5888 16.6732 91.661 16.5313C91.7332 16.3894 91.776 16.2345 91.7868 16.0758Z\" fill=\"white\"/>\\n<path d=\"M94.0923 15.4104C94.0923 13.8208 94.914 12.8139 96.1921 12.8139C96.5082 12.7994 96.822 12.8747 97.0967 13.031C97.3713 13.1873 97.5956 13.4181 97.7433 13.6964H97.8179V10.9336H98.8162V17.9277H97.8596V17.133H97.7806C97.6215 17.4094 97.3894 17.6374 97.1094 17.7921C96.8294 17.9468 96.5122 18.0224 96.1921 18.0106C94.9052 18.0107 94.0923 17.0037 94.0923 15.4104ZM95.1236 15.4104C95.1236 16.4773 95.6293 17.1193 96.4751 17.1193C97.3166 17.1193 97.8366 16.4681 97.8366 15.4147C97.8366 14.3663 97.3111 13.7057 96.4751 13.7057C95.6348 13.7057 95.1236 14.3521 95.1236 15.4104Z\" fill=\"white\"/>\\n<path d=\"M102.947 15.4108C102.915 15.0803 102.953 14.7467 103.058 14.4316C103.164 14.1165 103.334 13.8268 103.559 13.581C103.784 13.3353 104.057 13.1389 104.363 13.0046C104.668 12.8702 104.998 12.8008 105.332 12.8008C105.666 12.8008 105.997 12.8702 106.302 13.0046C106.607 13.1389 106.881 13.3353 107.106 13.581C107.33 13.8268 107.501 14.1165 107.606 14.4316C107.712 14.7467 107.75 15.0803 107.718 15.4108C107.75 15.7418 107.713 16.0758 107.608 16.3914C107.502 16.707 107.332 16.9973 107.107 17.2435C106.883 17.4897 106.609 17.6865 106.303 17.8212C105.997 17.9558 105.667 18.0254 105.332 18.0254C104.998 18.0254 104.667 17.9558 104.362 17.8212C104.056 17.6865 103.782 17.4897 103.557 17.2435C103.333 16.9973 103.162 16.707 103.057 16.3914C102.952 16.0758 102.914 15.7418 102.947 15.4108ZM106.691 15.4108C106.691 14.3204 106.199 13.6828 105.334 13.6828C104.466 13.6828 103.978 14.3204 103.978 15.4109C103.978 16.51 104.466 17.1427 105.334 17.1427C106.199 17.1427 106.691 16.5056 106.691 15.4108Z\" fill=\"white\"/>\\n<path d=\"M109.058 12.898H110.019V13.6971H110.093C110.22 13.4101 110.433 13.1695 110.704 13.0088C110.974 12.8482 111.289 12.7755 111.603 12.8009C111.849 12.7824 112.096 12.8194 112.326 12.9088C112.556 12.9983 112.762 13.1381 112.931 13.3178C113.099 13.4974 113.224 13.7124 113.297 13.9468C113.371 14.1812 113.39 14.429 113.354 14.6718V17.9283H112.355V14.9211C112.355 14.1127 112.002 13.7107 111.264 13.7107C111.097 13.703 110.93 13.7313 110.775 13.7936C110.62 13.856 110.48 13.951 110.365 14.0721C110.251 14.1931 110.164 14.3375 110.11 14.4951C110.057 14.6528 110.038 14.8201 110.056 14.9855V17.9284H109.058V12.898Z\" fill=\"white\"/>\\n<path d=\"M118.994 11.6455V12.9208H120.09V13.7571H118.994V16.3437C118.994 16.8707 119.213 17.1014 119.71 17.1014C119.837 17.101 119.964 17.0933 120.09 17.0785V17.9054C119.911 17.9373 119.729 17.9543 119.547 17.9561C118.437 17.9561 117.995 17.5678 117.995 16.5979V13.757H117.192V12.9208H117.995V11.6455H118.994Z\" fill=\"white\"/>\\n<path d=\"M121.454 10.9336H122.444V13.7057H122.523C122.655 13.416 122.875 13.1741 123.151 13.0128C123.427 12.8515 123.746 12.7788 124.065 12.8046C124.31 12.7913 124.555 12.832 124.782 12.9236C125.009 13.0153 125.213 13.1557 125.38 13.3348C125.546 13.5139 125.671 13.7274 125.745 13.9599C125.818 14.1924 125.84 14.4383 125.807 14.6799V17.9277H124.808V14.9249C124.808 14.1214 124.432 13.7144 123.726 13.7144C123.555 13.7004 123.382 13.7239 123.22 13.7832C123.059 13.8424 122.912 13.9361 122.791 14.0576C122.67 14.179 122.577 14.3254 122.518 14.4864C122.46 14.6474 122.437 14.8192 122.452 14.9898V17.9277H121.454L121.454 10.9336Z\" fill=\"white\"/>\\n<path d=\"M131.628 16.5701C131.492 17.0299 131.198 17.4276 130.798 17.6936C130.397 17.9596 129.915 18.0771 129.436 18.0255C129.103 18.0342 128.771 17.9707 128.465 17.8394C128.159 17.7081 127.886 17.5122 127.663 17.2651C127.441 17.0181 127.275 16.7259 127.178 16.4088C127.08 16.0917 127.054 15.7574 127.099 15.429C127.055 15.0996 127.082 14.7645 127.179 14.4465C127.276 14.1285 127.441 13.8349 127.662 13.5857C127.884 13.3365 128.156 13.1375 128.461 13.002C128.766 12.8666 129.097 12.798 129.432 12.8009C130.839 12.8009 131.688 13.7571 131.688 15.3368V15.6832H128.116V15.7388C128.101 15.9234 128.124 16.1092 128.185 16.2844C128.245 16.4595 128.342 16.62 128.469 16.7557C128.596 16.8914 128.75 16.9992 128.921 17.0723C129.092 17.1453 129.277 17.182 129.463 17.1799C129.702 17.2084 129.944 17.1657 130.158 17.0571C130.373 16.9485 130.55 16.779 130.667 16.5701L131.628 16.5701ZM128.116 14.949H130.671C130.684 14.7801 130.661 14.6105 130.603 14.4511C130.546 14.2917 130.456 14.1459 130.339 14.0232C130.222 13.9005 130.08 13.8035 129.923 13.7385C129.765 13.6735 129.596 13.6419 129.426 13.6458C129.253 13.6437 129.082 13.6759 128.922 13.7406C128.762 13.8054 128.617 13.9013 128.495 14.0227C128.373 14.1442 128.276 14.2887 128.211 14.4478C128.146 14.6068 128.114 14.7773 128.116 14.949Z\" fill=\"white\"/>\\n<path d=\"M119.908 34.9893H121.774V22.4877H119.908V34.9893ZM136.715 26.9913L134.576 32.4112H134.512L132.292 26.9913H130.282L133.612 34.5663L131.713 38.7803H133.659L138.79 26.9913H136.715ZM126.132 33.5694C125.522 33.5694 124.669 33.2635 124.669 32.5077C124.669 31.5428 125.731 31.1729 126.647 31.1729C127.467 31.1729 127.854 31.3495 128.352 31.5909C128.207 32.7491 127.21 33.5694 126.132 33.5694V33.5694ZM126.358 26.7178C125.007 26.7178 123.608 27.3131 123.029 28.6319L124.685 29.3233C125.039 28.6319 125.698 28.4069 126.39 28.4069C127.355 28.4069 128.336 28.9854 128.352 30.0151V30.1436C128.014 29.9506 127.29 29.6612 126.406 29.6612C124.62 29.6612 122.803 30.642 122.803 32.4756C122.803 34.1483 124.267 35.226 125.907 35.226C127.161 35.226 127.854 34.6631 128.287 34.0034H128.352V34.969H130.154V30.1756C130.154 27.9561 128.496 26.7178 126.358 26.7178V26.7178ZM114.826 28.5131H112.172V24.228H114.826C116.221 24.228 117.013 25.3827 117.013 26.3705C117.013 27.3393 116.221 28.5131 114.826 28.5131V28.5131ZM114.778 22.4877H110.307V34.9893H112.172V30.253H114.778C116.846 30.253 118.879 28.7561 118.879 26.3705C118.879 23.9854 116.846 22.4877 114.778 22.4877ZM90.3964 33.5717C89.1073 33.5717 88.0284 32.492 88.0284 31.0104C88.0284 29.5116 89.1073 28.4166 90.3964 28.4166C91.6691 28.4166 92.6679 29.5116 92.6679 31.0104C92.6679 32.492 91.6691 33.5717 90.3964 33.5717V33.5717ZM92.539 27.6913H92.4745C92.0558 27.192 91.2499 26.7409 90.2355 26.7409C88.1085 26.7409 86.1593 28.61 86.1593 31.0104C86.1593 33.3944 88.1085 35.2471 90.2355 35.2471C91.2499 35.2471 92.0558 34.7959 92.4745 34.2807H92.539V34.8924C92.539 36.5201 91.6691 37.3896 90.2675 37.3896C89.1241 37.3896 88.4152 36.5682 88.1249 35.8756L86.498 36.5521C86.9648 37.6795 88.205 39.0654 90.2675 39.0654C92.4589 39.0654 94.3116 37.7764 94.3116 34.6346V26.9987H92.539V27.6913ZM95.6007 34.9893H97.4687V22.4877H95.6007V34.9893ZM100.224 30.8651C100.176 29.2217 101.497 28.3842 102.447 28.3842C103.189 28.3842 103.816 28.7549 104.026 29.2862L100.224 30.8651ZM106.023 29.4471C105.669 28.4971 104.59 26.7409 102.383 26.7409C100.191 26.7409 98.371 28.4647 98.371 30.994C98.371 33.3784 100.176 35.2471 102.592 35.2471C104.541 35.2471 105.669 34.0553 106.137 33.3623L104.687 32.3955C104.203 33.1045 103.543 33.5717 102.592 33.5717C101.642 33.5717 100.965 33.1366 100.53 32.2827L106.217 29.9307L106.023 29.4471ZM60.7156 28.0459V29.8502H65.0331C64.9042 30.8651 64.5659 31.6061 64.0503 32.1217C63.4218 32.7498 62.439 33.4428 60.7156 33.4428C58.0573 33.4428 55.9792 31.3002 55.9792 28.642C55.9792 25.9838 58.0573 23.8409 60.7156 23.8409C62.1495 23.8409 63.1964 24.4049 63.9698 25.1299L65.2429 23.8569C64.1632 22.826 62.7296 22.0366 60.7156 22.0366C57.0741 22.0366 54.0132 25.001 54.0132 28.642C54.0132 32.2827 57.0741 35.2471 60.7156 35.2471C62.6808 35.2471 64.1632 34.6026 65.323 33.3944C66.5152 32.2022 66.8859 30.5268 66.8859 29.1733C66.8859 28.7549 66.8534 28.3682 66.789 28.0459H60.7156ZM71.7945 33.5717C70.5054 33.5717 69.3937 32.5084 69.3937 30.994C69.3937 29.4635 70.5054 28.4166 71.7945 28.4166C73.0831 28.4166 74.1948 29.4635 74.1948 30.994C74.1948 32.5084 73.0831 33.5717 71.7945 33.5717V33.5717ZM71.7945 26.7409C69.4417 26.7409 67.5249 28.5291 67.5249 30.994C67.5249 33.4428 69.4417 35.2471 71.7945 35.2471C74.1464 35.2471 76.0636 33.4428 76.0636 30.994C76.0636 28.5291 74.1464 26.7409 71.7945 26.7409ZM81.1073 33.5717C79.8191 33.5717 78.707 32.5084 78.707 30.994C78.707 29.4635 79.8191 28.4166 81.1073 28.4166C82.3964 28.4166 83.5077 29.4635 83.5077 30.994C83.5077 32.5084 82.3964 33.5717 81.1073 33.5717ZM81.1073 26.7409C78.7554 26.7409 76.8386 28.5291 76.8386 30.994C76.8386 33.4428 78.7554 35.2471 81.1073 35.2471C83.4601 35.2471 85.3769 33.4428 85.3769 30.994C85.3769 28.5291 83.4601 26.7409 81.1073 26.7409Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7otwz3\",whileHover:animation2,children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/app/apple-store/id6452014754?pt=118527183&ct=webbsite_ios&mt=8\",motionChild:true,nodeId:\"liCs5MEPb\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1mui9hb framer-lux5qc\",\"data-framer-name\":\"Auto Layout Horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:160,svg:'<svg width=\"160\" height=\"50\" viewBox=\"0 0 160 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.389648\" width=\"159.322\" height=\"50\" rx=\"25\" fill=\"#262634\"/>\\n<path d=\"M40.7646 25.8549C40.778 24.8242 41.0533 23.8136 41.5649 22.9171C42.0766 22.0207 42.8079 21.2675 43.6909 20.7276C43.13 19.9309 42.3899 19.2753 41.5296 18.8128C40.6693 18.3502 39.7123 18.0936 38.7348 18.0632C36.6496 17.8455 34.628 19.304 33.5654 19.304C32.4822 19.304 30.8462 18.0848 29.0845 18.1208C27.9449 18.1574 26.8343 18.487 25.8609 19.0773C24.8875 19.6676 24.0845 20.4987 23.5301 21.4894C21.1285 25.6242 22.9199 31.7011 25.2204 35.0434C26.3714 36.68 27.7166 38.5082 29.4767 38.4434C31.1992 38.3723 31.8425 37.3512 33.9216 37.3512C35.9814 37.3512 36.5849 38.4434 38.3808 38.4022C40.229 38.3723 41.3935 36.7583 42.5041 35.1061C43.3311 33.94 43.9675 32.6511 44.3896 31.2873C43.3159 30.8356 42.3995 30.0797 41.7549 29.1137C41.1103 28.1476 40.7659 27.0143 40.7646 25.8549Z\" fill=\"white\"/>\\n<path d=\"M37.3723 15.8651C38.3801 14.6621 38.8765 13.1159 38.7563 11.5547C37.2167 11.7155 35.7946 12.4472 34.7732 13.6041C34.2738 14.1692 33.8914 14.8267 33.6477 15.539C33.404 16.2512 33.3038 17.0042 33.353 17.755C34.123 17.7629 34.8849 17.5969 35.5811 17.2695C36.2773 16.9422 36.8898 16.462 37.3723 15.8651Z\" fill=\"white\"/>\\n<path d=\"M59.1341 11.3289C59.5718 11.2976 60.011 11.3634 60.42 11.5214C60.8291 11.6794 61.1977 11.9257 61.4995 12.2425C61.8012 12.5594 62.0284 12.9389 62.1648 13.3536C62.3012 13.7684 62.3433 14.2081 62.2881 14.641C62.2881 16.7705 61.1308 17.9947 59.1341 17.9947H56.7129V11.3289H59.1341ZM57.754 17.052H59.0178C59.3306 17.0706 59.6435 17.0196 59.934 16.9027C60.2244 16.7858 60.485 16.606 60.6968 16.3764C60.9085 16.1467 61.0661 15.873 61.1581 15.5752C61.25 15.2773 61.274 14.9628 61.2284 14.6546C61.2707 14.3476 61.2443 14.035 61.1509 13.7393C61.0575 13.4437 60.8996 13.1722 60.6883 12.9444C60.477 12.7166 60.2177 12.538 59.9289 12.4216C59.6401 12.3051 59.329 12.2537 59.0178 12.2708H57.754V17.052Z\" fill=\"white\"/>\\n<path d=\"M63.4639 15.4773C63.4321 15.1467 63.4701 14.8131 63.5756 14.498C63.681 14.1829 63.8515 13.8932 64.0761 13.6474C64.3007 13.4017 64.5745 13.2053 64.8799 13.071C65.1853 12.9366 65.5155 12.8672 65.8495 12.8672C66.1834 12.8672 66.5137 12.9366 66.8191 13.071C67.1245 13.2053 67.3983 13.4017 67.6229 13.6474C67.8475 13.8932 68.018 14.1829 68.1234 14.498C68.2288 14.8131 68.2668 15.1467 68.235 15.4773C68.2674 15.8082 68.2299 16.1422 68.1247 16.4578C68.0196 16.7734 67.8492 17.0637 67.6245 17.3099C67.3999 17.5561 67.1259 17.7529 66.8202 17.8876C66.5145 18.0222 66.1838 18.0918 65.8495 18.0918C65.5151 18.0918 65.1845 18.0222 64.8788 17.8876C64.5731 17.7529 64.2991 17.5561 64.0744 17.3099C63.8498 17.0637 63.6794 16.7734 63.5742 16.4578C63.4691 16.1422 63.4315 15.8082 63.4639 15.4773ZM67.2082 15.4773C67.2082 14.3868 66.7156 13.7492 65.8511 13.7492C64.9833 13.7492 64.4952 14.3868 64.4952 15.4773C64.4952 16.5764 64.9834 17.2092 65.8511 17.2092C66.7156 17.2091 67.2082 16.572 67.2082 15.4773Z\" fill=\"white\"/>\\n<path d=\"M74.5769 17.9943H73.5413L72.4958 14.2894H72.4168L71.3757 17.9943H70.3499L68.9556 12.9639H69.9682L70.8743 16.8024H70.9489L71.9889 12.9639H72.9467L73.9867 16.8024H74.0657L74.9675 12.9639H75.9658L74.5769 17.9943Z\" fill=\"white\"/>\\n<path d=\"M77.1392 12.9644H78.1002V13.7635H78.1748C78.3013 13.4765 78.5148 13.2359 78.7854 13.0752C79.056 12.9146 79.3702 12.8419 79.6843 12.8673C79.9305 12.8489 80.1776 12.8858 80.4075 12.9752C80.6373 13.0647 80.844 13.2045 81.0121 13.3842C81.1803 13.5638 81.3056 13.7789 81.3789 14.0132C81.4521 14.2476 81.4714 14.4954 81.4352 14.7382V17.9947H80.4369V14.9875C80.4369 14.1791 80.0837 13.7771 79.3454 13.7771C79.1782 13.7694 79.0114 13.7977 78.8563 13.86C78.7012 13.9224 78.5615 14.0174 78.4468 14.1385C78.3321 14.2596 78.245 14.4039 78.1917 14.5615C78.1383 14.7192 78.1198 14.8865 78.1375 15.0519V17.9948H77.1392L77.1392 12.9644Z\" fill=\"white\"/>\\n<path d=\"M83.0259 11H84.0242V17.9941H83.0259V11Z\" fill=\"white\"/>\\n<path d=\"M85.4116 15.4773C85.3799 15.1467 85.4179 14.8132 85.5234 14.4981C85.6288 14.1829 85.7993 13.8932 86.024 13.6474C86.2486 13.4017 86.5224 13.2053 86.8278 13.071C87.1332 12.9366 87.4635 12.8672 87.7975 12.8672C88.1315 12.8672 88.4617 12.9366 88.7671 13.071C89.0726 13.2053 89.3464 13.4017 89.571 13.6474C89.7956 13.8932 89.9661 14.1829 90.0716 14.4981C90.177 14.8132 90.2151 15.1467 90.1833 15.4773C90.2157 15.8083 90.1781 16.1423 90.0729 16.4579C89.9677 16.7735 89.7973 17.0638 89.5726 17.31C89.3479 17.5562 89.0739 17.753 88.7682 17.8876C88.4625 18.0223 88.1318 18.0918 87.7975 18.0918C87.4631 18.0918 87.1325 18.0223 86.8268 17.8876C86.521 17.753 86.247 17.5562 86.0223 17.31C85.7976 17.0638 85.6272 16.7735 85.5221 16.4579C85.4169 16.1423 85.3793 15.8083 85.4116 15.4773ZM89.1559 15.4773C89.1559 14.3869 88.6633 13.7493 87.7988 13.7493C86.9311 13.7493 86.4429 14.3869 86.4429 15.4774C86.4429 16.5765 86.9311 17.2092 87.7988 17.2092C88.6633 17.2092 89.1559 16.5721 89.1559 15.4773Z\" fill=\"white\"/>\\n<path d=\"M91.2349 16.5721C91.2349 15.6666 91.9128 15.1446 93.1163 15.0704L94.4865 14.9918V14.5576C94.4865 14.0263 94.1333 13.7263 93.4509 13.7263C92.8936 13.7263 92.5075 13.9298 92.3966 14.2854H91.4301C91.5322 13.4214 92.3495 12.8672 93.497 12.8672C94.7652 12.8672 95.4805 13.495 95.4805 14.5576V17.9947H94.5195V17.2877H94.4405C94.2801 17.5413 94.055 17.7481 93.7881 17.8868C93.5211 18.0256 93.2219 18.0914 92.921 18.0776C92.7087 18.0995 92.4941 18.077 92.291 18.0114C92.0879 17.9459 91.9009 17.8387 91.7421 17.6968C91.5832 17.555 91.456 17.3816 91.3686 17.1879C91.2813 16.9942 91.2357 16.7844 91.2349 16.5721ZM94.4865 16.1422V15.7217L93.2513 15.8002C92.5546 15.8466 92.2387 16.0822 92.2387 16.5257C92.2387 16.9784 92.6336 17.2419 93.1767 17.2419C93.3358 17.2579 93.4966 17.242 93.6493 17.1949C93.8021 17.1479 93.9438 17.0708 94.066 16.9682C94.1883 16.8656 94.2885 16.7396 94.3607 16.5977C94.4329 16.4558 94.4757 16.3009 94.4865 16.1422Z\" fill=\"white\"/>\\n<path d=\"M96.792 15.4768C96.792 13.8872 97.6137 12.8803 98.8918 12.8803C99.2079 12.8658 99.5217 12.9411 99.7964 13.0974C100.071 13.2537 100.295 13.4845 100.443 13.7628H100.518V11H101.516V17.9941H100.559V17.1994H100.48C100.321 17.4758 100.089 17.7038 99.8091 17.8585C99.5291 18.0132 99.2119 18.0888 98.8918 18.077C97.6049 18.0771 96.792 17.0701 96.792 15.4768ZM97.8233 15.4768C97.8233 16.5437 98.329 17.1858 99.1748 17.1858C100.016 17.1858 100.536 16.5345 100.536 15.4811C100.536 14.4327 100.011 13.7721 99.1748 13.7721C98.3345 13.7721 97.8233 14.4185 97.8233 15.4768Z\" fill=\"white\"/>\\n<path d=\"M105.647 15.4773C105.615 15.1467 105.653 14.8131 105.758 14.498C105.864 14.1829 106.034 13.8932 106.259 13.6474C106.483 13.4017 106.757 13.2053 107.062 13.071C107.368 12.9366 107.698 12.8672 108.032 12.8672C108.366 12.8672 108.696 12.9366 109.002 13.071C109.307 13.2053 109.581 13.4017 109.805 13.6474C110.03 13.8932 110.201 14.1829 110.306 14.498C110.411 14.8131 110.449 15.1467 110.418 15.4773C110.45 15.8082 110.412 16.1422 110.307 16.4578C110.202 16.7734 110.032 17.0637 109.807 17.3099C109.582 17.5561 109.308 17.7529 109.003 17.8876C108.697 18.0222 108.366 18.0918 108.032 18.0918C107.698 18.0918 107.367 18.0222 107.061 17.8876C106.756 17.7529 106.482 17.5561 106.257 17.3099C106.032 17.0637 105.862 16.7734 105.757 16.4578C105.652 16.1422 105.614 15.8082 105.647 15.4773ZM109.391 15.4773C109.391 14.3868 108.898 13.7492 108.034 13.7492C107.166 13.7492 106.678 14.3868 106.678 15.4773C106.678 16.5764 107.166 17.2092 108.034 17.2092C108.898 17.2091 109.391 16.572 109.391 15.4773Z\" fill=\"white\"/>\\n<path d=\"M111.757 12.9644H112.718V13.7635H112.793C112.92 13.4765 113.133 13.2359 113.404 13.0752C113.674 12.9146 113.988 12.8419 114.303 12.8673C114.549 12.8489 114.796 12.8858 115.026 12.9752C115.255 13.0647 115.462 13.2045 115.63 13.3842C115.798 13.5638 115.924 13.7789 115.997 14.0132C116.07 14.2476 116.09 14.4954 116.053 14.7382V17.9947H115.055V14.9875C115.055 14.1791 114.702 13.7771 113.964 13.7771C113.796 13.7694 113.63 13.7977 113.474 13.86C113.319 13.9224 113.18 14.0174 113.065 14.1385C112.95 14.2596 112.863 14.4039 112.81 14.5615C112.756 14.7192 112.738 14.8865 112.756 15.0519V17.9948H111.757V12.9644Z\" fill=\"white\"/>\\n<path d=\"M121.694 11.7119V12.9872H122.79V13.8235H121.694V16.4101C121.694 16.9371 121.912 17.1678 122.409 17.1678C122.537 17.1674 122.664 17.1597 122.79 17.1449V17.9718C122.611 18.0037 122.429 18.0207 122.247 18.0226C121.137 18.0226 120.695 17.6342 120.695 16.6643V13.8234H119.892V12.9872H120.695V11.7119H121.694Z\" fill=\"white\"/>\\n<path d=\"M124.154 11H125.143V13.7721H125.222C125.355 13.4824 125.574 13.2405 125.85 13.0792C126.126 12.918 126.446 12.8452 126.765 12.871C127.01 12.8577 127.254 12.8984 127.482 12.9901C127.709 13.0817 127.913 13.2221 128.079 13.4012C128.246 13.5803 128.37 13.7938 128.444 14.0263C128.518 14.2588 128.54 14.5047 128.507 14.7464V17.9941H127.508V14.9913C127.508 14.1878 127.131 13.7808 126.426 13.7808C126.254 13.7668 126.082 13.7903 125.92 13.8496C125.759 13.9088 125.612 14.0025 125.491 14.124C125.369 14.2454 125.276 14.3918 125.218 14.5528C125.159 14.7139 125.137 14.8856 125.152 15.0562V17.9941H124.154L124.154 11Z\" fill=\"white\"/>\\n<path d=\"M134.328 16.6365C134.192 17.0963 133.898 17.494 133.497 17.76C133.097 18.0261 132.615 18.1435 132.136 18.0919C131.802 18.1006 131.471 18.0371 131.165 17.9058C130.859 17.7745 130.585 17.5786 130.363 17.3315C130.141 17.0845 129.975 16.7923 129.878 16.4752C129.78 16.1582 129.753 15.8238 129.799 15.4954C129.755 15.166 129.782 14.8309 129.879 14.5129C129.976 14.1949 130.141 13.9013 130.362 13.6521C130.583 13.4029 130.856 13.2039 131.161 13.0685C131.466 12.933 131.797 12.8644 132.131 12.8673C133.539 12.8673 134.388 13.8235 134.388 15.4032V15.7496H130.816V15.8052C130.8 15.9898 130.824 16.1756 130.884 16.3508C130.945 16.5259 131.042 16.6864 131.169 16.8221C131.296 16.9578 131.45 17.0656 131.621 17.1387C131.792 17.2117 131.977 17.2484 132.163 17.2463C132.402 17.2748 132.644 17.2321 132.858 17.1235C133.072 17.0149 133.249 16.8454 133.367 16.6365L134.328 16.6365ZM130.816 15.0154H133.371C133.383 14.8465 133.36 14.677 133.303 14.5175C133.246 14.3581 133.156 14.2123 133.039 14.0896C132.921 13.9669 132.779 13.8699 132.622 13.8049C132.465 13.7399 132.296 13.7083 132.126 13.7122C131.953 13.7101 131.782 13.7423 131.622 13.807C131.462 13.8718 131.317 13.9677 131.194 14.0891C131.072 14.2106 130.976 14.3551 130.911 14.5142C130.846 14.6733 130.814 14.8437 130.816 15.0154Z\" fill=\"white\"/>\\n<path d=\"M62.2363 31.9043H56.9189L55.6419 35.6539H53.3896L58.4263 21.7812H60.7663L65.8029 35.6539H63.5122L62.2363 31.9043ZM57.4696 30.174H61.6846L59.6067 24.0886H59.5486L57.4696 30.174Z\" fill=\"white\"/>\\n<path d=\"M76.6803 30.597C76.6803 33.7401 74.9886 35.7594 72.4357 35.7594C71.7891 35.7931 71.1459 35.6449 70.58 35.332C70.014 35.019 69.5481 34.5539 69.2356 33.9899H69.1873V38.9996H67.0996V25.5393H69.1204V27.2216H69.1588C69.4857 26.6603 69.9594 26.1976 70.5297 25.8827C71.1 25.5678 71.7454 25.4126 72.3973 25.4335C74.9787 25.4335 76.6803 27.4627 76.6803 30.597ZM74.5344 30.597C74.5344 28.5493 73.4703 27.203 71.8466 27.203C70.2515 27.203 69.1786 28.5777 69.1786 30.597C69.1786 32.6349 70.2515 33.9997 71.8466 33.9997C73.4703 33.9997 74.5344 32.6633 74.5344 30.597Z\" fill=\"white\"/>\\n<path d=\"M87.8751 30.597C87.8751 33.7401 86.1834 35.7594 83.6306 35.7594C82.9839 35.7931 82.3407 35.6449 81.7748 35.332C81.2088 35.019 80.7429 34.5539 80.4304 33.9899H80.3821V38.9996H78.2944V25.5393H80.3152V27.2216H80.3536C80.6805 26.6603 81.1542 26.1975 81.7245 25.8827C82.2948 25.5678 82.9402 25.4126 83.5921 25.4335C86.1735 25.4335 87.8751 27.4627 87.8751 30.597ZM85.7292 30.597C85.7292 28.5493 84.6651 27.203 83.0414 27.203C81.4463 27.203 80.3734 28.5776 80.3734 30.597C80.3734 32.6349 81.4463 33.9997 83.0414 33.9997C84.6651 33.9997 85.7292 32.6633 85.7292 30.597Z\" fill=\"white\"/>\\n<path d=\"M95.2728 31.7885C95.4275 33.1642 96.7714 34.0675 98.6079 34.0675C100.368 34.0675 101.634 33.1642 101.634 31.9237C101.634 30.847 100.87 30.2022 99.0621 29.7604L97.2541 29.3272C94.6925 28.712 93.5033 27.5206 93.5033 25.5874C93.5033 23.1939 95.6009 21.5498 98.5794 21.5498C101.527 21.5498 103.548 23.1939 103.616 25.5874H101.509C101.382 24.203 100.232 23.3673 98.5497 23.3673C96.8679 23.3673 95.7171 24.2128 95.7171 25.4434C95.7171 26.4242 96.4522 27.0013 98.2502 27.4431L99.7872 27.8184C102.649 28.4915 103.839 29.6349 103.839 31.664C103.839 34.2594 101.76 35.885 98.4532 35.885C95.3595 35.885 93.2707 34.2976 93.1357 31.7884L95.2728 31.7885Z\" fill=\"white\"/>\\n<path d=\"M108.344 23.1465V25.54H110.279V27.1841H108.344V32.76C108.344 33.6262 108.732 34.0299 109.582 34.0299C109.812 34.0259 110.041 34.0099 110.269 33.9818V35.6161C109.886 35.6871 109.498 35.7193 109.109 35.7121C107.05 35.7121 106.247 34.943 106.247 32.9814V27.1841H104.768V25.54H106.247V23.1465H108.344Z\" fill=\"white\"/>\\n<path d=\"M111.399 30.5981C111.399 27.4157 113.284 25.416 116.223 25.416C119.172 25.416 121.048 27.4157 121.048 30.5981C121.048 33.7891 119.181 35.7801 116.223 35.7801C113.265 35.7801 111.399 33.7891 111.399 30.5981ZM118.92 30.5981C118.92 28.4151 117.914 27.1266 116.223 27.1266C114.531 27.1266 113.526 28.4249 113.526 30.5981C113.526 32.7898 114.531 34.0684 116.223 34.0684C117.914 34.0684 118.92 32.7898 118.92 30.5981Z\" fill=\"white\"/>\\n<path d=\"M122.769 25.5392H124.76V27.2608H124.809C124.943 26.7231 125.26 26.2479 125.706 25.9152C126.151 25.5824 126.698 25.4123 127.255 25.4334C127.496 25.4326 127.735 25.4585 127.97 25.5109V27.4528C127.667 27.3605 127.35 27.3181 127.032 27.3273C126.729 27.3151 126.427 27.3683 126.146 27.4832C125.865 27.5981 125.613 27.7721 125.406 27.9932C125.2 28.2142 125.043 28.4772 124.949 28.7639C124.854 29.0507 124.822 29.3544 124.857 29.6543V35.6535H122.769L122.769 25.5392Z\" fill=\"white\"/>\\n<path d=\"M137.596 32.684C137.315 34.5201 135.517 35.7801 133.216 35.7801C130.257 35.7801 128.421 33.8087 128.421 30.6461C128.421 27.4736 130.267 25.416 133.128 25.416C135.942 25.416 137.712 27.3383 137.712 30.405V31.1163H130.528V31.2417C130.495 31.614 130.542 31.9889 130.666 32.3418C130.79 32.6946 130.987 33.0172 131.246 33.2882C131.505 33.5592 131.819 33.7723 132.167 33.9134C132.515 34.0545 132.889 34.1203 133.264 34.1066C133.758 34.1525 134.253 34.0389 134.676 33.7826C135.099 33.5263 135.428 33.141 135.613 32.684L137.596 32.684ZM130.538 29.6653H135.623C135.642 29.3306 135.591 28.9957 135.473 28.6815C135.356 28.3674 135.174 28.0808 134.94 27.8397C134.705 27.5987 134.424 27.4084 134.112 27.2808C133.8 27.1532 133.465 27.0911 133.128 27.0983C132.788 27.0963 132.451 27.1612 132.137 27.2894C131.822 27.4176 131.536 27.6064 131.295 27.8451C131.055 28.0838 130.864 28.3675 130.734 28.6799C130.604 28.9923 130.537 29.3272 130.538 29.6653Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{background:{alt:\"Facilities Image\",fit:\"fit\",pixelHeight:5256,pixelWidth:3212,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png\",srcSet:\"https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=1024 625w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=2048 1251w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=4096 2503w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png 3212w\"}},Wh21U2UXq:{background:{alt:\"Facilities Image\",fit:\"fit\",pixelHeight:5256,pixelWidth:3212,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png\",srcSet:\"https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=1024 625w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=2048 1251w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=4096 2503w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png 3212w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Facilities Image\",fit:\"fit\",pixelHeight:5256,pixelWidth:3212,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1320px) * 0.4795, 1px)`,src:\"https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png\",srcSet:\"https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=1024 625w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=2048 1251w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png?scale-down-to=4096 2503w,https://framerusercontent.com/images/mYXRa00zjkh5H12Y2nw3V9J4jo.png 3212w\"},className:\"framer-1sgnce6\",\"data-framer-name\":\"Facilities Image\"})})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-12n7pxe\",\"data-framer-name\":\"Testimonial Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13y93g7\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18848fl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lrw0l2\",\"data-framer-name\":\"Right Content\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Testimonial Image\",fit:\"fit\",pixelHeight:472,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bVSOiZ3zLpSC3M7L1mzZoCpBsM.png\"},className:\"framer-uuj8fh\",\"data-framer-name\":\"Testimonial Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v2gzqj\",\"data-framer-name\":\"Left Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfmssx\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-204bf2\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dhibay\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Discover our token\"})}),className:\"framer-1qa921\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ry08kv\",\"data-styles-preset\":\"DfEME7AA2\",style:{\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"About $TADA\"})}),className:\"framer-gssqc6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Ta-da token is built for growth with a sustainable, deflationary model. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Each client mission drives 65% of its value into $TADA buybacks, with 5% burned permanently, reducing supply. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Users can increase rewards through gamification mechanisms and staking, while a fixed supply of just 1 billion tokens ensures lasting scarcity\u2014positioning $TADA as a high-potential asset.\"})]}),fonts:[\"FS;Plus Jakarta Sans-regular\",\"GF;Kode Mono-regular\",\"GF;Kode Mono-700\"]},Wh21U2UXq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Ta-da token is built for growth with a sustainable, deflationary model. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Each client mission drives 65% of its value into $TADA buybacks, with 5% burned permanently, reducing supply. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Users can increase rewards through gamification mechanisms and staking, while a fixed supply of just 1 billion tokens ensures lasting scarcity\u2014positioning $TADA as a high-potential asset.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Ta-da token is built for growth with a sustainable, deflationary model. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Each client mission drives 65% of its value into $TADA buybacks, with 5% burned permanently, reducing supply. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Users can increase rewards through gamification mechanisms and staking, while a fixed supply of just 1 billion tokens ensures lasting scarcity\u2014positioning $TADA as a high-potential asset.\"})]}),className:\"framer-1vrekvj\",fonts:[\"FS;Plus Jakarta Sans-regular\",\"GF;Kode Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jeqn21\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.kucoin.com/trade/TADA-USDT\",motionChild:true,nodeId:\"KMzLqhz7E\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-win38m framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dl3lah\",\"data-framer-name\":\"tada\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1az7jsm\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"14\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.1398 0H12.9865C12.8332 0 12.6904 0.0824351 12.6138 0.218054L10.3774 4.15632C10.2664 4.35044 9.98883 4.35044 9.87781 4.15632L7.64146 0.220713C7.5648 0.0850943 7.42206 0.00265919 7.26874 0.00265919H2.54757C2.39425 0.00265919 2.2515 0.0850943 2.17484 0.220713L0.0574518 3.94625C-0.106441 4.2361 0.0997468 4.59509 0.430176 4.59509H4.47727C4.71518 4.59509 4.90815 4.78921 4.90815 5.02854V5.11363C4.90815 5.20405 4.88436 5.2918 4.83942 5.37158L2.42068 9.63161C2.34402 9.76457 2.34402 9.92944 2.42068 10.0624L4.53543 13.7826C4.70196 14.0725 5.11698 14.0725 5.28352 13.7826L9.88045 5.69068C9.99148 5.49656 10.269 5.49656 10.3801 5.69068L12.6164 9.62895C12.6931 9.76457 12.8358 9.847 12.9891 9.847H13.1424C13.2958 9.847 13.4385 9.76457 13.5152 9.62895L15.8388 5.5391C15.9445 5.35296 16 5.14023 16 4.92483C16 4.70944 15.9445 4.49936 15.8388 4.31056L13.5125 0.220713C13.4359 0.0850943 13.2931 0.00265919 13.1398 0.00265919V0Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Buy $TADA\"})}),className:\"framer-1sekemi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.ta-da.io/\",motionChild:true,nodeId:\"JTqcKNASi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-58oj7t framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Whitepaper\"})}),className:\"framer-w453yr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yxpwfr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1go2xt9\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27w1up\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nu03ic\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-39a397cc-0835-4e81-b7da-83b185aa5dc5, rgb(243, 236, 254))\"},children:\"We're multi-chain\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--token-39a397cc-0835-4e81-b7da-83b185aa5dc5, rgb(243, 236, 254))\"},children:\"We're multi-chain\"})}),className:\"framer-1c6wxai\",\"data-framer-name\":\"Optimize Performance\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xmugtk\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wslm07\",\"data-border\":true,\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,sizes:\"55px\",src:\"https://framerusercontent.com/images/KwNBP29Yb1aFaBSAXEhckd89A.png\",srcSet:\"https://framerusercontent.com/images/KwNBP29Yb1aFaBSAXEhckd89A.png?scale-down-to=512 512w,https://framerusercontent.com/images/KwNBP29Yb1aFaBSAXEhckd89A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KwNBP29Yb1aFaBSAXEhckd89A.png 2000w\"},className:\"framer-jjkh7e\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MultiversX\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d0f73d22-836b-4907-8089-1f8c17cd6ab3, rgba(243, 236, 254, 0.7))\"},children:\"TADA-5c032c\"})]}),className:\"framer-1lej2kk\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",fonts:[\"GF;Kode Mono-700\",\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e68xy5-container\",nodeId:\"picCIZwDl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyButton,{aCeOAHQBL:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",b8ei7OpHv:\"rgb(255, 255, 255)\",bcOKL_7fc:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H7V7H3V21H17V17H21V3ZM17 15H19V5H9V7H17V15Z\" fill=\"white\"/> </svg>',bPCJyrIbK:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',height:\"100%\",id:\"picCIZwDl\",layoutId:\"picCIZwDl\",PbW7K4Unr:\"rgb(0, 0, 0)\",qIDNNRI0q:\"TADA-5c032c\",rIGEnoYqD:\"Copied\",style:{height:\"100%\"},variant:\"iqeQIl4oO\",width:\"100%\",wr2g_fjxZ:\"rgb(194, 194, 194)\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zpggr2\",\"data-border\":true,\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,sizes:\"55px\",src:\"https://framerusercontent.com/images/rEjjyMHKqdF7ijgoHu7w2ZbUM.png\",srcSet:\"https://framerusercontent.com/images/rEjjyMHKqdF7ijgoHu7w2ZbUM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rEjjyMHKqdF7ijgoHu7w2ZbUM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rEjjyMHKqdF7ijgoHu7w2ZbUM.png 2000w\"},className:\"framer-1cpssdx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-39a397cc-0835-4e81-b7da-83b185aa5dc5, rgb(243, 236, 254))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"BNB Smart Chain\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d0f73d22-836b-4907-8089-1f8c17cd6ab3, rgba(243, 236, 254, 0.7))\"},children:\"0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5\"})]}),className:\"framer-1d8ijc7\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",fonts:[\"GF;Kode Mono-regular\",\"GF;Kode Mono-700\",\"FS;Plus Jakarta Sans-regular\",\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l2kpx7-container\",nodeId:\"DyT7tE1zL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyButton,{aCeOAHQBL:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",b8ei7OpHv:\"rgb(255, 255, 255)\",bcOKL_7fc:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H7V7H3V21H17V17H21V3ZM17 15H19V5H9V7H17V15Z\" fill=\"white\"/> </svg>',bPCJyrIbK:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',height:\"100%\",id:\"DyT7tE1zL\",layoutId:\"DyT7tE1zL\",PbW7K4Unr:\"rgb(0, 0, 0)\",qIDNNRI0q:\"0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5\",rIGEnoYqD:\"Copied\",style:{height:\"100%\"},variant:\"iqeQIl4oO\",width:\"100%\",wr2g_fjxZ:\"rgb(194, 194, 194)\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yqna8c\",\"data-border\":true,\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,sizes:\"55px\",src:\"https://framerusercontent.com/images/IKg8O4bzJBPJtzFlBkgW9sKKXU.png\",srcSet:\"https://framerusercontent.com/images/IKg8O4bzJBPJtzFlBkgW9sKKXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/IKg8O4bzJBPJtzFlBkgW9sKKXU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IKg8O4bzJBPJtzFlBkgW9sKKXU.png 2000w\"},className:\"framer-yw71ap\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-39a397cc-0835-4e81-b7da-83b185aa5dc5, rgb(243, 236, 254))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Solana\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d0f73d22-836b-4907-8089-1f8c17cd6ab3, rgba(243, 236, 254, 0.7))\"},children:\"AY1emMxqWLJnHE2HkQvLdLyVpZdsLzq4S3tx5whCNQoC\"})]}),className:\"framer-1gpbeu8\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",fonts:[\"GF;Kode Mono-regular\",\"GF;Kode Mono-700\",\"FS;Plus Jakarta Sans-regular\",\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10bjvbt-container\",nodeId:\"nViYKJqMW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyButton,{aCeOAHQBL:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",b8ei7OpHv:\"rgb(255, 255, 255)\",bcOKL_7fc:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H7V7H3V21H17V17H21V3ZM17 15H19V5H9V7H17V15Z\" fill=\"white\"/> </svg>',bPCJyrIbK:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',height:\"100%\",id:\"nViYKJqMW\",layoutId:\"nViYKJqMW\",PbW7K4Unr:\"rgb(0, 0, 0)\",qIDNNRI0q:\"AY1emMxqWLJnHE2HkQvLdLyVpZdsLzq4S3tx5whCNQoC\",rIGEnoYqD:\"Copied\",style:{height:\"100%\"},variant:\"iqeQIl4oO\",width:\"100%\",wr2g_fjxZ:\"rgb(194, 194, 194)\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dvntod\",\"data-border\":true,\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,sizes:\"55px\",src:\"https://framerusercontent.com/images/evbXhXaxHZiaP8ESwsFTVELyL0.png\",srcSet:\"https://framerusercontent.com/images/evbXhXaxHZiaP8ESwsFTVELyL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/evbXhXaxHZiaP8ESwsFTVELyL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/evbXhXaxHZiaP8ESwsFTVELyL0.png 2000w\"},className:\"framer-mz9dod\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-39a397cc-0835-4e81-b7da-83b185aa5dc5, rgb(243, 236, 254))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"TON\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d0f73d22-836b-4907-8089-1f8c17cd6ab3, rgba(243, 236, 254, 0.7))\"},children:\"EQAe9y7UXhTjhFGh4U17PCk3fgqjZERgGnXfcIVbi8ZkfXM1\"})]}),className:\"framer-15w163h\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",fonts:[\"GF;Kode Mono-regular\",\"GF;Kode Mono-700\",\"FS;Plus Jakarta Sans-regular\",\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dps1oa-container\",nodeId:\"KbKLJLxjR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyButton,{aCeOAHQBL:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",b8ei7OpHv:\"rgb(255, 255, 255)\",bcOKL_7fc:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H7V7H3V21H17V17H21V3ZM17 15H19V5H9V7H17V15Z\" fill=\"white\"/> </svg>',bPCJyrIbK:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3 15L9.29412 20L21 4\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',height:\"100%\",id:\"KbKLJLxjR\",layoutId:\"KbKLJLxjR\",PbW7K4Unr:\"rgb(0, 0, 0)\",qIDNNRI0q:\"EQAe9y7UXhTjhFGh4U17PCk3fgqjZERgGnXfcIVbi8ZkfXM1\",rIGEnoYqD:\"Copied\",style:{height:\"100%\"},variant:\"iqeQIl4oO\",width:\"100%\",wr2g_fjxZ:\"rgb(194, 194, 194)\"})})})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ollnzb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T4Rhh5OpE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://widgets.coingecko.com/gecko-coin-price-chart-widget.js\"></script>\\n<gecko-coin-price-chart-widget locale=\"en\" dark-mode=\"true\" transparent-background=\"true\" coin-id=\"ta-da\" initial-currency=\"usd\" width=\"500\" height=\"200\"></gecko-coin-price-chart-widget>',id:\"T4Rhh5OpE\",layoutId:\"T4Rhh5OpE\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hblm4u\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Currently listed on\"})}),className:\"framer-dkcuiz\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f2eoyy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J42WGmKD_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"J42WGmKD_\",layoutId:\"J42WGmKD_\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.kucoin.com/how-to-buy/ta-da\",motionChild:true,nodeId:\"Fzg3CtWkz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-az5aqz framer-lux5qc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b5tc7c\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:129,svg:'<svg width=\"129\" height=\"26\" viewBox=\"0 0 129 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M101.308 13.0038C101.308 12.2449 101.308 11.5311 101.283 10.8718C101.267 10.2499 101.205 9.63001 101.099 9.01696C101 8.45716 100.825 7.91348 100.579 7.40094C100.319 6.8725 99.9723 6.39167 99.5526 5.97874C98.9573 5.36882 98.249 4.88066 97.4671 4.54153C96.6212 4.1989 95.7154 4.02904 94.8029 4.04198C93.8869 4.03015 92.9777 4.19993 92.1277 4.54153C91.3413 4.87603 90.6285 5.36206 90.0299 5.97192C89.611 6.3846 89.2653 6.86553 89.0076 7.39412C88.7637 7.90677 88.5915 8.45054 88.4958 9.01013C88.3922 9.62337 88.3329 10.2433 88.3183 10.865C88.3019 11.5242 88.2938 12.2381 88.2979 12.9969C88.3019 13.7558 88.2979 14.4642 88.3183 15.1275C88.3329 15.7493 88.3922 16.3691 88.4958 16.9824C88.5915 17.542 88.7637 18.0857 89.0076 18.5984C89.2663 19.1264 89.6119 19.6071 90.0299 20.0206C90.6275 20.6309 91.3406 21.1162 92.1277 21.4483C92.9771 21.7921 93.8866 21.9628 94.8029 21.9505C95.7157 21.964 96.6218 21.7931 97.4671 21.4483C98.2491 21.1136 98.9577 20.6285 99.5526 20.0206C99.9714 19.6069 100.318 19.1262 100.579 18.5984C100.825 18.0858 101 17.5422 101.099 16.9824C101.204 16.3711 101.264 15.753 101.281 15.133C101.301 14.4696 101.311 13.7599 101.305 13.0024L101.308 13.0038ZM97.8684 13.0038C97.8684 13.8445 97.8561 14.5447 97.8274 15.1016C97.8113 15.559 97.7657 16.0149 97.6909 16.4665C97.6398 16.7673 97.5479 17.0598 97.4179 17.3359C97.3124 17.5584 97.1745 17.764 97.0085 17.946C96.7523 18.2393 96.4344 18.4723 96.0776 18.6284C95.6762 18.8002 95.2436 18.8876 94.807 18.8851C94.3681 18.8869 93.9335 18.7996 93.5294 18.6284C93.1639 18.4752 92.8375 18.242 92.574 17.946C92.407 17.7648 92.2689 17.5591 92.1645 17.3359C92.0382 17.0595 91.9509 16.7669 91.9052 16.4665C91.8323 16.0146 91.7868 15.5589 91.7687 15.1016C91.7442 14.5447 91.7319 13.8454 91.7319 13.0038C91.7319 12.163 91.7442 11.4615 91.7687 10.9046C91.7868 10.4473 91.8324 9.99152 91.9052 9.53971C91.9509 9.23927 92.0382 8.94666 92.1645 8.67028C92.2692 8.44728 92.4073 8.24154 92.574 8.06018C92.8378 7.76455 93.1642 7.53142 93.5294 7.37774C93.9329 7.20457 94.3679 7.11719 94.807 7.12114C95.2438 7.11661 95.6768 7.20403 96.0776 7.37774C96.4342 7.53431 96.7519 7.76728 97.0085 8.06018C97.1742 8.24237 97.3121 8.44794 97.4179 8.67028C97.5479 8.94637 97.6398 9.23886 97.6909 9.53971C97.7656 9.99127 97.8112 10.4472 97.8274 10.9046C97.8574 11.4601 97.8684 12.1616 97.8684 13.0038Z\" fill=\"white\"/>\\n<path d=\"M128.715 4.49631C128.713 4.33034 128.579 4.19616 128.413 4.19467H125.576C125.409 4.19542 125.275 4.33003 125.274 4.49631V14.9786L118.354 4.2793C118.308 4.20696 118.267 4.19467 118.164 4.19467H115.533C115.367 4.19688 115.233 4.33064 115.231 4.49631V21.5054C115.233 21.6708 115.367 21.8042 115.533 21.8057H118.369C118.534 21.8049 118.668 21.6709 118.669 21.5054V10.9959L125.591 21.7197C125.638 21.792 125.677 21.8043 125.78 21.8043H128.41C128.576 21.8036 128.71 21.6698 128.712 21.504L128.715 4.49631Z\" fill=\"white\"/>\\n<path d=\"M109.694 4.49631C109.693 4.33003 109.558 4.19542 109.392 4.19467H106.557C106.391 4.19542 106.256 4.33003 106.256 4.49631V21.504C106.256 21.6703 106.391 21.8049 106.557 21.8057H109.392C109.558 21.8049 109.693 21.6703 109.694 21.504V4.49631Z\" fill=\"white\"/>\\n<path d=\"M75.7575 13.0025C75.7575 12.1563 75.7671 11.452 75.7917 10.891C75.8084 10.4337 75.8539 9.9778 75.9282 9.52617C76.1902 8.01116 77.3504 7.11717 78.8312 7.11717C79.7976 7.12536 80.6738 7.48295 81.2334 8.29642C81.4869 8.67619 81.6716 9.09751 81.7794 9.54119C81.7877 9.58792 81.8304 9.62053 81.8777 9.61626H85.2148C85.2625 9.61626 85.2803 9.5835 85.2721 9.53709C84.9077 7.47204 83.8062 5.61717 81.8599 4.69861C80.9034 4.25572 79.8593 4.03412 78.8053 4.05029C76.9263 4.05029 75.3435 4.6936 74.0569 5.98022C73.3223 6.69614 72.8209 7.6171 72.6183 8.62263C72.4218 9.61262 72.3226 11.0721 72.3208 13.0011C72.319 14.9302 72.4182 16.3892 72.6183 17.3783C72.8193 18.3851 73.3192 19.3079 74.0528 20.0262C75.3385 21.3119 76.9213 21.9547 78.8012 21.9547C79.855 21.9707 80.8989 21.7496 81.8558 21.3078C83.8021 20.3892 84.9036 18.5344 85.268 16.4693C85.2762 16.4215 85.2584 16.3901 85.2107 16.3901H81.8722C81.8247 16.3852 81.7816 16.4181 81.7739 16.4652C81.6659 16.9084 81.4811 17.3292 81.228 17.7086C80.6684 18.5275 79.7921 18.881 78.8258 18.8879C77.3449 18.8879 76.1847 17.9952 75.9227 16.4802C75.8486 16.0286 75.803 15.5727 75.7862 15.1153C75.7671 14.5516 75.7575 13.846 75.7575 13.0025Z\" fill=\"white\"/>\\n<path d=\"M40.511 4.49631C40.5103 4.33003 40.3757 4.19542 40.2094 4.19467H37.3745C37.2083 4.19542 37.0737 4.33003 37.0729 4.49631V21.5054C37.0744 21.6711 37.2088 21.8049 37.3745 21.8058H40.2094C40.3751 21.8049 40.5095 21.6711 40.511 21.5054V16.5127L42.7863 13.7925L47.4596 21.7156C47.4956 21.774 47.5603 21.8085 47.6289 21.8058H51.0738C51.2321 21.8058 51.2608 21.7074 51.1816 21.5723L45.0629 11.1992L50.6766 4.46492C50.7899 4.32843 50.7421 4.19877 50.5647 4.19877H46.799C46.7532 4.19607 46.7091 4.21659 46.6816 4.25336L40.511 11.6537V4.49631Z\" fill=\"white\"/>\\n<path d=\"M61.1642 18.8876C59.5686 18.8876 58.1219 17.4108 58.1219 15.6474V4.49631C58.1211 4.33003 57.9865 4.19542 57.8202 4.19467H54.9854C54.8191 4.19542 54.6845 4.33003 54.6837 4.49631V15.6037C54.6837 19.4868 57.5882 21.9544 61.1642 21.9544C64.7401 21.9544 67.6446 19.4868 67.6446 15.6037V4.49631C67.6431 4.33034 67.5089 4.19616 67.343 4.19467H64.5068C64.341 4.19617 64.2072 4.33056 64.2065 4.49631V15.6474C64.2065 17.4094 62.7583 18.8876 61.1642 18.8876Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.57688 13.0027L17.3776 21.8048L22.9327 16.2498C23.926 15.3554 25.4456 15.3952 26.3908 16.3403C27.3359 17.2855 27.3757 18.8051 26.4813 19.7984L19.1506 27.1306C18.1659 28.099 16.5866 28.099 15.6019 27.1306L5.02547 16.5514V22.8394C5.02547 24.2271 3.90048 25.3521 2.51274 25.3521C1.12499 25.3521 0 24.2271 0 22.8394V3.15787C0 1.77013 1.12499 0.645136 2.51274 0.645136C3.90048 0.645136 5.02547 1.77013 5.02547 3.15787V9.44586L15.6005 -1.13057C16.5849 -2.09971 18.1648 -2.09971 19.1492 -1.13057L26.4854 6.20018C27.3798 7.1935 27.34 8.71317 26.3949 9.65832C25.4497 10.6035 23.9301 10.6433 22.9367 9.74886L17.3817 4.19382L8.57688 13.0027ZM17.3817 10.4873C16.3642 10.4867 15.4465 11.0992 15.0567 12.0392C14.667 12.9791 14.8818 14.0612 15.6011 14.7809C16.3205 15.5006 17.4025 15.7161 18.3426 15.3268C19.2828 14.9376 19.8958 14.0203 19.8958 13.0027C19.8962 12.3356 19.6315 11.6956 19.16 11.2236C18.6885 10.7516 18.0488 10.4863 17.3817 10.4859V10.4873Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://pancakeswap.finance/?outputCurrency=0x9b26e318bc6A2c8B45f5Daea2cc14697e0e0F8b5&inputCurrency=0x55d398326f99059fF775485246999027B3197955\",motionChild:true,nodeId:\"yHos440mG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13i2p2p framer-lux5qc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9jekyj\",\"data-framer-name\":\"Frame 1171276842\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:180,svg:'<svg width=\"180\" height=\"28\" viewBox=\"0 0 180 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M34.7653 21.532C34.3167 21.532 34.0924 21.4199 33.8681 21.3077C33.7559 21.0834 33.6438 20.8591 33.6438 20.5227V7.96234C33.6438 7.6259 33.7559 7.28946 33.8681 7.17732C34.0924 6.95303 34.3167 6.84088 34.7653 6.84088H40.0361C42.0547 6.84088 43.5126 7.28946 44.522 8.07448C45.4191 8.97165 45.9798 10.2053 45.9798 11.8874C45.9798 13.5696 45.5313 14.8032 44.522 15.7004C43.6248 16.4854 42.0547 16.934 40.0361 16.934H38.0175V20.4105C38.0175 20.747 37.9053 21.0834 37.7932 21.1956C37.5689 21.4199 37.3446 21.4199 36.896 21.4199H34.7653V21.532ZM39.6997 13.7939C40.2604 13.7939 40.709 13.6818 41.0454 13.3453C41.3819 13.0089 41.494 12.5603 41.494 11.8874C41.494 11.2146 41.3819 10.766 41.0454 10.4295C40.709 10.0931 40.2604 9.98097 39.6997 9.98097H38.0175V13.7939H39.6997Z\" fill=\"white\"/>\\n<path d=\"M51.0264 21.8684C49.6807 21.8684 48.5592 21.4199 47.7742 20.5227C46.9892 19.6255 46.5406 18.3919 46.5406 16.8219C46.5406 15.5883 46.7649 14.579 47.3256 13.6818C47.8863 12.7846 48.6714 12.1117 49.6807 11.551C50.69 11.1024 51.9236 10.766 53.1572 10.766C54.2787 10.766 55.1758 10.8781 56.073 11.1024C56.9702 11.3267 57.643 11.6632 58.4281 12.1117V20.747C58.4281 20.9713 58.4281 21.1956 58.3159 21.3077C58.2038 21.4199 57.9795 21.4199 57.7552 21.4199H55.5123C55.4001 21.4199 55.1758 21.4199 55.1758 21.3077C55.0637 21.1956 55.0637 21.1956 54.9515 21.0834L54.6151 20.4105C54.1665 20.8591 53.7179 21.1956 53.1572 21.4199C52.5965 21.7563 51.8114 21.8684 51.0264 21.8684ZM52.5965 18.9526C53.1572 18.9526 53.6058 18.8405 53.9422 18.5041C54.2786 18.2798 54.3908 17.8312 54.3908 17.3826V14.0182C54.1665 13.9061 53.7179 13.7939 53.3815 13.7939C52.5965 13.7939 52.0357 14.0182 51.5871 14.579C51.1386 15.1397 50.9143 15.8126 50.9143 16.8219C50.9143 18.1676 51.475 18.9526 52.5965 18.9526Z\" fill=\"white\"/>\\n<path d=\"M61.4569 21.532C61.0083 21.532 60.784 21.4198 60.5597 21.3077C60.3354 21.0834 60.3354 20.8591 60.3354 20.5227V11.7753C60.3354 11.551 60.3354 11.3267 60.4476 11.2145C60.5597 11.1024 60.784 11.1024 61.0083 11.1024H63.2512C63.4755 11.1024 63.5876 11.1024 63.5876 11.2145C63.6998 11.2145 63.6998 11.3267 63.8119 11.4388L63.9241 12.1117C64.3727 11.6631 64.8212 11.4388 65.4941 11.2145C66.167 10.9902 66.8399 10.8781 67.737 10.8781C68.8585 10.8781 69.8678 11.2145 70.5407 11.8874C71.2136 12.5603 71.6621 13.4575 71.6621 14.8032V20.5227C71.6621 20.8591 71.55 21.1955 71.4379 21.3077C71.3257 21.532 70.9893 21.532 70.5407 21.532H68.4099C67.9613 21.532 67.737 21.4198 67.5127 21.3077C67.2884 21.0834 67.2885 20.8591 67.2885 20.5227V15.0275C67.2885 14.5789 67.1763 14.2425 66.952 14.1303C66.7277 13.906 66.5034 13.7939 66.0549 13.7939C65.6063 13.7939 65.2698 13.906 65.0455 14.1303C64.8212 14.3546 64.7091 14.6911 64.7091 15.0275V20.4105C64.7091 20.7469 64.597 21.0834 64.4848 21.1955C64.3727 21.4198 64.0362 21.4198 63.5876 21.4198H61.4569V21.532Z\" fill=\"white\"/>\\n<path d=\"M79.2872 21.8684C77.2686 21.8684 75.6985 21.4198 74.5771 20.4105C73.4556 19.5133 72.8949 18.1676 72.8949 16.3733C72.8949 15.2518 73.1192 14.3546 73.6799 13.4575C74.1285 12.6724 74.9135 11.9996 75.8107 11.551C76.82 11.1024 77.9415 10.8781 79.1751 10.8781C80.1844 10.8781 80.9694 10.9902 81.6423 11.2145C82.3151 11.4388 82.988 11.6631 83.4366 12.1117C83.5488 12.2239 83.6609 12.336 83.6609 12.4481C83.6609 12.5603 83.5488 12.6724 83.4366 12.8967L82.5394 14.4668C82.4273 14.6911 82.3151 14.8032 82.203 14.8032C82.0909 14.8032 81.9787 14.6911 81.7544 14.5789C81.418 14.3546 80.9694 14.1303 80.633 14.0182C80.2965 13.906 79.8479 13.7939 79.3994 13.7939C78.7265 13.7939 78.0536 14.0182 77.605 14.4668C77.1564 14.9154 76.9321 15.5882 76.9321 16.3733C76.9321 17.1583 77.1564 17.8312 77.605 18.2797C78.0536 18.7283 78.6143 18.9526 79.3994 18.9526C79.8479 18.9526 80.2965 18.8405 80.633 18.7283C80.9694 18.6162 81.418 18.3919 81.7544 18.1676C81.9787 18.0554 82.0909 17.9433 82.203 17.9433C82.3151 17.9433 82.4273 18.0554 82.5394 18.2797L83.5488 19.9619C83.6609 20.0741 83.6609 20.1862 83.6609 20.2984C83.6609 20.4105 83.5488 20.5227 83.4366 20.6348C82.8759 20.9712 82.203 21.3077 81.418 21.532C81.0815 21.7563 80.2965 21.8684 79.2872 21.8684Z\" fill=\"white\"/>\\n<path d=\"M89.4934 21.8684C88.1476 21.8684 87.0261 21.4199 86.2411 20.5227C85.4561 19.6255 85.0075 18.3919 85.0075 16.8219C85.0075 15.5883 85.2318 14.579 85.7925 13.6818C86.3533 12.7846 87.1383 12.1117 88.1476 11.551C89.1569 11.1024 90.3905 10.766 91.6241 10.766C92.7456 10.766 93.6428 10.8781 94.5399 11.1024C95.4371 11.3267 96.11 11.6632 96.895 12.1117V20.747C96.895 20.9713 96.895 21.1956 96.7829 21.3077C96.6707 21.4199 96.4464 21.4199 96.2221 21.4199H93.9792C93.8671 21.4199 93.6428 21.4199 93.6428 21.3077C93.5306 21.1956 93.5306 21.1956 93.4185 21.0834L93.082 20.4105C92.6334 20.8591 92.1849 21.1956 91.6241 21.4199C91.0634 21.7563 90.3905 21.8684 89.4934 21.8684ZM91.1756 18.9526C91.7363 18.9526 92.1849 18.8405 92.5213 18.5041C92.8577 18.2798 92.9699 17.8312 92.9699 17.3826V14.0182C92.7456 13.9061 92.297 13.7939 91.9606 13.7939C91.1755 13.7939 90.6148 14.0182 90.1662 14.579C89.7177 15.1397 89.4934 15.8126 89.4934 16.8219C89.3812 18.1676 89.9419 18.9526 91.1756 18.9526Z\" fill=\"white\"/>\\n<path d=\"M110.575 20.747C110.688 20.8591 110.688 20.9713 110.688 21.0834C110.688 21.1956 110.688 21.3077 110.575 21.4199C110.463 21.532 110.351 21.532 110.239 21.532H106.875C106.65 21.532 106.538 21.532 106.426 21.532C106.314 21.532 106.202 21.4199 106.09 21.3077L103.174 17.2705V20.4105C103.174 20.747 103.062 21.0834 102.95 21.1956C102.725 21.4199 102.501 21.4199 102.052 21.4199H99.9216C99.473 21.4199 99.2488 21.3077 99.0245 21.1956C98.9123 20.9713 98.8002 20.747 98.8002 20.4105V7.96234C98.8002 7.6259 98.9123 7.28946 99.0245 7.17732C99.2488 6.95303 99.473 6.84088 99.9216 6.84088H102.052C102.501 6.84088 102.725 6.95303 102.95 7.17732C103.174 7.40161 103.174 7.6259 103.174 7.96234V15.1397L105.978 11.4389C106.09 11.3267 106.202 11.2146 106.314 11.2146C106.426 11.2146 106.538 11.1024 106.763 11.1024H110.127C110.239 11.1024 110.351 11.1024 110.463 11.2146C110.575 11.3267 110.575 11.4389 110.575 11.551C110.575 11.6632 110.575 11.7753 110.463 11.8874L106.763 16.149L110.575 20.747Z\" fill=\"white\"/>\\n<path d=\"M117.528 21.8685C116.295 21.8685 115.285 21.6442 114.276 21.3078C113.379 20.8592 112.594 20.2985 112.033 19.5135C111.472 18.7284 111.248 17.7191 111.248 16.5977C111.248 14.8033 111.809 13.3454 112.818 12.4483C113.827 11.4389 115.397 10.9904 117.304 10.9904C119.21 10.9904 120.668 11.4389 121.565 12.4483C122.575 13.3454 123.023 14.6912 123.023 16.3734C123.023 17.0462 122.687 17.4948 122.126 17.4948H115.397C115.397 18.1677 115.622 18.6163 116.07 18.9527C116.519 19.2892 117.304 19.4013 118.201 19.4013C118.762 19.4013 119.322 19.4013 119.659 19.2892C120.107 19.177 120.444 18.9527 120.892 18.8406C121.117 18.7284 121.229 18.7284 121.229 18.7284C121.341 18.7284 121.453 18.8406 121.565 18.9527L122.35 20.2985C122.463 20.4106 122.463 20.5228 122.463 20.6349C122.463 20.7471 122.35 20.8592 122.238 20.9713C121.678 21.3078 121.005 21.6442 120.22 21.8685C119.322 21.7564 118.537 21.8685 117.528 21.8685ZM119.21 15.1398C119.21 14.579 119.098 14.1304 118.762 13.9062C118.425 13.5697 117.977 13.4576 117.304 13.4576C116.631 13.4576 116.182 13.5697 115.846 13.9062C115.509 14.2426 115.397 14.579 115.397 15.1398H119.21Z\" fill=\"white\"/>\\n<path d=\"M130.537 21.8685C129.303 21.8685 128.182 21.7563 127.061 21.532C125.939 21.3077 125.154 20.8591 124.481 20.4106C124.257 20.2984 124.145 20.0741 124.145 19.962C124.145 19.8498 124.145 19.7377 124.257 19.6255L125.266 17.9434C125.378 17.7191 125.49 17.7191 125.603 17.7191C125.715 17.7191 125.827 17.7191 125.939 17.8312C126.5 18.1676 127.061 18.3919 127.733 18.6162C128.406 18.8405 129.079 18.9527 129.752 18.9527C130.425 18.9527 130.873 18.8405 131.21 18.6162C131.546 18.3919 131.658 18.0555 131.658 17.6069C131.658 17.1583 131.434 16.8219 131.098 16.5976C130.761 16.3733 130.088 16.0369 129.079 15.7004C127.621 15.1397 126.5 14.579 125.715 13.9061C124.93 13.2332 124.481 12.2239 124.481 11.1025C124.481 9.64456 125.042 8.63524 126.051 7.85022C127.061 7.0652 128.406 6.72876 130.088 6.72876C131.322 6.72876 132.331 6.8409 133.116 7.0652C134.014 7.28949 134.686 7.62592 135.247 7.96236C135.471 8.18665 135.584 8.2988 135.584 8.52309C135.584 8.63524 135.584 8.74739 135.471 8.85953L134.462 10.5417C134.35 10.766 134.238 10.766 134.126 10.766C134.014 10.766 133.901 10.766 133.789 10.6539C133.004 10.0931 131.995 9.86884 130.761 9.86884C130.088 9.86884 129.64 9.98099 129.303 10.2053C128.967 10.4296 128.855 10.766 128.855 11.2146C128.855 11.551 128.967 11.7753 129.079 11.9996C129.303 12.2239 129.528 12.3361 129.752 12.5603C130.088 12.6725 130.537 12.8968 131.098 13.1211L131.546 13.2332C132.556 13.6818 133.453 14.0182 134.014 14.4668C134.686 14.8033 135.135 15.364 135.471 15.9247C135.808 16.4855 135.92 17.1583 135.92 17.9434C135.92 19.177 135.471 20.2984 134.462 20.9713C133.789 21.4199 132.331 21.8685 130.537 21.8685Z\" fill=\"white\"/>\\n<path d=\"M140.744 21.532C140.519 21.532 140.407 21.5321 140.295 21.4199C140.183 21.3078 140.071 21.1956 140.071 20.9713L137.267 11.6632C137.267 11.5511 137.267 11.5511 137.267 11.4389C137.267 11.2146 137.379 11.1025 137.716 11.1025H140.519C140.744 11.1025 140.856 11.1025 140.968 11.2146C141.08 11.3268 141.08 11.3268 141.192 11.5511L142.314 16.4855L143.772 12.5604C143.884 12.3361 143.884 12.2239 143.996 12.2239C144.108 12.1118 144.22 12.1118 144.444 12.1118H145.79C146.014 12.1118 146.127 12.1118 146.239 12.2239C146.351 12.3361 146.351 12.4482 146.463 12.5604L147.921 16.4855L149.155 11.5511C149.155 11.4389 149.267 11.3268 149.379 11.2146C149.491 11.1025 149.603 11.1025 149.715 11.1025H152.631C152.968 11.1025 153.08 11.2146 153.08 11.4389C153.08 11.4389 153.08 11.5511 153.08 11.6632L150.276 20.9713C150.164 21.1956 150.164 21.3078 150.052 21.4199C149.94 21.5321 149.827 21.532 149.603 21.532H147.472C147.248 21.532 147.136 21.5321 147.024 21.4199C146.912 21.3078 146.8 21.1956 146.8 20.9713L145.342 17.0462L143.884 20.9713C143.772 21.1956 143.772 21.3078 143.659 21.4199C143.547 21.5321 143.435 21.532 143.211 21.532H140.744Z\" fill=\"white\"/>\\n<path d=\"M158.238 21.8684C156.892 21.8684 155.77 21.4199 154.985 20.5227C154.2 19.6255 153.752 18.3919 153.752 16.8219C153.752 15.5883 153.976 14.579 154.537 13.6818C155.097 12.7846 155.882 12.1117 156.892 11.551C157.901 11.1024 159.135 10.766 160.368 10.766C161.49 10.766 162.387 10.8781 163.284 11.1024C164.181 11.3267 164.854 11.6632 165.639 12.1117V20.747C165.639 20.9713 165.639 21.1956 165.527 21.3077C165.415 21.4199 165.191 21.4199 164.966 21.4199H162.723C162.611 21.4199 162.499 21.4199 162.387 21.3077C162.275 21.1956 162.275 21.1956 162.163 21.0834L161.826 20.4105C161.378 20.8591 160.929 21.1956 160.368 21.4199C159.808 21.7563 159.135 21.8684 158.238 21.8684ZM159.92 18.9526C160.48 18.9526 160.929 18.8405 161.265 18.5041C161.602 18.2798 161.714 17.8312 161.714 17.3826V14.0182C161.49 13.9061 161.041 13.7939 160.705 13.7939C159.92 13.7939 159.359 14.0182 158.91 14.579C158.462 15.1397 158.238 15.8126 158.238 16.8219C158.125 18.1676 158.686 18.9526 159.92 18.9526Z\" fill=\"white\"/>\\n<path d=\"M168.668 25.9058C168.219 25.9058 167.995 25.7936 167.771 25.6815C167.659 25.4572 167.547 25.2329 167.547 24.8965V12.5604C168.219 12.1118 169.004 11.6632 170.014 11.4389C171.023 11.1025 172.032 10.9904 173.042 10.9904C177.415 10.9904 179.546 12.7847 179.546 16.4855C179.546 18.1677 179.098 19.5135 178.2 20.5228C177.303 21.5321 175.957 21.9807 174.275 21.9807C173.827 21.9807 173.378 21.8685 172.93 21.7564C172.481 21.6442 172.145 21.5321 171.808 21.3078V24.8965C171.808 25.2329 171.696 25.5693 171.584 25.6815C171.359 25.9058 171.135 25.9058 170.687 25.9058H168.668ZM173.378 18.9527C174.051 18.9527 174.5 18.7284 174.724 18.2798C175.06 17.8313 175.172 17.1584 175.172 16.3734C175.172 15.4762 174.948 14.8033 174.612 14.3547C174.275 14.0183 173.715 13.794 172.93 13.794C172.481 13.794 172.032 13.9062 171.808 14.0183V17.3827C171.808 17.8313 171.92 18.2798 172.257 18.5041C172.481 18.8406 172.93 18.9527 173.378 18.9527Z\" fill=\"white\"/>\\n<path d=\"M10.4305 16.4855C10.4305 17.607 9.75801 18.6163 9.08339 18.6163C8.41095 18.6163 7.73851 17.7191 7.73851 16.4855C7.73851 15.3641 8.41095 14.3547 9.08339 14.3547C9.75801 14.3547 10.4305 15.252 10.4305 16.4855Z\" fill=\"white\"/>\\n<path d=\"M18.7275 18.6163C19.4021 18.6163 20.0746 17.607 20.0746 16.4855C20.0746 15.252 19.4021 14.3547 18.7275 14.3547C18.0551 14.3547 17.3826 15.3641 17.3826 16.4855C17.3826 17.7191 17.9434 18.6163 18.7275 18.6163Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.63436 0C6.39144 0 4.59755 2.1308 5.04657 4.37372L5.94461 9.64453C2.58023 11.1025 0 13.6818 0 16.934V18.8406C0 21.532 1.7939 23.7749 4.26242 25.2328C6.72876 26.8029 10.0931 27.7 13.7948 27.7C17.4943 27.7 20.8587 26.8029 23.3272 25.2328C25.7936 23.7749 27.5875 21.532 27.5875 18.8406V16.934C27.5875 13.6818 25.0094 11.1025 21.645 9.64453L22.6526 4.37372C23.1016 2.1308 21.3077 0 19.0648 0C17.0453 0 15.3631 1.68219 15.3631 3.70087V8.18671H12.3361V3.70087C12.3361 1.68219 10.6539 0 8.63436 0ZM21.5312 4.2616L20.4097 10.4296C23.9997 11.7753 26.466 14.2425 26.3543 17.2705V17.3826C26.2273 21.5774 20.8938 25.0086 14.0182 25.0086C7.1274 25.0086 1.33392 21.5929 1.23755 17.3826L1.23317 17.2705C1.23317 14.4669 3.70169 11.9996 7.28949 10.6539L6.16803 4.37372C5.83071 2.80365 7.06607 1.3457 8.63436 1.3457C10.0931 1.3457 11.2146 2.46716 11.2146 3.92511V9.64453C11.3833 9.64453 11.5782 9.61646 11.7753 9.58854C11.9725 9.56047 12.1674 9.53241 12.3361 9.53241C12.8968 9.42029 13.3458 9.42029 13.9065 9.42029H15.3631C15.7004 9.42029 16.1495 9.53241 16.4846 9.53241V3.81299C16.4846 2.35504 17.606 1.23358 19.0648 1.23358C20.6353 1.23358 21.8685 2.69153 21.5312 4.2616Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://xexchange.com/swap?firstToken=WEGLD-bd4d79&secondToken=TADA-5c032c\",motionChild:true,nodeId:\"M4usniRkI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z20uil framer-lux5qc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-erwu04\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:163,svg:'<svg width=\"163\" height=\"23\" viewBox=\"0 0 163 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.9561 2.36718H35.2591V4.98575H23.8938V9.40116H30.6937V12.0514H23.8938V17.4455H36.2818V20.0958H20.9561V2.36718Z\" fill=\"white\"/>\\n<path d=\"M46.5934 14.2581L41.2624 20.093H37.7503L44.8373 12.3343L37.7179 4.51211H41.4856L46.6576 10.2835L51.9247 4.51211H55.469L48.4141 12.2408L55.469 20.0947H51.8924L46.5934 14.2598V14.2581Z\" fill=\"white\"/>\\n<path d=\"M63.8178 6.78215C60.9122 6.78215 58.8359 9.24199 58.8359 12.3014C58.8359 15.3608 60.9122 17.8206 63.8481 17.8206C67.0406 17.8206 68.222 15.7699 68.4774 15.2338H71.351C71.1921 16.3377 69.4982 20.4692 63.8481 20.4692C59.3468 20.4692 55.8343 16.9054 55.8343 12.2996C55.8343 7.69378 59.3143 4.13011 63.8156 4.13011C69.5302 4.13011 71.0939 8.19988 71.3494 9.36542H68.4113C68.1558 8.8611 66.9745 6.7786 63.814 6.7786L63.8178 6.78215Z\" fill=\"white\"/>\\n<path d=\"M97.9587 10.3163H103.354C103.354 7.91993 101.502 6.62563 98.9171 6.62563C96.3331 6.62563 95.2456 8.07688 94.9907 8.5812H92.0531C92.4686 6.72087 94.5747 4.10232 98.9171 4.10232C103.515 4.10232 106.133 6.65738 106.133 10.2846V16.0577C106.133 17.1616 106.517 17.5724 107.537 17.6659V20.2527C105.271 20.1892 103.898 19.3693 103.482 17.8246C102.717 18.9919 101.057 20.4431 98.2461 20.4431C94.5101 20.4431 91.6051 18.3924 91.6051 15.1761C91.6051 11.9597 94.0003 10.3181 97.9587 10.3181V10.3163ZM103.354 12.5875H98.0872C95.9171 12.5875 94.5101 13.4392 94.5101 15.1743C94.5101 16.9094 96.2344 18.045 98.5011 18.045C101.055 18.045 103.354 16.8142 103.354 14.1974V12.5875Z\" fill=\"white\"/>\\n<path d=\"M112.98 20.0931H110.074V4.5122H112.98V7.38295C113.587 6.12212 115.406 4.16482 118.344 4.16482C122.334 4.16482 125.079 7.09901 125.079 11.1353V20.0931H122.141V11.6714C122.141 8.73718 120.353 6.81336 117.64 6.81336C114.927 6.81336 112.978 8.83236 112.978 11.6714V20.0931H112.98Z\" fill=\"white\"/>\\n<path d=\"M162.66 12.6503H149.539C149.697 15.5528 151.805 17.8239 154.901 17.8239C157.998 17.8239 159.338 16.1523 159.596 15.648H162.469C162.214 17.004 160.202 20.4742 154.903 20.4742C150.018 20.4742 146.603 16.8788 146.603 12.3047C146.603 7.73059 150.018 4.13515 154.616 4.13515C159.214 4.13515 162.661 7.54195 162.661 12.652L162.66 12.6503ZM149.729 10.2539H159.435C158.701 7.88749 157.009 6.59502 154.614 6.59502C152.06 6.59502 150.336 7.98273 149.729 10.2539Z\" fill=\"white\"/>\\n<path d=\"M141.168 17.4453C140.752 18.2653 139.028 20.5047 135.421 20.5047C131.207 20.5047 127.631 17.4771 127.631 12.3352C127.631 7.19328 131.206 4.13389 135.421 4.13389C138.996 4.13389 140.752 6.27809 141.168 7.12978V4.51126H144.074V19.3885C144.074 23.7722 141.2 26.8333 135.805 26.8333C129.676 26.8333 128.014 22.8905 127.759 21.9118H130.952C131.175 22.291 132.292 24.183 135.805 24.183C139.317 24.183 141.168 22.4161 141.168 19.3885V17.4436V17.4453ZM135.964 6.78419C132.739 6.78419 130.633 9.18054 130.633 12.3352C130.633 15.4898 132.74 17.8544 135.964 17.8544C139.187 17.8544 141.23 15.3946 141.23 12.3352C141.23 9.27578 139.123 6.78419 135.964 6.78419Z\" fill=\"white\"/>\\n<path d=\"M76.9777 20.0932H74.0721V0H76.9777V7.38136C77.5847 6.11881 79.4033 4.16324 82.3409 4.16324C86.3313 4.16324 89.0769 7.09571 89.0769 11.1337V20.0915H86.1387V11.6698C86.1387 8.73732 84.351 6.81177 81.638 6.81177C78.9249 6.81177 76.9761 8.83078 76.9761 11.6698V20.0915L76.9777 20.0932Z\" fill=\"white\"/>\\n<path d=\"M8.64351 6.73864L15.6076 3.08853L14.4368 0.880833L8.05995 3.41122C7.89571 3.47647 7.71368 3.47647 7.5495 3.41122L1.1708 0.880833L0 3.08853L6.9641 6.73864L0 10.387L1.1708 12.5947L7.54771 10.0643C7.71189 9.99908 7.89392 9.99908 8.0581 10.0643L14.4351 12.5947L15.6058 10.387L8.64172 6.73686L8.64351 6.73864Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.meria.com/en/products?search=TADA\",motionChild:true,nodeId:\"DxBmYgvrJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1aw1b4e framer-lux5qc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1iy8rd5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:125,svg:'<svg width=\"125\" height=\"26\" viewBox=\"0 0 125 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M49.1471 22.7194V13.853C49.1471 11.8371 50.295 10.5054 52.0946 10.5054C53.7697 10.5054 54.8242 11.839 54.8242 13.853V22.7194H59.1685V13.853C59.1685 11.8371 60.3164 10.5054 62.116 10.5054C63.791 10.5054 64.8766 11.839 64.8766 13.853V22.7194H69.1897V12.4883C69.1897 9.35653 66.9873 6.84687 63.5751 6.84687C61.0615 6.84687 59.1082 8.18043 58.363 9.69867C57.6179 7.83829 56.0362 6.84687 53.5849 6.84687C51.4759 6.84687 49.9857 7.86944 49.1491 9.29626V7.09569H44.8048V22.7194H49.1491H49.1471Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M79.3516 6.71838C83.8246 6.63288 87.4722 10.2486 87.4157 14.6051C87.4157 15.0891 87.3867 15.4585 87.3591 15.6587H75.4214C75.564 18.0498 77.2176 19.6166 79.4955 19.6166C81.3186 19.6166 82.7718 18.6194 83.1437 16.9398H87.3322C86.7059 20.7539 83.3711 23.0614 79.4686 23.0614C74.7681 23.0614 71.2915 19.5311 71.2915 14.8908C71.206 10.3633 74.8805 6.63479 79.3555 6.72036L79.3516 6.71838ZM79.437 10.0484C77.6146 10.0484 76.1884 11.1876 75.704 12.9236H83.0833C82.7409 11.102 81.1747 10.0484 79.4351 10.0484H79.437Z\" fill=\"white\"/>\\n<path d=\"M99.2712 7.0606H89.7264V22.7193H93.8005V10.933H99.2712V7.0606Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M103.466 0C104.948 0 106.059 0.997255 106.059 2.39108C106.059 3.78491 104.948 4.81133 103.466 4.81133C101.984 4.81133 100.872 3.84323 100.872 2.39108C100.872 0.93894 101.984 0 103.466 0ZM101.443 7.06053H105.516V22.7192H101.443V7.06053Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M115.095 6.71819C117.261 6.71819 118.942 7.68627 120.052 9.30954V7.06034H124.127V22.719H120.052V20.5554C118.998 22.1203 117.288 23.0612 115.123 23.0612C111.049 23.0612 107.914 19.6456 107.914 14.8906C107.914 10.1357 111.078 6.72016 115.095 6.72016V6.71819ZM113.158 11.7861C112.387 12.5831 112.017 13.6076 112.017 14.8887C112.017 16.1698 112.387 17.1943 113.158 17.9913C113.926 18.7883 114.895 19.1868 116.035 19.1868C118.342 19.1868 120.052 17.4781 120.052 14.8887C120.052 12.2994 118.342 10.5906 116.035 10.5906C114.895 10.5906 113.926 10.9891 113.158 11.7861Z\" fill=\"white\"/>\\n<path d=\"M25.285 0.945394H18.0393L14.4165 7.27492L17.9891 13.55L21.5366 7.24981H28.8326L25.285 0.945394Z\" fill=\"white\"/>\\n<path d=\"M10.8685 0.945394H3.62285L0 7.27492L3.57265 13.55L7.12022 7.24981H14.4161L10.8685 0.945394Z\" fill=\"white\"/>\\n<path d=\"M32.4926 26H25.2469L21.6241 19.6747L25.1967 13.3953L28.7442 19.6998H36.0401L32.4926 26Z\" fill=\"white\"/>\\n<path d=\"M18.0761 26H10.8304L7.20757 19.6747L10.7802 13.3953L14.3278 19.6998H21.6237L18.0761 26Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.mexc.com/tokens/TADA\",motionChild:true,nodeId:\"VrN1zYYVD\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17eb3hd framer-lux5qc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-51dji6\",\"data-framer-name\":\"Frame 1171276844\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:150,svg:'<svg width=\"150\" height=\"23\" viewBox=\"0 0 150 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_1849_40921)\">\\n<path d=\"M35.539 15.6571L27.7381 2.11316C26.0356 -0.707429 21.8427 -0.73284 20.191 2.24023L12.0087 16.3178C10.4841 18.9097 12.3645 22.1369 15.4392 22.1369H31.8799C34.9547 22.1623 37.2671 18.8081 35.539 15.6571Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter1_d_1849_40921)\">\\n<path d=\"M24.2822 16.7243L23.7994 15.8857C23.342 15.098 22.351 13.4209 22.351 13.4209L15.7442 1.93525C14.0417 -0.60583 9.97594 -0.834531 8.27342 2.39265L0.573954 15.7079C-1.02693 18.5031 0.878887 22.1368 4.33476 22.1622H20.6739H27.6364H31.7784C27.5601 22.1876 26.2135 19.9769 24.2822 16.7243Z\" fill=\"white\"/>\\n</g>\\n<path d=\"M28.8642 16.825L28.3814 15.9864C27.924 15.1987 26.933 13.5216 26.933 13.5216L22.664 6L16.54 16.4692C15.0154 19.0611 16.8957 22.2883 19.9705 22.2883H25.2305H32.1931H36.3605C32.1168 22.2629 30.7955 20.103 28.8642 16.825Z\" fill=\"url(#paint0_linear_1849_40921)\"/>\\n<g filter=\"url(#filter2_d_1849_40921)\">\\n<path d=\"M137.099 5.80902C138.242 4.74177 140.25 4.23355 143.172 4.23355H150.008V0.345703H141.927C139.996 0.345703 138.369 0.548997 137.099 0.955568C135.854 1.36214 134.761 1.9974 133.821 2.88678C132.83 3.85239 132.042 5.04669 131.483 6.46969C130.924 7.9181 130.645 9.49357 130.645 11.1453C130.645 12.7208 130.924 14.2454 131.483 15.643C132.042 17.0406 132.83 18.2603 133.821 19.2259C134.736 20.1153 135.828 20.7505 137.048 21.1571C138.293 21.5637 139.945 21.767 141.927 21.767H150.008V17.93H143.172C141.622 17.93 140.555 17.8791 139.945 17.7521C139.31 17.625 138.725 17.4217 138.242 17.1168C137.277 16.5069 136.54 15.7192 136.057 14.7282C135.6 13.7626 135.371 12.5429 135.371 11.1199C135.371 8.68043 135.955 6.87627 137.099 5.80902Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter3_d_1849_40921)\">\\n<path d=\"M77.6094 21.8178H96.6676V18.057H82.2595V12.6953H94.8379V9.1378H82.2595V4.15729H96.6676V0.371094H77.6094V21.8178Z\" fill=\"white\"/>\\n</g>\\n<path d=\"M101.422 0.371094L110.341 11.0944L101.422 21.8178H107.19L114.229 13.3306V8.88369L107.19 0.371094H101.422Z\" fill=\"white\"/>\\n<g filter=\"url(#filter4_d_1849_40921)\">\\n<path d=\"M122.07 0.371094L115.031 8.88369V13.3306L122.07 21.8178H127.838L118.894 11.0944L127.838 0.371094H122.07Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter5_d_1849_40921)\">\\n<path d=\"M58.9341 10.942L50.3706 0.371094H45.9492V21.8178H50.5994V7.51152L58.0193 16.4053H59.8234L67.2433 7.43531V21.8178H71.8935V0.371094H67.523L58.9341 10.942Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_1849_40921\" x=\"-14.5312\" y=\"-25.9961\" width=\"76.6602\" height=\"74.1328\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"13\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1849_40921\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1849_40921\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_d_1849_40921\" x=\"-26\" y=\"-26\" width=\"83.7773\" height=\"74.1621\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"13\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1849_40921\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1849_40921\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_d_1849_40921\" x=\"104.645\" y=\"-25.6543\" width=\"71.3633\" height=\"73.4219\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"13\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1849_40921\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1849_40921\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter3_d_1849_40921\" x=\"51.6094\" y=\"-25.6289\" width=\"71.0586\" height=\"73.4473\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"13\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1849_40921\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1849_40921\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter4_d_1849_40921\" x=\"89.0312\" y=\"-25.6289\" width=\"64.8086\" height=\"73.4473\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"13\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1849_40921\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1849_40921\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter5_d_1849_40921\" x=\"19.9492\" y=\"-25.6289\" width=\"77.9453\" height=\"73.4473\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"13\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1849_40921\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1849_40921\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_1849_40921\" x1=\"14.3543\" y1=\"11.7244\" x2=\"33.3379\" y2=\"18.7395\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-12fcl1p\",\"data-framer-name\":\"CTA Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gyd052\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{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-y1p50o\",\"data-framer-name\":\"Section/Call To Action\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jit5gi\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Stake your $TADA from 1 to 12 months\"})}),fonts:[\"GF;Kode Mono-700\"]},Wh21U2UXq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Stake your $TADA from 1 to 12 months\"})}),fonts:[\"GF;Kode Mono-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ry08kv\",\"data-styles-preset\":\"DfEME7AA2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Stake your $TADA from 1 to 12 months\"})}),className:\"framer-nj7kw6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7sqrg\",children:[/*#__PURE__*/_jsx(Link,{href:\"staking.ta-da.io\",motionChild:true,nodeId:\"Ziesxd3wI\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1iher3m framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"On-chain Staking\"})}),className:\"framer-cb1gz8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.meria.com/en/products?search=TADA\",motionChild:true,nodeId:\"ONwWErObX\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8jfj7r framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Meria Staking\"})}),className:\"framer-1p0g6c3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1a1n8bh\",\"data-framer-name\":\"Team Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cl1wt6\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{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-1dlk0iw\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ja7a9\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f927ee\",\"data-framer-name\":\"Sub-Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, rgb(83, 240, 184))\"},children:\"Ta-da's story\"})}),className:\"framer-iuk9p3\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Built by AI and Web3 Experts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c88f7ff0-dacc-404c-90bf-2002f23e1861, rgb(255, 255, 255))\"},children:\"Built by AI and Web3 Experts\"})}),className:\"framer-jd6ho8\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vnxp9x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Ta-da emerged from Vivoka, a leading voice recognition company led by CEO William, after recognizing a critical issue: the current model for AI data acquisition is plagued by high costs and inconsistent quality. These challenges hinder the ability of AI companies to access reliable, affordable data, impacting their potential to innovate effectively. Ta-da was born to address this problem by rethinking how data is collected, shared, and valued.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Combining Web3 and AI, Ta-da leverages blockchain technology to introduce a new era of transparency, privacy, and scalability in data collection. By partnering with notable experts, including Luc Julia, creator of Apple\u2019s Siri, and Hasheur, France\u2019s top crypto influencer, Ta-da ensures its foundation is built on deep industry knowledge and vision. This blockchain-based approach enables fair compensation for data contributors, creating a balanced ecosystem where data producers are rewarded justly, and AI companies gain access to high-quality, affordably-priced data. Through Ta-da, both creators and users of data can thrive in a transparent, fair, and innovative digital marketplace.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Ta-da emerged from Vivoka, a leading voice recognition company led by CEO William, after recognizing a critical issue: the current model for AI data acquisition is plagued by high costs and inconsistent quality. These challenges hinder the ability of AI companies to access reliable, affordable data, impacting their potential to innovate effectively. Ta-da was born to address this problem by rethinking how data is collected, shared, and valued.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Combining Web3 and AI, Ta-da leverages blockchain technology to introduce a new era of transparency, privacy, and scalability in data collection. By partnering with notable experts, including Luc Julia, creator of Apple\u2019s Siri, and Hasheur, France\u2019s top crypto influencer, Ta-da ensures its foundation is built on deep industry knowledge and vision. This blockchain-based approach enables fair compensation for data contributors, creating a balanced ecosystem where data producers are rewarded justly, and AI companies gain access to high-quality, affordably-priced data. Through Ta-da, both creators and users of data can thrive in a transparent, fair, and innovative digital marketplace.\"})]}),className:\"framer-zj2635\",fonts:[\"FS;Plus Jakarta Sans-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4etbo3\",children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.ta-da.io/\",motionChild:true,nodeId:\"rTZTMYDQH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qzb0nb framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rp20g\",\"data-styles-preset\":\"oYZz5MurU\",children:\"Our vision\"})}),className:\"framer-1l3q0h0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{background:{alt:\"\",fit:\"fill\",pixelHeight:2336,pixelWidth:4096,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png\",srcSet:\"https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png 4096w\"}},Wh21U2UXq:{background:{alt:\"\",fit:\"fill\",pixelHeight:2336,pixelWidth:4096,sizes:\"717px\",src:\"https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png\",srcSet:\"https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2336,pixelWidth:4096,sizes:\"1003px\",src:\"https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png\",srcSet:\"https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iS72mIb3HygFQKrfSbhSoIxsZA.png 4096w\"},className:\"framer-1ke0fb8\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s7xqwb-container\",nodeId:\"A1VDaibrr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{variant:\"ACpdjKBf7\"},Wh21U2UXq:{variant:\"ziG3OQ_LB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"A1VDaibrr\",layoutId:\"A1VDaibrr\",style:{width:\"100%\"},variant:\"nrjpfRC1b\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://loralab.xyz/\",motionChild:true,nodeId:\"LA6Lx3Wix\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-is37r9 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Scrolltotop\",whileHover:animation2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoEOTLT0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"right\"},children:\"Discover Loralab\"})})},Wh21U2UXq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"right\"},children:\"Discover Loralab\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S29kZSBNb25vLTcwMA==\",\"--framer-font-family\":'\"Kode Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Discover Loralab\"})}),className:\"framer-5gpr55\",fonts:[\"GF;Kode Mono-700\"],verticalAlignment:\"center\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m5ZFc.framer-lux5qc, .framer-m5ZFc .framer-lux5qc { display: block; }\",\".framer-m5ZFc.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-fd45d32f-1bf3-48a5-881a-3639bf9706fc, #070915); 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-m5ZFc .framer-1qwdf7d { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-m5ZFc .framer-69d8dx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-m5ZFc .framer-2hozpv-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-m5ZFc .framer-2wmkfy { 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: visible; padding: 250px 30px 250px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1bcpwxs { align-content: center; align-items: center; background-color: #bf00ff; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-m5ZFc .framer-eme4uh-container { flex: 1 0 0px; height: 62px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-fvaq28 { height: 90px; overflow: hidden; position: relative; width: 1976px; }\",\".framer-m5ZFc .framer-czakr7 { flex: none; height: 30px; left: 0px; position: absolute; top: calc(48.888888888888886% - 30px / 2); width: 2417px; }\",\".framer-m5ZFc .framer-17e3210 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.89316239316241% - 100.21367521367522% / 2); width: 100%; z-index: 0; }\",\".framer-m5ZFc .framer-1lwb0vu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-m5ZFc .framer-ciu7gy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-m5ZFc .framer-1lrl6bp, .framer-m5ZFc .framer-14q0i9r { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-gsnkfa, .framer-m5ZFc .framer-p52t77, .framer-m5ZFc .framer-13kltpo, .framer-m5ZFc .framer-204bf2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-qg0qom, .framer-m5ZFc .framer-j1ocbx, .framer-m5ZFc .framer-oltzyi, .framer-m5ZFc .framer-kfirmw, .framer-m5ZFc .framer-1rvunzb, .framer-m5ZFc .framer-5avyil, .framer-m5ZFc .framer-k4k2ma, .framer-m5ZFc .framer-1g3wa22, .framer-m5ZFc .framer-pkt9wf, .framer-m5ZFc .framer-1dhibay, .framer-m5ZFc .framer-1f927ee { 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-m5ZFc .framer-typxj4, .framer-m5ZFc .framer-1ae7b1b, .framer-m5ZFc .framer-e8fwgr, .framer-m5ZFc .framer-19v1e8r, .framer-m5ZFc .framer-1q4regy, .framer-m5ZFc .framer-to9q28, .framer-m5ZFc .framer-belvqg, .framer-m5ZFc .framer-aqs72t, .framer-m5ZFc .framer-pe6xud, .framer-m5ZFc .framer-1qa921 { --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-m5ZFc .framer-1mxjouf, .framer-m5ZFc .framer-gbdcup, .framer-m5ZFc .framer-1asegcu, .framer-m5ZFc .framer-txkkmt, .framer-m5ZFc .framer-1mzgpjc, .framer-m5ZFc .framer-6o02q4, .framer-m5ZFc .framer-1bfet5e, .framer-m5ZFc .framer-1t7t7jo, .framer-m5ZFc .framer-i5749a, .framer-m5ZFc .framer-bunbio, .framer-m5ZFc .framer-wb5dnw, .framer-m5ZFc .framer-hzypup, .framer-m5ZFc .framer-1yk0x3r, .framer-m5ZFc .framer-3fj2nq, .framer-m5ZFc .framer-13xbc0g, .framer-m5ZFc .framer-l0q8l3, .framer-m5ZFc .framer-1ykvx8r, .framer-m5ZFc .framer-1up3ed0, .framer-m5ZFc .framer-gssqc6, .framer-m5ZFc .framer-nj7kw6, .framer-m5ZFc .framer-jd6ho8 { --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-m5ZFc .framer-1qmcy4h, .framer-m5ZFc .framer-1wu9gsg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-hsa2qx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-wc05ha { flex: none; height: 50px; position: relative; text-decoration: none; width: 161px; }\",\".framer-m5ZFc .framer-x5d1et, .framer-m5ZFc .framer-7otwz3 { flex: none; height: 50px; overflow: hidden; position: relative; width: 160px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-18w6s6l, .framer-m5ZFc .framer-69vjy4, .framer-m5ZFc .framer-1mui9hb { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-m5ZFc .framer-1dpe4sa { 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: 50px 30px 50px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1xepim6, .framer-m5ZFc .framer-76dsxu, .framer-m5ZFc .framer-exhjb, .framer-m5ZFc .framer-1ypxif2, .framer-m5ZFc .framer-151pf5e, .framer-m5ZFc .framer-13y93g7, .framer-m5ZFc .framer-1gyd052, .framer-m5ZFc .framer-cl1wt6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-iiie1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-q06z5o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 150px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-1w6kbj1-container, .framer-m5ZFc .framer-uets4q-container, .framer-m5ZFc .framer-zq2i35-container, .framer-m5ZFc .framer-m2oqol-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-m5ZFc .framer-2mzc0q { 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: 50px 30px 65px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1u7hdg0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1yfe8xo-container { flex: none; height: auto; position: relative; width: 45%; }\",\".framer-m5ZFc .framer-1sd5b3u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-1c2wzcz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-171pvn5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1cayuvs, .framer-m5ZFc .framer-7ja7a9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1ag0rt3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-1x2r5j9, .framer-m5ZFc .framer-11b1k7c, .framer-m5ZFc .framer-wvoukk, .framer-m5ZFc .framer-58oj7t, .framer-m5ZFc .framer-1qzb0nb { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 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: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 195px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-16shisn, .framer-m5ZFc .framer-k8x601, .framer-m5ZFc .framer-q54m2x, .framer-m5ZFc .framer-170b67y, .framer-m5ZFc .framer-1sekemi, .framer-m5ZFc .framer-w453yr, .framer-m5ZFc .framer-cb1gz8, .framer-m5ZFc .framer-1p0g6c3, .framer-m5ZFc .framer-1l3q0h0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-m5ZFc .framer-1zway2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-ujs073, .framer-m5ZFc .framer-1r6r0r6, .framer-m5ZFc .framer-16h23lg, .framer-m5ZFc .framer-wwmx9b, .framer-m5ZFc .framer-1pvwatq, .framer-m5ZFc .framer-3wd6nw, .framer-m5ZFc .framer-1rjd9gf, .framer-m5ZFc .framer-1ynetai, .framer-m5ZFc .framer-vdgmbg, .framer-m5ZFc .framer-6dvnjc, .framer-m5ZFc .framer-ara2yy, .framer-m5ZFc .framer-1ixtu8g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-hp7k32, .framer-m5ZFc .framer-12gttpp, .framer-m5ZFc .framer-2jsh50, .framer-m5ZFc .framer-13xj6mc, .framer-m5ZFc .framer-16l3gtv, .framer-m5ZFc .framer-dy4y2u, .framer-m5ZFc .framer-13u0j7b, .framer-m5ZFc .framer-1ncnsf2, .framer-m5ZFc .framer-124o2lk, .framer-m5ZFc .framer-1uht0zv, .framer-m5ZFc .framer-16s0p0j, .framer-m5ZFc .framer-u98crm { flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; }\",\".framer-m5ZFc .framer-1ufqhdx, .framer-m5ZFc .framer-1ru5smw, .framer-m5ZFc .framer-12fmc18, .framer-m5ZFc .framer-1crfbaj, .framer-m5ZFc .framer-1y9t0ks, .framer-m5ZFc .framer-he1lk, .framer-m5ZFc .framer-pj6obh, .framer-m5ZFc .framer-6liar7, .framer-m5ZFc .framer-sryzh0, .framer-m5ZFc .framer-10gcrwt, .framer-m5ZFc .framer-1syz41x, .framer-m5ZFc .framer-uz1kxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1frmctu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 708px; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-4wmgos { 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: 65px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-15sf5lh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-12qk2eu { align-content: flex-end; align-items: flex-end; 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-m5ZFc .framer-l0nts8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-1c0nkwy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 52%; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-je87us { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 320px; }\",\".framer-m5ZFc .framer-6rg5m0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-1rhk30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 586px; }\",\".framer-m5ZFc .framer-1r01ugo { flex: none; height: 945px; max-width: 1200px; overflow: visible; position: relative; width: 350px; }\",\".framer-m5ZFc .framer-1ylgbsy { flex: none; height: 186px; left: calc(50.00000000000002% - 140px / 2); overflow: visible; position: absolute; top: 250px; width: 140px; }\",\".framer-m5ZFc .framer-1su3b2v, .framer-m5ZFc .framer-18va4vs, .framer-m5ZFc .framer-sdl0fe { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: -1px; top: 0px; }\",\".framer-m5ZFc .framer-4shf4n { flex: none; height: 186px; left: 0px; position: absolute; top: calc(50.00000000000002% - 186px / 2); width: 140px; }\",\".framer-m5ZFc .framer-15lb4dz { flex: none; height: 190px; left: calc(50.00000000000002% - 190px / 2); overflow: visible; position: absolute; top: calc(51.85185185185187% - 190px / 2); width: 190px; }\",\".framer-m5ZFc .framer-13o4g6e-container, .framer-m5ZFc .framer-pfndmg-container, .framer-m5ZFc .framer-1a8wix0-container { bottom: -10px; flex: none; left: -10px; opacity: 0.4; position: absolute; right: -10px; top: -10px; }\",\".framer-m5ZFc .framer-kilirm, .framer-m5ZFc .framer-10cq2pu, .framer-m5ZFc .framer-1bwvd4g { aspect-ratio: 1 / 1; background-color: #570573; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 190px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 190px; }\",\".framer-m5ZFc .framer-l3nk0y, .framer-m5ZFc .framer-168ehsl, .framer-m5ZFc .framer-prllf5 { aspect-ratio: 1 / 1; background-color: #840eab; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 180px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 180px; }\",\".framer-m5ZFc .framer-15udoig, .framer-m5ZFc .framer-6s00wx, .framer-m5ZFc .framer-10zt0bd { aspect-ratio: 1 / 1; background-color: var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, #bf00ff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 170px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 170px; }\",\".framer-m5ZFc .framer-yml3wz, .framer-m5ZFc .framer-w0jmhd, .framer-m5ZFc .framer-zjcf61 { aspect-ratio: 1 / 1; background: linear-gradient(339deg, #070915 0%, rgb(20, 22, 33) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 1px 0px rgb(255, 255, 255); flex: none; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 160px; }\",\".framer-m5ZFc .framer-131hsm5-container, .framer-m5ZFc .framer-fli72o-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 70px; }\",\".framer-m5ZFc .framer-mstnd7 { flex: none; height: 313px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 1px; }\",\".framer-m5ZFc .framer-11xk9cv { aspect-ratio: 1.4086021505376345 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.15), 0px 1px 1px 0px rgba(0, 0, 0, 0.12); flex: none; height: var(--framer-aspect-ratio-supported, 248px); left: 0px; overflow: hidden; position: absolute; right: 0px; top: -3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5ZFc .framer-1ry02as { flex: none; height: 230px; left: 0px; position: absolute; right: 0px; top: calc(52.82258064516131% - 230px / 2); }\",\".framer-m5ZFc .framer-o6jzuy { 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; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 257px; }\",\".framer-m5ZFc .framer-1vge7hu, .framer-m5ZFc .framer-vkv6b7, .framer-m5ZFc .framer-1mtiepd { align-content: center; align-items: center; 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-m5ZFc .framer-1t48kxc, .framer-m5ZFc .framer-1p0uyjq, .framer-m5ZFc .framer-ncega8, .framer-m5ZFc .framer-lgl58f, .framer-m5ZFc .framer-qcdlyy, .framer-m5ZFc .framer-z8fm12, .framer-m5ZFc .framer-2p804s, .framer-m5ZFc .framer-dtur1e, .framer-m5ZFc .framer-m71km5, .framer-m5ZFc .framer-5ck89m, .framer-m5ZFc .framer-2eyisf, .framer-m5ZFc .framer-2ehg4n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-m5ZFc .framer-1s159yt, .framer-m5ZFc .framer-h9ecsn, .framer-m5ZFc .framer-3p7sya, .framer-m5ZFc .framer-1t49wa1, .framer-m5ZFc .framer-ec3vwp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-w1742t { flex: none; height: 800px; max-width: 1200px; overflow: visible; position: relative; width: 568px; }\",\".framer-m5ZFc .framer-1gg1zok { flex: none; height: 186px; left: calc(50.00000000000002% - 140px / 2); overflow: visible; position: absolute; top: calc(47.50000000000002% - 186px / 2); width: 140px; }\",\".framer-m5ZFc .framer-1taw7hc, .framer-m5ZFc .framer-lbflwy { flex: none; height: 186px; left: 0px; position: absolute; top: 0px; width: 140px; }\",\".framer-m5ZFc .framer-1ouscy6 { bottom: 185px; flex: none; height: 190px; left: calc(50.00000000000002% - 190px / 2); overflow: visible; position: absolute; width: 190px; }\",\".framer-m5ZFc .framer-1bcbg18 { flex: none; height: 313px; left: calc(50.00000000000002% - 403px / 2); overflow: visible; position: absolute; top: 1px; width: 403px; }\",\".framer-m5ZFc .framer-7xg4f8 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.15), 0px 1px 1px 0px rgba(0, 0, 0, 0.12); flex: none; height: 279px; left: 0px; overflow: hidden; position: absolute; right: -1px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5ZFc .framer-oi4iuc { flex: none; height: 278px; left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-m5ZFc .framer-p2w8zd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 82px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 91%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-m5ZFc .framer-l2o3tx, .framer-m5ZFc .framer-1ra8oyz, .framer-m5ZFc .framer-t0w5p1, .framer-m5ZFc .framer-185ecna { 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: min-content; }\",\".framer-m5ZFc .framer-1fd9did { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 147px; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-ac58kl { 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: 126px; }\",\".framer-m5ZFc .framer-11cc31m { 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: 120px; }\",\".framer-m5ZFc .framer-2b0biu { flex: none; height: 377px; max-width: 1200px; overflow: visible; position: relative; width: 1200px; }\",\".framer-m5ZFc .framer-1vb1f6s { flex: none; height: 186px; left: 378px; overflow: visible; position: absolute; top: calc(46.15384615384618% - 186px / 2); width: 140px; }\",\".framer-m5ZFc .framer-8oucsy { flex: none; height: 266px; left: calc(50.00000000000002% - 200px / 2); position: absolute; top: calc(50.00000000000002% - 266px / 2); width: 200px; }\",\".framer-m5ZFc .framer-8uvbp2 { flex: none; height: 186px; overflow: visible; position: absolute; right: 379px; top: calc(46.15384615384618% - 186px / 2); width: 140px; }\",\".framer-m5ZFc .framer-2ncx8d { flex: none; height: 190px; left: calc(50.00000000000002% - 190px / 2); overflow: visible; position: absolute; top: calc(46.15384615384618% - 190px / 2); width: 190px; }\",\".framer-m5ZFc .framer-1baxb08-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 70px; }\",\".framer-m5ZFc .framer-1wcwnek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 314px; justify-content: center; left: -20px; overflow: visible; padding: 0px; position: absolute; top: 48%; transform: translateY(-50%); width: min-content; }\",\".framer-m5ZFc .framer-162k8k { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.15), 0px 1px 1px 0px rgba(0, 0, 0, 0.12); flex: none; height: 279px; overflow: hidden; position: relative; width: 393px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5ZFc .framer-e93lqy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 47px 0px 47px; position: absolute; right: 94px; top: 46%; transform: translateY(-50%); width: min-content; }\",\".framer-m5ZFc .framer-6bc0y0-container, .framer-m5ZFc .framer-s7xqwb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-11k1gk2 { 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: 1320px; }\",\".framer-m5ZFc .framer-1ckpr32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1gnvg6u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 25px; height: min-content; justify-content: center; padding: 20px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-4vxtmr-container { flex: none; height: auto; position: relative; width: 32%; }\",\".framer-m5ZFc .framer-e0qmse { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1320px; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-1q6u35 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px 15px 100px 15px; position: relative; width: min-content; }\",\".framer-m5ZFc .framer-gebgp6 { align-content: center; align-items: center; background-color: var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, #bf00ff); 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: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 195px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-178ife3 { align-content: center; align-items: center; background-color: var(--token-d6e89944-dc39-4ddd-a9d8-1999243958e9, #bf00ff); 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: 100%; }\",\".framer-m5ZFc .framer-100vge8 { 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: 50px 0px 50px 0px; position: relative; width: 1320px; }\",\".framer-m5ZFc .framer-aj9o2, .framer-m5ZFc .framer-dkcuiz, .framer-m5ZFc .framer-iuk9p3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-m5ZFc .framer-u4e516-container { flex: none; height: 103px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1iep055 { height: 86px; position: relative; width: 1786px; }\",\".framer-m5ZFc .framer-1h48uc1, .framer-m5ZFc .framer-12n7pxe { 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: 130px 30px 65px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-pro28x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1e1gu21, .framer-m5ZFc .framer-v2gzqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-c2dnc2, .framer-m5ZFc .framer-wfmssx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 100%; z-index: 1; }\",\".framer-m5ZFc .framer-b3as8y, .framer-m5ZFc .framer-1vrekvj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 85%; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-1c9nv9r, .framer-m5ZFc .framer-1lrw0l2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-19fwzkm, .framer-m5ZFc .framer-uuj8fh { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 480px); overflow: hidden; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1eauv3p { align-content: flex-start; align-items: flex-start; background-color: var(--token-d08cf8a1-1b57-490d-9dc9-4f2f503edfb5, #53f0b8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 40px 30px 40px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-xr3kw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-m5ZFc .framer-16wedvp, .framer-m5ZFc .framer-12phlgt, .framer-m5ZFc .framer-1tfyequ { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-11y3g6b { 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 30px 0px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-q7lv3q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-jsc2o4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 52%; }\",\".framer-m5ZFc .framer-1v6d3rr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-m5ZFc .framer-1dru9ij { flex: none; height: 14px; overflow: hidden; position: relative; width: 24px; }\",\".framer-m5ZFc .framer-1i2uj7y { flex: none; height: 50px; overflow: hidden; position: relative; width: 161px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-1sgnce6 { aspect-ratio: 0.8671232876712329 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 730px); overflow: hidden; position: relative; width: 1px; z-index: 0; }\",\".framer-m5ZFc .framer-18848fl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 35px 0px 35px 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-jeqn21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-win38m { align-content: center; align-items: center; background-color: #262634; 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: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 195px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-1dl3lah { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-m5ZFc .framer-1az7jsm { bottom: 5px; flex: none; left: 4px; position: absolute; right: 4px; top: 5px; }\",\".framer-m5ZFc .framer-yxpwfr { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 40px; position: sticky; top: 120px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-m5ZFc .framer-1go2xt9 { 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 20px 0px 20px; position: relative; width: 583px; }\",\".framer-m5ZFc .framer-27w1up { 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-m5ZFc .framer-nu03ic { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1c6wxai { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-xmugtk { 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-m5ZFc .framer-1wslm07, .framer-m5ZFc .framer-zpggr2, .framer-m5ZFc .framer-1yqna8c, .framer-m5ZFc .framer-dvntod { --border-bottom-width: 1px; --border-color: rgba(243, 236, 254, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-jjkh7e { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 55px; position: relative; width: 55px; }\",\".framer-m5ZFc .framer-1lej2kk, .framer-m5ZFc .framer-1d8ijc7, .framer-m5ZFc .framer-1gpbeu8, .framer-m5ZFc .framer-15w163h { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-e68xy5-container, .framer-m5ZFc .framer-1l2kpx7-container, .framer-m5ZFc .framer-10bjvbt-container, .framer-m5ZFc .framer-1dps1oa-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-m5ZFc .framer-1cpssdx, .framer-m5ZFc .framer-yw71ap, .framer-m5ZFc .framer-mz9dod { flex: none; height: 55px; position: relative; width: 55px; }\",\".framer-m5ZFc .framer-ollnzb-container { flex: none; height: 378px; position: relative; width: 475px; }\",\".framer-m5ZFc .framer-1hblm4u { 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: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-f2eoyy-container { flex: none; height: 62px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-az5aqz { height: 26px; overflow: hidden; position: relative; text-decoration: none; width: 129px; }\",\".framer-m5ZFc .framer-b5tc7c, .framer-m5ZFc .framer-9jekyj, .framer-m5ZFc .framer-erwu04, .framer-m5ZFc .framer-1iy8rd5, .framer-m5ZFc .framer-51dji6 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-m5ZFc .framer-13i2p2p { height: 28px; overflow: hidden; position: relative; text-decoration: none; width: 180px; }\",\".framer-m5ZFc .framer-z20uil { height: 23px; overflow: hidden; position: relative; text-decoration: none; width: 163px; }\",\".framer-m5ZFc .framer-1aw1b4e { height: 26px; overflow: hidden; position: relative; text-decoration: none; width: 125px; }\",\".framer-m5ZFc .framer-17eb3hd { height: 23px; overflow: hidden; position: relative; text-decoration: none; width: 150px; }\",\".framer-m5ZFc .framer-12fcl1p { 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: 65px 30px 65px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-y1p50o { align-content: center; align-items: center; background-color: #bf00ff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-jit5gi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 65px 70px 65px 70px; position: relative; width: 1px; }\",\".framer-m5ZFc .framer-1b7sqrg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1iher3m { align-content: center; align-items: center; background-color: #262634; 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: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 236px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-8jfj7r { align-content: center; align-items: center; background-color: #262634; 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: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 217px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-m5ZFc .framer-1a1n8bh { 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: 78px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1dlk0iw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m5ZFc .framer-1vnxp9x { flex: none; height: 467px; overflow: hidden; position: relative; width: 1290px; }\",\".framer-m5ZFc .framer-zj2635 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-m5ZFc .framer-4etbo3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: min-content; }\",\".framer-m5ZFc .framer-1ke0fb8 { flex: none; height: 752px; position: relative; width: 1003px; }\",\".framer-m5ZFc .framer-is37r9 { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background: linear-gradient(90deg, #ffffff 0%, rgb(133, 133, 133) 100%); 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 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 22px 10px 22px; position: fixed; right: 20px; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-m5ZFc .framer-5gpr55 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 40px; position: relative; white-space: pre-wrap; width: 201px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-m5ZFc.framer-72rtr7, .framer-m5ZFc .framer-1qwdf7d, .framer-m5ZFc .framer-69d8dx, .framer-m5ZFc .framer-2wmkfy, .framer-m5ZFc .framer-1bcpwxs, .framer-m5ZFc .framer-1lwb0vu, .framer-m5ZFc .framer-ciu7gy, .framer-m5ZFc .framer-1lrl6bp, .framer-m5ZFc .framer-gsnkfa, .framer-m5ZFc .framer-qg0qom, .framer-m5ZFc .framer-1qmcy4h, .framer-m5ZFc .framer-hsa2qx, .framer-m5ZFc .framer-1dpe4sa, .framer-m5ZFc .framer-1xepim6, .framer-m5ZFc .framer-iiie1, .framer-m5ZFc .framer-q06z5o, .framer-m5ZFc .framer-2mzc0q, .framer-m5ZFc .framer-76dsxu, .framer-m5ZFc .framer-1u7hdg0, .framer-m5ZFc .framer-1sd5b3u, .framer-m5ZFc .framer-1c2wzcz, .framer-m5ZFc .framer-171pvn5, .framer-m5ZFc .framer-1cayuvs, .framer-m5ZFc .framer-j1ocbx, .framer-m5ZFc .framer-1x2r5j9, .framer-m5ZFc .framer-14q0i9r, .framer-m5ZFc .framer-1zway2, .framer-m5ZFc .framer-ujs073, .framer-m5ZFc .framer-1ufqhdx, .framer-m5ZFc .framer-1r6r0r6, .framer-m5ZFc .framer-1ru5smw, .framer-m5ZFc .framer-16h23lg, .framer-m5ZFc .framer-12fmc18, .framer-m5ZFc .framer-wwmx9b, .framer-m5ZFc .framer-1crfbaj, .framer-m5ZFc .framer-4wmgos, .framer-m5ZFc .framer-exhjb, .framer-m5ZFc .framer-15sf5lh, .framer-m5ZFc .framer-12qk2eu, .framer-m5ZFc .framer-l0nts8, .framer-m5ZFc .framer-oltzyi, .framer-m5ZFc .framer-je87us, .framer-m5ZFc .framer-1pvwatq, .framer-m5ZFc .framer-1y9t0ks, .framer-m5ZFc .framer-3wd6nw, .framer-m5ZFc .framer-he1lk, .framer-m5ZFc .framer-1rjd9gf, .framer-m5ZFc .framer-pj6obh, .framer-m5ZFc .framer-1ynetai, .framer-m5ZFc .framer-6liar7, .framer-m5ZFc .framer-1rhk30, .framer-m5ZFc .framer-vdgmbg, .framer-m5ZFc .framer-sryzh0, .framer-m5ZFc .framer-6dvnjc, .framer-m5ZFc .framer-10gcrwt, .framer-m5ZFc .framer-ara2yy, .framer-m5ZFc .framer-1syz41x, .framer-m5ZFc .framer-1ixtu8g, .framer-m5ZFc .framer-uz1kxb, .framer-m5ZFc .framer-o6jzuy, .framer-m5ZFc .framer-1vge7hu, .framer-m5ZFc .framer-vkv6b7, .framer-m5ZFc .framer-1mtiepd, .framer-m5ZFc .framer-p2w8zd, .framer-m5ZFc .framer-l2o3tx, .framer-m5ZFc .framer-ac58kl, .framer-m5ZFc .framer-11cc31m, .framer-m5ZFc .framer-kfirmw, .framer-m5ZFc .framer-1wcwnek, .framer-m5ZFc .framer-e93lqy, .framer-m5ZFc .framer-1ra8oyz, .framer-m5ZFc .framer-t0w5p1, .framer-m5ZFc .framer-185ecna, .framer-m5ZFc .framer-11k1gk2, .framer-m5ZFc .framer-1ckpr32, .framer-m5ZFc .framer-1gnvg6u, .framer-m5ZFc .framer-1q6u35, .framer-m5ZFc .framer-gebgp6, .framer-m5ZFc .framer-11b1k7c, .framer-m5ZFc .framer-178ife3, .framer-m5ZFc .framer-100vge8, .framer-m5ZFc .framer-1h48uc1, .framer-m5ZFc .framer-1ypxif2, .framer-m5ZFc .framer-pro28x, .framer-m5ZFc .framer-1e1gu21, .framer-m5ZFc .framer-c2dnc2, .framer-m5ZFc .framer-p52t77, .framer-m5ZFc .framer-1rvunzb, .framer-m5ZFc .framer-wvoukk, .framer-m5ZFc .framer-1c9nv9r, .framer-m5ZFc .framer-1eauv3p, .framer-m5ZFc .framer-xr3kw5, .framer-m5ZFc .framer-16wedvp, .framer-m5ZFc .framer-5avyil, .framer-m5ZFc .framer-12phlgt, .framer-m5ZFc .framer-k4k2ma, .framer-m5ZFc .framer-1tfyequ, .framer-m5ZFc .framer-1g3wa22, .framer-m5ZFc .framer-11y3g6b, .framer-m5ZFc .framer-151pf5e, .framer-m5ZFc .framer-q7lv3q, .framer-m5ZFc .framer-jsc2o4, .framer-m5ZFc .framer-1v6d3rr, .framer-m5ZFc .framer-13kltpo, .framer-m5ZFc .framer-pkt9wf, .framer-m5ZFc .framer-1wu9gsg, .framer-m5ZFc .framer-12n7pxe, .framer-m5ZFc .framer-13y93g7, .framer-m5ZFc .framer-18848fl, .framer-m5ZFc .framer-1lrw0l2, .framer-m5ZFc .framer-v2gzqj, .framer-m5ZFc .framer-wfmssx, .framer-m5ZFc .framer-204bf2, .framer-m5ZFc .framer-1dhibay, .framer-m5ZFc .framer-jeqn21, .framer-m5ZFc .framer-win38m, .framer-m5ZFc .framer-58oj7t, .framer-m5ZFc .framer-yxpwfr, .framer-m5ZFc .framer-1go2xt9, .framer-m5ZFc .framer-27w1up, .framer-m5ZFc .framer-nu03ic, .framer-m5ZFc .framer-xmugtk, .framer-m5ZFc .framer-1wslm07, .framer-m5ZFc .framer-zpggr2, .framer-m5ZFc .framer-1yqna8c, .framer-m5ZFc .framer-dvntod, .framer-m5ZFc .framer-1hblm4u, .framer-m5ZFc .framer-12fcl1p, .framer-m5ZFc .framer-1gyd052, .framer-m5ZFc .framer-y1p50o, .framer-m5ZFc .framer-jit5gi, .framer-m5ZFc .framer-1b7sqrg, .framer-m5ZFc .framer-1iher3m, .framer-m5ZFc .framer-8jfj7r, .framer-m5ZFc .framer-1a1n8bh, .framer-m5ZFc .framer-cl1wt6, .framer-m5ZFc .framer-1dlk0iw, .framer-m5ZFc .framer-7ja7a9, .framer-m5ZFc .framer-1f927ee, .framer-m5ZFc .framer-4etbo3, .framer-m5ZFc .framer-1qzb0nb, .framer-m5ZFc .framer-is37r9 { gap: 0px; } .framer-m5ZFc.framer-72rtr7 > *, .framer-m5ZFc .framer-2wmkfy > *, .framer-m5ZFc .framer-1dpe4sa > *, .framer-m5ZFc .framer-2mzc0q > *, .framer-m5ZFc .framer-4wmgos > *, .framer-m5ZFc .framer-178ife3 > *, .framer-m5ZFc .framer-1h48uc1 > *, .framer-m5ZFc .framer-11y3g6b > *, .framer-m5ZFc .framer-12n7pxe > *, .framer-m5ZFc .framer-xmugtk > *, .framer-m5ZFc .framer-12fcl1p > *, .framer-m5ZFc .framer-1a1n8bh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-m5ZFc.framer-72rtr7 > :first-child, .framer-m5ZFc .framer-1qwdf7d > :first-child, .framer-m5ZFc .framer-2wmkfy > :first-child, .framer-m5ZFc .framer-1lwb0vu > :first-child, .framer-m5ZFc .framer-ciu7gy > :first-child, .framer-m5ZFc .framer-1lrl6bp > :first-child, .framer-m5ZFc .framer-gsnkfa > :first-child, .framer-m5ZFc .framer-1dpe4sa > :first-child, .framer-m5ZFc .framer-1xepim6 > :first-child, .framer-m5ZFc .framer-2mzc0q > :first-child, .framer-m5ZFc .framer-76dsxu > :first-child, .framer-m5ZFc .framer-1sd5b3u > :first-child, .framer-m5ZFc .framer-1c2wzcz > :first-child, .framer-m5ZFc .framer-171pvn5 > :first-child, .framer-m5ZFc .framer-1cayuvs > :first-child, .framer-m5ZFc .framer-14q0i9r > :first-child, .framer-m5ZFc .framer-ujs073 > :first-child, .framer-m5ZFc .framer-1ufqhdx > :first-child, .framer-m5ZFc .framer-1r6r0r6 > :first-child, .framer-m5ZFc .framer-1ru5smw > :first-child, .framer-m5ZFc .framer-16h23lg > :first-child, .framer-m5ZFc .framer-12fmc18 > :first-child, .framer-m5ZFc .framer-wwmx9b > :first-child, .framer-m5ZFc .framer-1crfbaj > :first-child, .framer-m5ZFc .framer-4wmgos > :first-child, .framer-m5ZFc .framer-exhjb > :first-child, .framer-m5ZFc .framer-15sf5lh > :first-child, .framer-m5ZFc .framer-l0nts8 > :first-child, .framer-m5ZFc .framer-1pvwatq > :first-child, .framer-m5ZFc .framer-1y9t0ks > :first-child, .framer-m5ZFc .framer-3wd6nw > :first-child, .framer-m5ZFc .framer-he1lk > :first-child, .framer-m5ZFc .framer-1rjd9gf > :first-child, .framer-m5ZFc .framer-pj6obh > :first-child, .framer-m5ZFc .framer-1ynetai > :first-child, .framer-m5ZFc .framer-6liar7 > :first-child, .framer-m5ZFc .framer-vdgmbg > :first-child, .framer-m5ZFc .framer-sryzh0 > :first-child, .framer-m5ZFc .framer-6dvnjc > :first-child, .framer-m5ZFc .framer-10gcrwt > :first-child, .framer-m5ZFc .framer-ara2yy > :first-child, .framer-m5ZFc .framer-1syz41x > :first-child, .framer-m5ZFc .framer-1ixtu8g > :first-child, .framer-m5ZFc .framer-uz1kxb > :first-child, .framer-m5ZFc .framer-o6jzuy > :first-child, .framer-m5ZFc .framer-1vge7hu > :first-child, .framer-m5ZFc .framer-vkv6b7 > :first-child, .framer-m5ZFc .framer-1mtiepd > :first-child, .framer-m5ZFc .framer-l2o3tx > :first-child, .framer-m5ZFc .framer-ac58kl > :first-child, .framer-m5ZFc .framer-11cc31m > :first-child, .framer-m5ZFc .framer-1wcwnek > :first-child, .framer-m5ZFc .framer-e93lqy > :first-child, .framer-m5ZFc .framer-1ra8oyz > :first-child, .framer-m5ZFc .framer-t0w5p1 > :first-child, .framer-m5ZFc .framer-185ecna > :first-child, .framer-m5ZFc .framer-178ife3 > :first-child, .framer-m5ZFc .framer-1h48uc1 > :first-child, .framer-m5ZFc .framer-1ypxif2 > :first-child, .framer-m5ZFc .framer-1e1gu21 > :first-child, .framer-m5ZFc .framer-c2dnc2 > :first-child, .framer-m5ZFc .framer-p52t77 > :first-child, .framer-m5ZFc .framer-1c9nv9r > :first-child, .framer-m5ZFc .framer-1eauv3p > :first-child, .framer-m5ZFc .framer-xr3kw5 > :first-child, .framer-m5ZFc .framer-16wedvp > :first-child, .framer-m5ZFc .framer-12phlgt > :first-child, .framer-m5ZFc .framer-1tfyequ > :first-child, .framer-m5ZFc .framer-11y3g6b > :first-child, .framer-m5ZFc .framer-151pf5e > :first-child, .framer-m5ZFc .framer-jsc2o4 > :first-child, .framer-m5ZFc .framer-1v6d3rr > :first-child, .framer-m5ZFc .framer-13kltpo > :first-child, .framer-m5ZFc .framer-12n7pxe > :first-child, .framer-m5ZFc .framer-13y93g7 > :first-child, .framer-m5ZFc .framer-1lrw0l2 > :first-child, .framer-m5ZFc .framer-v2gzqj > :first-child, .framer-m5ZFc .framer-wfmssx > :first-child, .framer-m5ZFc .framer-204bf2 > :first-child, .framer-m5ZFc .framer-1go2xt9 > :first-child, .framer-m5ZFc .framer-27w1up > :first-child, .framer-m5ZFc .framer-nu03ic > :first-child, .framer-m5ZFc .framer-xmugtk > :first-child, .framer-m5ZFc .framer-12fcl1p > :first-child, .framer-m5ZFc .framer-1gyd052 > :first-child, .framer-m5ZFc .framer-jit5gi > :first-child, .framer-m5ZFc .framer-1a1n8bh > :first-child, .framer-m5ZFc .framer-cl1wt6 > :first-child, .framer-m5ZFc .framer-1dlk0iw > :first-child, .framer-m5ZFc .framer-7ja7a9 > :first-child { margin-top: 0px; } .framer-m5ZFc.framer-72rtr7 > :last-child, .framer-m5ZFc .framer-1qwdf7d > :last-child, .framer-m5ZFc .framer-2wmkfy > :last-child, .framer-m5ZFc .framer-1lwb0vu > :last-child, .framer-m5ZFc .framer-ciu7gy > :last-child, .framer-m5ZFc .framer-1lrl6bp > :last-child, .framer-m5ZFc .framer-gsnkfa > :last-child, .framer-m5ZFc .framer-1dpe4sa > :last-child, .framer-m5ZFc .framer-1xepim6 > :last-child, .framer-m5ZFc .framer-2mzc0q > :last-child, .framer-m5ZFc .framer-76dsxu > :last-child, .framer-m5ZFc .framer-1sd5b3u > :last-child, .framer-m5ZFc .framer-1c2wzcz > :last-child, .framer-m5ZFc .framer-171pvn5 > :last-child, .framer-m5ZFc .framer-1cayuvs > :last-child, .framer-m5ZFc .framer-14q0i9r > :last-child, .framer-m5ZFc .framer-ujs073 > :last-child, .framer-m5ZFc .framer-1ufqhdx > :last-child, .framer-m5ZFc .framer-1r6r0r6 > :last-child, .framer-m5ZFc .framer-1ru5smw > :last-child, .framer-m5ZFc .framer-16h23lg > :last-child, .framer-m5ZFc .framer-12fmc18 > :last-child, .framer-m5ZFc .framer-wwmx9b > :last-child, .framer-m5ZFc .framer-1crfbaj > :last-child, .framer-m5ZFc .framer-4wmgos > :last-child, .framer-m5ZFc .framer-exhjb > :last-child, .framer-m5ZFc .framer-15sf5lh > :last-child, .framer-m5ZFc .framer-l0nts8 > :last-child, .framer-m5ZFc .framer-1pvwatq > :last-child, .framer-m5ZFc .framer-1y9t0ks > :last-child, .framer-m5ZFc .framer-3wd6nw > :last-child, .framer-m5ZFc .framer-he1lk > :last-child, .framer-m5ZFc .framer-1rjd9gf > :last-child, .framer-m5ZFc .framer-pj6obh > :last-child, .framer-m5ZFc .framer-1ynetai > :last-child, .framer-m5ZFc .framer-6liar7 > :last-child, .framer-m5ZFc .framer-vdgmbg > :last-child, .framer-m5ZFc .framer-sryzh0 > :last-child, .framer-m5ZFc .framer-6dvnjc > :last-child, .framer-m5ZFc .framer-10gcrwt > :last-child, .framer-m5ZFc .framer-ara2yy > :last-child, .framer-m5ZFc .framer-1syz41x > :last-child, .framer-m5ZFc .framer-1ixtu8g > :last-child, .framer-m5ZFc .framer-uz1kxb > :last-child, .framer-m5ZFc .framer-o6jzuy > :last-child, .framer-m5ZFc .framer-1vge7hu > :last-child, .framer-m5ZFc .framer-vkv6b7 > :last-child, .framer-m5ZFc .framer-1mtiepd > :last-child, .framer-m5ZFc .framer-l2o3tx > :last-child, .framer-m5ZFc .framer-ac58kl > :last-child, .framer-m5ZFc .framer-11cc31m > :last-child, .framer-m5ZFc .framer-1wcwnek > :last-child, .framer-m5ZFc .framer-e93lqy > :last-child, .framer-m5ZFc .framer-1ra8oyz > :last-child, .framer-m5ZFc .framer-t0w5p1 > :last-child, .framer-m5ZFc .framer-185ecna > :last-child, .framer-m5ZFc .framer-178ife3 > :last-child, .framer-m5ZFc .framer-1h48uc1 > :last-child, .framer-m5ZFc .framer-1ypxif2 > :last-child, .framer-m5ZFc .framer-1e1gu21 > :last-child, .framer-m5ZFc .framer-c2dnc2 > :last-child, .framer-m5ZFc .framer-p52t77 > :last-child, .framer-m5ZFc .framer-1c9nv9r > :last-child, .framer-m5ZFc .framer-1eauv3p > :last-child, .framer-m5ZFc .framer-xr3kw5 > :last-child, .framer-m5ZFc .framer-16wedvp > :last-child, .framer-m5ZFc .framer-12phlgt > :last-child, .framer-m5ZFc .framer-1tfyequ > :last-child, .framer-m5ZFc .framer-11y3g6b > :last-child, .framer-m5ZFc .framer-151pf5e > :last-child, .framer-m5ZFc .framer-jsc2o4 > :last-child, .framer-m5ZFc .framer-1v6d3rr > :last-child, .framer-m5ZFc .framer-13kltpo > :last-child, .framer-m5ZFc .framer-12n7pxe > :last-child, .framer-m5ZFc .framer-13y93g7 > :last-child, .framer-m5ZFc .framer-1lrw0l2 > :last-child, .framer-m5ZFc .framer-v2gzqj > :last-child, .framer-m5ZFc .framer-wfmssx > :last-child, .framer-m5ZFc .framer-204bf2 > :last-child, .framer-m5ZFc .framer-1go2xt9 > :last-child, .framer-m5ZFc .framer-27w1up > :last-child, .framer-m5ZFc .framer-nu03ic > :last-child, .framer-m5ZFc .framer-xmugtk > :last-child, .framer-m5ZFc .framer-12fcl1p > :last-child, .framer-m5ZFc .framer-1gyd052 > :last-child, .framer-m5ZFc .framer-jit5gi > :last-child, .framer-m5ZFc .framer-1a1n8bh > :last-child, .framer-m5ZFc .framer-cl1wt6 > :last-child, .framer-m5ZFc .framer-1dlk0iw > :last-child, .framer-m5ZFc .framer-7ja7a9 > :last-child { margin-bottom: 0px; } .framer-m5ZFc .framer-1qwdf7d > *, .framer-m5ZFc .framer-1lwb0vu > *, .framer-m5ZFc .framer-1xepim6 > *, .framer-m5ZFc .framer-76dsxu > *, .framer-m5ZFc .framer-1ufqhdx > *, .framer-m5ZFc .framer-1ru5smw > *, .framer-m5ZFc .framer-12fmc18 > *, .framer-m5ZFc .framer-1crfbaj > *, .framer-m5ZFc .framer-exhjb > *, .framer-m5ZFc .framer-1y9t0ks > *, .framer-m5ZFc .framer-he1lk > *, .framer-m5ZFc .framer-pj6obh > *, .framer-m5ZFc .framer-6liar7 > *, .framer-m5ZFc .framer-sryzh0 > *, .framer-m5ZFc .framer-10gcrwt > *, .framer-m5ZFc .framer-1syz41x > *, .framer-m5ZFc .framer-uz1kxb > *, .framer-m5ZFc .framer-1wcwnek > *, .framer-m5ZFc .framer-1ypxif2 > *, .framer-m5ZFc .framer-151pf5e > *, .framer-m5ZFc .framer-13y93g7 > *, .framer-m5ZFc .framer-1gyd052 > *, .framer-m5ZFc .framer-jit5gi > *, .framer-m5ZFc .framer-cl1wt6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-m5ZFc .framer-69d8dx > *, .framer-m5ZFc .framer-1bcpwxs > *, .framer-m5ZFc .framer-qg0qom > *, .framer-m5ZFc .framer-hsa2qx > *, .framer-m5ZFc .framer-j1ocbx > *, .framer-m5ZFc .framer-12qk2eu > *, .framer-m5ZFc .framer-oltzyi > *, .framer-m5ZFc .framer-kfirmw > *, .framer-m5ZFc .framer-11k1gk2 > *, .framer-m5ZFc .framer-100vge8 > *, .framer-m5ZFc .framer-1rvunzb > *, .framer-m5ZFc .framer-5avyil > *, .framer-m5ZFc .framer-k4k2ma > *, .framer-m5ZFc .framer-1g3wa22 > *, .framer-m5ZFc .framer-pkt9wf > *, .framer-m5ZFc .framer-1dhibay > *, .framer-m5ZFc .framer-1hblm4u > *, .framer-m5ZFc .framer-1f927ee > *, .framer-m5ZFc .framer-is37r9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-m5ZFc .framer-69d8dx > :first-child, .framer-m5ZFc .framer-1bcpwxs > :first-child, .framer-m5ZFc .framer-qg0qom > :first-child, .framer-m5ZFc .framer-1qmcy4h > :first-child, .framer-m5ZFc .framer-hsa2qx > :first-child, .framer-m5ZFc .framer-iiie1 > :first-child, .framer-m5ZFc .framer-q06z5o > :first-child, .framer-m5ZFc .framer-1u7hdg0 > :first-child, .framer-m5ZFc .framer-j1ocbx > :first-child, .framer-m5ZFc .framer-1x2r5j9 > :first-child, .framer-m5ZFc .framer-1zway2 > :first-child, .framer-m5ZFc .framer-12qk2eu > :first-child, .framer-m5ZFc .framer-oltzyi > :first-child, .framer-m5ZFc .framer-je87us > :first-child, .framer-m5ZFc .framer-1rhk30 > :first-child, .framer-m5ZFc .framer-p2w8zd > :first-child, .framer-m5ZFc .framer-kfirmw > :first-child, .framer-m5ZFc .framer-11k1gk2 > :first-child, .framer-m5ZFc .framer-1ckpr32 > :first-child, .framer-m5ZFc .framer-1gnvg6u > :first-child, .framer-m5ZFc .framer-1q6u35 > :first-child, .framer-m5ZFc .framer-gebgp6 > :first-child, .framer-m5ZFc .framer-11b1k7c > :first-child, .framer-m5ZFc .framer-100vge8 > :first-child, .framer-m5ZFc .framer-pro28x > :first-child, .framer-m5ZFc .framer-1rvunzb > :first-child, .framer-m5ZFc .framer-wvoukk > :first-child, .framer-m5ZFc .framer-5avyil > :first-child, .framer-m5ZFc .framer-k4k2ma > :first-child, .framer-m5ZFc .framer-1g3wa22 > :first-child, .framer-m5ZFc .framer-q7lv3q > :first-child, .framer-m5ZFc .framer-pkt9wf > :first-child, .framer-m5ZFc .framer-1wu9gsg > :first-child, .framer-m5ZFc .framer-18848fl > :first-child, .framer-m5ZFc .framer-1dhibay > :first-child, .framer-m5ZFc .framer-jeqn21 > :first-child, .framer-m5ZFc .framer-win38m > :first-child, .framer-m5ZFc .framer-58oj7t > :first-child, .framer-m5ZFc .framer-yxpwfr > :first-child, .framer-m5ZFc .framer-1wslm07 > :first-child, .framer-m5ZFc .framer-zpggr2 > :first-child, .framer-m5ZFc .framer-1yqna8c > :first-child, .framer-m5ZFc .framer-dvntod > :first-child, .framer-m5ZFc .framer-1hblm4u > :first-child, .framer-m5ZFc .framer-y1p50o > :first-child, .framer-m5ZFc .framer-1b7sqrg > :first-child, .framer-m5ZFc .framer-1iher3m > :first-child, .framer-m5ZFc .framer-8jfj7r > :first-child, .framer-m5ZFc .framer-1f927ee > :first-child, .framer-m5ZFc .framer-4etbo3 > :first-child, .framer-m5ZFc .framer-1qzb0nb > :first-child, .framer-m5ZFc .framer-is37r9 > :first-child { margin-left: 0px; } .framer-m5ZFc .framer-69d8dx > :last-child, .framer-m5ZFc .framer-1bcpwxs > :last-child, .framer-m5ZFc .framer-qg0qom > :last-child, .framer-m5ZFc .framer-1qmcy4h > :last-child, .framer-m5ZFc .framer-hsa2qx > :last-child, .framer-m5ZFc .framer-iiie1 > :last-child, .framer-m5ZFc .framer-q06z5o > :last-child, .framer-m5ZFc .framer-1u7hdg0 > :last-child, .framer-m5ZFc .framer-j1ocbx > :last-child, .framer-m5ZFc .framer-1x2r5j9 > :last-child, .framer-m5ZFc .framer-1zway2 > :last-child, .framer-m5ZFc .framer-12qk2eu > :last-child, .framer-m5ZFc .framer-oltzyi > :last-child, .framer-m5ZFc .framer-je87us > :last-child, .framer-m5ZFc .framer-1rhk30 > :last-child, .framer-m5ZFc .framer-p2w8zd > :last-child, .framer-m5ZFc .framer-kfirmw > :last-child, .framer-m5ZFc .framer-11k1gk2 > :last-child, .framer-m5ZFc .framer-1ckpr32 > :last-child, .framer-m5ZFc .framer-1gnvg6u > :last-child, .framer-m5ZFc .framer-1q6u35 > :last-child, .framer-m5ZFc .framer-gebgp6 > :last-child, .framer-m5ZFc .framer-11b1k7c > :last-child, .framer-m5ZFc .framer-100vge8 > :last-child, .framer-m5ZFc .framer-pro28x > :last-child, .framer-m5ZFc .framer-1rvunzb > :last-child, .framer-m5ZFc .framer-wvoukk > :last-child, .framer-m5ZFc .framer-5avyil > :last-child, .framer-m5ZFc .framer-k4k2ma > :last-child, .framer-m5ZFc .framer-1g3wa22 > :last-child, .framer-m5ZFc .framer-q7lv3q > :last-child, .framer-m5ZFc .framer-pkt9wf > :last-child, .framer-m5ZFc .framer-1wu9gsg > :last-child, .framer-m5ZFc .framer-18848fl > :last-child, .framer-m5ZFc .framer-1dhibay > :last-child, .framer-m5ZFc .framer-jeqn21 > :last-child, .framer-m5ZFc .framer-win38m > :last-child, .framer-m5ZFc .framer-58oj7t > :last-child, .framer-m5ZFc .framer-yxpwfr > :last-child, .framer-m5ZFc .framer-1wslm07 > :last-child, .framer-m5ZFc .framer-zpggr2 > :last-child, .framer-m5ZFc .framer-1yqna8c > :last-child, .framer-m5ZFc .framer-dvntod > :last-child, .framer-m5ZFc .framer-1hblm4u > :last-child, .framer-m5ZFc .framer-y1p50o > :last-child, .framer-m5ZFc .framer-1b7sqrg > :last-child, .framer-m5ZFc .framer-1iher3m > :last-child, .framer-m5ZFc .framer-8jfj7r > :last-child, .framer-m5ZFc .framer-1f927ee > :last-child, .framer-m5ZFc .framer-4etbo3 > :last-child, .framer-m5ZFc .framer-1qzb0nb > :last-child, .framer-m5ZFc .framer-is37r9 > :last-child { margin-right: 0px; } .framer-m5ZFc .framer-ciu7gy > * { margin: 0px; margin-bottom: calc(110px / 2); margin-top: calc(110px / 2); } .framer-m5ZFc .framer-1lrl6bp > *, .framer-m5ZFc .framer-14q0i9r > *, .framer-m5ZFc .framer-o6jzuy > *, .framer-m5ZFc .framer-1c9nv9r > *, .framer-m5ZFc .framer-1lrw0l2 > *, .framer-m5ZFc .framer-27w1up > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-m5ZFc .framer-gsnkfa > *, .framer-m5ZFc .framer-1cayuvs > *, .framer-m5ZFc .framer-l0nts8 > *, .framer-m5ZFc .framer-e93lqy > *, .framer-m5ZFc .framer-p52t77 > *, .framer-m5ZFc .framer-13kltpo > *, .framer-m5ZFc .framer-204bf2 > *, .framer-m5ZFc .framer-7ja7a9 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-m5ZFc .framer-1qmcy4h > *, .framer-m5ZFc .framer-1ckpr32 > *, .framer-m5ZFc .framer-1gnvg6u > *, .framer-m5ZFc .framer-1wu9gsg > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-m5ZFc .framer-iiie1 > *, .framer-m5ZFc .framer-y1p50o > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-m5ZFc .framer-q06z5o > * { margin: 0px; margin-left: calc(150px / 2); margin-right: calc(150px / 2); } .framer-m5ZFc .framer-1u7hdg0 > * { margin: 0px; margin-left: calc(110px / 2); margin-right: calc(110px / 2); } .framer-m5ZFc .framer-1sd5b3u > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-m5ZFc .framer-1c2wzcz > *, .framer-m5ZFc .framer-ujs073 > *, .framer-m5ZFc .framer-1r6r0r6 > *, .framer-m5ZFc .framer-16h23lg > *, .framer-m5ZFc .framer-wwmx9b > *, .framer-m5ZFc .framer-1pvwatq > *, .framer-m5ZFc .framer-3wd6nw > *, .framer-m5ZFc .framer-1rjd9gf > *, .framer-m5ZFc .framer-1ynetai > *, .framer-m5ZFc .framer-vdgmbg > *, .framer-m5ZFc .framer-6dvnjc > *, .framer-m5ZFc .framer-ara2yy > *, .framer-m5ZFc .framer-1ixtu8g > *, .framer-m5ZFc .framer-c2dnc2 > *, .framer-m5ZFc .framer-1v6d3rr > *, .framer-m5ZFc .framer-wfmssx > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-m5ZFc .framer-171pvn5 > *, .framer-m5ZFc .framer-xr3kw5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-m5ZFc .framer-1x2r5j9 > *, .framer-m5ZFc .framer-gebgp6 > *, .framer-m5ZFc .framer-11b1k7c > *, .framer-m5ZFc .framer-wvoukk > *, .framer-m5ZFc .framer-win38m > *, .framer-m5ZFc .framer-58oj7t > *, .framer-m5ZFc .framer-1iher3m > *, .framer-m5ZFc .framer-8jfj7r > *, .framer-m5ZFc .framer-1qzb0nb > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-m5ZFc .framer-1zway2 > *, .framer-m5ZFc .framer-1rhk30 > *, .framer-m5ZFc .framer-q7lv3q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-m5ZFc .framer-15sf5lh > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-m5ZFc .framer-je87us > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-m5ZFc .framer-1vge7hu > *, .framer-m5ZFc .framer-vkv6b7 > *, .framer-m5ZFc .framer-1mtiepd > *, .framer-m5ZFc .framer-l2o3tx > *, .framer-m5ZFc .framer-ac58kl > *, .framer-m5ZFc .framer-11cc31m > *, .framer-m5ZFc .framer-1ra8oyz > *, .framer-m5ZFc .framer-t0w5p1 > *, .framer-m5ZFc .framer-185ecna > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-m5ZFc .framer-p2w8zd > * { margin: 0px; margin-left: calc(82px / 2); margin-right: calc(82px / 2); } .framer-m5ZFc .framer-1q6u35 > *, .framer-m5ZFc .framer-jeqn21 > *, .framer-m5ZFc .framer-1b7sqrg > *, .framer-m5ZFc .framer-4etbo3 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-m5ZFc .framer-pro28x > *, .framer-m5ZFc .framer-18848fl > *, .framer-m5ZFc .framer-yxpwfr > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-m5ZFc .framer-1e1gu21 > *, .framer-m5ZFc .framer-jsc2o4 > *, .framer-m5ZFc .framer-v2gzqj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-m5ZFc .framer-1eauv3p > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-m5ZFc .framer-16wedvp > *, .framer-m5ZFc .framer-12phlgt > *, .framer-m5ZFc .framer-1tfyequ > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-m5ZFc .framer-1go2xt9 > *, .framer-m5ZFc .framer-nu03ic > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-m5ZFc .framer-1wslm07 > *, .framer-m5ZFc .framer-zpggr2 > *, .framer-m5ZFc .framer-1yqna8c > *, .framer-m5ZFc .framer-dvntod > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-m5ZFc .framer-1dlk0iw > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-m5ZFc[data-border=\"true\"]::after, .framer-m5ZFc [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: 768px) and (max-width: 1439px) { .framer-m5ZFc.framer-72rtr7 { width: 768px; } .framer-m5ZFc .framer-1qwdf7d { left: 50%; order: 0; position: absolute; transform: translateX(-50%); } .framer-m5ZFc .framer-69d8dx, .framer-m5ZFc .framer-1lwb0vu, .framer-m5ZFc .framer-1xepim6, .framer-m5ZFc .framer-76dsxu, .framer-m5ZFc .framer-exhjb, .framer-m5ZFc .framer-1ypxif2, .framer-m5ZFc .framer-151pf5e, .framer-m5ZFc .framer-13y93g7, .framer-m5ZFc .framer-1gyd052, .framer-m5ZFc .framer-cl1wt6 { max-width: unset; } .framer-m5ZFc .framer-2wmkfy { order: 1; padding: 130px 30px 160px 30px; } .framer-m5ZFc .framer-eme4uh-container { height: 50px; } .framer-m5ZFc .framer-17e3210 { height: 100%; left: 0px; top: -3px; } .framer-m5ZFc .framer-ciu7gy { gap: 60px; width: 100%; } .framer-m5ZFc .framer-1dpe4sa { order: 2; padding: 25px 30px 25px 30px; } .framer-m5ZFc .framer-q06z5o { gap: 50px; } .framer-m5ZFc .framer-2mzc0q { order: 3; padding: 25px 30px 40px 30px; } .framer-m5ZFc .framer-1u7hdg0 { flex-direction: column; gap: 60px; } .framer-m5ZFc .framer-1yfe8xo-container { order: 0; width: 100%; } .framer-m5ZFc .framer-1sd5b3u { flex: none; order: 1; width: 100%; } .framer-m5ZFc .framer-1ag0rt3, .framer-m5ZFc .framer-1c0nkwy, .framer-m5ZFc .framer-6rg5m0, .framer-m5ZFc .framer-b3as8y, .framer-m5ZFc .framer-1vrekvj { width: 100%; } .framer-m5ZFc .framer-1frmctu { order: 5; } .framer-m5ZFc .framer-4wmgos { order: 4; padding: 40px 30px 80px 30px; } .framer-m5ZFc .framer-12qk2eu { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; } .framer-m5ZFc .framer-l0nts8, .framer-m5ZFc .framer-1c9nv9r, .framer-m5ZFc .framer-1lrw0l2 { flex: none; width: 100%; } .framer-m5ZFc .framer-fli72o-container { height: var(--framer-aspect-ratio-supported, 74px); } .framer-m5ZFc .framer-11k1gk2 { width: min-content; } .framer-m5ZFc .framer-19v1e8r { flex: none; white-space: pre; width: auto; } .framer-m5ZFc .framer-4vxtmr-container { width: 48%; } .framer-m5ZFc .framer-1q6u35 { order: 6; } .framer-m5ZFc .framer-178ife3 { order: 7; } .framer-m5ZFc .framer-1h48uc1 { order: 8; padding: 80px 30px 40px 30px; } .framer-m5ZFc .framer-pro28x, .framer-m5ZFc .framer-18848fl { flex-direction: column; } .framer-m5ZFc .framer-1e1gu21, .framer-m5ZFc .framer-v2gzqj { flex: none; gap: 40px; width: 100%; } .framer-m5ZFc .framer-19fwzkm, .framer-m5ZFc .framer-uuj8fh { height: var(--framer-aspect-ratio-supported, 531px); } .framer-m5ZFc .framer-11y3g6b { order: 9; padding: 80px 30px 0px 30px; } .framer-m5ZFc .framer-q7lv3q { flex-direction: column; gap: 30px; } .framer-m5ZFc .framer-jsc2o4 { gap: 40px; padding: 0px; width: 100%; } .framer-m5ZFc .framer-1sgnce6 { flex: none; height: var(--framer-aspect-ratio-supported, 816px); width: 100%; } .framer-m5ZFc .framer-12n7pxe { order: 10; padding: 80px 30px 40px 30px; } .framer-m5ZFc .framer-ollnzb-container { width: 581px; } .framer-m5ZFc .framer-1hblm4u { order: 11; } .framer-m5ZFc .framer-f2eoyy-container { height: 50px; order: 12; } .framer-m5ZFc .framer-12fcl1p { order: 13; padding: 40px 30px 40px 30px; } .framer-m5ZFc .framer-jit5gi { gap: 20px; padding: 40px; } .framer-m5ZFc .framer-1a1n8bh { padding: 80px 30px 0px 30px; } .framer-m5ZFc .framer-1dlk0iw { gap: 60px; } .framer-m5ZFc .framer-1ke0fb8 { height: 538px; order: 14; width: 717px; } .framer-m5ZFc .framer-s7xqwb-container { order: 15; } .framer-m5ZFc .framer-is37r9 { order: 16; padding: 0px 10px 0px 10px; } .framer-m5ZFc .framer-5gpr55 { white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-m5ZFc .framer-ciu7gy, .framer-m5ZFc .framer-q06z5o, .framer-m5ZFc .framer-1u7hdg0, .framer-m5ZFc .framer-12qk2eu, .framer-m5ZFc .framer-pro28x, .framer-m5ZFc .framer-1e1gu21, .framer-m5ZFc .framer-q7lv3q, .framer-m5ZFc .framer-jsc2o4, .framer-m5ZFc .framer-18848fl, .framer-m5ZFc .framer-v2gzqj, .framer-m5ZFc .framer-jit5gi, .framer-m5ZFc .framer-1dlk0iw { gap: 0px; } .framer-m5ZFc .framer-ciu7gy > *, .framer-m5ZFc .framer-1u7hdg0 > *, .framer-m5ZFc .framer-1dlk0iw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-m5ZFc .framer-ciu7gy > :first-child, .framer-m5ZFc .framer-1u7hdg0 > :first-child, .framer-m5ZFc .framer-12qk2eu > :first-child, .framer-m5ZFc .framer-pro28x > :first-child, .framer-m5ZFc .framer-1e1gu21 > :first-child, .framer-m5ZFc .framer-q7lv3q > :first-child, .framer-m5ZFc .framer-jsc2o4 > :first-child, .framer-m5ZFc .framer-18848fl > :first-child, .framer-m5ZFc .framer-v2gzqj > :first-child, .framer-m5ZFc .framer-jit5gi > :first-child, .framer-m5ZFc .framer-1dlk0iw > :first-child { margin-top: 0px; } .framer-m5ZFc .framer-ciu7gy > :last-child, .framer-m5ZFc .framer-1u7hdg0 > :last-child, .framer-m5ZFc .framer-12qk2eu > :last-child, .framer-m5ZFc .framer-pro28x > :last-child, .framer-m5ZFc .framer-1e1gu21 > :last-child, .framer-m5ZFc .framer-q7lv3q > :last-child, .framer-m5ZFc .framer-jsc2o4 > :last-child, .framer-m5ZFc .framer-18848fl > :last-child, .framer-m5ZFc .framer-v2gzqj > :last-child, .framer-m5ZFc .framer-jit5gi > :last-child, .framer-m5ZFc .framer-1dlk0iw > :last-child { margin-bottom: 0px; } .framer-m5ZFc .framer-q06z5o > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-m5ZFc .framer-q06z5o > :first-child { margin-left: 0px; } .framer-m5ZFc .framer-q06z5o > :last-child { margin-right: 0px; } .framer-m5ZFc .framer-12qk2eu > *, .framer-m5ZFc .framer-q7lv3q > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-m5ZFc .framer-pro28x > *, .framer-m5ZFc .framer-1e1gu21 > *, .framer-m5ZFc .framer-jsc2o4 > *, .framer-m5ZFc .framer-18848fl > *, .framer-m5ZFc .framer-v2gzqj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-m5ZFc .framer-jit5gi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (max-width: 767px) { .framer-m5ZFc.framer-72rtr7 { width: 390px; } .framer-m5ZFc .framer-1qwdf7d { left: 50%; position: absolute; transform: translateX(-50%); } .framer-m5ZFc .framer-69d8dx, .framer-m5ZFc .framer-1lwb0vu, .framer-m5ZFc .framer-1xepim6, .framer-m5ZFc .framer-76dsxu, .framer-m5ZFc .framer-exhjb, .framer-m5ZFc .framer-1ypxif2, .framer-m5ZFc .framer-151pf5e, .framer-m5ZFc .framer-13y93g7, .framer-m5ZFc .framer-1gyd052, .framer-m5ZFc .framer-cl1wt6 { max-width: unset; } .framer-m5ZFc .framer-2wmkfy { padding: 200px 20px 120px 20px; } .framer-m5ZFc .framer-eme4uh-container, .framer-m5ZFc .framer-f2eoyy-container { height: 38px; } .framer-m5ZFc .framer-17e3210 { height: 100%; top: -3px; } .framer-m5ZFc .framer-ciu7gy { gap: 30px; width: 100%; } .framer-m5ZFc .framer-1lrl6bp, .framer-m5ZFc .framer-1c2wzcz, .framer-m5ZFc .framer-1zway2 { gap: 30px; } .framer-m5ZFc .framer-1qmcy4h { gap: 10px; } .framer-m5ZFc .framer-1dpe4sa { padding: 20px; } .framer-m5ZFc .framer-q06z5o { gap: 25px; } .framer-m5ZFc .framer-2mzc0q { padding: 20px 20px 30px 20px; } .framer-m5ZFc .framer-1u7hdg0 { flex-direction: column; gap: 50px; } .framer-m5ZFc .framer-1yfe8xo-container { order: 0; width: 100%; } .framer-m5ZFc .framer-1sd5b3u { flex: none; gap: 40px; order: 1; width: 100%; } .framer-m5ZFc .framer-1ag0rt3, .framer-m5ZFc .framer-4vxtmr-container, .framer-m5ZFc .framer-e0qmse, .framer-m5ZFc .framer-100vge8, .framer-m5ZFc .framer-b3as8y, .framer-m5ZFc .framer-xr3kw5, .framer-m5ZFc .framer-1vrekvj { width: 100%; } .framer-m5ZFc .framer-4wmgos { padding: 30px 20px 60px 20px; } .framer-m5ZFc .framer-15sf5lh { gap: 78px; } .framer-m5ZFc .framer-12qk2eu { align-content: center; align-items: center; flex-direction: column; gap: 30px; } .framer-m5ZFc .framer-l0nts8 { flex: none; width: 100%; } .framer-m5ZFc .framer-oltzyi { order: 0; } .framer-m5ZFc .framer-1c0nkwy { order: 1; width: 100%; } .framer-m5ZFc .framer-je87us { order: 3; } .framer-m5ZFc .framer-6rg5m0 { order: 2; width: 100%; } .framer-m5ZFc .framer-131hsm5-container { height: var(--framer-aspect-ratio-supported, 73px); } .framer-m5ZFc .framer-11xk9cv { height: var(--framer-aspect-ratio-supported, 249px); } .framer-m5ZFc .framer-11k1gk2 { width: min-content; } .framer-m5ZFc .framer-19v1e8r { flex: none; white-space: pre; width: auto; } .framer-m5ZFc .framer-1ckpr32, .framer-m5ZFc .framer-1q6u35, .framer-m5ZFc .framer-jeqn21, .framer-m5ZFc .framer-1b7sqrg { flex-direction: column; } .framer-m5ZFc .framer-1gnvg6u { flex: none; flex-direction: column; width: 100%; } .framer-m5ZFc .framer-aj9o2 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-m5ZFc .framer-1h48uc1, .framer-m5ZFc .framer-12n7pxe { padding: 60px 20px 30px 20px; } .framer-m5ZFc .framer-pro28x, .framer-m5ZFc .framer-18848fl { flex-direction: column; gap: 25px; } .framer-m5ZFc .framer-1e1gu21, .framer-m5ZFc .framer-v2gzqj { flex: none; gap: 30px; width: 100%; } .framer-m5ZFc .framer-c2dnc2, .framer-m5ZFc .framer-1v6d3rr, .framer-m5ZFc .framer-wfmssx { gap: 20px; } .framer-m5ZFc .framer-1c9nv9r, .framer-m5ZFc .framer-1lrw0l2 { flex: none; gap: 25px; width: 100%; } .framer-m5ZFc .framer-19fwzkm { height: var(--framer-aspect-ratio-supported, 262px); } .framer-m5ZFc .framer-1eauv3p { padding: 20px 15px 20px 15px; } .framer-m5ZFc .framer-11y3g6b, .framer-m5ZFc .framer-1a1n8bh { padding: 60px 20px 0px 20px; } .framer-m5ZFc .framer-q7lv3q { flex-direction: column; gap: 40px; } .framer-m5ZFc .framer-jsc2o4 { gap: 35px; padding: 0px; width: 100%; } .framer-m5ZFc .framer-1sgnce6 { flex: none; height: var(--framer-aspect-ratio-supported, 403px); width: 100%; } .framer-m5ZFc .framer-uuj8fh { height: var(--framer-aspect-ratio-supported, 263px); } .framer-m5ZFc .framer-yxpwfr { align-content: flex-end; align-items: flex-end; padding: 0px; } .framer-m5ZFc .framer-1go2xt9 { align-content: center; align-items: center; flex: 1 0 0px; order: 0; width: 1px; } .framer-m5ZFc .framer-27w1up { align-content: center; align-items: center; } .framer-m5ZFc .framer-ollnzb-container { order: 1; width: 348px; } .framer-m5ZFc .framer-12fcl1p { padding: 30px 20px 30px 20px; } .framer-m5ZFc .framer-jit5gi { gap: 20px; padding: 30px 20px 30px 20px; } .framer-m5ZFc .framer-1dlk0iw { gap: 40px; } .framer-m5ZFc .framer-7ja7a9 { align-content: flex-start; align-items: flex-start; } .framer-m5ZFc .framer-1f927ee { justify-content: flex-start; } .framer-m5ZFc .framer-1ke0fb8 { height: 292px; width: 100%; } .framer-m5ZFc .framer-is37r9 { padding: 0px 10px 0px 10px; } .framer-m5ZFc .framer-5gpr55 { white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-m5ZFc .framer-ciu7gy, .framer-m5ZFc .framer-1lrl6bp, .framer-m5ZFc .framer-1qmcy4h, .framer-m5ZFc .framer-q06z5o, .framer-m5ZFc .framer-1u7hdg0, .framer-m5ZFc .framer-1sd5b3u, .framer-m5ZFc .framer-1c2wzcz, .framer-m5ZFc .framer-1zway2, .framer-m5ZFc .framer-15sf5lh, .framer-m5ZFc .framer-12qk2eu, .framer-m5ZFc .framer-1ckpr32, .framer-m5ZFc .framer-1gnvg6u, .framer-m5ZFc .framer-1q6u35, .framer-m5ZFc .framer-pro28x, .framer-m5ZFc .framer-1e1gu21, .framer-m5ZFc .framer-c2dnc2, .framer-m5ZFc .framer-1c9nv9r, .framer-m5ZFc .framer-q7lv3q, .framer-m5ZFc .framer-jsc2o4, .framer-m5ZFc .framer-1v6d3rr, .framer-m5ZFc .framer-18848fl, .framer-m5ZFc .framer-1lrw0l2, .framer-m5ZFc .framer-v2gzqj, .framer-m5ZFc .framer-wfmssx, .framer-m5ZFc .framer-jeqn21, .framer-m5ZFc .framer-jit5gi, .framer-m5ZFc .framer-1b7sqrg, .framer-m5ZFc .framer-1dlk0iw { gap: 0px; } .framer-m5ZFc .framer-ciu7gy > *, .framer-m5ZFc .framer-1lrl6bp > *, .framer-m5ZFc .framer-1c2wzcz > *, .framer-m5ZFc .framer-12qk2eu > *, .framer-m5ZFc .framer-1e1gu21 > *, .framer-m5ZFc .framer-v2gzqj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-m5ZFc .framer-ciu7gy > :first-child, .framer-m5ZFc .framer-1lrl6bp > :first-child, .framer-m5ZFc .framer-1u7hdg0 > :first-child, .framer-m5ZFc .framer-1sd5b3u > :first-child, .framer-m5ZFc .framer-1c2wzcz > :first-child, .framer-m5ZFc .framer-15sf5lh > :first-child, .framer-m5ZFc .framer-12qk2eu > :first-child, .framer-m5ZFc .framer-1ckpr32 > :first-child, .framer-m5ZFc .framer-1gnvg6u > :first-child, .framer-m5ZFc .framer-1q6u35 > :first-child, .framer-m5ZFc .framer-pro28x > :first-child, .framer-m5ZFc .framer-1e1gu21 > :first-child, .framer-m5ZFc .framer-c2dnc2 > :first-child, .framer-m5ZFc .framer-1c9nv9r > :first-child, .framer-m5ZFc .framer-q7lv3q > :first-child, .framer-m5ZFc .framer-jsc2o4 > :first-child, .framer-m5ZFc .framer-1v6d3rr > :first-child, .framer-m5ZFc .framer-18848fl > :first-child, .framer-m5ZFc .framer-1lrw0l2 > :first-child, .framer-m5ZFc .framer-v2gzqj > :first-child, .framer-m5ZFc .framer-wfmssx > :first-child, .framer-m5ZFc .framer-jeqn21 > :first-child, .framer-m5ZFc .framer-jit5gi > :first-child, .framer-m5ZFc .framer-1b7sqrg > :first-child, .framer-m5ZFc .framer-1dlk0iw > :first-child { margin-top: 0px; } .framer-m5ZFc .framer-ciu7gy > :last-child, .framer-m5ZFc .framer-1lrl6bp > :last-child, .framer-m5ZFc .framer-1u7hdg0 > :last-child, .framer-m5ZFc .framer-1sd5b3u > :last-child, .framer-m5ZFc .framer-1c2wzcz > :last-child, .framer-m5ZFc .framer-15sf5lh > :last-child, .framer-m5ZFc .framer-12qk2eu > :last-child, .framer-m5ZFc .framer-1ckpr32 > :last-child, .framer-m5ZFc .framer-1gnvg6u > :last-child, .framer-m5ZFc .framer-1q6u35 > :last-child, .framer-m5ZFc .framer-pro28x > :last-child, .framer-m5ZFc .framer-1e1gu21 > :last-child, .framer-m5ZFc .framer-c2dnc2 > :last-child, .framer-m5ZFc .framer-1c9nv9r > :last-child, .framer-m5ZFc .framer-q7lv3q > :last-child, .framer-m5ZFc .framer-jsc2o4 > :last-child, .framer-m5ZFc .framer-1v6d3rr > :last-child, .framer-m5ZFc .framer-18848fl > :last-child, .framer-m5ZFc .framer-1lrw0l2 > :last-child, .framer-m5ZFc .framer-v2gzqj > :last-child, .framer-m5ZFc .framer-wfmssx > :last-child, .framer-m5ZFc .framer-jeqn21 > :last-child, .framer-m5ZFc .framer-jit5gi > :last-child, .framer-m5ZFc .framer-1b7sqrg > :last-child, .framer-m5ZFc .framer-1dlk0iw > :last-child { margin-bottom: 0px; } .framer-m5ZFc .framer-1qmcy4h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-m5ZFc .framer-1qmcy4h > :first-child, .framer-m5ZFc .framer-q06z5o > :first-child, .framer-m5ZFc .framer-1zway2 > :first-child { margin-left: 0px; } .framer-m5ZFc .framer-1qmcy4h > :last-child, .framer-m5ZFc .framer-q06z5o > :last-child, .framer-m5ZFc .framer-1zway2 > :last-child { margin-right: 0px; } .framer-m5ZFc .framer-q06z5o > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-m5ZFc .framer-1u7hdg0 > *, .framer-m5ZFc .framer-1q6u35 > *, .framer-m5ZFc .framer-jeqn21 > *, .framer-m5ZFc .framer-1b7sqrg > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-m5ZFc .framer-1sd5b3u > *, .framer-m5ZFc .framer-q7lv3q > *, .framer-m5ZFc .framer-1dlk0iw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-m5ZFc .framer-1zway2 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-m5ZFc .framer-15sf5lh > * { margin: 0px; margin-bottom: calc(78px / 2); margin-top: calc(78px / 2); } .framer-m5ZFc .framer-1ckpr32 > *, .framer-m5ZFc .framer-1gnvg6u > *, .framer-m5ZFc .framer-pro28x > *, .framer-m5ZFc .framer-1c9nv9r > *, .framer-m5ZFc .framer-18848fl > *, .framer-m5ZFc .framer-1lrw0l2 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-m5ZFc .framer-c2dnc2 > *, .framer-m5ZFc .framer-1v6d3rr > *, .framer-m5ZFc .framer-wfmssx > *, .framer-m5ZFc .framer-jit5gi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-m5ZFc .framer-jsc2o4 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10553\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Wh21U2UXq\":{\"layout\":[\"fixed\",\"auto\"]},\"HoEOTLT0R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"BHjaRo029\":{\"pattern\":\":BHjaRo029\",\"name\":\"hero\"},\"mJxMPksP8\":{\"pattern\":\":mJxMPksP8\",\"name\":\"app\"},\"GDNk68rMZ\":{\"pattern\":\":GDNk68rMZ\",\"name\":\"token\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-m5ZFc\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10553,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Kode Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kodemono/v2/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq5my9D-TaOW2A3k.woff2\",weight:\"400\"},{family:\"Kode Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kodemono/v2/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq3619D-TaOW2A3k.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...NavigationNavigationFonts,...TickerFonts,...HelperCounterFonts,...HelperAboutImageGalleryFonts,...DottedSpinnerFonts,...PhosphorFonts,...HelperTestimonial2Fonts,...CardServiceCardFonts,...CopyButtonFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"BHjaRo029\\\":{\\\"pattern\\\":\\\":BHjaRo029\\\",\\\"name\\\":\\\"hero\\\"},\\\"mJxMPksP8\\\":{\\\"pattern\\\":\\\":mJxMPksP8\\\",\\\"name\\\":\\\"app\\\"},\\\"GDNk68rMZ\\\":{\\\"pattern\\\":\\\":GDNk68rMZ\\\",\\\"name\\\":\\\"token\\\"}}\",\"framerIntrinsicHeight\":\"10553\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wh21U2UXq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HoEOTLT0R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "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", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1ls466", "args", "onAppear69bp72", "useOnVariantChange", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "css", "FramerpRVWz2MeW", "withCSS", "pRVWz2MeW_default", "addPropertyControls", "ControlType", "addFonts", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "l", "d", "n", "t", "o", "i", "a", "r", "e", "s", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "d", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "number", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "h1InRlYSG", "NIaNdRBFe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerEm5_G8_lI", "withCSS", "Em5_G8_lI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "ClipboardFonts", "Clipboard", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bG", "bGHover", "clipboardContent", "height", "iconCopied", "iconCopy", "icons", "id", "labelCopied", "labels", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bcOKL_7fc", "bPCJyrIbK", "rIGEnoYqD", "b8ei7OpHv", "wr2g_fjxZ", "PbW7K4Unr", "aCeOAHQBL", "qIDNNRI0q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1svvmtu", "args", "onAppear1oa8e9r", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerpADv1mOO5", "withCSS", "pADv1mOO5_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", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "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", "FramersfQv53soN", "withCSS", "sfQv53soN_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", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerYXzfeRvd2", "withCSS", "YXzfeRvd2_default", "addPropertyControls", "ControlType", "addFonts", "NavigationNavigationFonts", "getFonts", "QkqjwHonb_default", "TickerFonts", "Ticker", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "HelperCounterFonts", "Em5_G8_lI_default", "MotionDivWithFX", "HelperAboutImageGalleryFonts", "YXzfeRvd2_default", "DottedSpinnerFonts", "pRVWz2MeW_default", "ContainerWithFX", "Container", "PhosphorFonts", "Icon", "ImageWithFX", "Image2", "HelperTestimonial2Fonts", "sfQv53soN_default", "CardServiceCardFonts", "xJJsxpcUo_default", "CopyButtonFonts", "pADv1mOO5_default", "EmbedFonts", "Embed", "FooterFonts", "zJv0Dy9JV_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "transition6", "animation9", "transformTemplate1", "_", "t", "transition7", "animation10", "transition8", "animation11", "animation12", "transition9", "animation13", "transition10", "animation14", "transition11", "animation15", "transition12", "animation16", "transition13", "animation17", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation18", "transition14", "animation19", "transformTemplate2", "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", "LIZ1nR2MBbntchpDyx", "H_RNFQ85MbntchpDyx", "jORsBLEQibntchpDyx", "fpMtYReuobntchpDyx", "jhJDFSTEAbntchpDyx", "idbntchpDyx", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "Link", "SVG", "ChildrenCanSuspend", "qWxQK3b2s_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
