{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp-0.js", "ssg:https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp-1.js", "ssg:https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp-2.js", "ssg:https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp-3.js", "ssg:https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp-4.js", "ssg:https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp-5.js", "ssg:https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp.js", "ssg:https://framerusercontent.com/modules/7FXQS46aFRsHIbEM0Vx8/4chr2hsGAhx2JAd6o1Od/fRzE1qXQp.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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 transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",children:\"Vertraut von schnell wachsenden Unternehmen auf der ganzen Welt\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vertraut von schnell wachsenden Unternehmen auf der ganzen Welt\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",children:\"Approuv\\xe9 par des entreprises en forte croissance dans le monde entier\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Approuv\\xe9 par des entreprises en forte croissance dans le monde entier\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",children:\"Vertrouwd door snelgroeiende bedrijven over de hele wereld\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vertrouwd door snelgroeiende bedrijven over de hele wereld\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",children:\"Confiado por empresas em r\\xe1pido crescimento em todo o mundo\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Confiado por empresas em r\\xe1pido crescimento em todo o mundo\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",children:\"Confiado por empresas de r\\xe1pido crecimiento en todo el mundo\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Confiado por empresas de r\\xe1pido crecimiento en todo el mundo\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",children:\"Fidato da aziende in rapida crescita in tutto il mondo\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fidato da aziende in rapida crescita in tutto il mondo\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (bf2ee14)\nimport*as localizedValues from\"./fRzE1qXQp-0.js\";import*as localizedValues1 from\"./fRzE1qXQp-1.js\";import*as localizedValues2 from\"./fRzE1qXQp-2.js\";import*as localizedValues3 from\"./fRzE1qXQp-3.js\";import*as localizedValues4 from\"./fRzE1qXQp-4.js\";import*as localizedValues5 from\"./fRzE1qXQp-5.js\";const valuesByLocaleId={bWB3kXRsq:localizedValues2,LAdvwq8nQ:localizedValues4,mlNlCc3zS:localizedValues1,pihpXz103:localizedValues,qZNrsgFtw:localizedValues3,W_zT6RgJe:localizedValues5};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/UdVlTgpocFoKYdSxUwSw/ZvGZFZdlKmSSal6KaW66/QWu52BRlL.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/gxRkc6Kii4fRLSAOmhoU/KKgLPzDjCS5RiXWHV7hu/fRzE1qXQp.js\";import HorizontalPadding from\"https://framerusercontent.com/modules/aHbs9xcKgy7P5w1yEqAf/RQ6y4mVWgjem91vOwf6V/e4rm8wySI.js\";import VerticalPadding from\"https://framerusercontent.com/modules/1g9swm1ukqWLPi0a0v9o/lNHo1ZXPana6hv0AfDAA/h6qrDNqge.js\";const HorizontalPaddingFonts=getFonts(HorizontalPadding);const VerticalPaddingFonts=getFonts(VerticalPadding);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"wT9jPVmSl\",\"wWjXn7F32\",\"MlPN9X606\"];const serializationHash=\"framer-uCzAc\";const variantClassNames={MlPN9X606:\"framer-v-19pdiri\",wT9jPVmSl:\"framer-v-1x7e6je\",wWjXn7F32:\"framer-v-1r7qjfz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"wT9jPVmSl\",Phone:\"MlPN9X606\",Tablet:\"wWjXn7F32\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wT9jPVmSl\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wT9jPVmSl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1x7e6je\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"wT9jPVmSl\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1707e66c-e139-40d8-8020-8176f47ee22b, rgb(225, 226, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({MlPN9X606:{\"data-framer-name\":\"Phone\"},wWjXn7F32:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fsyfgp\",\"data-framer-name\":\"Padding Horizontal Wrapper\",layoutDependency:layoutDependency,layoutId:\"YEgAiNsR_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:361,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-361)/2+0+0)+0,...addPropertyOverrides({MlPN9X606:{height:433,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-433)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9n5zzc-container\",layoutDependency:layoutDependency,layoutId:\"K32L2K8fd-container\",nodeId:\"K32L2K8fd\",rendersWithMotion:true,scopeId:\"fRzE1qXQp\",children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"K32L2K8fd\",layoutId:\"K32L2K8fd\",style:{height:\"100%\"},variant:\"UodEMSDqs\",wb4qzJX7V:true,width:\"100%\",...addPropertyOverrides({MlPN9X606:{variant:\"ZRArz_2Fh\"},wWjXn7F32:{variant:\"JEVLLtvuN\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wu9mz7\",\"data-framer-name\":\"Padding Vertical Wrapper\",layoutDependency:layoutDependency,layoutId:\"bpkeiWRkf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-361)/2+0+0)+0+0+0,...addPropertyOverrides({MlPN9X606:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-433)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y8gexs-container\",layoutDependency:layoutDependency,layoutId:\"jnGAtNLtW-container\",nodeId:\"jnGAtNLtW\",rendersWithMotion:true,scopeId:\"fRzE1qXQp\",children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"jnGAtNLtW\",layoutId:\"jnGAtNLtW\",style:{width:\"100%\"},variant:\"Lq0iaC6vw\",VLJ7OkvVi:true,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3mjl56\",\"data-framer-name\":\"Container Large\",layoutDependency:layoutDependency,layoutId:\"Gm1aMaRpz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",children:\"Trusted by fast-growing companies around the world\"})}),className:\"framer-re95um\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p01qx2eyU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MlPN9X606:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzjo4o\",\"data-styles-preset\":\"QWu52BRlL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by fast-growing companies around the world\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1230uqv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YFgYDlT9d-container\",nodeId:\"YFgYDlT9d\",rendersWithMotion:true,scopeId:\"fRzE1qXQp\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:8,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"YFgYDlT9d\",layoutId:\"YFgYDlT9d\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ebitot\",\"data-framer-name\":\"SevenSevenSix\",layoutDependency:layoutDependency,layoutId:\"X_xzeIt_Z\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17xlhqw\",\"data-framer-name\":\"776\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:152,layoutDependency:layoutDependency,layoutId:\"VfzUOsgZx\",svg:'<svg width=\"152\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#343434\"><path d=\"m48.525.117-7.736 4.456v8.913l7.736 4.456 7.735-4.457V4.573L48.525.117Zm-19.032 0-6.984 3.358-1.724 7.541 4.834 6.046h7.747l4.834-6.045-1.723-7.542L29.493.117Zm-19.778 0L2.731 3.475l-1.723 7.541 4.833 6.046h7.748l4.834-6.045-1.724-7.542L9.715.117ZM63.328 10.69h2.217c.1.894.685 1.267 1.744 1.267.722 0 1.432-.26 1.432-.932 0-.708-.722-.857-1.943-1.156-1.544-.36-3.176-.833-3.176-2.697 0-1.902 1.545-2.734 3.537-2.734 1.93 0 3.425.87 3.513 2.734h-2.155c-.087-.684-.61-1.069-1.432-1.069-.773 0-1.283.336-1.283.833 0 .621.685.77 2.017 1.069 1.657.385 3.152.895 3.152 2.796 0 1.865-1.595 2.897-3.65 2.897-2.366 0-3.923-1.045-3.973-3.008ZM75.92 9.62c-.075-.758-.549-1.243-1.209-1.243-.772 0-1.17.485-1.307 1.243h2.515Zm-4.522.671c0-1.901 1.333-3.355 3.276-3.355.91 0 1.632.298 2.18.795.76.696 1.133 1.802 1.12 3.095h-4.583c.125.858.598 1.392 1.432 1.392.536 0 .885-.236 1.059-.634h1.98c-.136.572-.51 1.119-1.07 1.504-.536.373-1.184.584-1.993.584-2.106 0-3.4-1.454-3.4-3.38Zm6.332-3.17h2.093l.872 2.871c.186.634.349 1.28.349 1.28h.024s.162-.646.35-1.28l.883-2.87h2.03l-2.204 6.363h-2.192L77.73 7.121ZM88.591 9.62c-.074-.758-.547-1.243-1.208-1.243-.772 0-1.17.485-1.308 1.243h2.516Zm-4.52.671c0-1.901 1.332-3.355 3.275-3.355.91 0 1.632.298 2.18.795.76.696 1.133 1.802 1.12 3.095h-4.583c.125.858.598 1.392 1.432 1.392.536 0 .885-.236 1.059-.634h1.98c-.137.572-.51 1.119-1.07 1.504-.536.373-1.184.584-1.993.584-2.106 0-3.4-1.454-3.4-3.38Zm7.163-3.169h1.956v.87h.037c.474-.683 1.084-1.056 1.968-1.056 1.395 0 2.217.994 2.217 2.41v4.14h-2.03V9.757c0-.671-.336-1.13-.997-1.13-.672 0-1.12.558-1.12 1.341v3.518h-2.03V7.122Zm7.571 3.568h2.217c.1.894.685 1.267 1.743 1.267.722 0 1.433-.26 1.433-.932 0-.708-.723-.857-1.943-1.156-1.544-.36-3.176-.833-3.176-2.697 0-1.902 1.544-2.734 3.537-2.734 1.931 0 3.425.87 3.512 2.734h-2.155c-.087-.684-.61-1.069-1.432-1.069-.772 0-1.283.336-1.283.833 0 .621.685.77 2.018 1.069 1.657.385 3.152.895 3.152 2.796 0 1.865-1.595 2.897-3.65 2.897-2.366 0-3.923-1.045-3.973-3.008Zm12.591-1.07c-.075-.758-.548-1.243-1.209-1.243-.772 0-1.171.485-1.307 1.243h2.516Zm-4.521.671c0-1.901 1.332-3.355 3.275-3.355.91 0 1.632.298 2.18.795.76.696 1.133 1.802 1.121 3.095h-4.583c.124.858.597 1.392 1.431 1.392.537 0 .885-.236 1.06-.634h1.98c-.138.572-.511 1.119-1.071 1.504-.535.373-1.184.584-1.993.584-2.105 0-3.4-1.454-3.4-3.38Zm6.332-3.17h2.093l.872 2.871c.186.634.348 1.28.348 1.28h.025s.162-.646.349-1.28l.884-2.87h2.03l-2.204 6.363h-2.192l-2.205-6.364Zm10.861 2.499c-.075-.758-.548-1.243-1.208-1.243-.773 0-1.171.485-1.308 1.243h2.516Zm-4.521.671c0-1.901 1.332-3.355 3.276-3.355.909 0 1.631.298 2.179.795.76.696 1.134 1.802 1.121 3.095h-4.583c.124.858.598 1.392 1.432 1.392.535 0 .884-.236 1.059-.634h1.979c-.136.572-.51 1.119-1.07 1.504-.536.373-1.184.584-1.993.584-2.105 0-3.4-1.454-3.4-3.38Zm7.164-3.169h1.955v.87h.038c.474-.683 1.084-1.056 1.968-1.056 1.394 0 2.217.994 2.217 2.41v4.14h-2.031V9.757c0-.671-.336-1.13-.996-1.13-.672 0-1.121.558-1.121 1.341v3.518h-2.03V7.122Zm7.566 3.568h2.217c.1.894.685 1.267 1.745 1.267.722 0 1.432-.26 1.432-.932 0-.708-.723-.857-1.943-1.156-1.545-.36-3.176-.833-3.176-2.697 0-1.902 1.544-2.734 3.537-2.734 1.931 0 3.425.87 3.512 2.734h-2.155c-.087-.684-.61-1.069-1.431-1.069-.773 0-1.284.336-1.284.833 0 .621.686.77 2.018 1.069 1.657.385 3.151.895 3.151 2.796 0 1.865-1.594 2.897-3.649 2.897-2.367 0-3.923-1.045-3.974-3.008Zm8.203-3.57h2.031v6.365h-2.031V7.12Zm0-2.522h2.031v1.64h-2.031v-1.64Zm4.722 5.544-2.006-3.02h2.317l.946 1.64h.025l.897-1.64h2.13l-1.893 2.995 2.167 3.368h-2.354l-1.047-1.902h-.024l-1.158 1.902h-2.218l2.218-3.343Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.969 .049)\" d=\"M0 0h150.892v17.902H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n58wgc\",\"data-framer-name\":\"Deel\",layoutDependency:layoutDependency,layoutId:\"h76phQhr2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1580rlx\",\"data-framer-name\":\"Deel\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"WGGz4aA9F\",svg:'<svg width=\"60\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#343434\"><path d=\"M48.829 20.83a.155.155 0 0 1-.155-.154V1.97c0-.073.051-.137.123-.152l3.267-.675a.155.155 0 0 1 .187.152v19.38c0 .085-.07.155-.155.155h-3.267Zm-41.035.397c-1.305 0-2.47-.317-3.494-.95-1.025-.634-1.835-1.5-2.431-2.6-.597-1.099-.895-2.347-.895-3.744 0-1.398.298-2.637.895-3.717.596-1.1 1.406-1.957 2.431-2.572 1.025-.633 2.19-.95 3.494-.95 1.043 0 1.956.196 2.738.587.629.314 1.161.73 1.598 1.25.098.116.303.05.303-.103V1.635c0-.073.052-.137.124-.152l3.266-.675a.155.155 0 0 1 .187.152v19.776c0 .086-.07.155-.155.155h-2.903a.155.155 0 0 1-.153-.125l-.297-1.51c-.027-.133-.2-.172-.288-.068a6.5 6.5 0 0 1-1.57 1.34c-.726.466-1.677.699-2.85.699Zm.754-3.13c1.155 0 2.096-.382 2.823-1.146.745-.783 1.118-1.78 1.118-2.99 0-1.212-.373-2.199-1.118-2.963-.727-.782-1.668-1.174-2.823-1.174-1.136 0-2.077.382-2.823 1.146-.745.764-1.117 1.752-1.117 2.963 0 1.21.372 2.207 1.117 2.99.746.783 1.687 1.174 2.823 1.174Zm16.183 3.133c-1.397 0-2.636-.298-3.717-.894a6.473 6.473 0 0 1-2.543-2.516c-.615-1.08-.922-2.329-.922-3.745 0-1.434.298-2.71.894-3.828.615-1.118 1.453-1.985 2.515-2.6 1.08-.633 2.348-.95 3.801-.95 1.36 0 2.562.298 3.605.895a6.295 6.295 0 0 1 2.432 2.459c.596 1.025.894 2.17.894 3.438 0 .204-.01.419-.028.642 0 .18-.006.364-.018.556a.154.154 0 0 1-.154.143H21.264a.152.152 0 0 0-.152.166c.1 1.002.468 1.794 1.104 2.377.69.615 1.518.922 2.487.922.727 0 1.332-.158 1.817-.475a3.1 3.1 0 0 0 1.074-1.196.16.16 0 0 1 .143-.09h3.326c.103 0 .178.1.145.2a6.638 6.638 0 0 1-1.25 2.204 6.315 6.315 0 0 1-2.237 1.677c-.875.41-1.872.615-2.99.615Zm.028-11.626c-.876 0-1.649.251-2.32.754-.63.455-1.045 1.14-1.248 2.053a.151.151 0 0 0 .15.183h6.55a.15.15 0 0 0 .153-.164c-.085-.836-.416-1.508-.993-2.016-.615-.54-1.38-.81-2.292-.81ZM40.294 21.23c-1.398 0-2.637-.298-3.717-.894a6.473 6.473 0 0 1-2.544-2.516c-.614-1.08-.922-2.329-.922-3.745 0-1.434.298-2.71.894-3.828.615-1.118 1.454-1.985 2.516-2.6 1.08-.633 2.347-.95 3.8-.95 1.36 0 2.562.298 3.606.895a6.295 6.295 0 0 1 2.431 2.459c.596 1.025.895 2.17.895 3.438 0 .204-.01.419-.029.642 0 .18-.005.364-.017.556a.154.154 0 0 1-.154.143H36.827a.152.152 0 0 0-.153.166c.1 1.002.468 1.794 1.104 2.377.69.615 1.519.922 2.488.922.726 0 1.332-.158 1.816-.475a3.1 3.1 0 0 0 1.075-1.196.16.16 0 0 1 .142-.09h3.326c.104 0 .178.1.146.2a6.638 6.638 0 0 1-1.251 2.204 6.314 6.314 0 0 1-2.236 1.677c-.876.41-1.873.615-2.99.615Zm.028-11.626c-.876 0-1.65.251-2.32.754-.63.455-1.046 1.14-1.248 2.053a.151.151 0 0 0 .149.183h6.551a.15.15 0 0 0 .152-.164c-.084-.836-.415-1.508-.993-2.016-.615-.54-1.379-.81-2.291-.81Zm16.616 11.232a2.408 2.408 0 1 0 0-4.816 2.408 2.408 0 0 0 0 4.816Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.974 .77)\" d=\"M0 0h58.822v20.46H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11171ag\",\"data-framer-name\":\"Coinbase\",layoutDependency:layoutDependency,layoutId:\"AS2CFCx9e\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-45dlt1\",\"data-framer-name\":\"Coinbase\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gGPcr3x5n\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 21\"><path d=\"M 23.846 6.007 C 19.69 6.007 16.442 9.144 16.442 13.345 C 16.442 17.545 19.608 20.656 23.846 20.656 C 28.084 20.656 31.304 17.492 31.304 13.318 C 31.304 9.171 28.139 6.007 23.846 6.007 Z M 23.874 17.629 C 21.507 17.629 19.773 15.801 19.773 13.346 C 19.773 10.863 21.479 9.036 23.846 9.036 C 26.24 9.036 27.974 10.891 27.974 13.346 C 27.974 15.801 26.24 17.629 23.874 17.629 Z M 32.212 9.199 L 34.276 9.199 L 34.276 20.384 L 37.579 20.384 L 37.579 6.279 L 32.212 6.279 Z M 8.131 9.035 C 9.866 9.035 11.242 10.099 11.764 11.681 L 15.26 11.681 C 14.626 8.299 11.819 6.007 8.159 6.007 C 4.003 6.007 0.756 9.144 0.756 13.346 C 0.756 17.547 3.921 20.657 8.159 20.657 C 11.737 20.657 14.599 18.365 15.233 14.955 L 11.764 14.955 C 11.269 16.537 9.893 17.629 8.158 17.629 C 5.764 17.629 4.086 15.801 4.086 13.346 C 4.087 10.863 5.738 9.035 8.131 9.035 Z M 94.959 11.982 L 92.537 11.627 C 91.381 11.464 90.556 11.082 90.556 10.181 C 90.556 9.199 91.629 8.709 93.087 8.709 C 94.684 8.709 95.702 9.39 95.923 10.509 L 99.115 10.509 C 98.757 7.672 96.555 6.008 93.171 6.008 C 89.675 6.008 87.363 7.781 87.363 10.291 C 87.363 12.691 88.878 14.083 91.932 14.519 L 94.353 14.873 C 95.537 15.037 96.198 15.501 96.198 16.374 C 96.198 17.493 95.042 17.956 93.446 17.956 C 91.491 17.956 90.391 17.165 90.226 15.965 L 86.978 15.965 C 87.281 18.721 89.455 20.657 93.418 20.657 C 97.023 20.657 99.417 19.02 99.417 16.21 C 99.417 13.7 97.684 12.391 94.959 11.982 Z M 35.927 0.469 C 34.717 0.469 33.808 1.341 33.808 2.542 C 33.808 3.742 34.716 4.614 35.927 4.614 C 37.138 4.614 38.047 3.742 38.047 2.542 C 38.047 1.341 37.138 0.469 35.927 0.469 Z M 84.391 11.109 C 84.391 8.054 82.52 6.008 78.557 6.008 C 74.814 6.008 72.723 7.891 72.31 10.782 L 75.585 10.782 C 75.75 9.664 76.631 8.736 78.502 8.736 C 80.181 8.736 81.007 9.473 81.007 10.373 C 81.007 11.547 79.493 11.846 77.621 12.037 C 75.09 12.31 71.952 13.183 71.952 16.457 C 71.952 18.994 73.852 20.63 76.879 20.63 C 79.246 20.63 80.732 19.648 81.475 18.093 C 81.585 19.484 82.631 20.384 84.09 20.384 L 86.017 20.384 L 86.017 17.466 L 84.392 17.466 L 84.392 11.109 Z M 81.144 14.655 C 81.144 16.538 79.493 17.929 77.483 17.929 C 76.244 17.929 75.199 17.411 75.199 16.32 C 75.199 14.929 76.878 14.547 78.419 14.384 C 79.905 14.248 80.731 13.92 81.144 13.292 Z M 63.613 6.007 C 61.769 6.007 60.228 6.771 59.127 8.053 L 59.127 0.332 L 55.825 0.332 L 55.825 20.384 L 59.072 20.384 L 59.072 18.53 C 60.173 19.866 61.742 20.657 63.613 20.657 C 67.576 20.657 70.576 17.547 70.576 13.346 C 70.576 9.144 67.521 6.007 63.613 6.007 Z M 63.118 17.629 C 60.751 17.629 59.017 15.801 59.017 13.346 C 59.017 10.891 60.778 9.036 63.145 9.036 C 65.54 9.036 67.218 10.864 67.218 13.346 C 67.218 15.801 65.485 17.629 63.118 17.629 Z M 47.926 6.007 C 45.78 6.007 44.375 6.879 43.55 8.107 L 43.55 6.279 L 40.275 6.279 L 40.275 20.383 L 43.577 20.383 L 43.577 12.718 C 43.577 10.562 44.953 9.035 46.989 9.035 C 48.889 9.035 50.072 10.371 50.072 12.309 L 50.072 20.384 L 53.374 20.384 L 53.374 12.064 C 53.375 8.516 51.532 6.007 47.926 6.007 Z M 115.159 12.882 C 115.159 8.845 112.187 6.008 108.196 6.008 C 103.958 6.008 100.848 9.172 100.848 13.346 C 100.848 17.738 104.178 20.657 108.251 20.657 C 111.692 20.657 114.389 18.638 115.076 15.774 L 111.636 15.774 C 111.14 17.029 109.93 17.738 108.305 17.738 C 106.186 17.738 104.59 16.429 104.232 14.137 L 115.158 14.137 L 115.158 12.882 Z M 104.426 11.79 C 104.949 9.826 106.435 8.872 108.141 8.872 C 110.013 8.872 111.444 9.936 111.774 11.79 Z\" fill=\"rgb(52,52,52)\"></path></svg>',svgContentId:11922352399,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x9761j\",\"data-framer-name\":\"Vercel\",layoutDependency:layoutDependency,layoutId:\"UK8XgQw7z\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bm3i4y\",\"data-framer-name\":\"Vercel\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:98,layoutDependency:layoutDependency,layoutId:\"XnSF7qRWb\",svg:'<svg width=\"98\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M49.224 6.599c-3.711 0-6.388 2.43-6.388 6.077 0 3.646 3.01 6.077 6.725 6.077 2.242 0 4.219-.892 5.443-2.394l-2.572-1.492c-.68.746-1.712 1.181-2.871 1.181-1.611 0-2.98-.844-3.487-2.194h9.42c.075-.378.118-.77.118-1.182 0-3.642-2.672-6.073-6.388-6.073Zm-3.177 4.895c.42-1.347 1.57-2.194 3.177-2.194 1.61 0 2.76.847 3.178 2.194h-6.355Zm-.76-8.609L35.971 19.09 26.65 2.885h3.493l5.824 10.128L41.79 2.885h3.496Zm-31.49-1.688 12.424 21.607H1.375L13.798 1.197Zm55.331 11.479c0 2.025 1.318 3.376 3.362 3.376 1.385 0 2.424-.632 2.959-1.661l2.582 1.495c-1.07 1.79-3.073 2.867-5.54 2.867-3.716 0-6.389-2.431-6.389-6.077s2.676-6.077 6.388-6.077c2.468 0 4.468 1.077 5.54 2.866l-2.581 1.496C74.914 9.93 73.875 9.3 72.49 9.3c-2.04 0-3.362 1.35-3.362 3.376Zm27.73-9.79v15.529h-3.025V2.885h3.026Zm-11.43 3.713c-3.712 0-6.388 2.43-6.388 6.077 0 3.646 3.012 6.077 6.724 6.077 2.242 0 4.22-.892 5.443-2.394l-2.572-1.492c-.68.746-1.711 1.181-2.871 1.181-1.61 0-2.98-.844-3.487-2.194h9.42c.075-.378.118-.77.118-1.182 0-3.642-2.672-6.073-6.388-6.073Zm-3.178 4.895c.42-1.347 1.567-2.194 3.177-2.194s2.76.847 3.178 2.194H82.25ZM65.093 6.936v3.272a3.818 3.818 0 0 0-1.075-.166c-1.954 0-3.362 1.35-3.362 3.376v4.997H57.63V6.936h3.026v3.106c0-1.715 1.986-3.106 4.437-3.106Z\" fill=\"#343434\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u4boti\",\"data-framer-name\":\"Supabase\",layoutDependency:layoutDependency,layoutId:\"Rt3zofBXQ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jes0lj\",\"data-framer-name\":\"Supabase\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:92,layoutDependency:layoutDependency,layoutId:\"Ho5hE272b\",svg:'<svg width=\"92\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#343434\"><path d=\"M22.47 13.474c.09.905.92 2.445 3.29 2.445 2.068 0 3.064-1.313 3.064-2.596 0-1.162-.785-2.098-2.34-2.43l-1.116-.242c-.438-.075-.725-.316-.725-.709 0-.453.453-.785 1.011-.785.906 0 1.238.589 1.298 1.057l1.781-.408c-.09-.845-.845-2.279-3.094-2.279-1.705 0-2.958 1.178-2.958 2.581 0 1.102.694 2.022 2.219 2.354l1.041.242c.604.136.845.423.845.77 0 .422-.332.784-1.041.784-.936 0-1.389-.573-1.449-1.207l-1.826.423Zm13.175 2.203h2.038c-.03-.271-.075-.815-.075-1.434V7.77H35.48v4.588c0 .92-.544 1.554-1.495 1.554-.996 0-1.449-.709-1.449-1.584V7.769h-2.143v4.995c0 1.72 1.087 3.11 3.004 3.11.83 0 1.75-.318 2.188-1.057-.015.332.015.694.06.86Zm6.37 3.049v-3.818c.392.528 1.192.965 2.278.965 2.234 0 3.728-1.765 3.728-4.165 0-2.34-1.328-4.105-3.637-4.105-1.192 0-2.068.528-2.43 1.147v-.966h-2.068v10.942h2.128Zm3.893-7.003c0 1.419-.86 2.234-1.962 2.234-1.086 0-1.977-.83-1.977-2.234s.875-2.219 1.977-2.219c1.087 0 1.962.815 1.962 2.219Zm3.306 1.796c0 1.238 1.026 2.384 2.716 2.384 1.177 0 1.932-.543 2.324-1.177 0 .302.03.74.076.951h1.962a9.318 9.318 0 0 1-.09-1.252V10.53c0-1.585-.936-3.004-3.427-3.004-2.113 0-3.26 1.359-3.38 2.596l1.886.408c.06-.695.574-1.283 1.51-1.283.905 0 1.327.468 1.327 1.026 0 .272-.15.498-.588.559l-1.947.286c-1.328.197-2.37.981-2.37 2.4Zm3.169.785c-.694 0-1.026-.453-1.026-.92 0-.604.437-.921.98-.997l1.781-.272v.348c-.015 1.418-.845 1.84-1.735 1.84Zm8.029 1.373v-.966c.422.68 1.253 1.162 2.34 1.162 2.248 0 3.727-1.78 3.727-4.18 0-2.34-1.328-4.135-3.637-4.135-1.177 0-2.038.513-2.385 1.071V4.041H58.36v11.621l2.053.015Zm3.939-3.97c0 1.45-.86 2.25-1.962 2.25-1.072 0-1.977-.815-1.977-2.25 0-1.448.905-2.233 1.977-2.233 1.087 0 1.962.785 1.962 2.234Zm3.335 1.812c0 1.238 1.027 2.384 2.717 2.384 1.177 0 1.932-.543 2.324-1.177 0 .302.03.74.076.951h1.962a9.317 9.317 0 0 1-.09-1.252V10.53c0-1.585-.937-3.004-3.427-3.004-2.113 0-3.26 1.359-3.38 2.596l1.886.408c.06-.695.574-1.283 1.51-1.283.905 0 1.327.468 1.327 1.026 0 .272-.15.498-.588.559l-1.947.286c-1.328.197-2.37.981-2.37 2.4Zm3.155.785c-.695 0-1.026-.453-1.026-.92 0-.604.437-.921.98-.997l1.781-.272v.348c0 1.418-.83 1.84-1.735 1.84Zm5.297-.83c.09.905.92 2.445 3.29 2.445 2.068 0 3.064-1.313 3.064-2.596 0-1.162-.785-2.098-2.34-2.43l-1.116-.242c-.438-.075-.725-.316-.725-.709 0-.453.453-.785 1.011-.785.906 0 1.238.589 1.299 1.057l1.78-.408c-.09-.845-.845-2.279-3.094-2.279-1.705 0-2.958 1.178-2.958 2.581 0 1.102.695 2.022 2.219 2.354l1.041.242c.604.136.846.423.846.77 0 .422-.333.784-1.042.784-.936 0-1.388-.573-1.449-1.207l-1.826.423Zm9.599-2.657c.045-.724.663-1.554 1.766-1.554 1.222 0 1.735.77 1.765 1.554h-3.531Zm3.743 2.068c-.257.71-.8 1.207-1.797 1.207-1.056 0-1.946-.754-1.992-1.796h5.645c0-.03.03-.347.03-.664 0-2.535-1.463-4.09-3.894-4.09-2.022 0-3.878 1.645-3.878 4.166 0 2.671 1.901 4.226 4.074 4.226 1.947 0 3.2-1.147 3.593-2.506l-1.781-.543Zm-87.821.151a.844.844 0 0 1-.68-1.343l.318-.453 7.32-9.885a.336.336 0 0 1 .256-.136.31.31 0 0 1 .317.317V13.02l-7.531.015Zm15.092-4.27a.844.844 0 0 1 .68 1.343l-.318.453-7.32 9.885a.336.336 0 0 1-.256.136.31.31 0 0 1-.317-.317v-11.5h7.531Z\"/><path d=\"M16.751 8.766a.844.844 0 0 1 .68 1.343l-.318.453-7.32 9.885a.336.336 0 0 1-.256.136.31.31 0 0 1-.317-.317v-11.5h7.531Z\" fill-opacity=\".2\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.591 .77)\" d=\"M0 0h91.217v20.46H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dtqe6c\",\"data-framer-name\":\"Raycast\",layoutDependency:layoutDependency,layoutId:\"oxtXlnb1i\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-46pj0c\",\"data-framer-name\":\"Raycast\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:94,layoutDependency:layoutDependency,layoutId:\"EVBXZiCzl\",svg:'<svg width=\"94\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"93\" height=\"24\"><path d=\"M.02 0h92.622v24H.022V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\" fill=\"#343434\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.02 15.49v2.504l-6-6 1.252-1.25L6.02 15.49Zm2.505 2.504H6.02l6 6 1.25-1.25-4.746-4.75Zm14.24-4.747 1.252-1.253-12-12-1.25 1.256 4.748 4.747h-2.869L9.333 2.69 8.082 3.941l2.06 2.061h-1.44v9.314h9.313v-1.44l2.061 2.06 1.252-1.25-3.313-3.314v-2.87l4.75 4.745ZM6.647 5.373 5.39 6.626 6.735 7.97l1.252-1.252-1.34-1.344ZM17.302 16.03l-1.252 1.253 1.343 1.344 1.253-1.253-1.344-1.344ZM3.96 8.06 2.707 9.314l3.314 3.312V10.12L3.96 8.06ZM13.9 18h-2.505l3.313 3.314 1.252-1.253L13.9 18Z\"/><path d=\"M91.007 17.979c-.809 0-1.439-.22-1.89-.659-.452-.44-.678-1.049-.678-1.825v-4.8h-1.45V8.898h1.458l.26-2.4h1.707v2.4h2.227v1.8h-2.227v4.538a.95.95 0 0 0 .256.667.88.88 0 0 0 .68.278h1.29v1.799l-1.633-.001Zm-8.719.17c-1.077 0-1.944-.257-2.6-.77a3.45 3.45 0 0 1-1.259-2.049h2.143c.093.312.301.577.582.742.344.199.737.296 1.134.28 1.143 0 1.717-.32 1.717-.937 0-.308-.18-.543-.539-.706a5.996 5.996 0 0 0-1.302-.389 16.02 16.02 0 0 1-1.538-.376 2.67 2.67 0 0 1-1.314-.875c-.356-.427-.535-.987-.537-1.681a2.38 2.38 0 0 1 .905-1.903c.606-.505 1.446-.758 2.52-.757 1.074 0 1.92.24 2.56.719a3.22 3.22 0 0 1 1.215 1.94H83.83c-.228-.571-.77-.857-1.624-.857-.916 0-1.373.287-1.373.86a.739.739 0 0 0 .386.64c.293.18.62.296.96.345.427.073.847.17 1.26.291.43.123.85.273 1.26.451.4.181.737.475.971.845.272.435.407.942.39 1.455a2.4 2.4 0 0 1-.96 1.974c-.64.504-1.577.757-2.81.758ZM75.9 9.635c-.66-.593-1.585-.89-2.773-.89-.95 0-1.745.255-2.386.766a3.6 3.6 0 0 0-1.28 1.979h2.026c.103-.297.3-.553.56-.728a1.8 1.8 0 0 1 1.072-.303 1.92 1.92 0 0 1 1.317.427 1.51 1.51 0 0 1 .48 1.197v.436h-2.31c-1.07 0-1.909.267-2.514.8a2.589 2.589 0 0 0-.907 2.019 2.66 2.66 0 0 0 .844 2.033c.564.533 1.31.8 2.24.8a3.4 3.4 0 0 0 1.658-.385c.411-.2.76-.51 1.005-.896h.083l.16 1.12h1.715v-5.92c.002-1.04-.328-1.858-.99-2.455Zm-.975 4.852a1.828 1.828 0 0 1-.6 1.44c-.396.353-.939.53-1.627.53-.5 0-.883-.113-1.149-.34a1.08 1.08 0 0 1-.4-.866c0-.8.523-1.197 1.55-1.197h2.226v.433Zm-10.884 3.682c-1.3 0-2.339-.417-3.117-1.252-.777-.833-1.166-1.987-1.168-3.462 0-1.476.39-2.624 1.164-3.46.775-.834 1.815-1.25 3.121-1.25 1.06 0 1.94.283 2.637.849a4 4 0 0 1 1.39 2.147h-1.966a2.2 2.2 0 0 0-2.06-1.197 2.079 2.079 0 0 0-1.683.76c-.426.51-.64 1.226-.64 2.15 0 .925.214 1.643.64 2.153a2.08 2.08 0 0 0 1.682.763 2.21 2.21 0 0 0 2.06-1.2h1.966a4.03 4.03 0 0 1-1.39 2.15c-.694.565-1.572.849-2.636.849Zm-11.59 3.262 1.37-3.43-3.683-9.082h2.143l2.486 6.427h.082l2.49-6.427h2.142l-4.975 12.512H52.45ZM48.286 9.635c-.66-.593-1.584-.89-2.774-.89-.948 0-1.744.255-2.386.766a3.57 3.57 0 0 0-1.27 1.979h2.024c.103-.297.3-.553.56-.728a1.8 1.8 0 0 1 1.072-.303c.557 0 .996.142 1.316.427a1.499 1.499 0 0 1 .48 1.197v.436h-2.32c-1.066 0-1.904.267-2.513.8a2.59 2.59 0 0 0-.909 2.019 2.66 2.66 0 0 0 .845 2.025c.564.533 1.31.8 2.24.8a3.4 3.4 0 0 0 1.656-.385c.412-.2.76-.51 1.006-.896h.082l.17 1.12h1.712v-5.92c0-1.035-.33-1.85-.99-2.447m-.978 4.852a1.828 1.828 0 0 1-.6 1.44c-.396.353-.939.53-1.628.53-.5 0-.884-.113-1.15-.34a1.09 1.09 0 0 1-.4-.866c.007-.796.524-1.195 1.55-1.197h2.228v.433Zm-10.138-1.032c.307-.081.6-.197.88-.346.327-.179.63-.392.91-.64.335-.31.594-.693.756-1.12.194-.502.29-1.036.283-1.574 0-1.143-.364-2.058-1.094-2.746-.73-.688-1.68-1.03-2.848-1.027h-4.972v12h2.143v-4.454h1.625l3.088 4.451h2.4l-3.17-4.544Zm-3.942-1.806v-3.76h2.654c.608 0 1.088.16 1.44.494.352.335.531.792.531 1.386 0 .595-.178 1.058-.534 1.389-.392.34-.9.517-1.42.491h-2.67Z\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.02)\" d=\"M0 0h93v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zrw2by\",\"data-framer-name\":\"Framer\",layoutDependency:layoutDependency,layoutId:\"uRvxmM2V6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kw3g3d\",\"data-framer-name\":\"Framer\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"drJ_kZ2MJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 23\"><path d=\"M 0.265 0.567 L 14.476 0.567 L 14.476 7.74 L 7.371 7.74 Z M 0.265 7.74 L 7.371 7.74 L 14.476 14.914 L 0.265 14.914 Z M 0.265 14.914 L 7.371 14.914 L 7.371 22.087 Z M 22.495 6.226 L 28.24 6.226 L 28.24 8.068 L 24.67 8.068 L 24.67 10.629 L 28.24 10.629 L 28.24 12.432 L 24.67 12.432 L 24.67 15.711 L 22.495 15.711 Z M 29.421 9.179 L 31.475 9.179 L 31.475 10.548 C 31.582 10.078 31.801 9.717 32.132 9.464 C 32.472 9.202 32.848 9.071 33.26 9.071 C 33.475 9.071 33.654 9.089 33.796 9.125 L 33.796 11.05 C 33.592 11.025 33.385 11.011 33.179 11.009 C 32.615 11.009 32.191 11.194 31.904 11.564 C 31.618 11.926 31.475 12.467 31.475 13.19 L 31.475 15.711 L 29.422 15.711 L 29.422 9.18 L 29.421 9.18 Z M 37.038 15.887 C 36.412 15.887 35.866 15.738 35.401 15.44 C 34.944 15.141 34.581 14.718 34.354 14.22 C 34.112 13.697 33.991 13.104 33.991 12.445 C 33.991 11.795 34.117 11.207 34.367 10.684 C 34.602 10.178 34.975 9.75 35.441 9.451 C 35.915 9.153 36.457 9.003 37.065 9.003 C 37.522 9.003 37.929 9.103 38.287 9.302 C 38.644 9.501 38.913 9.772 39.092 10.114 L 39.092 9.179 L 41.132 9.179 L 41.132 15.711 L 39.092 15.711 L 39.092 14.789 C 38.913 15.114 38.636 15.381 38.26 15.589 C 37.884 15.79 37.464 15.893 37.038 15.887 Z M 37.629 14.166 C 38.121 14.166 38.501 14.003 38.77 13.678 C 39.038 13.353 39.173 12.942 39.173 12.445 C 39.173 11.957 39.038 11.551 38.77 11.225 C 38.501 10.901 38.121 10.738 37.629 10.738 C 37.163 10.738 36.788 10.896 36.502 11.212 C 36.224 11.528 36.086 11.939 36.086 12.445 C 36.086 12.951 36.224 13.366 36.502 13.692 C 36.788 14.008 37.164 14.166 37.629 14.166 Z M 42.568 9.179 L 44.622 9.179 L 44.622 10.128 C 44.766 9.793 44.998 9.522 45.32 9.315 C 45.651 9.108 46.036 9.003 46.474 9.003 C 47.494 9.003 48.17 9.405 48.501 10.209 C 48.683 9.845 48.968 9.543 49.32 9.342 C 49.696 9.114 50.129 8.996 50.568 9.003 C 52.098 9.003 52.863 9.888 52.863 11.659 L 52.863 15.711 L 50.796 15.711 L 50.796 12.038 C 50.796 11.596 50.716 11.271 50.555 11.063 C 50.393 10.856 50.152 10.751 49.83 10.751 C 49.481 10.751 49.212 10.873 49.024 11.117 C 48.837 11.352 48.743 11.763 48.743 12.35 L 48.743 15.711 L 46.676 15.711 L 46.676 12.025 C 46.676 11.583 46.595 11.262 46.434 11.063 C 46.282 10.856 46.045 10.751 45.723 10.751 C 45.365 10.751 45.092 10.873 44.904 11.117 C 44.716 11.352 44.622 11.763 44.622 12.35 L 44.622 15.711 L 42.569 15.711 L 42.569 9.18 L 42.568 9.18 Z M 60.578 12.106 C 60.578 12.386 60.56 12.689 60.523 13.014 L 55.746 13.014 C 55.764 13.439 55.907 13.763 56.175 13.99 C 56.444 14.215 56.807 14.329 57.263 14.329 C 57.898 14.329 58.301 14.134 58.471 13.746 L 60.484 13.746 C 60.385 14.387 60.036 14.906 59.437 15.304 C 58.846 15.692 58.121 15.887 57.263 15.887 C 56.153 15.887 55.281 15.584 54.645 14.979 C 54.019 14.373 53.706 13.529 53.706 12.445 C 53.706 11.74 53.849 11.131 54.135 10.616 C 54.412 10.101 54.838 9.685 55.356 9.423 C 55.885 9.144 56.498 9.003 57.196 9.003 C 57.858 9.003 58.444 9.134 58.954 9.396 C 59.473 9.659 59.871 10.024 60.148 10.494 C 60.435 10.964 60.578 11.501 60.578 12.106 Z M 58.55 11.727 C 58.542 11.294 58.421 10.963 58.188 10.738 C 57.956 10.512 57.62 10.399 57.181 10.399 C 56.743 10.399 56.394 10.521 56.134 10.765 C 55.884 11 55.754 11.32 55.745 11.727 Z M 61.483 9.179 L 63.537 9.179 L 63.537 10.548 C 63.644 10.078 63.864 9.717 64.195 9.464 C 64.516 9.209 64.913 9.07 65.322 9.071 C 65.537 9.071 65.716 9.089 65.859 9.125 L 65.859 11.05 C 65.654 11.025 65.448 11.011 65.242 11.009 C 64.678 11.009 64.253 11.194 63.967 11.564 C 63.68 11.926 63.537 12.467 63.537 13.19 L 63.537 15.711 L 61.483 15.711 L 61.483 9.18 Z\" fill=\"rgb(52,52,52)\"></path></svg>',svgContentId:12603289670,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gfsbpi\",\"data-framer-name\":\"AngelList\",layoutDependency:layoutDependency,layoutId:\"r_m_r9ziJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1o2v87o\",\"data-framer-name\":\"Angellist\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:82,layoutDependency:layoutDependency,layoutId:\"QtmiwmG6g\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"82\" height=\"24\" fill=\"none\"><path d=\"M5.09 4.673 0 18.868h2.21l1.475-4.177h5.532l1.469 4.177h2.29L7.88 4.673H5.09Zm-.713 8.05 2.077-5.877 2.069 5.882-4.146-.005Zm18.067-3.031c.335.625.5 1.328.476 2.037v7.132h-2.178v-6.76c0-.757-.197-1.308-.587-1.653a2.252 2.252 0 0 0-1.543-.518c-.378 0-.753.072-1.103.214a1.935 1.935 0 0 0-.882.71c-.247.387-.368.84-.345 1.298v6.733h-2.22V8.239h2.21V9.5a2.81 2.81 0 0 1 .436-.501 3.646 3.646 0 0 1 1.217-.713 4.217 4.217 0 0 1 1.447-.252 3.742 3.742 0 0 1 1.795.425c.54.282.986.711 1.289 1.239l-.012-.005Zm9.165-2.634a2.035 2.035 0 0 0-.88 1.189 5.054 5.054 0 0 0-1.564-.238 4.814 4.814 0 0 0-2.161.475c-.61.296-1.129.75-1.5 1.317a3.625 3.625 0 0 0-.557 2.028c-.02.701.167 1.392.538 1.987.188.292.42.554.687.775l-.1.046c-.36.184-.667.456-.892.791a2.19 2.19 0 0 0-.111 2.2c.17.328.433.6.758.777-.344.074-.668.22-.951.43a1.758 1.758 0 0 0-.713 1.49c0 .863.425 1.524 1.276 1.986.852.46 1.98.69 3.386.689 1.61 0 2.891-.3 3.844-.901a2.901 2.901 0 0 0 1.426-2.615 2.472 2.472 0 0 0-.782-1.926 2.97 2.97 0 0 0-2.078-.713h-.677c-.317 0-.654.017-1.006.029s-.675.024-.972.03c-.297.008-.5 0-.609 0a1.704 1.704 0 0 1-.932-.22.727.727 0 0 1-.344-.65.893.893 0 0 1 .313-.689c.068-.06.14-.115.214-.164.576.22 1.188.331 1.805.326a4.84 4.84 0 0 0 2.14-.457 3.837 3.837 0 0 0 1.53-5.341 3.39 3.39 0 0 0-.675-.756.892.892 0 0 1 .316-.212c.407-.155 1.027-.145 1.867.03V6.747c-1.056-.214-1.917-.111-2.585.317l-.012-.005ZM30.94 18.81c.326-.021.647.08.901.283a.967.967 0 0 1 .317.751c0 .54-.279.951-.832 1.236-.554.286-1.325.426-2.311.426-.951 0-1.664-.135-2.14-.404-.475-.27-.713-.628-.713-1.075.007-.305.126-.598.333-.822.223-.263.626-.395 1.208-.395h3.238Zm-.285-5.494a2.125 2.125 0 0 1-3.668-1.54 2.024 2.024 0 0 1 .566-1.512 2.14 2.14 0 0 1 1.562-.556 2.08 2.08 0 0 1 1.54.565 2.32 2.32 0 0 1 0 3.043Zm11.76-4.735a4.959 4.959 0 0 0-2.35-.557 5.164 5.164 0 0 0-2.525.628 4.62 4.62 0 0 0-1.845 1.885 6.447 6.447 0 0 0-.69 3.124c-.022.988.179 1.97.588 2.87a4.261 4.261 0 0 0 1.714 1.885 5.266 5.266 0 0 0 2.708.658 5.125 5.125 0 0 0 3.019-.882 4.088 4.088 0 0 0 1.642-2.503h-2.248a1.902 1.902 0 0 1-.79 1.108c-.453.279-.98.417-1.512.397-.95 0-1.673-.328-2.168-.985a3.927 3.927 0 0 1-.727-2.118h7.498c.014-.216.021-.447.021-.69 0-1.257-.213-2.281-.64-3.07a4.1 4.1 0 0 0-1.694-1.75Zm-4.45 2.21a2.506 2.506 0 0 1 2.078-.95c.475-.01.944.11 1.358.342.421.258.748.646.931 1.106.147.368.227.759.238 1.155h-5.277a3.56 3.56 0 0 1 .672-1.652Zm8.69-6.119h2.208v14.195h-2.209V4.673Zm6.913 12.208h6.528v1.987h-8.74V4.673h2.212v12.208Zm8.068-8.642h2.21v10.646h-2.21V8.239Zm2.037-3.85a1.275 1.275 0 0 1 .376.931 1.308 1.308 0 0 1-.376.951 1.234 1.234 0 0 1-.922.385 1.257 1.257 0 0 1-.95-.385 1.307 1.307 0 0 1-.377-.95 1.277 1.277 0 0 1 .376-.933A1.26 1.26 0 0 1 62.751 4a1.236 1.236 0 0 1 .922.375v.012Zm3.985 6.791a.993.993 0 0 0 .325.801c.265.205.573.347.901.414.385.095.829.183 1.33.264.456.068.91.159 1.357.273.434.111.85.282 1.236.509.374.217.686.527.903.9.24.449.356.953.336 1.46 0 1.056-.382 1.868-1.146 2.435-.764.567-1.782.851-3.053.851a5.679 5.679 0 0 1-2.472-.476 3.628 3.628 0 0 1-1.512-1.255 3.786 3.786 0 0 1-.618-1.664h2.14c.1.486.373.919.77 1.217.407.317.981.476 1.723.476a2.807 2.807 0 0 0 1.512-.354 1.143 1.143 0 0 0 .556-1.025 1.008 1.008 0 0 0-.69-1.034 8.657 8.657 0 0 0-1.884-.426c-.45-.053-.897-.133-1.339-.237a4.642 4.642 0 0 1-1.226-.488 2.496 2.496 0 0 1-.892-.882 2.785 2.785 0 0 1-.335-1.45c-.026-.68.165-1.35.544-1.914a3.288 3.288 0 0 1 1.46-1.155 5.86 5.86 0 0 1 4.008-.08 4.19 4.19 0 0 1 1.377.831c.352.318.642.7.853 1.125.186.37.293.775.314 1.188h-2.14a2.161 2.161 0 0 0-.699-1.226c-.373-.33-.93-.497-1.664-.497a2.408 2.408 0 0 0-1.426.376 1.188 1.188 0 0 0-.55 1.031v.012Zm11.304-1.039v4.966c-.027.493.089.982.333 1.41.217.346.66.518 1.33.518a4.727 4.727 0 0 0 1.016-.12v1.927a10.49 10.49 0 0 1-1.522.14c-1.161 0-2.016-.307-2.565-.922-.548-.615-.821-1.517-.82-2.705V10.14h-2.006v-1.9h2.006V5.693h2.228V8.24h2.686v1.902h-2.686Z\" fill=\"#343434\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mj6n2w\",\"data-framer-name\":\"Storyblok\",layoutDependency:layoutDependency,layoutId:\"trQzvpfep\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h0o8gf\",\"data-framer-name\":\"Storyblok\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:123,layoutDependency:layoutDependency,layoutId:\"DW2GNvSDw\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"123\" height=\"26\" fill=\"none\"><g clip-path=\"url(#a)\"><path d=\"M35.73 18.194a8.45 8.45 0 0 1-2.639-.411 6.017 6.017 0 0 1-2.203-1.285l1.153-1.952c.64.436 1.255.77 1.87 1.027.59.257 1.179.36 1.742.36.41 0 .744-.077.974-.231.23-.129.333-.36.333-.643 0-.256-.128-.513-.435-.668a6.649 6.649 0 0 0-1.512-.513l-1.794-.591c-.486-.206-.87-.411-1.178-.643a1.89 1.89 0 0 1-.666-.77 2.523 2.523 0 0 1-.205-1.028 3.344 3.344 0 0 1 1.204-2.62c.358-.309.82-.54 1.332-.72.513-.18 1.076-.257 1.666-.257.794 0 1.537.103 2.229.308.692.232 1.358.617 1.998 1.182l-1.255 1.927a8.527 8.527 0 0 0-1.589-.9 3.42 3.42 0 0 0-1.383-.282c-.334 0-.64.052-.871.206-.257.128-.36.36-.36.668 0 .308.129.514.385.668.256.154.769.308 1.46.488.643.162 1.276.36 1.897.59a6.28 6.28 0 0 1 1.255.669c.63.465.978 1.221.922 2.004 0 1.053-.384 1.875-1.178 2.492-.769.617-1.794.925-3.152.925Zm12.683-.745c-.435.18-.948.36-1.511.514-.564.154-1.128.256-1.717.256-.41 0-.769-.05-1.127-.154a2.56 2.56 0 0 1-.948-.514c-.257-.205-.462-.513-.615-.847a3.312 3.312 0 0 1-.257-1.31V9.87h-1.332V7.455h1.358V4.089h3.177v3.34h2.152v2.44h-2.152v4.42c0 .334.077.59.256.77.18.129.41.206.667.206.256 0 .512-.026.743-.129.256-.077.486-.154.666-.256l.615 2.569h.025Zm5.996.745a6.134 6.134 0 0 1-2.383-.437 5.03 5.03 0 0 1-2.87-2.955 5.924 5.924 0 0 1 0-4.162 5.03 5.03 0 0 1 2.87-2.954c.692-.283 1.486-.437 2.383-.437a5.373 5.373 0 0 1 4.15 1.67c.488.488.846 1.08 1.103 1.721a5.77 5.77 0 0 1 0 4.188 5.055 5.055 0 0 1-2.844 2.929 6.134 6.134 0 0 1-2.409.437Zm-2.306-5.447c0 .822.205 1.49.64 1.978.462.514 1.026.771 1.692.771a2.099 2.099 0 0 0 1.665-.77c.205-.258.359-.514.487-.874.128-.334.18-.72.18-1.105 0-.848-.231-1.516-.667-2.004a2.1 2.1 0 0 0-1.665-.77 2.176 2.176 0 0 0-1.666.77c-.205.257-.384.514-.512.874a3.35 3.35 0 0 0-.154 1.13Zm16.219-2.543c-.769 0-1.486.128-2.127.385a2.563 2.563 0 0 0-1.358 1.08v6.345h-3.203V7.454h2.947v2.107c.359-.719.82-1.284 1.41-1.67.563-.41 1.152-.616 1.793-.642h.333l.205.026v2.929Zm1.41 9.377c.445.155.911.242 1.383.257.384 0 .692-.128.922-.385.205-.257.384-.771.564-1.44L68.604 7.456h3.305l2.434 7.784 2.127-7.784h2.998L75.445 19.71a4.175 4.175 0 0 1-4.868 2.877 3.925 3.925 0 0 1-.846-.257v-2.749Zm17.32-1.387c-.794 0-1.512-.154-2.101-.514a3.72 3.72 0 0 1-1.435-1.413v1.747h-2.793V3.318h3.229v5.858a3.815 3.815 0 0 1 3.433-1.927c.666 0 1.281.129 1.845.437.563.257 1.025.668 1.46 1.156a6.746 6.746 0 0 1 .923 6.063 5.665 5.665 0 0 1-1.05 1.747 4.709 4.709 0 0 1-3.511 1.542Zm-.897-2.698a2.435 2.435 0 0 0 2.306-1.644 3.193 3.193 0 0 0-.487-3.057 2.074 2.074 0 0 0-1.69-.823c-.488 0-.949.18-1.384.514-.41.36-.744.797-.974 1.336v2.21a2.51 2.51 0 0 0 2.255 1.438l-.026.026Zm7.38-12.178h3.202v10.92c0 .821.333 1.207 1.025 1.207a2.25 2.25 0 0 0 1.05-.257l.436 2.39a7.312 7.312 0 0 1-2.844.616c-.922 0-1.64-.257-2.127-.72-.512-.513-.768-1.181-.768-2.106V3.318h.025Zm11.76 14.876a6.137 6.137 0 0 1-2.383-.437 5.053 5.053 0 0 1-2.895-2.955 5.92 5.92 0 0 1 1.076-5.909 5.517 5.517 0 0 1 1.793-1.207c.692-.283 1.487-.437 2.383-.437a5.373 5.373 0 0 1 4.151 1.67c.513.488.846 1.08 1.102 1.721a5.793 5.793 0 0 1-1.076 5.91 4.916 4.916 0 0 1-1.794 1.207 6.13 6.13 0 0 1-2.383.437h.026Zm-2.332-5.447c0 .822.205 1.49.641 1.978.461.514 1.025.771 1.691.771a2.123 2.123 0 0 0 1.665-.77 2.86 2.86 0 0 0 .487-.874c.128-.334.18-.72.18-1.105 0-.848-.231-1.516-.667-2.004a2.098 2.098 0 0 0-1.665-.77 2.174 2.174 0 0 0-1.665.77c-.205.257-.385.514-.513.874s-.154.72-.154 1.13Zm16.629 5.267-2.741-4.265-1.128 1.182v3.083h-3.203V3.318h3.203v8.504l3.562-4.367h3.408l-3.793 4.547 4.1 6.012h-3.408ZM1.14 0A1.13 1.13 0 0 0 0 1.115v19.918c0 .608.507.988 1.115.988h2.939V26l3.648-3.953H21.03c.608 0 .988-.38.988-1.014V1.14c0-.608-.354-1.14-.988-1.14H1.14Z\" fill=\"#343434\"/><path d=\"M14.261 3.98c.507 0 .937.102 1.342.33.38.202.734.48 1.013.81a3.8 3.8 0 0 1 .861 2.457c0 .658-.177 1.291-.506 1.899a3.164 3.164 0 0 1-1.52 1.367c.81.228 1.444.634 1.925 1.216.455.608.683 1.393.683 2.38 0 .634-.115 1.198-.354 1.621a3.061 3.061 0 0 1-1.089 1.115c-.481.303-1.013.582-1.62.709-.608.152-1.267.278-1.95.278H4.082V3.98h10.18Zm-1.454 7.926H7.732v2.396h4.953c.293 0 .561-.12.78-.311.196-.192.318-.48.318-.839a1.42 1.42 0 0 0-.268-.862c-.196-.24-.415-.383-.708-.383Zm-.415-4.79h-4.66V9.27h4.563c.244 0 .488-.12.683-.263.22-.144.317-.455.317-.863 0-.359-.098-.622-.268-.79a.986.986 0 0 0-.635-.24Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h123v26H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u3v366\",\"data-framer-name\":\"Antimetal\",layoutDependency:layoutDependency,layoutId:\"GrMcx7mdS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h902vg\",\"data-framer-name\":\"Antimetal\",fill:\"black\",intrinsicHeight:15,intrinsicWidth:101,layoutDependency:layoutDependency,layoutId:\"el7rXog3p\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"101\" height=\"15\" fill=\"none\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.163 6.652a1.48 1.48 0 0 1-1.475-1.475 1.48 1.48 0 0 1 1.475-1.475 1.48 1.48 0 0 1 1.475 1.475 1.48 1.48 0 0 1-1.475 1.475ZM7.376 1.49A1.48 1.48 0 0 1 8.851.014a1.48 1.48 0 0 1 1.475 1.475 1.48 1.48 0 0 1-1.475 1.475A1.48 1.48 0 0 1 7.376 1.49Zm3.688 3.688a1.48 1.48 0 0 1 1.475-1.475 1.48 1.48 0 0 1 1.475 1.475 1.48 1.48 0 0 1-1.475 1.475 1.48 1.48 0 0 1-1.475-1.475ZM0 8.865A1.48 1.48 0 0 1 1.475 7.39 1.48 1.48 0 0 1 2.95 8.865a1.48 1.48 0 0 1-1.475 1.475A1.48 1.48 0 0 1 0 8.865Zm14.752 0a1.48 1.48 0 0 1 1.475-1.475 1.48 1.48 0 0 1 1.475 1.475 1.48 1.48 0 0 1-1.475 1.475 1.48 1.48 0 0 1-1.475-1.475Zm-9.589 1.46A1.48 1.48 0 0 1 3.688 8.85a1.48 1.48 0 0 1 1.475-1.475A1.48 1.48 0 0 1 6.638 8.85a1.48 1.48 0 0 1-1.475 1.476Zm2.213-5.163a1.48 1.48 0 0 1 1.475-1.475 1.48 1.48 0 0 1 1.475 1.475 1.48 1.48 0 0 1-1.475 1.476 1.48 1.48 0 0 1-1.475-1.476Zm3.688 3.688a1.48 1.48 0 0 1 1.475-1.475 1.48 1.48 0 0 1 1.475 1.475 1.48 1.48 0 0 1-1.475 1.476 1.48 1.48 0 0 1-1.475-1.476ZM0 12.54a1.48 1.48 0 0 1 1.475-1.476A1.48 1.48 0 0 1 2.95 12.54a1.48 1.48 0 0 1-1.475 1.475A1.48 1.48 0 0 1 0 12.539Zm14.752 0a1.48 1.48 0 0 1 1.475-1.476 1.48 1.48 0 0 1 1.475 1.476 1.48 1.48 0 0 1-1.475 1.475 1.48 1.48 0 0 1-1.475-1.475Zm9.504.983L29.518.505h2.325l5.28 13.017H34.93l-1.425-3.756h-5.728l-1.419 3.756h-2.101Zm6.806-10.19 1.814 4.779H28.4l1.805-4.78c.038-.099.075-.192.112-.278.05-.1.087-.199.111-.298a1.44 1.44 0 0 0 .112-.297l.112-.298.111.335c.037.111.08.223.13.335l.075.26c.037.074.068.155.093.242Zm7.016 10.19v-9h1.841v.911a.692.692 0 0 0-.018.167v.168a2.912 2.912 0 0 1 1.097-1.098c.483-.297 1.035-.446 1.655-.446.681 0 1.264.143 1.748.428.495.285.873.7 1.134 1.246.26.545.39 1.19.39 1.934v5.69h-1.84v-5.43c0-.793-.155-1.388-.465-1.785-.31-.41-.781-.614-1.414-.614-.458 0-.861.112-1.208.335-.347.21-.614.508-.8.892a2.704 2.704 0 0 0-.279 1.228v5.374h-1.84Zm11.952-.168c.41.186.88.28 1.414.28a5.1 5.1 0 0 0 1.152-.13v-1.488a4.297 4.297 0 0 1-.669.055c-.297 0-.545-.05-.744-.148a.98.98 0 0 1-.427-.465c-.1-.211-.15-.484-.15-.819V6.01h1.99V4.522h-1.99V1.435h-1.859v3.087h-1.822v1.487h1.822v4.854c0 .644.112 1.177.335 1.599.236.409.552.707.948.892Zm3.954-10.413V.86h2.045v2.08h-2.045Zm.111 9.075V4.522h1.842v9h-1.842v-1.506Zm4.06-7.494v9h1.84V8.259c0-.483.087-.917.26-1.301.174-.397.416-.707.726-.93a1.77 1.77 0 0 1 1.06-.335c.595 0 1.029.217 1.301.651.273.422.41 1.035.41 1.841v5.337h1.859V8.204c0-.472.08-.893.242-1.265.16-.384.396-.688.706-.911a1.8 1.8 0 0 1 1.079-.335c.607 0 1.047.211 1.32.632.285.422.428 1.036.428 1.841v5.356h1.84v-5.69c0-.769-.136-1.426-.408-1.971-.26-.546-.626-.955-1.097-1.228-.472-.272-1.01-.409-1.618-.409-.62 0-1.19.161-1.711.484a3.58 3.58 0 0 0-1.227 1.246 2.906 2.906 0 0 0-1.042-1.265 2.609 2.609 0 0 0-1.524-.465c-.583 0-1.097.143-1.544.428a3.32 3.32 0 0 0-1.078 1.116V5.6a.692.692 0 0 0 .018-.167v-.911h-1.84ZM77.25 13.82c-.893 0-1.674-.186-2.343-.558a3.953 3.953 0 0 1-1.562-1.654c-.372-.72-.558-1.593-.558-2.622 0-.918.186-1.736.558-2.455.384-.731.905-1.295 1.562-1.692a4.23 4.23 0 0 1 2.25-.614c.892 0 1.655.199 2.287.595.632.385 1.116.942 1.45 1.674.335.719.503 1.562.503 2.529v.39h-6.732c.013.595.13 1.116.353 1.562.224.447.527.794.912 1.042.396.235.843.353 1.338.353.57 0 1.054-.136 1.45-.41.41-.272.658-.7.745-1.282h1.86a3.4 3.4 0 0 1-.596 1.599c-.335.471-.8.85-1.394 1.134-.583.273-1.277.41-2.083.41Zm2.194-5.727c0-.744-.204-1.339-.614-1.785-.409-.446-.966-.67-1.673-.67-.682 0-1.252.236-1.71.707-.447.459-.701 1.041-.763 1.748h4.76Zm5.563 5.262c.408.186.88.28 1.413.28a5.102 5.102 0 0 0 1.153-.13v-1.488a4.3 4.3 0 0 1-.67.055c-.297 0-.545-.05-.744-.148a.98.98 0 0 1-.427-.465c-.1-.211-.15-.484-.15-.819V6.01h1.99V4.522h-1.99V1.435h-1.859v3.087h-1.822v1.487h1.822v4.854c0 .644.112 1.177.335 1.599.236.409.552.707.948.892Zm6.65.465a3.682 3.682 0 0 1-1.563-.334 2.777 2.777 0 0 1-1.134-.967c-.273-.422-.41-.912-.41-1.47 0-.855.292-1.506.875-1.952.582-.459 1.351-.762 2.306-.911l1.692-.26c.235-.038.421-.087.558-.15a.724.724 0 0 0 .297-.278.874.874 0 0 0 .093-.428c0-.434-.155-.78-.465-1.041-.31-.26-.719-.39-1.227-.39-.608 0-1.085.154-1.432.464-.347.31-.54.732-.576 1.265h-1.878c.037-.583.21-1.11.52-1.58.31-.484.744-.862 1.302-1.135.558-.285 1.202-.428 1.934-.428.793 0 1.463.143 2.008.428.546.285.955.7 1.227 1.246.273.545.41 1.196.41 1.952v5.672h-1.749v-.428c0-.124.007-.254.019-.39a4.48 4.48 0 0 0 .019-.41 2.573 2.573 0 0 1-1.079 1.135c-.483.26-1.066.39-1.748.39Zm.371-1.413c.434 0 .83-.093 1.19-.279.372-.198.657-.47.856-.818.21-.36.316-.769.316-1.227v-1.19c-.062.074-.18.142-.354.204a4.777 4.777 0 0 1-.669.186l-1.079.205c-.57.111-1.022.291-1.357.539-.322.235-.483.564-.483.985 0 .422.148.763.446 1.023.31.248.688.372 1.134.372Zm6.278-10.395v11.51h1.841V.506h-1.841V2.01Z\" fill=\"#343434\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p178kb\",\"data-framer-name\":\"Lumistry\",layoutDependency:layoutDependency,layoutId:\"Bo6t2K6bb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e769h5\",\"data-framer-name\":\"Lumistry\",fill:\"black\",intrinsicHeight:34,intrinsicWidth:107,layoutDependency:layoutDependency,layoutId:\"YH_BVdUAa\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"107\" height=\"34\" fill=\"none\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"107\" height=\"34\"><path d=\"M107 0H0v33.615h107V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\"><path d=\"M8.477 18.812H6.175c-1.777 0-3.222 1.586-3.222 3.536s1.445 3.536 3.222 3.536h14.418l-2.4 3.241H6.174C2.77 29.125 0 26.085 0 22.348s2.77-6.776 6.174-6.776h2.304l-.002 3.241Z\" fill=\"#343434\"/><path d=\"M8.477 15.572v3.241l2.954-3.287-.006-2.077c0-1.95 1.445-3.536 3.221-3.536s3.222 1.586 3.222 3.536l-.023 2.56 2.976-2.56c0-3.737-2.77-6.776-6.175-6.776s-6.174 3.04-6.174 6.781l.005 2.118ZM20.885 3.491 18.85 6.674l-1.648-1.14 1.88-3.356 1.802 1.313Zm-12.491 0 1.959 3.183 1.748-1.14-1.906-3.356-1.801 1.313Zm7.26 1.749h-2.029L13.401 0h2.47l-.217 5.24Zm8.268 23.67V13.387h2.973V26.12h4.416v2.79h-7.39Zm16.34 0-.086-.615c-1.336.521-2.586.946-3.878.946-1.12 0-2.24-.354-3.016-1.348-.711-.898-.905-1.986-.905-3.404v-7.518h2.8v7.33c0 1.797.863 2.388 2.133 2.388.754 0 1.53-.236 2.52-.615v-9.103h2.801v11.94h-2.37v-.001Zm19.239 0v-7.33c0-1.774-.862-2.388-2.154-2.388-.776 0-1.594.26-2.65.685.129.474.15 1.017.15 1.513v7.519H52.07v-7.33c0-1.774-.884-2.388-2.154-2.388-.754 0-1.53.236-2.5.638v9.079h-2.8v-11.94h2.37l.064.638c1.336-.52 2.607-.97 3.878-.97 1.077 0 2.154.307 2.93 1.206 1.465-.591 3.102-1.206 4.523-1.206 1.12 0 2.24.355 3.037 1.348.711.898.884 1.986.884 3.405v7.519h-2.8v.002Zm7.702-15.511h-3.016v2.842h3.016v-2.842ZM67.03 28.91h-2.735V16.97h2.8v11.94h-.064Zm8.734-.354c-.862.544-1.895.685-3.339.685a26.6 26.6 0 0 1-3.382-.212v-2.317c1.141.166 2.262.26 3.059.26.668 0 1.27-.047 1.766-.212.56-.213.733-.662.733-1.159 0-.685-.344-1.04-1.034-1.277-.496-.189-.97-.283-1.68-.473-1.939-.544-2.866-1.442-2.866-3.475 0-1.23.41-2.436 1.422-3.074.84-.544 1.831-.662 3.188-.662.84 0 1.918.071 3.059.213v2.223c-.948-.12-2.025-.237-2.823-.237-.603 0-1.077.047-1.508.189-.538.212-.689.638-.689 1.087 0 .615.303.922.948 1.16.452.164.97.282 1.55.448 2.048.496 3.081 1.466 3.081 3.641 0 1.277-.431 2.53-1.487 3.193l.002-.001Zm7.52.686c-1.12 0-2.284-.355-2.91-1.703-.408-.827-.603-1.986-.603-3.475v-4.776H78.07v-2.316h1.702l.28-3.618h2.52v3.618h3.102v2.316h-3.102v4.304c0 .827.022 1.56.195 2.127.215.78.668 1.111 1.464 1.111.475 0 1.056-.141 1.573-.236v2.223c-.883.213-1.744.426-2.52.426v-.001Zm4.184-.332V16.97h2.37l.086.756c1.53-.663 2.541-1.088 3.964-1.088.065 0 .193 0 .302.023v2.649h-.712c-1.033 0-1.938.189-3.21.686v8.913h-2.8Zm8.502 4.516v-2.411c.71.095 1.336.141 1.853.141 1.293 0 1.831-.567 2.175-1.655l.194-.591-4.696-11.94h3.102l3.038 8.464h.064l2.5-8.464h2.8l-4.136 12.792c-.884 2.742-2.155 3.853-4.761 3.853-.625 0-1.464-.094-2.133-.189Z\" fill=\"#343434\"/><path d=\"M105.003 30.664c-.445 0-.786-.362-.786-.854 0-.491.341-.853.786-.853.444 0 .781.362.781.853 0 .492-.341.854-.781.854Zm0-1.519c-.345 0-.605.278-.605.664s.26.665.605.665c.344 0 .598-.282.598-.665 0-.382-.257-.664-.598-.664Zm.21 1.165-.225-.366h-.062v.358h-.211v-.984h.292c.153 0 .319.113.319.315a.308.308 0 0 1-.131.247l.206.312-.186.118h-.002Zm-.225-.795h-.062v.23h.062c.061 0 .114-.037.114-.112 0-.08-.053-.118-.114-.118Zm-83.613 1.149c-.444 0-.785-.362-.785-.854 0-.491.341-.853.785-.853.445 0 .782.362.782.853 0 .492-.342.854-.782.854Zm0-1.519c-.344 0-.605.278-.605.664s.26.665.605.665.599-.282.599-.665c0-.382-.257-.664-.599-.664Zm.211 1.165-.226-.366h-.06v.358h-.21v-.984h.291c.153 0 .318.113.318.315a.306.306 0 0 1-.13.247l.206.312-.187.118Zm-.226-.795h-.06v.23h.061c.062 0 .115-.037.115-.112 0-.08-.053-.118-.115-.118Z\" fill=\"#B5B5B5\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emnjas\",\"data-framer-name\":\"Okteto\",layoutDependency:layoutDependency,layoutId:\"SVIXwkuS7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cw7f39\",\"data-framer-name\":\"Okteto\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:87,layoutDependency:layoutDependency,layoutId:\"hUpQXC6vj\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"87\" height=\"25\" fill=\"none\"><g fill=\"#343434\" clip-path=\"url(#a)\"><path d=\"M4.893 3.22c5.296-3.956 12.744-2.789 16.8 2.533.786 1.026.62 2.557-.48 3.244a2.45 2.45 0 0 1-3.27-.53 7.473 7.473 0 0 0-8.3-2.599 7.233 7.233 0 0 0-4.966 7.035 7.407 7.407 0 0 0 5.131 6.985 7.241 7.241 0 0 0 8.16-2.657c.828-1.158 2.045-1.374 3.203-.703 1.159.662 1.258 2.342.538 3.393A11.652 11.652 0 0 1 12.2 24.87a12.19 12.19 0 0 1-9.79-4.808C-1.654 14.74-.412 7.168 4.884 3.22h.009Zm15.699 7.333a2.401 2.401 0 0 1 3.41 2.317 2.317 2.317 0 0 1-2.523 2.17 2.4 2.4 0 0 1-2.203-2.534 2.317 2.317 0 0 1 1.316-1.953Zm29.204 8.177H47.23l-3.74-4.966-.034 1.597v3.369h-2.019V3.353h2.02v9.476l3.426-4.618h2.59v.083l-3.7 4.932 4.023 5.42v.084Zm5.296.173a3.12 3.12 0 0 1-2.184-.794 2.913 2.913 0 0 1-.886-2.21v-5.884h-1.904V8.211h1.904V5.339h2.02v2.864h2.648v1.804h-2.65v5.238c0 .704.141 1.176.414 1.432a1.4 1.4 0 0 0 .952.373c.31.004.62-.06.902-.19l.637 1.754c-.53.19-1.142.281-1.845.281l-.009.008Zm18.43 0a3.12 3.12 0 0 1-2.193-.794 2.914 2.914 0 0 1-.885-2.21v-5.884h-1.895V8.211h1.895V5.339h2.02v2.864h2.648v1.804h-2.649v5.238c0 .704.141 1.176.414 1.432.282.248.604.373.952.373.314.005.625-.06.91-.19l.63 1.754c-.53.19-1.143.281-1.846.281v.008Zm7.656.108a5.653 5.653 0 0 1-5.719-5.586c0-3.079 2.566-5.578 5.719-5.578a5.652 5.652 0 0 1 5.718 5.578c0 3.087-2.565 5.586-5.718 5.586Zm0-1.986a3.644 3.644 0 0 0 3.69-3.6c0-1.987-1.654-3.6-3.69-3.6a3.642 3.642 0 0 0-3.691 3.6c0 1.986 1.655 3.6 3.69 3.6ZM34.684 19.01a5.653 5.653 0 0 1-5.718-5.586c0-3.079 2.565-5.578 5.718-5.578a5.652 5.652 0 0 1 5.719 5.578c0 3.087-2.566 5.586-5.719 5.586Zm0-1.986a3.644 3.644 0 0 0 3.691-3.6c0-1.987-1.655-3.6-3.69-3.6a3.642 3.642 0 0 0-3.692 3.6c0 1.986 1.655 3.6 3.691 3.6Zm28.171 2.052a5.52 5.52 0 0 1-4.055-1.58 5.637 5.637 0 0 1-1.606-4.105c0-1.598.514-2.922 1.548-3.99a5.296 5.296 0 0 1 3.964-1.588c1.655 0 2.83.53 3.956 1.506 1.125.976 1.854 2.814 1.713 4.676h-9.037a2.814 2.814 0 0 0 1.1 2.242 3.624 3.624 0 0 0 2.508.944c1.332 0 2.45-.662 3.013-1.887h2.2a5.429 5.429 0 0 1-2.275 3.037c-.894.522-1.903.745-3.02.745h-.009Zm-3.426-6.894h6.836c-.166-.711-.58-1.365-1.225-1.862-.654-.496-1.225-.745-2.185-.745-.803 0-1.589.282-2.16.745-.58.464-1.076 1.076-1.266 1.862Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .87)\" d=\"M0 0h86.896v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pr9zkm\",\"data-framer-name\":\"Mercury\",layoutDependency:layoutDependency,layoutId:\"JXddPhQO0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g0y1md\",\"data-framer-name\":\"Mercury\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:139,layoutDependency:layoutDependency,layoutId:\"IgT7XwPYg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"139\" height=\"32\" fill=\"none\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.178.002C16.123 0 16.068 0 16.013 0c-.055 0-.11 0-.164.002C7.135.088.087 7.13 0 15.835a6.061 6.061 0 0 1 1.432-3.76A15.146 15.146 0 0 1 12.086 1.433c1.21-.326 2.48-.506 3.79-.516.046-.002.092-.002.137-.002a5.195 5.195 0 0 1 5.12 4.353 5.149 5.149 0 0 1-.994 3.963c.262.161.514.335.753.524a6.062 6.062 0 0 0 1.215-3.947 11.978 11.978 0 0 1 4.099 4.106 6.075 6.075 0 0 0-4.658 1.82 6.052 6.052 0 0 0-1.353 2.11v.001A6.02 6.02 0 0 0 19.8 16a3.815 3.815 0 0 1-3.743 3.81h-.042A3.815 3.815 0 0 1 12.202 16c0 .76-.139 1.485-.395 2.156v.001a4.758 4.758 0 0 0 2.048 2.047h.002a4.71 4.71 0 0 0 2.158.52c1.345 0 2.571.513 3.493 1.354a5.148 5.148 0 0 1 1.63 4.64l-.031.014c-.875.418-1.81.73-2.788.925a2.888 2.888 0 0 0-.428-3.958 2.887 2.887 0 0 0-1.876-.69 6.994 6.994 0 0 1-5.561-2.741c-.214.22-.446.422-.691.606.398.512.86.974 1.373 1.372a7.85 7.85 0 0 0 3.003 1.454c.6.146 1.23.223 1.876.223a1.982 1.982 0 1 1 0 3.962 12.358 12.358 0 0 0-.028 0 1.982 1.982 0 1 1 0-3.961 7.924 7.924 0 0 1-1.876-.224 2.888 2.888 0 0 0-.424 3.963 2.894 2.894 0 0 0 2.3 1.137 12.734 12.734 0 0 0 5.93-1.455 12.886 12.886 0 0 0 5.425-5.42 6.171 6.171 0 0 1-1.135.163 11.98 11.98 0 0 1-4.098 4.106 6.062 6.062 0 0 0-1.215-3.948l-.01-.014c.505-.394.96-.85 1.354-1.356a6.075 6.075 0 0 0 3.968 1.212 6.096 6.096 0 0 0 4.36-2.164 6.061 6.061 0 0 0 1.432-3.76c.002-.054.002-.109.002-.163 0-.056 0-.11-.002-.165C31.912 7.159 24.91.136 16.236.003l-.058-.001Zm5.37 20.267a7.06 7.06 0 0 1-1.273 1.275 6.06 6.06 0 0 0-2.1-1.34h-.002l-.014-.006a4.759 4.759 0 0 0 2.036-2.04v-.001c.332-.646.52-1.38.52-2.157 0-1.344.514-2.569 1.356-3.489a5.16 5.16 0 0 1 4.657-1.626c.422.883.737 1.828.93 2.816a2.892 2.892 0 0 0-3.965.425 2.88 2.88 0 0 0-.69 1.874 6.978 6.978 0 0 1-1.455 4.268Zm4.353-6.25A1.982 1.982 0 0 1 27.88 16a1.982 1.982 0 1 1-1.98-1.98Zm-3.14 6.103c.42-.687.739-1.442.932-2.246a2.893 2.893 0 0 0 3.966.422A2.89 2.89 0 0 0 28.797 16a12.703 12.703 0 0 0-1.457-5.924 12.886 12.886 0 0 0-5.392-5.403l-.005-.018a6.089 6.089 0 0 0-1.988-3.21 15.147 15.147 0 0 1 10.611 10.632A14.974 14.974 0 0 1 31.085 16c0 .046 0 .092-.002.137a5.19 5.19 0 0 1-5.184 5.044 5.16 5.16 0 0 1-3.138-1.058Zm-2.568-6.278v-.001a4.758 4.758 0 0 0-2.048-2.047h-.002a4.709 4.709 0 0 0-2.158-.52 5.164 5.164 0 0 1-3.493-1.354 5.149 5.149 0 0 1-1.63-4.64l.031-.014c.875-.418 1.81-.73 2.788-.925a2.888 2.888 0 0 0 .428 3.958c.505.43 1.16.69 1.876.69a6.994 6.994 0 0 1 5.561 2.741 5.94 5.94 0 0 1 .691-.606 7.793 7.793 0 0 0-1.373-1.372A7.85 7.85 0 0 0 17.861 8.3a7.925 7.925 0 0 0-1.876-.223 1.982 1.982 0 1 1 0-3.962 12.163 12.163 0 0 0 .028 0 1.982 1.982 0 1 1 0 3.961c.647 0 1.275.078 1.876.224a2.888 2.888 0 0 0 .424-3.963 2.894 2.894 0 0 0-2.3-1.137 12.734 12.734 0 0 0-5.93 1.455 12.885 12.885 0 0 0-5.425 5.42 6.172 6.172 0 0 1 1.135-.163A11.98 11.98 0 0 1 9.89 5.806a6.062 6.062 0 0 0 1.215 3.948l.01.014c-.505.394-.96.85-1.354 1.356a6.075 6.075 0 0 0-3.968-1.212 6.096 6.096 0 0 0-4.36 2.164 6.061 6.061 0 0 0-1.432 3.76L0 16c0 .055 0 .11.002.164.086 8.677 7.088 15.7 15.762 15.833l.058.002.165.001c.055 0 .11 0 .164-.002C24.865 31.913 31.913 24.87 32 16.166a6.061 6.061 0 0 1-1.432 3.76 15.146 15.146 0 0 1-10.654 10.643 15.02 15.02 0 0 1-3.79.516c-.046.002-.092.002-.137.002-.046 0-.092 0-.138-.002a5.195 5.195 0 0 1-4.982-4.352 5.148 5.148 0 0 1 .994-3.963 7.606 7.606 0 0 1-.754-.523 6.062 6.062 0 0 0-1.214 3.947 11.98 11.98 0 0 1-4.099-4.106 6.075 6.075 0 0 0 4.658-1.82 6.052 6.052 0 0 0 1.353-2.11v-.001A6.02 6.02 0 0 0 12.2 16a3.815 3.815 0 0 1 3.743-3.81h.042A3.815 3.815 0 0 1 19.798 16c0-.76.139-1.485.395-2.156Zm-10.14 13.483a12.886 12.886 0 0 1-5.917-6.532A12.702 12.702 0 0 1 3.203 16c0-.936.447-1.77 1.138-2.298a2.893 2.893 0 0 1 3.966.422c.193-.804.512-1.56.931-2.246v-.001a5.16 5.16 0 0 0-3.137-1.058 5.145 5.145 0 0 0-1.964.386 5.19 5.19 0 0 0-3.22 4.658c-.002.045-.002.09-.002.137a14.974 14.974 0 0 0 .519 3.924 15.147 15.147 0 0 0 10.61 10.631 6.089 6.089 0 0 1-1.987-3.21l-.005-.018Zm-4.78-6.212c.27.043.545.065.826.065a5.16 5.16 0 0 0 3.83-1.691 5.154 5.154 0 0 0 1.356-3.49c0-.777.188-1.51.52-2.156v-.001a4.759 4.759 0 0 1 2.037-2.04l-.015-.006h-.002a6.06 6.06 0 0 1-2.1-1.34 7.06 7.06 0 0 0-1.796 2.054A6.977 6.977 0 0 0 8.997 16c0 .714-.26 1.37-.69 1.874a2.892 2.892 0 0 1-3.966.425c.194.988.51 1.933.932 2.816Zm-1.155-5.03A1.982 1.982 0 0 0 8.082 16v-.07a1.982 1.982 0 0 0-3.964.07v.085Zm40.128-5.914h3.152l2.944 8.048h.048l2.912-8.048h3.168v11.328h-2v-9.104h-.032l-3.44 9.104H49.59l-3.392-9.104h-.032v9.104h-1.92V10.17Zm17.742 0h7.504v1.76h-5.488v2.88h5.2v1.696h-5.2v3.2h5.776v1.792h-7.792V10.17Zm16.447 4.88c.287 0 .575-.021.864-.064.287-.043.546-.123.775-.24.23-.117.42-.286.569-.504.149-.219.224-.499.224-.84 0-.31-.07-.563-.209-.76a1.547 1.547 0 0 0-.528-.472 2.21 2.21 0 0 0-.727-.24 5.105 5.105 0 0 0-.793-.064h-1.823v3.184h1.647Zm-3.665-4.88h3.937c.533 0 1.05.056 1.552.168a3.99 3.99 0 0 1 1.335.552c.39.256.702.592.937 1.008.234.416.351.923.351 1.52 0 .821-.232 1.49-.696 2.008-.464.517-1.096.867-1.896 1.048l3.024 5.024h-2.431l-2.624-4.8h-1.472v4.8H74.77V10.17Zm21.263 2.656a2.582 2.582 0 0 0-1.168-.888 3.87 3.87 0 0 0-1.408-.28c-.587 0-1.12.106-1.6.32a3.75 3.75 0 0 0-1.24.88c-.347.373-.614.81-.8 1.312a4.64 4.64 0 0 0-.28 1.632c0 .619.09 1.184.272 1.696.181.512.44.952.776 1.32.336.368.738.653 1.208.856.47.203.997.304 1.584.304.608 0 1.146-.12 1.616-.36a3.16 3.16 0 0 0 1.136-.952l1.616 1.136a5.18 5.18 0 0 1-1.84 1.464c-.726.346-1.574.52-2.544.52-.886 0-1.699-.147-2.44-.44a5.62 5.62 0 0 1-1.912-1.232 5.606 5.606 0 0 1-1.248-1.888c-.299-.73-.448-1.539-.448-2.424 0-.907.157-1.726.472-2.456a5.467 5.467 0 0 1 1.296-1.864 5.753 5.753 0 0 1 1.944-1.184 6.932 6.932 0 0 1 3.568-.312c.394.07.773.176 1.136.32a5.48 5.48 0 0 1 1.024.536c.32.213.592.47.816.768l-1.536 1.216Zm15.006 4.512c0 .683-.117 1.299-.352 1.848a4.153 4.153 0 0 1-.96 1.4c-.405.384-.885.68-1.44.888a5.109 5.109 0 0 1-1.808.312 5.109 5.109 0 0 1-1.808-.312 4.31 4.31 0 0 1-1.448-.888 3.988 3.988 0 0 1-.96-1.4c-.229-.55-.344-1.166-.344-1.848V10.17h2.016v7.088c0 .33.043.659.128.984.085.325.227.616.424.872.197.256.459.464.784.624.325.16.728.24 1.208.24s.883-.08 1.208-.24c.325-.16.587-.368.784-.624.197-.256.339-.547.424-.872.085-.325.128-.653.128-.984V10.17h2.016v7.168Zm9.086-2.288c.288 0 .576-.021.864-.064a2.51 2.51 0 0 0 .776-.24 1.51 1.51 0 0 0 .568-.504c.15-.219.224-.499.224-.84 0-.31-.069-.563-.208-.76a1.537 1.537 0 0 0-.528-.472 2.207 2.207 0 0 0-.728-.24 5.105 5.105 0 0 0-.792-.064h-1.824v3.184h1.648Zm-3.664-4.88h3.936a7.09 7.09 0 0 1 1.552.168c.502.112.947.296 1.336.552.39.256.702.592.936 1.008.235.416.352.923.352 1.52 0 .821-.232 1.49-.696 2.008-.464.517-1.096.867-1.896 1.048l3.024 5.024h-2.432l-2.624-4.8h-1.472v4.8h-2.016V10.17Zm15.71 6.416-4.256-6.416h2.464l2.848 4.768 2.88-4.768h2.336l-4.256 6.416v4.912h-2.016v-4.912Z\" fill=\"#131212\"/></svg>',withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-361)/2+0+0)+0+0+233,...addPropertyOverrides({MlPN9X606:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-433)/2+0+0)+0+0+305}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1twhgvq-container\",layoutDependency:layoutDependency,layoutId:\"OvNzVvV9_-container\",nodeId:\"OvNzVvV9_\",rendersWithMotion:true,scopeId:\"fRzE1qXQp\",children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"OvNzVvV9_\",layoutId:\"OvNzVvV9_\",style:{width:\"100%\"},variant:\"Lq0iaC6vw\",VLJ7OkvVi:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:361,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-361)/2+0+0)+0,...addPropertyOverrides({MlPN9X606:{height:433,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-433)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h7bbnr-container\",layoutDependency:layoutDependency,layoutId:\"m70tuPSrz-container\",nodeId:\"m70tuPSrz\",rendersWithMotion:true,scopeId:\"fRzE1qXQp\",children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"m70tuPSrz\",layoutId:\"m70tuPSrz\",style:{height:\"100%\"},variant:\"UodEMSDqs\",wb4qzJX7V:true,width:\"100%\",...addPropertyOverrides({MlPN9X606:{variant:\"ZRArz_2Fh\"},wWjXn7F32:{variant:\"JEVLLtvuN\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uCzAc.framer-19ii892, .framer-uCzAc .framer-19ii892 { display: block; }\",\".framer-uCzAc.framer-1x7e6je { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 1200px; }\",\".framer-uCzAc .framer-1fsyfgp { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-uCzAc .framer-9n5zzc-container, .framer-uCzAc .framer-1h7bbnr-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-uCzAc .framer-wu9mz7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-uCzAc .framer-1y8gexs-container, .framer-uCzAc .framer-1twhgvq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-uCzAc .framer-3mjl56 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uCzAc .framer-re95um { flex: 1 0 0px; height: auto; max-width: 220px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uCzAc .framer-1230uqv-container { flex: 1 0 0px; height: 24px; position: relative; width: 1px; }\",\".framer-uCzAc .framer-1ebitot { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 203px; }\",\".framer-uCzAc .framer-17xlhqw { aspect-ratio: 8.444444444444445 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 203px; }\",\".framer-uCzAc .framer-n58wgc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 65px; }\",\".framer-uCzAc .framer-1580rlx { aspect-ratio: 2.727272727272727 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 65px; }\",\".framer-uCzAc .framer-11171ag { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 21px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 116px; }\",\".framer-uCzAc .framer-45dlt1 { flex: none; height: 21px; position: relative; width: 116px; }\",\".framer-uCzAc .framer-1x9761j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 99px; }\",\".framer-uCzAc .framer-bm3i4y { aspect-ratio: 4.083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 98px; }\",\".framer-uCzAc .framer-u4boti { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 101px; }\",\".framer-uCzAc .framer-jes0lj { aspect-ratio: 4.181818181818182 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 100px; }\",\".framer-uCzAc .framer-dtqe6c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 94px; }\",\".framer-uCzAc .framer-46pj0c { aspect-ratio: 3.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 94px; }\",\".framer-uCzAc .framer-zrw2by { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 23px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 66px; }\",\".framer-uCzAc .framer-1kw3g3d { flex: none; height: 23px; position: relative; width: 66px; }\",\".framer-uCzAc .framer-1gfsbpi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 82px; }\",\".framer-uCzAc .framer-1o2v87o { aspect-ratio: 3.4166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 82px; }\",\".framer-uCzAc .framer-mj6n2w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 114px; }\",\".framer-uCzAc .framer-1h0o8gf { aspect-ratio: 4.730769230769231 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 114px; }\",\".framer-uCzAc .framer-1u3v366 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 162px; }\",\".framer-uCzAc .framer-1h902vg { aspect-ratio: 6.733333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 162px; }\",\".framer-uCzAc .framer-p178kb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 76px; }\",\".framer-uCzAc .framer-1e769h5 { aspect-ratio: 3.1470588235294117 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 76px; }\",\".framer-uCzAc .framer-1emnjas { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 84px; }\",\".framer-uCzAc .framer-cw7f39 { aspect-ratio: 3.48 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 84px; }\",\".framer-uCzAc .framer-pr9zkm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 104px; }\",\".framer-uCzAc .framer-g0y1md { aspect-ratio: 4.34375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 104px; }\",\".framer-uCzAc.framer-v-1r7qjfz.framer-1x7e6je { width: 810px; }\",\".framer-uCzAc.framer-v-19pdiri.framer-1x7e6je { width: 390px; }\",\".framer-uCzAc.framer-v-19pdiri .framer-3mjl56 { flex-direction: column; }\",\".framer-uCzAc.framer-v-19pdiri .framer-re95um, .framer-uCzAc.framer-v-19pdiri .framer-1230uqv-container { flex: none; width: 100%; }\",...sharedStyle.css,'.framer-uCzAc[data-border=\"true\"]::after, .framer-uCzAc [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 74\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"wWjXn7F32\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"MlPN9X606\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfRzE1qXQp=withCSS(Component,css,\"framer-uCzAc\");export default FramerfRzE1qXQp;FramerfRzE1qXQp.displayName=\"Section / Logos\";FramerfRzE1qXQp.defaultProps={height:74,width:1200};addPropertyControls(FramerfRzE1qXQp,{variant:{options:[\"wT9jPVmSl\",\"wWjXn7F32\",\"MlPN9X606\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfRzE1qXQp,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...HorizontalPaddingFonts,...VerticalPaddingFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfRzE1qXQp\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"74\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"wWjXn7F32\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"MlPN9X606\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fRzE1qXQp_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "fRzE1qXQp_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "fRzE1qXQp_2_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "fRzE1qXQp_3_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "fRzE1qXQp_4_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "fRzE1qXQp_5_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "fRzE1qXQp_2_exports", "fRzE1qXQp_4_exports", "fRzE1qXQp_1_exports", "fRzE1qXQp_0_exports", "fRzE1qXQp_3_exports", "fRzE1qXQp_5_exports", "getLocalizedValue", "key", "locale", "values", "value", "HorizontalPaddingFonts", "getFonts", "e4rm8wySI_default", "VerticalPaddingFonts", "h6qrDNqge_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "getLocalizedValue", "SVG", "css", "FramerfRzE1qXQp", "withCSS", "fRzE1qXQp_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
