{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/qyhQMM4czsbGVhrBWHo6/K2mwFXmfYMVYp95ZbqFF/QT5xYIr4_.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", "// Generated by Framer (f2c0341)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,Link,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\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-QEYwP\";const variantClassNames={DoCpVub6d:\"framer-v-18u5fxy\"};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 transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const 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({defaultVariant:\"DoCpVub6d\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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-18u5fxy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DoCpVub6d\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dfrhe5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oY3WcQoV6-container\",nodeId:\"oY3WcQoV6\",rendersWithMotion:true,scopeId:\"QT5xYIr4_\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"oY3WcQoV6\",layoutId:\"oY3WcQoV6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j06ewk\",\"data-framer-name\":\"Braze\",layoutDependency:layoutDependency,layoutId:\"u7spGdX40\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1o3i6q2\",layoutDependency:layoutDependency,layoutId:\"ZP2tpe7bi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55.059 26\" overflow=\"visible\"><g><path d=\"M 0 0 L 55.059 0 L 55.059 26 L 0 26 Z\" fill=\"transparent\"></path><path d=\"M 48.796 8.238 C 50.237 6.762 51.837 7.196 51.837 8.628 C 51.837 10.026 50.2 11.535 48.224 12.705 C 48.033 12.816 47.806 12.944 47.577 13.061 C 47.495 12.675 47.455 12.281 47.457 11.886 C 47.457 10.688 47.952 9.102 48.795 8.238 Z M 41.101 23.31 C 39.186 25.27 36.737 22.77 39.593 19.846 C 40.241 19.183 41.303 18.453 42.408 17.79 C 43.038 19.388 42.538 21.834 41.101 23.31 Z M 28.895 15.456 C 27.426 15.456 26.474 13.652 26.768 11.424 C 27.056 9.196 28.482 7.391 29.951 7.391 C 31.312 7.391 32.225 8.939 32.123 10.939 C 32.085 11.229 32.052 11.507 32.024 11.775 C 31.638 13.836 30.283 15.456 28.895 15.456 Z M 9.491 14.715 C 9.011 15.205 8.424 15.468 7.831 15.468 C 7.275 15.468 6.797 15.212 6.4 14.805 C 5.039 13.412 5.159 9.998 6.905 8.205 C 7.401 7.698 7.999 7.402 8.614 7.402 C 9.164 7.402 9.648 7.653 10.045 8.06 C 11.325 9.368 11.4 12.761 9.491 14.715 Z M 54.983 15.446 C 54.983 15.446 54.439 14.666 54.27 14.443 C 54.155 14.298 54.014 14.12 53.639 14.382 C 52.811 14.949 51.881 15.468 50.733 15.468 C 49.857 15.468 49.089 15.239 48.518 14.744 C 48.758 14.632 49.008 14.51 49.264 14.37 C 50.619 13.618 51.751 12.666 52.294 12.109 C 54.933 9.407 54.107 5.38 50.89 5.38 C 47.855 5.38 45.454 8.41 45.454 11.775 C 45.454 12.281 45.515 13.006 45.726 13.774 C 45.547 13.863 44.345 14.459 42.902 15.273 C 41.547 14.231 39.431 14.699 39.431 14.699 C 41.395 11.847 44.35 7.391 44.6 7.024 C 44.78 6.762 44.753 6.5 44.579 6.088 C 44.355 5.592 44.132 5.503 43.828 5.503 L 37.689 5.503 C 37.487 5.503 37.33 5.598 37.27 5.832 C 37.216 6.06 37.085 6.856 37.064 7.129 C 37.036 7.402 37.286 7.569 37.548 7.569 L 41.994 7.569 L 37.971 13.457 C 37.941 13.482 37.915 13.512 37.896 13.546 C 37.314 14.409 36.416 15.618 35.339 15.618 C 34.669 15.618 33.842 15.127 33.842 13.523 C 33.842 11.953 34.462 8.634 34.914 6.049 C 34.963 5.77 34.871 5.497 34.435 5.497 L 33.347 5.497 C 33.096 5.497 32.955 5.653 32.917 5.871 C 32.852 6.266 32.787 6.656 32.721 7.029 C 32.182 5.976 31.322 5.38 30.076 5.38 C 28.923 5.38 27.796 5.82 26.876 6.757 C 24.58 9.107 25.016 12.939 23.034 14.966 C 22.18 15.841 21.211 15.573 21.211 13.852 C 21.211 11.887 21.946 9.697 22.79 7.62 C 22.937 7.252 22.779 6.946 22.622 6.706 C 22.398 6.372 22.311 6.193 21.908 6.193 C 21.283 6.193 20.282 6.6 18.279 6.6 C 17.854 6.6 17.446 6.583 17.081 6.556 C 17.103 6.25 17.109 6.043 17.114 5.965 C 17.125 5.676 17.027 5.491 16.728 5.491 L 15.705 5.491 C 15.335 5.491 15.242 5.67 15.199 5.965 C 15.025 7.219 14.692 11.819 12.439 14.125 C 12.179 14.393 12.021 14.477 12.021 14.477 C 12.581 13.351 12.886 11.875 12.886 10.705 C 12.886 7.414 10.982 5.375 8.592 5.375 C 7.863 5.375 7.09 5.614 6.367 6.076 C 6.704 4.071 7.015 2.195 7.124 1.559 C 7.216 1.025 7.025 0.746 6.889 0.524 C 6.661 0.161 6.459 0 6.156 0 L 2.628 0 C 2.426 0 2.274 0.145 2.225 0.373 C 2.165 0.641 2.04 1.342 2.023 1.666 C 2.013 1.949 2.203 2.056 2.426 2.056 L 5.006 2.056 C 4.593 4.646 3.808 9.664 3.569 10.922 C 3.27 12.527 2.154 14.493 0.277 15.189 C 0.043 15.278 -0.055 15.495 0.032 15.751 C 0.119 16.008 0.44 16.677 0.538 16.849 C 0.636 17.027 0.853 17.144 1.061 17.071 C 2.03 16.724 2.909 16.164 3.635 15.434 C 3.816 15.246 3.985 15.047 4.14 14.838 C 4.984 16.776 6.698 17.483 8.456 17.483 C 10.442 17.483 12.586 16.776 14.088 15.234 C 15.845 13.44 16.58 10.466 16.89 8.361 C 17.326 8.422 17.821 8.471 18.294 8.471 C 19.502 8.471 20.515 8.21 20.515 8.21 C 20.515 8.21 19.296 11.519 19.296 13.958 C 19.296 16.71 20.58 17.49 22.005 17.49 C 23.47 17.49 24.498 16.364 25.232 14.971 C 25.423 15.407 25.706 15.924 26.093 16.32 C 26.756 16.999 27.578 17.49 28.764 17.49 C 30.119 17.49 31.283 16.687 32.111 15.456 C 32.258 15.975 32.485 16.409 32.797 16.726 C 33.215 17.155 33.982 17.49 34.946 17.49 C 36.6 17.49 37.558 16.219 40.132 16.219 C 40.458 16.219 40.752 16.27 41.019 16.365 C 39.838 17.099 38.717 17.89 38.031 18.592 C 35.909 20.764 35.811 23.622 37.204 25.048 C 38.891 26.774 41.296 25.911 42.798 24.373 C 44.556 22.575 45.067 19.171 44.049 16.843 C 45.28 16.18 46.308 15.69 46.553 15.573 C 47.32 16.648 48.593 17.49 50.694 17.49 C 52.196 17.49 53.708 16.944 54.89 16.03 C 55.075 15.902 55.112 15.634 54.982 15.446 Z\" fill=\"rgb(33,33,35)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hiu3u7\",layoutDependency:layoutDependency,layoutId:\"qOFLvrKjc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55.059 26\" overflow=\"visible\"><path d=\"M 0 0 L 55.059 0 L 55.059 26 L 0 26 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-ozqid6\",layoutDependency:layoutDependency,layoutId:\"BIQFowG3C\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55.058 25.999\" overflow=\"visible\"><path d=\"M 48.795 8.238 C 50.237 6.762 51.836 7.196 51.836 8.628 C 51.836 10.026 50.199 11.535 48.223 12.705 C 48.033 12.816 47.805 12.944 47.576 13.061 C 47.494 12.675 47.454 12.281 47.456 11.886 C 47.456 10.688 47.952 9.102 48.794 8.238 Z M 41.101 23.31 C 39.185 25.27 36.737 22.77 39.593 19.846 C 40.24 19.183 41.302 18.453 42.407 17.79 C 43.038 19.388 42.537 21.834 41.101 23.31 Z M 28.895 15.456 C 27.426 15.456 26.473 13.652 26.767 11.424 C 27.055 9.196 28.482 7.391 29.951 7.391 C 31.311 7.391 32.225 8.939 32.122 10.939 C 32.084 11.229 32.051 11.507 32.024 11.775 C 31.638 13.836 30.282 15.456 28.895 15.456 Z M 9.49 14.715 C 9.011 15.205 8.423 15.468 7.831 15.468 C 7.275 15.468 6.796 15.212 6.399 14.805 C 5.038 13.412 5.158 9.998 6.905 8.205 C 7.4 7.698 7.998 7.402 8.614 7.402 C 9.164 7.402 9.648 7.653 10.045 8.06 C 11.324 9.368 11.4 12.761 9.49 14.715 Z M 54.982 15.446 C 54.982 15.446 54.438 14.666 54.269 14.443 C 54.154 14.298 54.014 14.12 53.638 14.382 C 52.811 14.949 51.88 15.468 50.732 15.468 C 49.856 15.468 49.088 15.239 48.518 14.744 C 48.757 14.632 49.007 14.51 49.263 14.37 C 50.618 13.618 51.75 12.666 52.294 12.109 C 54.933 9.407 54.106 5.38 50.89 5.38 C 47.854 5.38 45.453 8.41 45.453 11.775 C 45.453 12.281 45.514 13.006 45.726 13.774 C 45.546 13.863 44.344 14.459 42.902 15.273 C 41.547 14.231 39.43 14.699 39.43 14.699 C 41.394 11.847 44.349 7.391 44.599 7.024 C 44.779 6.762 44.752 6.5 44.578 6.088 C 44.355 5.592 44.131 5.503 43.827 5.503 L 37.689 5.503 C 37.487 5.503 37.329 5.598 37.27 5.832 C 37.215 6.06 37.085 6.856 37.063 7.129 C 37.036 7.402 37.286 7.569 37.547 7.569 L 41.993 7.569 L 37.971 13.457 C 37.94 13.482 37.914 13.512 37.895 13.546 C 37.313 14.409 36.415 15.618 35.338 15.618 C 34.668 15.618 33.841 15.127 33.841 13.523 C 33.841 11.953 34.462 8.634 34.914 6.049 C 34.962 5.77 34.87 5.497 34.434 5.497 L 33.346 5.497 C 33.096 5.497 32.954 5.653 32.916 5.871 C 32.851 6.266 32.786 6.656 32.72 7.029 C 32.181 5.976 31.322 5.38 30.075 5.38 C 28.922 5.38 27.796 5.82 26.876 6.757 C 24.579 9.107 25.015 12.939 23.034 14.966 C 22.18 15.841 21.211 15.573 21.211 13.852 C 21.211 11.887 21.946 9.697 22.789 7.62 C 22.936 7.252 22.778 6.946 22.621 6.706 C 22.398 6.372 22.31 6.193 21.907 6.193 C 21.282 6.193 20.281 6.6 18.278 6.6 C 17.854 6.6 17.445 6.583 17.081 6.556 C 17.103 6.25 17.108 6.043 17.113 5.965 C 17.124 5.676 17.026 5.491 16.727 5.491 L 15.704 5.491 C 15.334 5.491 15.241 5.67 15.198 5.965 C 15.024 7.219 14.692 11.819 12.439 14.125 C 12.178 14.393 12.021 14.477 12.021 14.477 C 12.58 13.351 12.885 11.875 12.885 10.705 C 12.885 7.414 10.981 5.375 8.592 5.375 C 7.863 5.375 7.09 5.614 6.366 6.076 C 6.704 4.071 7.014 2.195 7.123 1.559 C 7.215 1.025 7.025 0.746 6.889 0.524 C 6.66 0.161 6.459 0 6.155 0 L 2.627 0 C 2.426 0 2.274 0.145 2.225 0.373 C 2.164 0.641 2.04 1.342 2.023 1.666 C 2.012 1.949 2.202 2.056 2.426 2.056 L 5.005 2.056 C 4.592 4.646 3.808 9.664 3.568 10.922 C 3.269 12.527 2.154 14.493 0.276 15.189 C 0.042 15.278 -0.056 15.495 0.031 15.751 C 0.119 16.008 0.44 16.677 0.538 16.849 C 0.636 17.027 0.853 17.144 1.06 17.071 C 2.029 16.724 2.908 16.164 3.634 15.434 C 3.815 15.246 3.984 15.047 4.139 14.838 C 4.983 16.776 6.697 17.483 8.455 17.483 C 10.441 17.483 12.585 16.776 14.088 15.234 C 15.845 13.44 16.58 10.466 16.889 8.361 C 17.325 8.422 17.82 8.471 18.293 8.471 C 19.502 8.471 20.514 8.21 20.514 8.21 C 20.514 8.21 19.295 11.519 19.295 13.958 C 19.295 16.71 20.579 17.49 22.005 17.49 C 23.469 17.49 24.497 16.364 25.232 14.971 C 25.423 15.407 25.706 15.924 26.092 16.32 C 26.756 16.999 27.577 17.49 28.763 17.49 C 30.118 17.49 31.283 16.687 32.11 15.456 C 32.257 15.975 32.485 16.409 32.796 16.726 C 33.214 17.155 33.981 17.49 34.945 17.49 C 36.6 17.49 37.557 16.219 40.131 16.219 C 40.458 16.219 40.751 16.27 41.018 16.365 C 39.837 17.099 38.716 17.89 38.03 18.592 C 35.908 20.764 35.811 23.622 37.204 25.048 C 38.891 26.774 41.295 25.911 42.798 24.373 C 44.555 22.575 45.067 19.171 44.049 16.843 C 45.279 16.18 46.308 15.69 46.552 15.573 C 47.319 16.648 48.593 17.49 50.693 17.49 C 52.195 17.49 53.708 16.944 54.889 16.03 C 55.074 15.902 55.112 15.634 54.981 15.446 Z\" fill=\"rgb(33,33,35)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1m1uhxg\",layoutDependency:layoutDependency,layoutId:\"SkkxqUIvm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.38 5.74\" overflow=\"visible\"><path d=\"M 1.339 0.917 C 2.781 -0.559 4.38 -0.125 4.38 1.307 C 4.38 2.705 2.743 4.214 0.767 5.384 C 0.577 5.495 0.349 5.623 0.12 5.74 C 0.038 5.354 -0.002 4.96 0 4.565 C 0 3.367 0.496 1.78 1.338 0.917 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kimlbd\",layoutDependency:layoutDependency,layoutId:\"a3nBGifX7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.387 6.217\" overflow=\"visible\"><path d=\"M 2.812 5.52 C 0.897 7.48 -1.552 4.98 1.304 2.056 C 1.952 1.393 3.013 0.663 4.118 0 C 4.749 1.598 4.248 4.044 2.812 5.52 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k8hrfr\",layoutDependency:layoutDependency,layoutId:\"Vr1pHdcG0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.416 8.065\" overflow=\"visible\"><path d=\"M 2.181 8.065 C 0.712 8.065 -0.24 6.261 0.053 4.033 C 0.341 1.805 1.768 0 3.237 0 C 4.597 0 5.511 1.549 5.408 3.548 C 5.37 3.838 5.337 4.116 5.31 4.384 C 4.924 6.445 3.569 8.065 2.181 8.065 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1og9gd4\",layoutDependency:layoutDependency,layoutId:\"sTfIyGeNS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.495 8.065\" overflow=\"visible\"><path d=\"M 4.015 7.313 C 3.536 7.803 2.949 8.065 2.356 8.065 C 1.8 8.065 1.321 7.809 0.924 7.402 C -0.437 6.01 -0.317 2.595 1.43 0.802 C 1.925 0.295 2.523 0 3.139 0 C 3.689 0 4.173 0.251 4.57 0.658 C 5.849 1.966 5.925 5.358 4.015 7.313 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jmbsmr\",layoutDependency:layoutDependency,layoutId:\"RaOA0D_1o\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55.058 25.999\" overflow=\"visible\"><path d=\"M 54.982 15.446 C 54.982 15.446 54.438 14.666 54.269 14.443 C 54.154 14.298 54.014 14.12 53.638 14.382 C 52.811 14.949 51.88 15.468 50.732 15.468 C 49.856 15.468 49.088 15.239 48.518 14.744 C 48.757 14.632 49.007 14.51 49.263 14.37 C 50.618 13.618 51.75 12.666 52.294 12.109 C 54.933 9.407 54.106 5.38 50.89 5.38 C 47.854 5.38 45.453 8.41 45.453 11.775 C 45.453 12.281 45.514 13.006 45.726 13.774 C 45.546 13.863 44.344 14.459 42.902 15.273 C 41.547 14.231 39.43 14.699 39.43 14.699 C 41.394 11.847 44.349 7.391 44.599 7.024 C 44.779 6.762 44.752 6.5 44.578 6.088 C 44.355 5.592 44.131 5.503 43.827 5.503 L 37.689 5.503 C 37.487 5.503 37.329 5.598 37.27 5.832 C 37.215 6.06 37.085 6.856 37.063 7.129 C 37.036 7.402 37.286 7.569 37.547 7.569 L 41.993 7.569 L 37.971 13.457 C 37.94 13.482 37.914 13.512 37.895 13.546 C 37.313 14.409 36.415 15.618 35.338 15.618 C 34.668 15.618 33.841 15.127 33.841 13.523 C 33.841 11.953 34.462 8.634 34.914 6.049 C 34.962 5.77 34.87 5.497 34.434 5.497 L 33.346 5.497 C 33.096 5.497 32.954 5.653 32.916 5.871 C 32.851 6.266 32.786 6.656 32.72 7.029 C 32.181 5.976 31.322 5.38 30.075 5.38 C 28.922 5.38 27.796 5.82 26.876 6.757 C 24.579 9.107 25.015 12.939 23.034 14.966 C 22.18 15.841 21.211 15.573 21.211 13.852 C 21.211 11.887 21.946 9.697 22.789 7.62 C 22.936 7.252 22.778 6.946 22.621 6.706 C 22.398 6.372 22.31 6.193 21.907 6.193 C 21.282 6.193 20.281 6.6 18.278 6.6 C 17.854 6.6 17.445 6.583 17.081 6.556 C 17.103 6.25 17.108 6.043 17.113 5.965 C 17.124 5.676 17.026 5.491 16.727 5.491 L 15.704 5.491 C 15.334 5.491 15.241 5.67 15.198 5.965 C 15.024 7.219 14.692 11.819 12.439 14.125 C 12.178 14.393 12.021 14.477 12.021 14.477 C 12.58 13.351 12.885 11.875 12.885 10.705 C 12.885 7.414 10.981 5.375 8.592 5.375 C 7.863 5.375 7.09 5.614 6.366 6.076 C 6.704 4.071 7.014 2.195 7.123 1.559 C 7.215 1.025 7.025 0.746 6.889 0.524 C 6.66 0.161 6.459 0 6.155 0 L 2.627 0 C 2.426 0 2.274 0.145 2.225 0.373 C 2.164 0.641 2.04 1.342 2.023 1.666 C 2.012 1.949 2.202 2.056 2.426 2.056 L 5.005 2.056 C 4.592 4.646 3.808 9.664 3.568 10.922 C 3.269 12.527 2.154 14.493 0.276 15.189 C 0.042 15.278 -0.056 15.495 0.031 15.751 C 0.119 16.008 0.44 16.677 0.538 16.849 C 0.636 17.027 0.853 17.144 1.06 17.071 C 2.029 16.724 2.908 16.164 3.634 15.434 C 3.815 15.246 3.984 15.047 4.139 14.838 C 4.983 16.776 6.697 17.483 8.455 17.483 C 10.441 17.483 12.585 16.776 14.088 15.234 C 15.845 13.44 16.58 10.466 16.889 8.361 C 17.325 8.422 17.82 8.471 18.293 8.471 C 19.502 8.471 20.514 8.21 20.514 8.21 C 20.514 8.21 19.295 11.519 19.295 13.958 C 19.295 16.71 20.579 17.49 22.005 17.49 C 23.469 17.49 24.497 16.364 25.232 14.971 C 25.423 15.407 25.706 15.924 26.092 16.32 C 26.756 16.999 27.577 17.49 28.763 17.49 C 30.118 17.49 31.283 16.687 32.11 15.456 C 32.257 15.975 32.485 16.409 32.796 16.726 C 33.214 17.155 33.981 17.49 34.945 17.49 C 36.6 17.49 37.557 16.219 40.131 16.219 C 40.458 16.219 40.751 16.27 41.018 16.365 C 39.837 17.099 38.716 17.89 38.03 18.592 C 35.908 20.764 35.811 23.622 37.204 25.048 C 38.891 26.774 41.295 25.911 42.798 24.373 C 44.555 22.575 45.067 19.171 44.049 16.843 C 45.279 16.18 46.308 15.69 46.552 15.573 C 47.319 16.648 48.593 17.49 50.693 17.49 C 52.195 17.49 53.708 16.944 54.889 16.03 C 55.074 15.902 55.112 15.634 54.981 15.446 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.bucket.co/\",motionChild:true,nodeId:\"E2YUP8xDJ\",openInNewTab:true,scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13a6z8o framer-aoqboz\",\"data-framer-name\":\"Bucket\",layoutDependency:layoutDependency,layoutId:\"E2YUP8xDJ\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-x3007a\",layoutDependency:layoutDependency,layoutId:\"oQjNm2Qum\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81.762 17\" overflow=\"visible\"><g><path d=\"M 0 0 L 81.762 0 L 81.762 17 L 0 17 Z\" fill=\"transparent\"></path><path d=\"M 12.089 2.451 C 13.103 2.52 13.738 3.259 13.676 4.307 C 13.618 5.281 13.506 6.636 13.302 8.506 C 13.061 10.718 12.863 12.216 12.713 13.213 C 12.587 14.048 11.999 14.598 11.2 14.643 C 10.436 14.686 9.382 14.72 7.954 14.72 C 6.553 14.72 5.514 14.687 4.754 14.646 C 3.915 14.601 3.299 14.029 3.167 13.168 C 3.014 12.167 2.821 10.679 2.606 8.514 C 2.433 6.778 2.33 5.477 2.27 4.513 C 2.197 3.347 2.914 2.507 4.019 2.438 C 4.966 2.379 6.248 2.335 7.954 2.335 C 9.781 2.335 11.123 2.386 12.089 2.451 Z M 3.921 0.822 C 1.901 0.949 0.559 2.598 0.686 4.616 C 0.775 5.972 0.889 7.326 1.026 8.677 C 1.244 10.865 1.44 12.381 1.599 13.417 C 1.844 15.02 3.066 16.175 4.669 16.263 C 5.763 16.317 6.858 16.343 7.954 16.339 C 9.406 16.339 10.489 16.305 11.286 16.26 C 12.864 16.171 14.046 15.022 14.281 13.459 C 14.435 12.433 14.637 10.913 14.88 8.685 C 15.041 7.262 15.168 5.835 15.26 4.405 C 15.375 2.482 14.092 0.966 12.194 0.836 C 11.187 0.768 9.811 0.716 7.954 0.716 C 6.609 0.71 5.265 0.745 3.922 0.822 Z\" fill=\"rgb(38,41,48)\"></path><path d=\"M 8.014 8.914 C 7.742 8.553 7.51 8.164 7.322 7.753 C 7.104 7.275 7.303 6.84 7.65 6.656 C 8.047 6.445 8.573 6.656 8.761 7.07 C 8.918 7.412 9.115 7.732 9.347 8.022 C 10.185 9.079 11.459 9.698 12.808 9.701 C 13.011 9.701 13.211 9.687 13.407 9.661 C 13.486 9.65 13.565 9.649 13.644 9.657 C 14.086 9.705 14.48 10.044 14.48 10.505 C 14.48 10.846 14.259 11.151 13.929 11.214 C 13.56 11.285 13.185 11.321 12.808 11.32 C 12.636 11.32 12.465 11.312 12.297 11.298 C 10.555 11.149 9.023 10.248 8.014 8.914 Z\" fill=\"rgb(38,41,48)\"></path><path d=\"M 25.633 15.3 L 25.633 2.318 L 30.299 2.318 C 31.203 2.318 31.952 2.471 32.545 2.775 C 33.138 3.075 33.581 3.483 33.876 3.998 C 34.171 4.51 34.318 5.086 34.318 5.729 C 34.318 6.27 34.221 6.726 34.026 7.098 C 33.831 7.465 33.569 7.762 33.241 7.985 C 32.918 8.205 32.561 8.366 32.171 8.467 L 32.171 8.594 C 32.595 8.615 33.008 8.754 33.41 9.012 C 33.816 9.266 34.152 9.628 34.418 10.096 C 34.683 10.566 34.816 11.136 34.816 11.808 C 34.816 12.472 34.662 13.067 34.355 13.595 C 34.053 14.119 33.584 14.536 32.949 14.844 C 32.315 15.148 31.504 15.3 30.517 15.3 Z M 27.555 13.62 L 30.33 13.62 C 31.251 13.62 31.911 13.439 32.309 13.075 C 32.706 12.712 32.906 12.258 32.906 11.712 C 32.906 11.303 32.804 10.927 32.601 10.585 C 32.392 10.237 32.09 9.954 31.73 9.767 C 31.357 9.564 30.912 9.463 30.398 9.463 L 27.555 9.463 Z M 27.555 7.935 L 30.131 7.935 C 30.533 7.941 30.932 7.854 31.295 7.681 C 31.643 7.512 31.918 7.276 32.122 6.971 C 32.329 6.663 32.433 6.299 32.433 5.881 C 32.433 5.344 32.248 4.894 31.879 4.531 C 31.51 4.167 30.944 3.985 30.181 3.985 L 27.555 3.985 Z M 43 11.263 L 43 5.564 L 44.867 5.564 L 44.867 15.3 L 43.038 15.3 L 43.038 13.615 L 42.938 13.615 C 42.715 14.139 42.348 14.59 41.881 14.915 C 41.4 15.257 40.8 15.428 40.083 15.428 C 39.468 15.428 38.925 15.29 38.452 15.016 C 37.984 14.737 37.615 14.325 37.345 13.78 C 37.079 13.235 36.947 12.561 36.947 11.758 L 36.947 5.565 L 38.807 5.565 L 38.807 11.529 C 38.807 12.193 38.987 12.721 39.349 13.114 C 39.71 13.507 40.178 13.704 40.755 13.704 C 41.103 13.704 41.449 13.615 41.793 13.437 C 42.141 13.26 42.43 12.992 42.659 12.633 C 42.891 12.273 43.004 11.817 43 11.263 Z M 51.392 15.497 C 50.467 15.497 49.671 15.283 49.004 14.857 C 48.34 14.426 47.829 13.832 47.472 13.075 C 47.116 12.319 46.938 11.452 46.938 10.477 C 46.938 9.488 47.12 8.615 47.485 7.859 C 47.849 7.098 48.364 6.505 49.028 6.078 C 49.692 5.65 50.473 5.438 51.373 5.438 C 52.099 5.438 52.746 5.575 53.314 5.849 C 53.864 6.104 54.338 6.497 54.69 6.99 C 55.042 7.48 55.252 8.053 55.318 8.708 L 53.507 8.708 C 53.409 8.253 53.169 7.84 52.823 7.529 C 52.471 7.199 51.997 7.035 51.405 7.035 C 50.887 7.035 50.432 7.174 50.042 7.453 C 49.656 7.728 49.356 8.12 49.14 8.632 C 48.924 9.139 48.816 9.739 48.816 10.432 C 48.816 11.142 48.922 11.755 49.133 12.27 C 49.345 12.786 49.643 13.185 50.029 13.468 C 50.42 13.751 50.878 13.893 51.405 13.893 C 51.757 13.893 52.077 13.828 52.362 13.696 C 52.653 13.561 52.896 13.369 53.091 13.12 C 53.29 12.871 53.429 12.57 53.507 12.22 L 55.318 12.22 C 55.261 12.823 55.054 13.403 54.715 13.906 C 54.373 14.405 53.908 14.807 53.365 15.072 C 52.804 15.355 52.147 15.497 51.392 15.497 Z M 59.018 11.998 L 59.006 9.684 L 59.33 9.684 L 63.137 5.564 L 65.364 5.564 L 61.022 10.254 L 60.73 10.254 Z M 57.307 15.301 L 57.307 2.318 L 59.168 2.318 L 59.168 15.299 L 57.306 15.299 Z M 63.343 15.301 L 59.92 10.673 L 61.202 9.348 L 65.626 15.3 L 63.343 15.3 Z M 70.785 15.497 C 69.844 15.497 69.033 15.292 68.353 14.881 C 67.676 14.468 67.154 13.887 66.785 13.139 C 66.42 12.387 66.237 11.506 66.237 10.495 C 66.237 9.498 66.42 8.619 66.785 7.859 C 67.154 7.098 67.668 6.505 68.328 6.078 C 68.992 5.65 69.767 5.438 70.654 5.438 C 71.189 5.437 71.719 5.529 72.222 5.71 C 72.733 5.894 73.197 6.186 73.585 6.565 C 73.987 6.954 74.305 7.459 74.537 8.081 C 74.769 8.698 74.885 9.447 74.885 10.331 L 74.885 11.003 L 67.288 11.003 L 67.288 9.583 L 73.063 9.583 C 73.063 9.084 72.963 8.642 72.763 8.258 C 72.574 7.88 72.283 7.562 71.924 7.339 C 71.568 7.115 71.148 7.003 70.667 7.003 C 70.144 7.003 69.688 7.134 69.298 7.396 C 68.916 7.65 68.607 7.999 68.402 8.41 C 68.194 8.829 68.087 9.292 68.091 9.76 L 68.091 10.869 C 68.091 11.52 68.203 12.074 68.427 12.53 C 68.656 12.986 68.972 13.335 69.379 13.577 C 69.786 13.813 70.261 13.931 70.804 13.931 C 71.156 13.931 71.478 13.88 71.768 13.779 C 72.347 13.576 72.803 13.122 73.006 12.543 L 74.767 12.867 C 74.631 13.384 74.371 13.861 74.008 14.254 C 73.647 14.648 73.193 14.954 72.646 15.174 C 72.102 15.389 71.482 15.498 70.786 15.498 Z M 81.411 5.564 L 81.411 7.086 L 76.191 7.086 L 76.191 5.564 Z M 77.59 3.232 L 79.451 3.232 L 79.451 12.442 C 79.451 12.809 79.505 13.086 79.613 13.272 C 79.72 13.453 79.86 13.578 80.03 13.646 C 80.204 13.709 80.392 13.741 80.595 13.741 C 80.744 13.741 80.875 13.73 80.987 13.709 C 81.1 13.688 81.186 13.671 81.249 13.658 L 81.585 15.224 C 81.435 15.278 81.281 15.321 81.124 15.351 C 80.879 15.402 80.628 15.428 80.378 15.427 C 79.888 15.435 79.432 15.346 79.01 15.161 C 78.591 14.979 78.234 14.679 77.982 14.299 C 77.721 13.91 77.59 13.422 77.59 12.834 L 77.59 3.232 Z\" fill=\"rgb(38,41,48)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12q4j4y\",layoutDependency:layoutDependency,layoutId:\"gBDPj2GjL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81.762 17\" overflow=\"visible\"><path d=\"M 0 0 L 81.762 0 L 81.762 17 L 0 17 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-125l3zf\",layoutDependency:layoutDependency,layoutId:\"yVWv2WpmB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.589 15.624\" overflow=\"visible\"><path d=\"M 11.411 1.736 C 12.425 1.805 13.06 2.544 12.998 3.592 C 12.94 4.566 12.828 5.921 12.624 7.791 C 12.383 10.003 12.184 11.501 12.035 12.498 C 11.909 13.333 11.321 13.883 10.522 13.928 C 9.758 13.971 8.704 14.005 7.276 14.005 C 5.875 14.005 4.836 13.972 4.075 13.931 C 3.237 13.886 2.621 13.314 2.489 12.453 C 2.336 11.452 2.143 9.964 1.928 7.799 C 1.755 6.063 1.652 4.762 1.592 3.798 C 1.519 2.632 2.236 1.792 3.341 1.723 C 4.288 1.664 5.57 1.62 7.276 1.62 C 9.103 1.62 10.445 1.671 11.411 1.736 Z M 3.242 0.107 C 1.223 0.234 -0.119 1.883 0.008 3.901 C 0.097 5.257 0.21 6.611 0.348 7.962 C 0.566 10.15 0.762 11.666 0.921 12.702 C 1.166 14.305 2.388 15.46 3.991 15.548 C 5.085 15.602 6.18 15.628 7.276 15.624 C 8.728 15.624 9.811 15.59 10.608 15.545 C 12.186 15.456 13.368 14.307 13.603 12.744 C 13.757 11.718 13.959 10.198 14.202 7.97 C 14.363 6.547 14.49 5.12 14.582 3.69 C 14.697 1.767 13.414 0.251 11.516 0.121 C 10.509 0.053 9.133 0.001 7.276 0.001 C 5.931 -0.005 4.586 0.03 3.244 0.107 Z\" fill=\"rgb(38,41,48)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lwdram\",layoutDependency:layoutDependency,layoutId:\"WBsvjcOej\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.415 12.385\" overflow=\"visible\"><path d=\"M 5.689 0 C 3.983 0 2.702 0.045 1.754 0.104 C 0.649 0.172 -0.068 1.013 0.005 2.178 C 0.065 3.143 0.168 4.443 0.341 6.179 C 0.556 8.345 0.749 9.832 0.902 10.833 C 1.034 11.694 1.65 12.266 2.489 12.311 C 3.249 12.353 4.288 12.385 5.689 12.385 C 7.118 12.385 8.172 12.352 8.935 12.309 C 9.734 12.263 10.322 11.714 10.448 10.878 C 10.598 9.881 10.796 8.383 11.037 6.171 C 11.241 4.301 11.353 2.946 11.411 1.972 C 11.474 0.924 10.838 0.185 9.824 0.117 C 8.858 0.052 7.517 0 5.689 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19ka38b\",layoutDependency:layoutDependency,layoutId:\"eZd_eeN4i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.589 15.624\" overflow=\"visible\"><path d=\"M 3.244 0.107 C 4.586 0.03 5.931 -0.005 7.276 0.001 C 9.133 0.001 10.509 0.053 11.516 0.121 C 13.414 0.251 14.697 1.767 14.582 3.69 C 14.49 5.12 14.363 6.547 14.202 7.97 C 13.959 10.198 13.757 11.718 13.603 12.744 C 13.368 14.307 12.186 15.456 10.608 15.545 C 9.811 15.59 8.728 15.624 7.276 15.624 C 6.18 15.628 5.085 15.602 3.991 15.548 C 2.388 15.46 1.166 14.305 0.921 12.702 C 0.762 11.666 0.566 10.15 0.348 7.962 C 0.21 6.611 0.097 5.257 0.008 3.901 C -0.119 1.883 1.223 0.234 3.242 0.107 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tdwxmy\",layoutDependency:layoutDependency,layoutId:\"a2UBX6Meb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.249 4.746\" overflow=\"visible\"><path d=\"M 0.783 2.34 C 0.511 1.98 0.279 1.591 0.091 1.18 C -0.127 0.702 0.072 0.267 0.419 0.083 C 0.816 -0.128 1.342 0.083 1.531 0.496 C 1.687 0.839 1.884 1.159 2.116 1.448 C 2.954 2.506 4.228 3.124 5.577 3.128 C 5.781 3.128 5.981 3.114 6.177 3.088 C 6.255 3.077 6.334 3.075 6.413 3.084 C 6.855 3.131 7.249 3.471 7.249 3.932 C 7.249 4.273 7.028 4.578 6.699 4.64 C 6.329 4.712 5.954 4.747 5.577 4.746 C 5.405 4.746 5.234 4.739 5.066 4.725 C 3.325 4.576 1.792 3.675 0.783 2.34 Z\" fill=\"rgb(38,41,48)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-166r17j\",layoutDependency:layoutDependency,layoutId:\"HWJevy2iC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55.952 13.18\" overflow=\"visible\"><path d=\"M 0 12.982 L 0 0.001 L 4.666 0.001 C 5.57 0.001 6.319 0.153 6.913 0.457 C 7.505 0.757 7.949 1.165 8.243 1.681 C 8.538 2.192 8.685 2.769 8.685 3.411 C 8.685 3.952 8.588 4.409 8.393 4.78 C 8.198 5.148 7.937 5.444 7.609 5.667 C 7.285 5.888 6.929 6.048 6.539 6.149 L 6.539 6.276 C 6.962 6.297 7.375 6.437 7.777 6.695 C 8.183 6.948 8.519 7.31 8.785 7.779 C 9.05 8.248 9.183 8.818 9.183 9.49 C 9.183 10.154 9.029 10.75 8.723 11.277 C 8.42 11.801 7.951 12.218 7.316 12.527 C 6.682 12.83 5.871 12.982 4.884 12.982 Z M 1.923 11.303 L 4.698 11.303 C 5.618 11.303 6.278 11.121 6.676 10.758 C 7.074 10.394 7.273 9.94 7.273 9.395 C 7.273 8.985 7.172 8.609 6.968 8.267 C 6.759 7.919 6.458 7.636 6.097 7.449 C 5.724 7.246 5.28 7.145 4.766 7.145 L 1.923 7.145 Z M 1.923 5.617 L 4.499 5.617 C 4.901 5.623 5.299 5.536 5.662 5.363 C 6.01 5.195 6.285 4.958 6.489 4.653 C 6.696 4.346 6.8 3.981 6.8 3.564 C 6.8 3.027 6.615 2.576 6.246 2.213 C 5.877 1.849 5.311 1.668 4.548 1.668 L 1.923 1.668 Z M 17.368 8.945 L 17.368 3.246 L 19.234 3.246 L 19.234 12.982 L 17.405 12.982 L 17.405 11.298 L 17.305 11.298 C 17.082 11.822 16.716 12.272 16.248 12.597 C 15.767 12.939 15.167 13.11 14.45 13.11 C 13.836 13.11 13.292 12.973 12.82 12.698 C 12.351 12.419 11.982 12.007 11.712 11.462 C 11.447 10.917 11.314 10.243 11.314 9.44 L 11.314 3.247 L 13.174 3.247 L 13.174 9.212 C 13.174 9.875 13.355 10.403 13.716 10.797 C 14.077 11.189 14.546 11.386 15.122 11.386 C 15.47 11.386 15.816 11.297 16.161 11.12 C 16.509 10.942 16.798 10.674 17.026 10.315 C 17.258 9.956 17.372 9.499 17.368 8.945 Z M 25.759 13.179 C 24.835 13.179 24.038 12.965 23.371 12.54 C 22.707 12.108 22.196 11.514 21.839 10.758 C 21.483 10.002 21.305 9.135 21.305 8.159 C 21.305 7.17 21.487 6.297 21.852 5.541 C 22.217 4.78 22.731 4.187 23.395 3.76 C 24.059 3.333 24.84 3.12 25.74 3.12 C 26.467 3.12 27.113 3.258 27.682 3.531 C 28.231 3.786 28.705 4.179 29.057 4.673 C 29.409 5.162 29.619 5.735 29.685 6.39 L 27.874 6.39 C 27.776 5.935 27.536 5.523 27.19 5.211 C 26.838 4.881 26.365 4.717 25.772 4.717 C 25.254 4.717 24.799 4.856 24.41 5.136 C 24.023 5.41 23.723 5.803 23.507 6.314 C 23.292 6.821 23.183 7.422 23.183 8.115 C 23.183 8.825 23.289 9.437 23.5 9.952 C 23.713 10.468 24.01 10.867 24.397 11.15 C 24.787 11.434 25.245 11.575 25.772 11.575 C 26.124 11.575 26.444 11.511 26.73 11.379 C 27.02 11.243 27.263 11.052 27.458 10.802 C 27.657 10.553 27.796 10.253 27.874 9.902 L 29.685 9.902 C 29.628 10.506 29.421 11.086 29.082 11.588 C 28.741 12.087 28.275 12.489 27.732 12.754 C 27.172 13.037 26.514 13.179 25.759 13.179 Z M 33.386 9.68 L 33.373 7.367 L 33.697 7.367 L 37.504 3.246 L 39.731 3.246 L 35.389 7.937 L 35.097 7.937 Z M 31.674 12.983 L 31.674 0 L 33.535 0 L 33.535 12.982 L 31.673 12.982 Z M 37.71 12.983 L 34.287 8.355 L 35.57 7.031 L 39.993 12.982 L 37.71 12.982 Z M 45.152 13.179 C 44.211 13.179 43.4 12.974 42.72 12.564 C 42.043 12.15 41.521 11.569 41.152 10.821 C 40.787 10.069 40.604 9.188 40.604 8.178 C 40.604 7.18 40.787 6.301 41.152 5.541 C 41.521 4.78 42.035 4.187 42.695 3.76 C 43.359 3.333 44.134 3.12 45.022 3.12 C 45.556 3.119 46.087 3.211 46.59 3.392 C 47.1 3.576 47.565 3.868 47.952 4.248 C 48.354 4.636 48.673 5.141 48.904 5.763 C 49.136 6.38 49.252 7.129 49.252 8.013 L 49.252 8.685 L 41.656 8.685 L 41.656 7.265 L 47.43 7.265 C 47.43 6.766 47.33 6.325 47.13 5.94 C 46.941 5.562 46.651 5.244 46.291 5.021 C 45.935 4.797 45.515 4.686 45.035 4.686 C 44.512 4.686 44.055 4.816 43.666 5.078 C 43.283 5.332 42.974 5.682 42.77 6.092 C 42.561 6.512 42.455 6.974 42.459 7.443 L 42.459 8.552 C 42.459 9.203 42.57 9.756 42.795 10.212 C 43.023 10.669 43.339 11.018 43.747 11.259 C 44.153 11.495 44.628 11.613 45.171 11.613 C 45.524 11.613 45.845 11.562 46.135 11.461 C 46.714 11.259 47.17 10.804 47.373 10.225 L 49.134 10.549 C 48.999 11.067 48.738 11.543 48.376 11.936 C 48.014 12.33 47.56 12.636 47.013 12.856 C 46.469 13.071 45.849 13.18 45.153 13.18 Z M 55.778 3.246 L 55.778 4.768 L 50.558 4.768 L 50.558 3.246 Z M 51.957 0.914 L 53.818 0.914 L 53.818 10.124 C 53.818 10.491 53.872 10.768 53.98 10.954 C 54.088 11.136 54.227 11.26 54.397 11.328 C 54.571 11.392 54.759 11.423 54.963 11.423 C 55.112 11.423 55.243 11.413 55.354 11.392 C 55.467 11.371 55.554 11.354 55.616 11.341 L 55.952 12.906 C 55.802 12.96 55.648 13.003 55.491 13.033 C 55.246 13.085 54.996 13.11 54.745 13.109 C 54.255 13.118 53.799 13.028 53.377 12.843 C 52.958 12.661 52.601 12.362 52.349 11.981 C 52.088 11.592 51.958 11.104 51.958 10.517 L 51.958 0.914 Z\" fill=\"rgb(38,41,48)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zogls0\",layoutDependency:layoutDependency,layoutId:\"uKZYbZcLD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.183 12.982\" overflow=\"visible\"><path d=\"M 0 12.982 L 0 0 L 4.666 0 C 5.57 0 6.319 0.152 6.913 0.457 C 7.505 0.756 7.949 1.164 8.243 1.68 C 8.538 2.191 8.685 2.768 8.685 3.411 C 8.685 3.951 8.588 4.408 8.393 4.779 C 8.198 5.147 7.937 5.443 7.609 5.667 C 7.285 5.887 6.929 6.047 6.539 6.148 L 6.539 6.275 C 6.962 6.296 7.375 6.436 7.777 6.694 C 8.183 6.947 8.519 7.309 8.785 7.778 C 9.05 8.247 9.183 8.817 9.183 9.489 C 9.183 10.153 9.029 10.749 8.723 11.277 C 8.42 11.8 7.951 12.217 7.316 12.526 C 6.682 12.829 5.871 12.982 4.884 12.982 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p0at48\",layoutDependency:layoutDependency,layoutId:\"uskUwvnbf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.35 4.158\" overflow=\"visible\"><path d=\"M 0 4.158 L 2.775 4.158 C 3.695 4.158 4.355 3.976 4.754 3.613 C 5.151 3.249 5.35 2.795 5.35 2.25 C 5.35 1.84 5.249 1.464 5.046 1.122 C 4.837 0.774 4.535 0.491 4.175 0.304 C 3.802 0.101 3.357 0 2.843 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16jbzuh\",layoutDependency:layoutDependency,layoutId:\"DI3qyXMUo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.877 3.95\" overflow=\"visible\"><path d=\"M 0 3.95 L 2.576 3.95 C 2.978 3.956 3.376 3.869 3.739 3.695 C 4.087 3.527 4.363 3.291 4.567 2.986 C 4.774 2.678 4.877 2.314 4.877 1.896 C 4.877 1.359 4.693 0.908 4.324 0.546 C 3.955 0.181 3.389 0 2.625 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nq6swh\",layoutDependency:layoutDependency,layoutId:\"YK3LGyG4w\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.92 9.864\" overflow=\"visible\"><path d=\"M 6.054 5.699 L 6.054 0 L 7.92 0 L 7.92 9.736 L 6.091 9.736 L 6.091 8.052 L 5.991 8.052 C 5.768 8.575 5.402 9.026 4.934 9.351 C 4.453 9.693 3.853 9.864 3.136 9.864 C 2.522 9.864 1.978 9.726 1.506 9.452 C 1.037 9.173 0.668 8.761 0.398 8.216 C 0.133 7.671 0 6.997 0 6.194 L 0 0.001 L 1.86 0.001 L 1.86 5.965 C 1.86 6.629 2.041 7.157 2.402 7.55 C 2.763 7.943 3.232 8.14 3.808 8.14 C 4.156 8.14 4.503 8.051 4.847 7.873 C 5.195 7.696 5.484 7.428 5.712 7.069 C 5.944 6.709 6.058 6.253 6.054 5.699 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z4nmh7\",layoutDependency:layoutDependency,layoutId:\"sxZkpCh_C\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.38 10.059\" overflow=\"visible\"><path d=\"M 4.454 10.059 C 3.53 10.059 2.733 9.845 2.066 9.42 C 1.402 8.988 0.891 8.394 0.534 7.638 C 0.178 6.882 0 6.015 0 5.039 C 0 4.05 0.182 3.177 0.547 2.421 C 0.912 1.66 1.426 1.067 2.09 0.64 C 2.754 0.213 3.535 0 4.435 0 C 5.162 0 5.808 0.138 6.377 0.411 C 6.926 0.666 7.4 1.059 7.752 1.553 C 8.104 2.042 8.314 2.616 8.38 3.27 L 6.569 3.27 C 6.471 2.815 6.231 2.403 5.885 2.091 C 5.533 1.762 5.06 1.597 4.467 1.597 C 3.949 1.597 3.494 1.736 3.105 2.016 C 2.718 2.29 2.418 2.683 2.202 3.194 C 1.987 3.701 1.878 4.302 1.878 4.995 C 1.878 5.705 1.984 6.318 2.195 6.832 C 2.408 7.348 2.705 7.747 3.092 8.03 C 3.482 8.314 3.94 8.455 4.467 8.455 C 4.819 8.455 5.139 8.391 5.425 8.259 C 5.715 8.124 5.958 7.932 6.153 7.682 C 6.352 7.433 6.491 7.133 6.569 6.782 L 8.38 6.782 C 8.323 7.386 8.116 7.966 7.777 8.468 C 7.436 8.967 6.97 9.369 6.427 9.634 C 5.867 9.917 5.209 10.059 4.454 10.059 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9kdntt\",layoutDependency:layoutDependency,layoutId:\"VzWYxTZCQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.358 6.434\" overflow=\"visible\"><path d=\"M 0.012 6.434 L 0 4.12 L 0.324 4.12 L 4.131 0 L 6.358 0 L 2.016 4.69 L 1.723 4.69 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r6274g\",layoutDependency:layoutDependency,layoutId:\"mHZqewX87\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.862 12.983\" overflow=\"visible\"><path d=\"M 0.001 12.983 L 0.001 0 L 1.862 0 L 1.862 12.982 L 0 12.982 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h51ysj\",layoutDependency:layoutDependency,layoutId:\"Zn2F8IWR9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.706 5.952\" overflow=\"visible\"><path d=\"M 3.423 5.952 L 0 1.324 L 1.282 0 L 5.706 5.952 L 3.423 5.952 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l52la4\",layoutDependency:layoutDependency,layoutId:\"qTUN8ykha\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.648 10.06\" overflow=\"visible\"><path d=\"M 4.548 10.059 C 3.607 10.059 2.796 9.854 2.116 9.444 C 1.439 9.03 0.917 8.449 0.548 7.701 C 0.183 6.949 0 6.068 0 5.058 C 0 4.061 0.183 3.181 0.548 2.421 C 0.917 1.66 1.431 1.067 2.091 0.64 C 2.755 0.213 3.53 0 4.418 0 C 4.952 -0.001 5.483 0.091 5.986 0.272 C 6.496 0.456 6.96 0.748 7.348 1.128 C 7.75 1.516 8.069 2.021 8.3 2.643 C 8.532 3.26 8.648 4.01 8.648 4.894 L 8.648 5.565 L 1.052 5.565 L 1.052 4.146 L 6.826 4.146 C 6.826 3.646 6.726 3.205 6.526 2.82 C 6.337 2.442 6.046 2.124 5.687 1.902 C 5.331 1.677 4.911 1.566 4.431 1.566 C 3.908 1.566 3.451 1.696 3.062 1.958 C 2.679 2.212 2.37 2.562 2.165 2.973 C 1.957 3.392 1.85 3.855 1.855 4.323 L 1.855 5.432 C 1.855 6.083 1.966 6.636 2.191 7.092 C 2.419 7.549 2.735 7.898 3.143 8.139 C 3.549 8.375 4.024 8.494 4.567 8.494 C 4.919 8.494 5.241 8.443 5.531 8.341 C 6.11 8.139 6.566 7.684 6.769 7.105 L 8.53 7.429 C 8.395 7.947 8.134 8.423 7.771 8.817 C 7.41 9.21 6.956 9.516 6.409 9.736 C 5.865 9.951 5.245 10.06 4.549 10.06 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mt67dw\",layoutDependency:layoutDependency,layoutId:\"oCU8sshQh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.22 1.522\" overflow=\"visible\"><path d=\"M 5.22 0 L 5.22 1.522 L 0 1.522 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n9p0jv\",layoutDependency:layoutDependency,layoutId:\"NusGqJsWD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.995 12.196\" overflow=\"visible\"><path d=\"M 0 0 L 1.861 0 L 1.861 9.21 C 1.861 9.577 1.915 9.854 2.023 10.041 C 2.131 10.222 2.27 10.347 2.44 10.415 C 2.614 10.478 2.803 10.509 3.006 10.509 C 3.155 10.509 3.286 10.499 3.398 10.478 C 3.51 10.457 3.597 10.44 3.659 10.427 L 3.995 11.992 C 3.845 12.047 3.691 12.089 3.534 12.119 C 3.289 12.171 3.039 12.196 2.788 12.195 C 2.298 12.204 1.842 12.115 1.42 11.929 C 1.001 11.747 0.644 11.448 0.393 11.067 C 0.131 10.678 0.001 10.19 0.001 9.603 L 0.001 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.cortex.io/\",motionChild:true,nodeId:\"ACEsXFMtg\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ogx2w4 framer-aoqboz\",\"data-framer-name\":\"Cortex\",layoutDependency:layoutDependency,layoutId:\"ACEsXFMtg\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1th25kr\",layoutDependency:layoutDependency,layoutId:\"fA_ZhHllA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 72.414 20\" overflow=\"visible\"><g><path d=\"M 0 0 L 72.414 0 L 72.414 20 L 0 20 Z\" fill=\"transparent\"></path><g transform=\"translate(0.243 0.028)\"><path d=\"M 4.226 3.062 C 7.249 6.163 12.141 6.161 15.16 3.053 L 17.833 0.301 L 19.086 1.592 L 16.413 4.343 C 13.394 7.45 13.391 12.487 16.404 15.599 L 19.086 18.359 L 17.834 19.649 L 15.151 16.888 C 13.72 15.402 11.745 14.563 9.682 14.564 C 7.619 14.566 5.646 15.408 4.217 16.897 L 1.544 19.649 L 0.291 18.359 L 2.964 15.608 C 5.983 12.5 5.986 7.463 2.974 4.352 L 0.291 1.591 L 1.544 0.301 Z M 12.403 0.129 L 12.529 0 L 13.782 1.29 L 13.657 1.419 C 12.62 2.5 11.187 3.111 9.689 3.111 C 8.191 3.111 6.758 2.5 5.721 1.419 L 5.596 1.29 L 6.849 0.001 L 6.974 0.129 C 7.683 0.869 8.664 1.287 9.689 1.287 C 10.713 1.287 11.694 0.869 12.403 0.129 Z M 19.253 12.77 L 19.379 12.899 L 18.126 14.189 L 18 14.06 C 15.809 11.804 15.809 8.146 18 5.891 L 18.126 5.762 L 19.379 7.052 L 19.253 7.181 C 17.754 8.724 17.754 11.227 19.253 12.77 Z M 5.597 18.661 L 5.721 18.532 C 6.758 17.451 8.191 16.84 9.689 16.84 C 11.187 16.84 12.62 17.451 13.657 18.532 L 13.783 18.661 L 12.53 19.95 L 12.404 19.821 C 11.695 19.082 10.714 18.664 9.689 18.664 C 8.664 18.664 7.684 19.082 6.974 19.821 L 6.849 19.95 Z M 0.125 7.181 L 0 7.052 L 1.252 5.762 L 1.378 5.892 C 3.57 8.147 3.57 11.805 1.378 14.061 L 1.252 14.19 L 0 12.9 L 0.125 12.771 C 1.624 11.228 1.624 8.725 0.125 7.181 Z M 11.934 12.286 L 11.934 12.286 L 11.934 12.287 Z M 11.934 7.666 L 7.445 7.666 L 7.445 12.286 L 11.934 12.286 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 62.706 14.569 L 65.997 9.946 L 62.894 5.534 L 65.055 5.534 L 67.146 8.587 L 69.288 5.534 L 71.328 5.534 L 68.209 9.946 L 71.517 14.569 L 69.357 14.569 L 67.06 11.286 L 64.746 14.569 Z M 58.559 14.674 C 55.799 14.674 54.068 12.84 54.068 10.07 C 54.068 7.281 55.799 5.428 58.388 5.428 C 60.924 5.428 62.622 7.087 62.673 9.734 C 62.673 9.963 62.656 10.21 62.621 10.457 L 56.005 10.457 L 56.005 10.581 C 56.056 12.117 56.999 13.122 58.456 13.122 C 59.587 13.122 60.41 12.54 60.668 11.534 L 62.519 11.534 C 62.21 13.317 60.736 14.675 58.559 14.675 Z M 56.073 9.063 L 60.753 9.063 C 60.599 7.723 59.69 6.963 58.405 6.963 C 57.222 6.963 56.21 7.775 56.074 9.063 Z M 49.286 12.116 L 49.286 3.011 L 51.155 3.011 L 51.155 5.535 L 53.297 5.535 L 53.297 7.211 L 51.154 7.211 L 51.154 12.894 L 53.4 12.894 L 53.4 14.57 L 51.686 14.57 C 50.006 14.57 49.286 13.758 49.286 12.117 Z M 43.414 7.75 C 43.414 6.526 44.379 5.534 45.568 5.534 L 47.959 5.534 L 47.959 7.317 L 45.266 7.317 L 45.266 14.569 L 43.414 14.569 L 43.414 7.751 Z M 37.608 14.674 C 34.934 14.674 33.134 12.822 33.134 10.052 C 33.134 7.299 34.934 5.428 37.608 5.428 C 40.282 5.428 42.081 7.299 42.081 10.052 C 42.081 12.822 40.281 14.675 37.608 14.675 Z M 37.608 13.052 C 39.168 13.052 40.196 11.799 40.196 10.052 C 40.196 8.305 39.168 7.052 37.608 7.052 C 36.048 7.052 35.037 8.305 35.037 10.052 C 35.037 11.799 36.048 13.052 37.608 13.052 Z M 28.27 14.674 C 25.613 14.674 23.917 12.893 23.917 10.07 C 23.917 7.281 25.665 5.428 28.322 5.428 C 30.584 5.428 31.99 6.717 32.35 8.763 L 30.413 8.763 C 30.173 7.705 29.436 7.052 28.288 7.052 C 26.796 7.052 25.819 8.287 25.819 10.07 C 25.819 11.834 26.796 13.052 28.288 13.052 C 29.419 13.052 30.173 12.381 30.396 11.34 L 32.35 11.34 C 32.007 13.387 30.516 14.675 28.27 14.675 Z\" fill=\"rgb(0,0,0)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-coxys4\",layoutDependency:layoutDependency,layoutId:\"A1ZrKLsio\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 72.414 20\" overflow=\"visible\"><path d=\"M 0 0 L 72.414 0 L 72.414 20 L 0 20 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-j87svy\",layoutDependency:layoutDependency,layoutId:\"wZxOAoke8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71.517 19.95\" overflow=\"visible\"><g><path d=\"M 4.226 3.062 C 7.249 6.163 12.141 6.161 15.16 3.053 L 17.833 0.301 L 19.086 1.592 L 16.413 4.343 C 13.394 7.45 13.391 12.487 16.404 15.599 L 19.086 18.359 L 17.834 19.649 L 15.151 16.888 C 13.72 15.402 11.745 14.563 9.682 14.564 C 7.619 14.566 5.646 15.408 4.217 16.897 L 1.544 19.649 L 0.291 18.359 L 2.964 15.608 C 5.983 12.5 5.986 7.463 2.974 4.352 L 0.291 1.591 L 1.544 0.301 Z M 12.403 0.129 L 12.529 0 L 13.782 1.29 L 13.657 1.419 C 12.62 2.5 11.187 3.111 9.689 3.111 C 8.191 3.111 6.758 2.5 5.721 1.419 L 5.596 1.29 L 6.849 0.001 L 6.974 0.129 C 7.683 0.869 8.664 1.287 9.689 1.287 C 10.713 1.287 11.694 0.869 12.403 0.129 Z M 19.253 12.77 L 19.379 12.899 L 18.126 14.189 L 18 14.06 C 15.809 11.804 15.809 8.146 18 5.891 L 18.126 5.762 L 19.379 7.052 L 19.253 7.181 C 17.754 8.724 17.754 11.227 19.253 12.77 Z M 5.597 18.661 L 5.721 18.532 C 6.758 17.451 8.191 16.84 9.689 16.84 C 11.187 16.84 12.62 17.451 13.657 18.532 L 13.783 18.661 L 12.53 19.95 L 12.404 19.821 C 11.695 19.082 10.714 18.664 9.689 18.664 C 8.664 18.664 7.684 19.082 6.974 19.821 L 6.849 19.95 Z M 0.125 7.181 L 0 7.052 L 1.252 5.762 L 1.378 5.892 C 3.57 8.147 3.57 11.805 1.378 14.061 L 1.252 14.19 L 0 12.9 L 0.125 12.771 C 1.624 11.228 1.624 8.725 0.125 7.181 Z M 11.934 12.286 L 11.934 12.286 L 11.934 12.287 Z M 11.934 7.666 L 7.445 7.666 L 7.445 12.286 L 11.934 12.286 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 62.706 14.569 L 65.997 9.946 L 62.894 5.534 L 65.055 5.534 L 67.146 8.587 L 69.288 5.534 L 71.328 5.534 L 68.209 9.946 L 71.517 14.569 L 69.357 14.569 L 67.06 11.286 L 64.746 14.569 Z M 58.559 14.674 C 55.799 14.674 54.068 12.84 54.068 10.07 C 54.068 7.281 55.799 5.428 58.388 5.428 C 60.924 5.428 62.622 7.087 62.673 9.734 C 62.673 9.963 62.656 10.21 62.621 10.457 L 56.005 10.457 L 56.005 10.581 C 56.056 12.117 56.999 13.122 58.456 13.122 C 59.587 13.122 60.41 12.54 60.668 11.534 L 62.519 11.534 C 62.21 13.317 60.736 14.675 58.559 14.675 Z M 56.073 9.063 L 60.753 9.063 C 60.599 7.723 59.69 6.963 58.405 6.963 C 57.222 6.963 56.21 7.775 56.074 9.063 Z M 49.286 12.116 L 49.286 3.011 L 51.155 3.011 L 51.155 5.535 L 53.297 5.535 L 53.297 7.211 L 51.154 7.211 L 51.154 12.894 L 53.4 12.894 L 53.4 14.57 L 51.686 14.57 C 50.006 14.57 49.286 13.758 49.286 12.117 Z M 43.414 7.75 C 43.414 6.526 44.379 5.534 45.568 5.534 L 47.959 5.534 L 47.959 7.317 L 45.266 7.317 L 45.266 14.569 L 43.414 14.569 L 43.414 7.751 Z M 37.608 14.674 C 34.934 14.674 33.134 12.822 33.134 10.052 C 33.134 7.299 34.934 5.428 37.608 5.428 C 40.282 5.428 42.081 7.299 42.081 10.052 C 42.081 12.822 40.281 14.675 37.608 14.675 Z M 37.608 13.052 C 39.168 13.052 40.196 11.799 40.196 10.052 C 40.196 8.305 39.168 7.052 37.608 7.052 C 36.048 7.052 35.037 8.305 35.037 10.052 C 35.037 11.799 36.048 13.052 37.608 13.052 Z M 28.27 14.674 C 25.613 14.674 23.917 12.893 23.917 10.07 C 23.917 7.281 25.665 5.428 28.322 5.428 C 30.584 5.428 31.99 6.717 32.35 8.763 L 30.413 8.763 C 30.173 7.705 29.436 7.052 28.288 7.052 C 26.796 7.052 25.819 8.287 25.819 10.07 C 25.819 11.834 26.796 13.052 28.288 13.052 C 29.419 13.052 30.173 12.381 30.396 11.34 L 32.35 11.34 C 32.007 13.387 30.516 14.675 28.27 14.675 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1u9xpg8\",layoutDependency:layoutDependency,layoutId:\"CRy7MynG6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.379 19.95\" overflow=\"visible\"><path d=\"M 4.226 3.062 C 7.249 6.163 12.141 6.161 15.16 3.053 L 17.833 0.301 L 19.086 1.592 L 16.413 4.343 C 13.394 7.45 13.391 12.487 16.404 15.599 L 19.086 18.359 L 17.834 19.649 L 15.151 16.888 C 13.72 15.402 11.745 14.563 9.682 14.564 C 7.619 14.566 5.646 15.408 4.217 16.897 L 1.544 19.649 L 0.291 18.359 L 2.964 15.608 C 5.983 12.5 5.986 7.463 2.974 4.352 L 0.291 1.591 L 1.544 0.301 Z M 12.403 0.129 L 12.529 0 L 13.782 1.29 L 13.657 1.419 C 12.62 2.5 11.187 3.111 9.689 3.111 C 8.191 3.111 6.758 2.5 5.721 1.419 L 5.596 1.29 L 6.849 0.001 L 6.974 0.129 C 7.683 0.869 8.664 1.287 9.689 1.287 C 10.713 1.287 11.694 0.869 12.403 0.129 Z M 19.253 12.77 L 19.379 12.899 L 18.126 14.189 L 18 14.06 C 15.809 11.804 15.809 8.146 18 5.891 L 18.126 5.762 L 19.379 7.052 L 19.253 7.181 C 17.754 8.724 17.754 11.227 19.253 12.77 Z M 5.597 18.661 L 5.721 18.532 C 6.758 17.451 8.191 16.84 9.689 16.84 C 11.187 16.84 12.62 17.451 13.657 18.532 L 13.783 18.661 L 12.53 19.95 L 12.404 19.821 C 11.695 19.082 10.714 18.664 9.689 18.664 C 8.664 18.664 7.684 19.082 6.974 19.821 L 6.849 19.95 Z M 0.125 7.181 L 0 7.052 L 1.252 5.762 L 1.378 5.892 C 3.57 8.147 3.57 11.805 1.378 14.061 L 1.252 14.19 L 0 12.9 L 0.125 12.771 C 1.624 11.228 1.624 8.725 0.125 7.181 Z M 11.934 12.286 L 11.934 12.286 L 11.934 12.287 Z M 11.934 7.666 L 7.445 7.666 L 7.445 12.286 L 11.934 12.286 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-spi9mc\",layoutDependency:layoutDependency,layoutId:\"RonoLCtuZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.795 19.348\" overflow=\"visible\"><path d=\"M 1.253 0 L 0 1.29 L 2.683 4.05 C 5.695 7.162 5.692 12.199 2.673 15.306 L 0 18.058 L 1.253 19.348 L 3.926 16.596 C 5.355 15.107 7.328 14.265 9.391 14.263 C 11.454 14.261 13.429 15.1 14.86 16.587 L 17.543 19.348 L 18.795 18.058 L 16.113 15.297 C 13.1 12.186 13.103 7.149 16.122 4.042 L 18.795 1.29 L 17.542 0 L 14.869 2.752 C 11.85 5.859 6.958 5.862 3.935 2.761 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h6hbtw\",layoutDependency:layoutDependency,layoutId:\"few3qRPaL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.186 3.111\" overflow=\"visible\"><path d=\"M 6.808 0.129 L 6.933 0 L 8.186 1.29 L 8.061 1.419 C 7.024 2.5 5.591 3.111 4.093 3.111 C 2.595 3.111 1.162 2.5 0.125 1.419 L 0 1.29 L 1.253 0.001 L 1.378 0.129 C 2.087 0.869 3.068 1.287 4.093 1.287 C 5.118 1.287 6.098 0.869 6.808 0.129 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11zvu52\",layoutDependency:layoutDependency,layoutId:\"cXi1NHM8x\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.022 8.427\" overflow=\"visible\"><path d=\"M 2.896 1.419 L 3.022 1.29 L 1.769 0 L 1.643 0.129 C -0.548 2.384 -0.548 6.042 1.643 8.298 L 1.769 8.427 L 3.022 7.137 L 2.896 7.008 C 1.397 5.465 1.397 2.962 2.896 1.419 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k58chd\",layoutDependency:layoutDependency,layoutId:\"h4i71cAji\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.186 3.111\" overflow=\"visible\"><path d=\"M 1.252 3.111 L 1.378 2.982 C 2.087 2.242 3.068 1.824 4.093 1.824 C 5.118 1.824 6.098 2.242 6.808 2.982 L 6.933 3.111 L 8.186 1.821 L 8.061 1.692 C 7.024 0.611 5.591 0 4.093 0 C 2.595 0 1.162 0.611 0.125 1.692 L 0 1.821 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uap6u2\",layoutDependency:layoutDependency,layoutId:\"Bu8YID2ST\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.022 8.428\" overflow=\"visible\"><path d=\"M 0.125 7.009 L 0 7.138 L 1.252 8.428 L 1.378 8.299 C 3.57 6.043 3.57 2.385 1.378 0.13 L 1.252 0 L 0 1.29 L 0.125 1.419 C 1.624 2.963 1.624 5.466 0.125 7.009 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ns9fi8\",layoutDependency:layoutDependency,layoutId:\"SX4l19fNX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.49 4.621\" overflow=\"visible\"><path d=\"M 4.489 4.621 L 4.489 0 L 0 0 L 0 4.621 L 4.49 4.621 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-4kbb5l\",layoutDependency:layoutDependency,layoutId:\"h7oXduAjg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 47.601 11.664\" overflow=\"visible\"><path d=\"M 38.79 11.558 L 42.081 6.934 L 38.978 2.523 L 41.139 2.523 L 43.23 5.576 L 45.372 2.523 L 47.412 2.523 L 44.292 6.934 L 47.601 11.558 L 45.441 11.558 L 43.143 8.275 L 40.829 11.558 Z M 34.643 11.663 C 31.883 11.663 30.151 9.829 30.151 7.059 C 30.151 4.27 31.882 2.417 34.471 2.417 C 37.008 2.417 38.706 4.076 38.757 6.723 C 38.757 6.952 38.739 7.199 38.705 7.446 L 32.088 7.446 L 32.088 7.57 C 32.139 9.106 33.083 10.111 34.539 10.111 C 35.67 10.111 36.494 9.529 36.751 8.523 L 38.602 8.523 C 38.294 10.306 36.819 11.664 34.642 11.664 Z M 32.157 6.052 L 36.837 6.052 C 36.682 4.712 35.774 3.952 34.488 3.952 C 33.306 3.952 32.294 4.764 32.157 6.052 Z M 25.37 9.105 L 25.37 0 L 27.239 0 L 27.239 2.524 L 29.381 2.524 L 29.381 4.2 L 27.238 4.2 L 27.238 9.883 L 29.483 9.883 L 29.483 11.559 L 27.77 11.559 C 26.09 11.559 25.37 10.747 25.37 9.106 Z M 19.498 4.739 C 19.498 3.515 20.462 2.523 21.651 2.523 L 24.042 2.523 L 24.042 4.306 L 21.349 4.306 L 21.349 11.558 L 19.498 11.558 L 19.498 4.74 Z M 13.691 11.663 C 11.017 11.663 9.217 9.811 9.217 7.041 C 9.217 4.288 11.017 2.417 13.691 2.417 C 16.366 2.417 18.165 4.288 18.165 7.041 C 18.165 9.811 16.365 11.664 13.691 11.664 Z M 13.691 10.041 C 15.251 10.041 16.279 8.788 16.279 7.041 C 16.279 5.294 15.251 4.041 13.691 4.041 C 12.131 4.041 11.12 5.294 11.12 7.041 C 11.12 8.788 12.131 10.041 13.691 10.041 Z M 4.353 11.663 C 1.697 11.663 0 9.882 0 7.059 C 0 4.27 1.748 2.417 4.406 2.417 C 6.668 2.417 8.074 3.706 8.433 5.752 L 6.497 5.752 C 6.257 4.694 5.519 4.041 4.371 4.041 C 2.879 4.041 1.902 5.276 1.902 7.059 C 1.902 8.823 2.879 10.041 4.371 10.041 C 5.502 10.041 6.257 9.37 6.479 8.329 L 8.433 8.329 C 8.09 10.376 6.599 11.664 4.354 11.664 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-54eyp3\",layoutDependency:layoutDependency,layoutId:\"Syn8QCkgD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.811 9.035\" overflow=\"visible\"><path d=\"M 0 9.035 L 3.291 4.412 L 0.188 0 L 2.349 0 L 4.44 3.053 L 6.582 0 L 8.622 0 L 5.503 4.412 L 8.811 9.035 L 6.651 9.035 L 4.354 5.752 L 2.039 9.035 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5vjw0j\",layoutDependency:layoutDependency,layoutId:\"GGaapro8N\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.606 9.247\" overflow=\"visible\"><path d=\"M 4.492 9.246 C 1.732 9.246 0 7.412 0 4.641 C 0 1.853 1.731 0 4.32 0 C 6.857 0 8.554 1.659 8.606 4.306 C 8.606 4.535 8.588 4.782 8.554 5.029 L 1.937 5.029 L 1.937 5.153 C 1.988 6.688 2.932 7.694 4.388 7.694 C 5.519 7.694 6.343 7.112 6.6 6.106 L 8.451 6.106 C 8.143 7.888 6.668 9.247 4.491 9.247 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ysmtrt\",layoutDependency:layoutDependency,layoutId:\"a3WO3Wm7v\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.68 2.1\" overflow=\"visible\"><path d=\"M 0 2.1 L 4.68 2.1 C 4.526 0.759 3.617 0 2.332 0 C 1.149 0 0.137 0.812 0.001 2.1 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mpmbaa\",layoutDependency:layoutDependency,layoutId:\"rxBG9uNJz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.114 11.559\" overflow=\"visible\"><path d=\"M 0 9.105 L 0 0 L 1.869 0 L 1.869 2.524 L 4.011 2.524 L 4.011 4.2 L 1.868 4.2 L 1.868 9.883 L 4.114 9.883 L 4.114 11.559 L 2.4 11.559 C 0.72 11.559 0 10.747 0 9.106 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1niyst2\",layoutDependency:layoutDependency,layoutId:\"UVAwUzzj1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.544 9.035\" overflow=\"visible\"><path d=\"M 0 2.217 C 0 0.992 0.964 0 2.153 0 L 4.544 0 L 4.544 1.783 L 1.851 1.783 L 1.851 9.035 L 0 9.035 L 0 2.217 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ia32d6\",layoutDependency:layoutDependency,layoutId:\"YuAzUjLp7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.948 9.247\" overflow=\"visible\"><path d=\"M 4.474 9.246 C 1.8 9.246 0 7.394 0 4.623 C 0 1.87 1.8 0 4.474 0 C 7.148 0 8.948 1.87 8.948 4.623 C 8.948 7.394 7.148 9.247 4.474 9.247 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w2cypm\",layoutDependency:layoutDependency,layoutId:\"w3M2DpYZB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.159 6\" overflow=\"visible\"><path d=\"M 2.571 6 C 4.131 6 5.159 4.747 5.159 3 C 5.159 1.253 4.131 0 2.571 0 C 1.011 0 0 1.253 0 3 C 0 4.747 1.011 6 2.571 6 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tstgg5\",layoutDependency:layoutDependency,layoutId:\"ErAuqeHkN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.433 9.247\" overflow=\"visible\"><path d=\"M 4.353 9.246 C 1.697 9.246 0 7.465 0 4.641 C 0 1.853 1.748 0 4.406 0 C 6.668 0 8.074 1.288 8.433 3.335 L 6.497 3.335 C 6.257 2.277 5.519 1.623 4.371 1.623 C 2.879 1.623 1.902 2.859 1.902 4.641 C 1.902 6.406 2.879 7.623 4.371 7.623 C 5.502 7.623 6.257 6.953 6.479 5.912 L 8.433 5.912 C 8.09 7.959 6.599 9.247 4.354 9.247 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.count.co/\",motionChild:true,nodeId:\"cscN3LkKx\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-163jedl framer-aoqboz\",\"data-framer-name\":\"Count\",layoutDependency:layoutDependency,layoutId:\"cscN3LkKx\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-48bq37\",layoutDependency:layoutDependency,layoutId:\"xLZDQEVfS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 74.016 18\" overflow=\"visible\"><g><path d=\"M 9.017 10.742 L 2.454 2.816 C 2.415 2.757 2.336 2.757 2.277 2.797 C 2.267 2.806 2.257 2.806 2.257 2.816 C -1.068 6.627 -0.675 12.412 3.144 15.742 C 3.802 16.312 4.537 16.788 5.328 17.155 C 5.44 14.544 6.817 12.151 9.018 10.742 Z\" fill=\"rgb(45,42,249)\"></path><path d=\"M 13.32 9.346 C 11.789 9.343 10.29 9.779 9 10.603 L 13.92 16.545 C 15.858 15.368 17.295 13.519 17.954 11.35 C 18.037 11.083 17.932 10.794 17.698 10.642 C 16.398 9.789 14.875 9.338 13.32 9.346 Z\" fill=\"rgb(242,12,116)\"></path><path d=\"M 5.277 17.158 C 8.043 18.432 11.26 18.251 13.867 16.677 L 8.946 10.735 C 6.752 12.159 5.374 14.555 5.277 17.158 Z M 10.875 3.86 C 12 3.485 13.033 2.876 13.905 2.072 C 13.989 1.995 14.032 1.884 14.022 1.771 C 14.013 1.658 13.952 1.555 13.857 1.493 C 10.422 -0.746 5.919 -0.442 2.817 2.239 C 2.757 2.279 2.757 2.357 2.797 2.416 L 2.817 2.436 C 5.092 4.236 8.121 4.771 10.875 3.86 Z M 23.657 8.996 C 23.657 5.756 25.664 3.722 28.872 3.722 C 31.716 3.722 33.575 5.254 33.693 7.7 L 30.85 7.7 C 30.663 6.659 29.905 6.03 28.862 6.03 C 27.405 6.03 26.491 7.18 26.491 8.996 C 26.491 10.833 27.386 11.992 28.783 11.992 C 29.835 11.992 30.663 11.373 30.899 10.372 L 33.742 10.372 C 33.526 12.748 31.607 14.261 28.783 14.261 C 25.644 14.27 23.657 12.238 23.657 8.996 Z M 34.667 8.996 C 34.667 5.706 36.635 3.722 39.882 3.722 C 43.129 3.722 45.078 5.706 45.078 8.996 C 45.078 12.287 43.129 14.27 39.882 14.27 C 36.635 14.27 34.667 12.287 34.667 8.996 Z M 39.882 11.982 C 41.339 11.982 42.234 10.872 42.234 8.996 C 42.234 7.12 41.339 6.011 39.882 6.011 C 38.406 6.011 37.511 7.121 37.511 8.996 C 37.511 10.872 38.406 11.982 39.882 11.982 Z M 50.479 11.914 C 51.404 11.914 52.133 11.403 52.939 10.096 L 52.939 3.949 L 55.783 3.949 L 55.783 14.054 L 53.028 14.054 L 52.979 12.905 C 52.2 13.787 51.075 14.285 49.899 14.27 C 47.586 14.27 46.179 12.709 46.179 10.342 L 46.179 3.948 L 49.023 3.948 L 49.023 10.165 C 49.023 11.216 49.604 11.913 50.479 11.913 Z M 62.582 6.089 C 61.657 6.089 60.929 6.6 60.123 7.907 L 60.123 14.054 L 57.279 14.054 L 57.279 3.948 L 60.034 3.948 L 60.093 5.097 C 60.872 4.215 61.996 3.717 63.173 3.732 C 65.485 3.732 66.892 5.294 66.892 7.661 L 66.892 14.054 L 64.049 14.054 L 64.049 7.837 C 64.039 6.786 63.458 6.089 62.582 6.089 Z M 74.016 11.766 L 73.632 11.766 C 72.392 11.766 71.94 11.471 71.94 10.42 L 71.94 6.237 L 74.016 6.237 L 74.016 3.948 L 71.94 3.948 L 71.94 0.687 L 69.096 1.778 L 69.096 3.938 L 67.364 3.938 L 67.364 6.227 L 69.096 6.227 L 69.096 10.411 C 69.096 12.562 70.444 14.045 72.501 14.045 L 74.016 14.045 Z\" fill=\"rgb(0,0,109)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tlfx6\",layoutDependency:layoutDependency,layoutId:\"almaWdBiX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.018 14.386\" overflow=\"visible\"><path d=\"M 9.017 7.972 L 2.454 0.047 C 2.415 -0.012 2.336 -0.012 2.277 0.028 C 2.267 0.037 2.257 0.037 2.257 0.047 C -1.068 3.857 -0.675 9.642 3.144 12.972 C 3.802 13.543 4.537 14.019 5.328 14.386 C 5.44 11.775 6.817 9.382 9.018 7.972 Z\" fill=\"rgb(45,42,249)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14sf1rv\",layoutDependency:layoutDependency,layoutId:\"Wqw4T0Z_0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.982 7.199\" overflow=\"visible\"><path d=\"M 4.32 0 C 2.789 -0.003 1.29 0.433 0 1.257 L 4.92 7.199 C 6.858 6.022 8.295 4.173 8.954 2.004 C 9.037 1.737 8.932 1.448 8.698 1.296 C 7.398 0.443 5.875 -0.008 4.32 0 Z\" fill=\"rgb(242,12,116)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-11p2d88\",layoutDependency:layoutDependency,layoutId:\"Q4_sZ00pQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71.247 18\" overflow=\"visible\"><path d=\"M 2.507 17.158 C 5.273 18.432 8.491 18.251 11.097 16.677 L 6.177 10.735 C 3.983 12.159 2.605 14.555 2.507 17.158 Z M 8.106 3.86 C 9.231 3.485 10.264 2.876 11.136 2.072 C 11.219 1.995 11.262 1.884 11.253 1.771 C 11.243 1.658 11.183 1.555 11.088 1.493 C 7.653 -0.746 3.15 -0.442 0.048 2.239 C -0.012 2.279 -0.012 2.357 0.027 2.416 L 0.048 2.436 C 2.323 4.236 5.351 4.771 8.106 3.86 Z M 20.887 8.996 C 20.887 5.756 22.895 3.722 26.103 3.722 C 28.947 3.722 30.806 5.254 30.924 7.7 L 28.08 7.7 C 27.894 6.659 27.135 6.03 26.093 6.03 C 24.636 6.03 23.722 7.18 23.722 8.996 C 23.722 10.833 24.617 11.992 26.014 11.992 C 27.066 11.992 27.894 11.373 28.13 10.372 L 30.973 10.372 C 30.757 12.748 28.838 14.261 26.014 14.261 C 22.875 14.27 20.887 12.238 20.887 8.996 Z M 31.898 8.996 C 31.898 5.706 33.866 3.722 37.113 3.722 C 40.36 3.722 42.309 5.706 42.309 8.996 C 42.309 12.287 40.36 14.27 37.113 14.27 C 33.866 14.27 31.898 12.287 31.898 8.996 Z M 37.113 11.982 C 38.57 11.982 39.465 10.872 39.465 8.996 C 39.465 7.12 38.57 6.011 37.113 6.011 C 35.637 6.011 34.742 7.121 34.742 8.996 C 34.742 10.872 35.637 11.982 37.113 11.982 Z M 47.71 11.914 C 48.635 11.914 49.363 11.403 50.17 10.096 L 50.17 3.949 L 53.014 3.949 L 53.014 14.054 L 50.259 14.054 L 50.21 12.905 C 49.431 13.787 48.306 14.285 47.129 14.27 C 44.817 14.27 43.41 12.709 43.41 10.342 L 43.41 3.948 L 46.254 3.948 L 46.254 10.165 C 46.254 11.216 46.834 11.913 47.71 11.913 Z M 59.813 6.089 C 58.888 6.089 58.16 6.6 57.353 7.907 L 57.353 14.054 L 54.509 14.054 L 54.509 3.948 L 57.265 3.948 L 57.324 5.097 C 58.103 4.215 59.227 3.717 60.404 3.732 C 62.716 3.732 64.123 5.294 64.123 7.661 L 64.123 14.054 L 61.279 14.054 L 61.279 7.837 C 61.27 6.786 60.689 6.089 59.813 6.089 Z M 71.247 11.766 L 70.863 11.766 C 69.623 11.766 69.17 11.471 69.17 10.42 L 69.17 6.237 L 71.247 6.237 L 71.247 3.948 L 69.17 3.948 L 69.17 0.687 L 66.327 1.778 L 66.327 3.938 L 64.595 3.938 L 64.595 6.227 L 66.327 6.227 L 66.327 10.411 C 66.327 12.562 67.675 14.045 69.732 14.045 L 71.247 14.045 Z\" fill=\"rgb(0,0,109)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a7w77s\",layoutDependency:layoutDependency,layoutId:\"TCcX8o_4i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.59 7.265\" overflow=\"visible\"><path d=\"M 0 6.423 C 2.766 7.697 5.984 7.517 8.59 5.942 L 3.67 0 C 1.475 1.424 0.098 3.821 0 6.423 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gr3nai\",layoutDependency:layoutDependency,layoutId:\"MNhPxTsUG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.254 4.296\" overflow=\"visible\"><path d=\"M 8.106 3.86 C 9.231 3.485 10.264 2.876 11.136 2.072 C 11.219 1.995 11.262 1.884 11.253 1.771 C 11.243 1.658 11.183 1.555 11.088 1.493 C 7.653 -0.746 3.15 -0.442 0.048 2.239 C -0.012 2.279 -0.012 2.357 0.027 2.416 L 0.048 2.436 C 2.323 4.236 5.351 4.771 8.106 3.86 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xs67vy\",layoutDependency:layoutDependency,layoutId:\"yL3z7kjkS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.086 10.538\" overflow=\"visible\"><path d=\"M 0 5.274 C 0 2.033 2.008 0 5.215 0 C 8.059 0 9.919 1.532 10.036 3.978 L 7.193 3.978 C 7.006 2.937 6.248 2.308 5.205 2.308 C 3.749 2.308 2.834 3.457 2.834 5.274 C 2.834 7.111 3.729 8.27 5.127 8.27 C 6.179 8.27 7.006 7.651 7.242 6.65 L 10.086 6.65 C 9.87 9.026 7.95 10.538 5.127 10.538 C 1.988 10.548 0 8.515 0 5.274 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4g9rif\",layoutDependency:layoutDependency,layoutId:\"M70ouCL5F\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.411 10.548\" overflow=\"visible\"><path d=\"M 0 5.274 C 0 1.984 1.968 0 5.215 0 C 8.462 0 10.411 1.984 10.411 5.274 C 10.411 8.565 8.462 10.548 5.215 10.548 C 1.968 10.548 0 8.565 0 5.274 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bxh5vr\",layoutDependency:layoutDependency,layoutId:\"P6nXnCsDu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.723 5.971\" overflow=\"visible\"><path d=\"M 2.371 5.971 C 3.828 5.971 4.723 4.861 4.723 2.985 C 4.723 1.109 3.828 0 2.371 0 C 0.895 0 0 1.11 0 2.985 C 0 4.861 0.895 5.971 2.371 5.971 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17qagcw\",layoutDependency:layoutDependency,layoutId:\"kyBzNHdLe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.604 10.323\" overflow=\"visible\"><path d=\"M 4.3 7.966 C 5.225 7.966 5.953 7.455 6.76 6.148 L 6.76 0.001 L 9.604 0.001 L 9.604 10.106 L 6.848 10.106 L 6.8 8.957 C 6.021 9.839 4.896 10.337 3.719 10.322 C 1.407 10.322 0 8.761 0 6.394 L 0 0 L 2.844 0 L 2.844 6.217 C 2.844 7.268 3.424 7.965 4.3 7.965 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qsxe5b\",layoutDependency:layoutDependency,layoutId:\"zW326a5IM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.613 10.323\" overflow=\"visible\"><path d=\"M 5.304 2.358 C 4.379 2.358 3.651 2.869 2.844 4.175 L 2.844 10.323 L 0 10.323 L 0 0.216 L 2.755 0.216 L 2.814 1.366 C 3.593 0.484 4.718 -0.015 5.894 0 C 8.207 0 9.613 1.562 9.613 3.929 L 9.613 10.323 L 6.77 10.323 L 6.77 4.106 C 6.76 3.055 6.18 2.358 5.304 2.358 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t0duk0\",layoutDependency:layoutDependency,layoutId:\"Iq3bnRcPM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.652 13.357\" overflow=\"visible\"><path d=\"M 6.652 11.079 L 6.268 11.079 C 5.028 11.079 4.575 10.784 4.575 9.733 L 4.575 5.55 L 6.652 5.55 L 6.652 3.261 L 4.575 3.261 L 4.575 0 L 1.732 1.09 L 1.732 3.251 L 0 3.251 L 0 5.54 L 1.732 5.54 L 1.732 9.723 C 1.732 11.874 3.08 13.357 5.137 13.357 L 6.652 13.357 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://developers.deepl.com/docs\",motionChild:true,nodeId:\"Fq6gHR8Xj\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-j3h45k framer-aoqboz\",\"data-framer-name\":\"DeepL\",layoutDependency:layoutDependency,layoutId:\"Fq6gHR8Xj\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-15a0etg\",layoutDependency:layoutDependency,layoutId:\"tY2yK8SBH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73.272 26.999\" overflow=\"visible\"><g><path d=\"M 29.423 7.269 L 33.551 7.269 C 34.554 7.269 35.455 7.469 36.237 7.866 C 37.021 8.256 37.624 8.812 38.055 9.544 C 38.486 10.26 38.706 11.095 38.706 12.041 C 38.706 12.988 38.486 13.823 38.055 14.547 C 37.624 15.262 37.021 15.819 36.238 16.224 C 35.454 16.614 34.562 16.813 33.551 16.813 L 29.424 16.813 L 29.424 7.271 Z M 33.473 15.31 C 34.162 15.31 34.773 15.175 35.29 14.912 C 35.8 14.661 36.223 14.262 36.504 13.767 C 36.795 13.266 36.935 12.693 36.935 12.034 C 36.935 11.373 36.794 10.808 36.504 10.315 C 36.228 9.817 35.804 9.417 35.29 9.17 C 34.766 8.9 34.162 8.765 33.473 8.765 L 31.178 8.765 L 31.178 15.302 L 33.473 15.302 Z M 47.172 13.211 C 47.172 13.33 47.165 13.497 47.149 13.711 L 41.495 13.711 C 41.597 14.244 41.847 14.673 42.262 14.992 C 42.685 15.302 43.202 15.453 43.829 15.453 C 44.62 15.453 45.27 15.191 45.787 14.666 L 46.687 15.715 C 46.358 16.109 45.935 16.412 45.458 16.598 C 44.965 16.797 44.408 16.901 43.789 16.901 C 42.999 16.901 42.301 16.741 41.698 16.423 C 41.095 16.105 40.625 15.668 40.296 15.103 C 39.975 14.531 39.81 13.886 39.81 13.17 C 39.81 12.455 39.967 11.827 40.281 11.262 C 40.591 10.701 41.052 10.238 41.612 9.926 C 42.176 9.607 42.819 9.449 43.531 9.449 C 44.244 9.449 44.855 9.608 45.403 9.926 C 45.954 10.23 46.403 10.689 46.695 11.246 C 47.017 11.818 47.173 12.471 47.173 13.211 Z M 43.531 10.817 C 42.99 10.817 42.535 10.983 42.152 11.31 C 41.784 11.628 41.556 12.057 41.478 12.59 L 45.567 12.59 C 45.496 12.065 45.277 11.636 44.909 11.31 C 44.541 10.984 44.079 10.817 43.53 10.817 Z M 55.562 13.211 C 55.562 13.33 55.554 13.497 55.538 13.711 L 49.89 13.711 C 49.992 14.244 50.244 14.673 50.659 14.992 C 51.081 15.302 51.606 15.453 52.225 15.453 C 53.016 15.453 53.666 15.191 54.183 14.666 L 55.084 15.715 C 54.755 16.109 54.332 16.412 53.854 16.598 C 53.361 16.797 52.804 16.901 52.185 16.901 C 51.395 16.901 50.697 16.741 50.095 16.423 C 49.491 16.105 49.022 15.668 48.692 15.103 C 48.371 14.531 48.207 13.886 48.207 13.17 C 48.207 12.455 48.363 11.827 48.677 11.262 C 48.987 10.701 49.449 10.238 50.008 9.926 C 50.572 9.607 51.214 9.449 51.919 9.449 C 52.624 9.449 53.243 9.608 53.792 9.926 C 54.343 10.23 54.792 10.689 55.084 11.246 C 55.405 11.818 55.562 12.471 55.562 13.211 Z M 51.92 10.817 C 51.379 10.817 50.925 10.983 50.541 11.31 C 50.173 11.628 49.945 12.057 49.867 12.59 L 53.956 12.59 C 53.886 12.065 53.667 11.636 53.299 11.31 C 52.923 10.984 52.468 10.817 51.92 10.817 Z M 61.17 9.457 C 61.867 9.457 62.494 9.608 63.042 9.918 C 63.594 10.222 64.048 10.677 64.351 11.23 C 64.664 11.795 64.82 12.439 64.82 13.179 C 64.82 13.918 64.664 14.57 64.35 15.143 C 64.047 15.695 63.593 16.15 63.042 16.455 C 62.494 16.765 61.867 16.917 61.17 16.917 C 60.199 16.917 59.431 16.59 58.867 15.938 L 58.867 19.469 L 57.183 19.469 L 57.183 9.536 L 58.789 9.536 L 58.789 10.491 C 59.063 10.152 59.415 9.884 59.815 9.711 C 60.243 9.531 60.705 9.444 61.17 9.457 Z M 60.982 15.445 C 61.601 15.445 62.11 15.238 62.502 14.817 C 62.909 14.403 63.113 13.847 63.113 13.17 C 63.113 12.495 62.909 11.938 62.502 11.524 C 62.102 11.111 61.601 10.896 60.982 10.896 C 60.6 10.89 60.223 10.989 59.893 11.182 C 59.568 11.368 59.303 11.641 59.126 11.97 C 58.938 12.312 58.843 12.718 58.843 13.17 C 58.843 13.624 58.938 14.022 59.126 14.372 C 59.313 14.721 59.572 14.984 59.893 15.175 C 60.214 15.357 60.575 15.453 60.982 15.445 Z M 66.583 7.269 L 68.337 7.269 L 68.337 15.31 L 73.272 15.31 L 73.272 16.805 L 66.583 16.805 Z\" fill=\"rgb(15,43,70)\"></path><path d=\"M 21.257 6.901 L 21.257 17.632 C 21.259 18.183 20.97 18.693 20.497 18.975 L 15.177 22.102 L 15.185 22.102 L 15.045 22.183 L 14.753 22.351 C 14.556 22.493 14.425 22.723 14.425 22.981 L 14.425 23.416 L 14.421 23.394 L 14.412 24.68 L 14.425 26.999 L 9.938 24.36 C 9.917 24.347 9.89 24.334 9.869 24.321 L 0.76 18.966 C 0.288 18.691 0 18.177 0 17.623 L 0 6.906 C 0.002 6.36 0.29 5.855 0.76 5.576 L 9.869 0.21 C 10.337 -0.07 10.921 -0.07 11.389 0.21 L 20.497 5.558 C 20.969 5.837 21.257 6.348 21.257 6.901 Z M 13.665 14.057 L 12.905 13.622 L 9.218 15.778 C 8.938 15.452 8.534 15.258 8.105 15.242 C 7.675 15.226 7.259 15.39 6.955 15.694 C 6.641 15.998 6.463 16.417 6.463 16.854 C 6.463 17.292 6.641 17.71 6.955 18.014 C 7.244 18.304 7.637 18.467 8.047 18.467 C 8.457 18.467 8.85 18.304 9.139 18.014 C 9.553 17.611 9.721 17.017 9.58 16.457 Z M 15.976 13.742 C 16.626 13.108 16.626 12.057 15.976 11.423 C 15.686 11.133 15.293 10.97 14.884 10.97 C 14.474 10.97 14.081 11.133 13.791 11.423 L 13.77 11.445 L 9.58 8.97 C 9.736 8.403 9.57 7.796 9.147 7.386 C 8.858 7.096 8.465 6.933 8.055 6.933 C 7.646 6.933 7.253 7.096 6.963 7.386 C 6.649 7.69 6.471 8.109 6.471 8.546 C 6.471 8.984 6.649 9.403 6.963 9.707 C 7.253 9.997 7.646 10.16 8.056 10.16 C 8.466 10.16 8.859 9.997 9.148 9.707 C 9.17 9.688 9.187 9.666 9.209 9.644 L 13.368 12.088 L 13.381 12.079 C 13.189 12.667 13.349 13.312 13.791 13.743 C 14.081 14.033 14.474 14.196 14.884 14.196 C 15.293 14.196 15.686 14.033 15.976 13.743 Z\" fill=\"rgb(15,43,70)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-6qnkth\",layoutDependency:layoutDependency,layoutId:\"Oxbltrhm3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 43.849 12.2\" overflow=\"visible\"><path d=\"M 0 0 L 4.128 0 C 5.131 0 6.032 0.199 6.814 0.597 C 7.598 0.987 8.201 1.543 8.632 2.275 C 9.063 2.991 9.282 3.826 9.282 4.772 C 9.282 5.718 9.063 6.553 8.632 7.278 C 8.201 7.993 7.598 8.55 6.815 8.955 C 6.031 9.345 5.139 9.543 4.128 9.543 L 0.001 9.543 L 0.001 0.001 Z M 4.05 8.04 C 4.739 8.04 5.35 7.905 5.867 7.643 C 6.377 7.391 6.8 6.992 7.081 6.498 C 7.372 5.997 7.512 5.424 7.512 4.764 C 7.512 4.104 7.371 3.539 7.081 3.046 C 6.805 2.548 6.381 2.148 5.867 1.901 C 5.343 1.631 4.739 1.495 4.05 1.495 L 1.755 1.495 L 1.755 8.033 L 4.05 8.033 Z M 17.749 5.941 C 17.749 6.06 17.742 6.227 17.726 6.442 L 12.072 6.442 C 12.174 6.975 12.424 7.404 12.839 7.723 C 13.262 8.033 13.779 8.184 14.406 8.184 C 15.197 8.184 15.847 7.921 16.364 7.397 L 17.264 8.446 C 16.935 8.839 16.512 9.143 16.035 9.329 C 15.542 9.528 14.985 9.631 14.366 9.631 C 13.575 9.631 12.878 9.472 12.275 9.154 C 11.672 8.836 11.202 8.399 10.873 7.834 C 10.552 7.262 10.387 6.617 10.387 5.901 C 10.387 5.185 10.544 4.557 10.857 3.993 C 11.168 3.432 11.629 2.969 12.189 2.656 C 12.753 2.338 13.395 2.179 14.108 2.179 C 14.821 2.179 15.432 2.339 15.98 2.657 C 16.531 2.961 16.98 3.419 17.272 3.977 C 17.594 4.549 17.75 5.202 17.75 5.941 Z M 14.108 3.547 C 13.567 3.547 13.112 3.714 12.729 4.04 C 12.36 4.359 12.133 4.788 12.055 5.321 L 16.144 5.321 C 16.073 4.796 15.854 4.366 15.486 4.04 C 15.118 3.715 14.655 3.547 14.107 3.547 Z M 26.139 5.941 C 26.139 6.06 26.131 6.227 26.115 6.442 L 20.467 6.442 C 20.569 6.975 20.82 7.404 21.236 7.723 C 21.658 8.033 22.183 8.184 22.802 8.184 C 23.593 8.184 24.243 7.921 24.76 7.397 L 25.661 8.446 C 25.332 8.84 24.909 9.143 24.431 9.329 C 23.938 9.528 23.381 9.631 22.762 9.631 C 21.972 9.631 21.274 9.472 20.672 9.154 C 20.068 8.836 19.599 8.399 19.269 7.834 C 18.948 7.262 18.784 6.617 18.784 5.901 C 18.784 5.185 18.94 4.557 19.254 3.993 C 19.564 3.432 20.025 2.969 20.585 2.656 C 21.149 2.338 21.791 2.179 22.496 2.179 C 23.201 2.179 23.82 2.339 24.369 2.657 C 24.92 2.961 25.369 3.419 25.661 3.977 C 25.982 4.549 26.139 5.202 26.139 5.941 Z M 22.497 3.547 C 21.956 3.547 21.502 3.714 21.117 4.04 C 20.75 4.359 20.522 4.788 20.444 5.321 L 24.533 5.321 C 24.463 4.796 24.244 4.366 23.876 4.04 C 23.5 3.715 23.045 3.547 22.497 3.547 Z M 31.747 2.188 C 32.444 2.188 33.071 2.339 33.619 2.649 C 34.171 2.953 34.625 3.408 34.928 3.961 C 35.241 4.526 35.397 5.169 35.397 5.91 C 35.397 6.649 35.241 7.301 34.927 7.874 C 34.624 8.426 34.17 8.881 33.618 9.186 C 33.071 9.496 32.444 9.647 31.747 9.647 C 30.776 9.647 30.008 9.321 29.444 8.669 L 29.444 12.2 L 27.76 12.2 L 27.76 2.267 L 29.366 2.267 L 29.366 3.221 C 29.64 2.882 29.992 2.615 30.392 2.442 C 30.82 2.262 31.282 2.175 31.747 2.188 Z M 31.559 8.176 C 32.178 8.176 32.687 7.968 33.078 7.548 C 33.486 7.134 33.69 6.578 33.69 5.901 C 33.69 5.226 33.486 4.669 33.078 4.255 C 32.679 3.842 32.178 3.627 31.559 3.627 C 31.176 3.621 30.8 3.719 30.47 3.913 C 30.145 4.098 29.88 4.371 29.703 4.701 C 29.514 5.043 29.42 5.448 29.42 5.901 C 29.42 6.355 29.514 6.753 29.703 7.102 C 29.89 7.452 30.149 7.714 30.47 7.905 C 30.791 8.088 31.152 8.184 31.559 8.175 Z M 37.16 0 L 38.914 0 L 38.914 8.04 L 43.849 8.04 L 43.849 9.536 L 37.16 9.536 Z\" fill=\"rgb(15,43,70)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qvln5o\",layoutDependency:layoutDependency,layoutId:\"hBguuBtJu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.282 9.543\" overflow=\"visible\"><path d=\"M 0 0 L 4.128 0 C 5.131 0 6.032 0.199 6.814 0.597 C 7.598 0.987 8.201 1.543 8.632 2.275 C 9.063 2.991 9.282 3.826 9.282 4.772 C 9.282 5.718 9.063 6.553 8.632 7.278 C 8.201 7.993 7.598 8.55 6.815 8.955 C 6.031 9.345 5.139 9.543 4.128 9.543 L 0.001 9.543 L 0.001 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ce0ooi\",layoutDependency:layoutDependency,layoutId:\"zook_opJX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.757 6.545\" overflow=\"visible\"><path d=\"M 2.295 6.545 C 2.984 6.545 3.595 6.41 4.112 6.148 C 4.622 5.896 5.045 5.497 5.326 5.003 C 5.617 4.501 5.757 3.929 5.757 3.269 C 5.757 2.609 5.616 2.044 5.326 1.551 C 5.05 1.053 4.626 0.653 4.112 0.406 C 3.588 0.136 2.984 0 2.295 0 L 0 0 L 0 6.537 L 2.295 6.537 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eu3d1w\",layoutDependency:layoutDependency,layoutId:\"LU1DDkShj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.363 7.452\" overflow=\"visible\"><path d=\"M 7.362 3.762 C 7.362 3.881 7.354 4.048 7.338 4.263 L 1.684 4.263 C 1.786 4.796 2.037 5.225 2.451 5.543 C 2.874 5.853 3.392 6.004 4.018 6.004 C 4.809 6.004 5.46 5.742 5.977 5.217 L 6.877 6.267 C 6.548 6.66 6.125 6.964 5.647 7.149 C 5.154 7.348 4.598 7.452 3.979 7.452 C 3.188 7.452 2.49 7.293 1.888 6.974 C 1.285 6.657 0.815 6.22 0.485 5.655 C 0.165 5.082 0 4.438 0 3.722 C 0 3.006 0.156 2.378 0.47 1.813 C 0.781 1.252 1.242 0.79 1.801 0.477 C 2.366 0.159 3.008 0 3.72 0 C 4.434 0 5.044 0.159 5.592 0.478 C 6.143 0.781 6.593 1.24 6.885 1.797 C 7.206 2.37 7.363 3.023 7.363 3.762 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vupouw\",layoutDependency:layoutDependency,layoutId:\"rQhP_Vkpf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.089 1.774\" overflow=\"visible\"><path d=\"M 2.053 0 C 1.512 0 1.057 0.167 0.674 0.493 C 0.305 0.811 0.078 1.241 0 1.774 L 4.089 1.774 C 4.018 1.248 3.799 0.819 3.431 0.493 C 3.063 0.168 2.6 0 2.052 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zq4c4p\",layoutDependency:layoutDependency,layoutId:\"sGhx74fXO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.355 7.452\" overflow=\"visible\"><path d=\"M 7.355 3.762 C 7.355 3.881 7.347 4.048 7.332 4.263 L 1.684 4.263 C 1.785 4.796 2.037 5.225 2.452 5.543 C 2.874 5.853 3.399 6.004 4.018 6.004 C 4.809 6.004 5.46 5.742 5.976 5.217 L 6.877 6.267 C 6.548 6.66 6.125 6.964 5.647 7.149 C 5.154 7.348 4.598 7.452 3.979 7.452 C 3.188 7.452 2.49 7.293 1.888 6.974 C 1.284 6.657 0.815 6.22 0.485 5.655 C 0.164 5.082 0 4.438 0 3.722 C 0 3.006 0.156 2.378 0.47 1.813 C 0.781 1.252 1.242 0.79 1.801 0.477 C 2.366 0.159 3.007 0 3.712 0 C 4.418 0 5.037 0.159 5.585 0.478 C 6.136 0.781 6.585 1.24 6.877 1.797 C 7.198 2.37 7.355 3.023 7.355 3.762 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z71285\",layoutDependency:layoutDependency,layoutId:\"amiflQXKm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.089 1.774\" overflow=\"visible\"><path d=\"M 2.053 0 C 1.512 0 1.058 0.167 0.674 0.493 C 0.306 0.811 0.078 1.241 0 1.774 L 4.089 1.774 C 4.02 1.248 3.8 0.819 3.432 0.493 C 3.056 0.168 2.601 0 2.053 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17ocqev\",layoutDependency:layoutDependency,layoutId:\"WM6ZlA8cF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.637 10.013\" overflow=\"visible\"><path d=\"M 3.987 0.001 C 4.684 0.001 5.311 0.152 5.859 0.462 C 6.411 0.767 6.865 1.222 7.167 1.774 C 7.48 2.339 7.637 2.983 7.637 3.723 C 7.637 4.462 7.48 5.115 7.167 5.687 C 6.864 6.24 6.41 6.695 5.858 6.999 C 5.311 7.309 4.684 7.461 3.987 7.461 C 3.016 7.461 2.248 7.135 1.684 6.483 L 1.684 10.013 L 0 10.013 L 0 0.08 L 1.606 0.08 L 1.606 1.035 C 1.88 0.696 2.232 0.428 2.631 0.255 C 3.06 0.075 3.522 -0.011 3.987 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rj4izv\",layoutDependency:layoutDependency,layoutId:\"TQhqPDDK4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.269 4.549\" overflow=\"visible\"><path d=\"M 2.139 4.549 C 2.757 4.549 3.267 4.342 3.658 3.921 C 4.065 3.508 4.269 2.951 4.269 2.275 C 4.269 1.599 4.065 1.042 3.658 0.628 C 3.259 0.215 2.757 0 2.139 0 C 1.756 -0.006 1.379 0.093 1.05 0.286 C 0.725 0.472 0.459 0.745 0.282 1.074 C 0.094 1.416 0 1.822 0 2.275 C 0 2.728 0.094 3.126 0.282 3.476 C 0.47 3.825 0.729 4.088 1.05 4.279 C 1.371 4.462 1.731 4.557 2.139 4.549 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oypmau\",layoutDependency:layoutDependency,layoutId:\"wvMg6ymAB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.689 9.536\" overflow=\"visible\"><path d=\"M 0 0 L 1.754 0 L 1.754 8.04 L 6.689 8.04 L 6.689 9.536 L 0 9.536 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1s7dcl\",layoutDependency:layoutDependency,layoutId:\"QlGu8STtp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.257 26.999\" overflow=\"visible\"><path d=\"M 21.257 6.901 L 21.257 17.632 C 21.259 18.183 20.97 18.693 20.497 18.975 L 15.177 22.102 L 15.185 22.102 L 15.045 22.183 L 14.753 22.351 C 14.556 22.493 14.425 22.723 14.425 22.981 L 14.425 23.416 L 14.421 23.394 L 14.412 24.68 L 14.425 26.999 L 9.938 24.36 C 9.917 24.347 9.89 24.334 9.869 24.321 L 0.76 18.966 C 0.288 18.691 0 18.177 0 17.623 L 0 6.906 C 0.002 6.36 0.29 5.855 0.76 5.576 L 9.869 0.21 C 10.337 -0.07 10.921 -0.07 11.389 0.21 L 20.497 5.558 C 20.969 5.837 21.257 6.348 21.257 6.901 Z M 13.665 14.057 L 12.905 13.622 L 9.218 15.778 C 8.938 15.452 8.534 15.258 8.105 15.242 C 7.675 15.226 7.259 15.39 6.955 15.694 C 6.641 15.998 6.463 16.417 6.463 16.854 C 6.463 17.292 6.641 17.71 6.955 18.014 C 7.244 18.304 7.637 18.467 8.047 18.467 C 8.457 18.467 8.85 18.304 9.139 18.014 C 9.553 17.611 9.721 17.017 9.58 16.457 Z M 15.976 13.742 C 16.626 13.108 16.626 12.057 15.976 11.423 C 15.686 11.133 15.293 10.97 14.884 10.97 C 14.474 10.97 14.081 11.133 13.791 11.423 L 13.77 11.445 L 9.58 8.97 C 9.736 8.403 9.57 7.796 9.147 7.386 C 8.858 7.096 8.465 6.933 8.055 6.933 C 7.646 6.933 7.253 7.096 6.963 7.386 C 6.649 7.69 6.471 8.109 6.471 8.546 C 6.471 8.984 6.649 9.403 6.963 9.707 C 7.253 9.997 7.646 10.16 8.056 10.16 C 8.466 10.16 8.859 9.997 9.148 9.707 C 9.17 9.688 9.187 9.666 9.209 9.644 L 13.368 12.088 L 13.381 12.079 C 13.189 12.667 13.349 13.312 13.791 13.743 C 14.081 14.033 14.474 14.196 14.884 14.196 C 15.293 14.196 15.686 14.033 15.976 13.743 Z\" fill=\"rgb(15,43,70)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w0sjr1\",layoutDependency:layoutDependency,layoutId:\"cflevzyRA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.257 26.999\" overflow=\"visible\"><path d=\"M 20.497 5.558 L 11.389 0.21 C 10.921 -0.07 10.337 -0.07 9.869 0.21 L 0.76 5.576 C 0.29 5.855 0.002 6.36 0 6.906 L 0 17.623 C 0 18.177 0.288 18.691 0.76 18.966 L 9.869 24.321 C 9.89 24.334 9.917 24.347 9.938 24.36 L 14.425 26.999 L 14.412 24.68 L 14.421 23.394 L 14.425 23.416 L 14.425 22.981 C 14.425 22.723 14.556 22.493 14.753 22.351 L 15.045 22.183 L 15.185 22.102 L 15.177 22.102 L 20.497 18.975 C 20.97 18.693 21.259 18.183 21.257 17.632 L 21.257 6.901 C 21.257 6.348 20.969 5.837 20.497 5.558 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gdszl1\",layoutDependency:layoutDependency,layoutId:\"ym6NkkZmp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.202 4.845\" overflow=\"visible\"><path d=\"M 3.117 2.834 C 3.258 3.395 3.09 3.988 2.676 4.392 C 2.387 4.682 1.994 4.845 1.584 4.845 C 1.174 4.845 0.781 4.682 0.492 4.392 C 0.178 4.088 0 3.669 0 3.232 C 0 2.794 0.178 2.376 0.492 2.071 C 0.796 1.767 1.212 1.603 1.642 1.619 C 2.071 1.636 2.475 1.83 2.755 2.156 L 6.442 0 L 7.202 0.435 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hus3hi\",layoutDependency:layoutDependency,layoutId:\"tcA8iZ6bh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.992 7.262\" overflow=\"visible\"><path d=\"M 9.504 6.809 C 9.215 7.099 8.822 7.262 8.412 7.262 C 8.003 7.262 7.61 7.099 7.32 6.809 C 6.877 6.379 6.718 5.733 6.91 5.146 L 6.896 5.155 L 2.738 2.711 C 2.716 2.732 2.698 2.755 2.677 2.773 C 2.387 3.063 1.994 3.226 1.584 3.226 C 1.175 3.226 0.781 3.063 0.492 2.773 C 0.178 2.469 0 2.05 0 1.613 C 0 1.176 0.178 0.757 0.492 0.453 C 0.781 0.163 1.174 0 1.584 0 C 1.994 0 2.387 0.163 2.676 0.453 C 3.098 0.862 3.264 1.469 3.109 2.037 L 7.299 4.512 L 7.32 4.489 C 7.61 4.2 8.003 4.037 8.412 4.037 C 8.822 4.037 9.215 4.2 9.504 4.489 C 10.155 5.124 10.155 6.175 9.504 6.809 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.digibee.com/documentation\",motionChild:true,nodeId:\"C0xQ5oXd7\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1487ao3 framer-aoqboz\",\"data-framer-name\":\"Digibee\",layoutDependency:layoutDependency,layoutId:\"C0xQ5oXd7\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1sh1962\",layoutDependency:layoutDependency,layoutId:\"y1hoHSEt6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80.861 19.027\" overflow=\"visible\"><g><path d=\"M 0 0.001 L 80.861 0.001 L 80.861 19.027 L 0 19.027 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\"><path d=\"M 32.544 6.54 C 32.226 5.791 31.758 5.115 31.169 4.554 C 30.564 3.982 29.85 3.536 29.07 3.245 C 28.261 2.935 27.387 2.781 26.446 2.781 L 21.837 2.781 L 21.837 15.306 L 26.483 15.306 C 27.412 15.306 28.277 15.152 29.079 14.843 C 29.856 14.55 30.567 14.105 31.17 13.534 C 31.76 12.97 32.229 12.29 32.545 11.537 C 32.871 10.771 33.034 9.937 33.034 9.034 C 33.034 8.13 32.871 7.3 32.545 6.54 Z M 30.001 10.993 C 29.67 11.605 29.167 12.106 28.554 12.436 C 27.932 12.775 27.218 12.944 26.41 12.944 L 24.297 12.944 L 24.297 5.144 L 26.41 5.144 C 27.219 5.144 27.93 5.316 28.545 5.66 C 29.149 5.994 29.65 6.486 29.993 7.085 C 30.343 7.691 30.518 8.197 30.518 9.017 C 30.518 9.837 30.346 10.369 30.001 10.993 L 30.001 10.994 Z M 48.691 15.316 L 48.691 6.942 L 51.032 6.942 L 51.032 15.317 L 48.691 15.317 Z M 49.437 2.781 L 48.691 2.781 L 48.691 5.087 L 51.033 5.087 L 51.033 2.781 L 49.437 2.781 L 49.437 2.781 Z M 61.227 8.901 C 60.888 8.257 60.379 7.718 59.756 7.341 C 59.128 6.959 58.42 6.769 57.634 6.769 C 57.064 6.762 56.5 6.89 55.988 7.142 C 55.699 7.286 55.444 7.461 55.222 7.665 L 55.222 2.781 L 52.915 2.781 L 52.915 15.316 L 55.205 15.316 L 55.205 14.573 C 55.429 14.787 55.687 14.969 55.98 15.117 C 56.472 15.366 57.025 15.49 57.635 15.49 C 58.421 15.49 59.126 15.299 59.748 14.917 C 60.369 14.538 60.876 13.999 61.219 13.357 C 61.577 12.699 61.755 11.959 61.755 11.138 C 61.755 10.317 61.579 9.56 61.227 8.901 L 61.227 8.9 Z M 59.105 12.299 C 58.93 12.627 58.672 12.902 58.356 13.097 C 58.039 13.294 57.669 13.392 57.246 13.392 C 56.823 13.392 56.448 13.294 56.119 13.097 C 55.797 12.907 55.534 12.631 55.362 12.3 C 55.186 11.964 55.098 11.577 55.098 11.138 C 55.098 10.698 55.186 10.294 55.362 9.959 C 55.533 9.629 55.792 9.352 56.111 9.161 C 56.433 8.965 56.806 8.866 57.228 8.866 C 57.652 8.866 58.023 8.965 58.347 9.161 C 58.67 9.358 58.922 9.627 59.105 9.968 C 59.287 10.308 59.377 10.693 59.377 11.121 C 59.377 11.572 59.287 11.965 59.105 12.3 Z M 44.555 6.942 L 44.555 7.686 C 44.325 7.467 44.064 7.283 43.78 7.142 C 43.288 6.893 42.735 6.769 42.125 6.769 C 41.339 6.769 40.634 6.959 40.012 7.341 C 39.392 7.721 38.884 8.26 38.542 8.901 C 38.184 9.56 38.005 10.3 38.005 11.121 C 38.005 11.942 38.181 12.699 38.533 13.357 C 38.872 14.001 39.38 14.541 40.003 14.917 C 40.631 15.298 41.339 15.49 42.125 15.49 C 42.724 15.49 43.273 15.366 43.771 15.117 C 44.06 14.972 44.315 14.798 44.537 14.594 L 44.537 14.935 C 44.537 15.548 44.326 16.036 43.903 16.4 C 43.48 16.765 42.917 16.947 42.213 16.947 C 41.638 16.947 41.147 16.846 40.742 16.643 C 40.321 16.428 39.946 16.13 39.642 15.768 L 38.163 17.206 C 38.586 17.784 39.141 18.232 39.828 18.55 C 40.514 18.868 41.316 19.027 42.232 19.027 C 43.147 19.027 43.934 18.856 44.626 18.515 C 45.319 18.174 45.861 17.692 46.255 17.068 C 46.649 16.443 46.845 15.721 46.845 14.9 L 46.845 6.942 L 44.556 6.942 Z M 43.648 13.097 C 43.326 13.294 42.953 13.392 42.529 13.392 C 42.107 13.392 41.734 13.294 41.411 13.097 C 41.09 12.902 40.828 12.624 40.654 12.291 C 40.468 11.935 40.374 11.539 40.381 11.138 C 40.381 10.687 40.472 10.294 40.654 9.959 C 40.829 9.631 41.087 9.356 41.403 9.161 C 41.719 8.965 42.089 8.866 42.512 8.866 C 42.935 8.866 43.311 8.964 43.64 9.161 C 43.969 9.358 44.221 9.623 44.397 9.959 C 44.573 10.294 44.661 10.681 44.661 11.121 C 44.661 11.56 44.573 11.964 44.396 12.3 C 44.226 12.63 43.967 12.906 43.649 13.097 Z M 70.805 8.78 C 70.462 8.154 69.95 7.637 69.326 7.289 C 68.692 6.931 67.976 6.752 67.178 6.752 C 66.332 6.752 65.57 6.942 64.889 7.324 C 64.223 7.691 63.667 8.23 63.278 8.884 C 62.884 9.543 62.687 10.288 62.687 11.121 C 62.687 11.953 62.887 12.716 63.286 13.375 C 63.685 14.033 64.254 14.572 64.933 14.935 C 65.631 15.317 66.427 15.508 67.318 15.508 C 68.012 15.508 68.651 15.387 69.239 15.143 C 69.826 14.901 70.35 14.527 70.77 14.051 L 69.396 12.699 C 69.138 12.999 68.834 13.219 68.481 13.358 C 68.104 13.501 67.704 13.571 67.301 13.566 C 66.819 13.566 66.397 13.468 66.032 13.27 C 65.672 13.077 65.38 12.777 65.196 12.412 C 65.118 12.259 65.056 12.098 65.011 11.933 L 71.227 11.918 C 71.274 11.734 71.304 11.562 71.316 11.406 C 71.327 11.253 71.333 11.1 71.333 10.947 C 71.333 10.138 71.157 9.415 70.804 8.779 Z M 65.963 8.953 C 66.303 8.757 66.703 8.658 67.159 8.658 C 67.594 8.658 67.958 8.745 68.251 8.918 C 68.545 9.092 68.774 9.347 68.938 9.681 C 69.017 9.843 69.078 10.023 69.122 10.222 L 65.012 10.233 C 65.055 10.077 65.111 9.931 65.178 9.794 C 65.349 9.441 65.623 9.148 65.963 8.952 Z M 80.333 8.78 C 79.99 8.154 79.477 7.637 78.854 7.289 C 78.219 6.931 77.503 6.752 76.705 6.752 C 75.86 6.752 75.097 6.942 74.417 7.324 C 73.75 7.691 73.194 8.23 72.805 8.884 C 72.411 9.543 72.215 10.288 72.215 11.121 C 72.215 11.953 72.415 12.716 72.813 13.375 C 73.212 14.033 73.781 14.572 74.46 14.935 C 75.158 15.317 75.954 15.508 76.846 15.508 C 77.539 15.508 78.179 15.387 78.766 15.143 C 79.353 14.901 79.877 14.527 80.298 14.051 L 78.924 12.699 C 78.678 12.991 78.363 13.217 78.008 13.358 C 77.632 13.501 77.231 13.571 76.828 13.566 C 76.346 13.566 75.924 13.468 75.56 13.27 C 75.199 13.077 74.907 12.778 74.723 12.412 C 74.645 12.259 74.583 12.099 74.539 11.933 L 80.755 11.918 C 80.801 11.734 80.831 11.562 80.843 11.406 C 80.855 11.25 80.86 11.098 80.86 10.947 C 80.86 10.138 80.684 9.415 80.332 8.779 Z M 75.489 8.953 C 75.831 8.757 76.229 8.658 76.687 8.658 C 77.121 8.658 77.486 8.745 77.779 8.918 C 78.072 9.092 78.301 9.347 78.466 9.681 C 78.544 9.843 78.606 10.023 78.649 10.222 L 74.539 10.233 C 74.58 10.082 74.636 9.934 74.706 9.794 C 74.877 9.441 75.15 9.148 75.489 8.952 Z M 34.45 15.316 L 34.45 6.942 L 36.792 6.942 L 36.792 15.317 L 34.45 15.317 Z M 35.196 2.782 L 34.45 2.782 L 34.45 5.087 L 36.792 5.087 L 36.792 2.781 L 35.195 2.781 L 35.196 2.781 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 0 12.71 L 5.774 9.401 L 0 6.109 Z M 7.01 11.463 L 1.227 14.776 L 7.031 18.077 Z\" fill=\"rgb(107,16,235)\"></path><path d=\"M 8.256 0.001 L 1.187 4.019 L 9.433 8.721 L 9.463 18.086 L 16.511 14.079 L 16.511 4.694 L 8.255 0 Z\" fill=\"rgb(107,16,235)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vvb7v9\",layoutDependency:layoutDependency,layoutId:\"LaTlA3CBS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80.861 19.026\" overflow=\"visible\"><path d=\"M 0 0 L 80.861 0 L 80.861 19.026 L 0 19.026 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-6vkaw4\",layoutDependency:layoutDependency,layoutId:\"YgcwY8BiC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80.86 19.027\" overflow=\"visible\"><g><path d=\"M 32.544 6.54 C 32.226 5.791 31.758 5.115 31.169 4.554 C 30.564 3.982 29.85 3.536 29.07 3.245 C 28.261 2.935 27.387 2.781 26.446 2.781 L 21.837 2.781 L 21.837 15.306 L 26.483 15.306 C 27.412 15.306 28.277 15.152 29.079 14.843 C 29.856 14.55 30.567 14.105 31.17 13.534 C 31.76 12.97 32.229 12.29 32.545 11.537 C 32.871 10.771 33.034 9.937 33.034 9.034 C 33.034 8.13 32.871 7.3 32.545 6.54 Z M 30.001 10.993 C 29.67 11.605 29.167 12.106 28.554 12.436 C 27.932 12.775 27.218 12.944 26.41 12.944 L 24.297 12.944 L 24.297 5.144 L 26.41 5.144 C 27.219 5.144 27.93 5.316 28.545 5.66 C 29.149 5.994 29.65 6.486 29.993 7.085 C 30.343 7.691 30.518 8.197 30.518 9.017 C 30.518 9.837 30.346 10.369 30.001 10.993 L 30.001 10.994 Z M 48.691 15.316 L 48.691 6.942 L 51.032 6.942 L 51.032 15.317 L 48.691 15.317 Z M 49.437 2.781 L 48.691 2.781 L 48.691 5.087 L 51.033 5.087 L 51.033 2.781 L 49.437 2.781 L 49.437 2.781 Z M 61.227 8.901 C 60.888 8.257 60.379 7.718 59.756 7.341 C 59.128 6.959 58.42 6.769 57.634 6.769 C 57.064 6.762 56.5 6.89 55.988 7.142 C 55.699 7.286 55.444 7.461 55.222 7.665 L 55.222 2.781 L 52.915 2.781 L 52.915 15.316 L 55.205 15.316 L 55.205 14.573 C 55.429 14.787 55.687 14.969 55.98 15.117 C 56.472 15.366 57.025 15.49 57.635 15.49 C 58.421 15.49 59.126 15.299 59.748 14.917 C 60.369 14.538 60.876 13.999 61.219 13.357 C 61.577 12.699 61.755 11.959 61.755 11.138 C 61.755 10.317 61.579 9.56 61.227 8.901 L 61.227 8.9 Z M 59.105 12.299 C 58.93 12.627 58.672 12.902 58.356 13.097 C 58.039 13.294 57.669 13.392 57.246 13.392 C 56.823 13.392 56.448 13.294 56.119 13.097 C 55.797 12.907 55.534 12.631 55.362 12.3 C 55.186 11.964 55.098 11.577 55.098 11.138 C 55.098 10.698 55.186 10.294 55.362 9.959 C 55.533 9.629 55.792 9.352 56.111 9.161 C 56.433 8.965 56.806 8.866 57.228 8.866 C 57.652 8.866 58.023 8.965 58.347 9.161 C 58.67 9.358 58.922 9.627 59.105 9.968 C 59.287 10.308 59.377 10.693 59.377 11.121 C 59.377 11.572 59.287 11.965 59.105 12.3 Z M 44.555 6.942 L 44.555 7.686 C 44.325 7.467 44.064 7.283 43.78 7.142 C 43.288 6.893 42.735 6.769 42.125 6.769 C 41.339 6.769 40.634 6.959 40.012 7.341 C 39.392 7.721 38.884 8.26 38.542 8.901 C 38.184 9.56 38.005 10.3 38.005 11.121 C 38.005 11.942 38.181 12.699 38.533 13.357 C 38.872 14.001 39.38 14.541 40.003 14.917 C 40.631 15.298 41.339 15.49 42.125 15.49 C 42.724 15.49 43.273 15.366 43.771 15.117 C 44.06 14.972 44.315 14.798 44.537 14.594 L 44.537 14.935 C 44.537 15.548 44.326 16.036 43.903 16.4 C 43.48 16.765 42.917 16.947 42.213 16.947 C 41.638 16.947 41.147 16.846 40.742 16.643 C 40.321 16.428 39.946 16.13 39.642 15.768 L 38.163 17.206 C 38.586 17.784 39.141 18.232 39.828 18.55 C 40.514 18.868 41.316 19.027 42.232 19.027 C 43.147 19.027 43.934 18.856 44.626 18.515 C 45.319 18.174 45.861 17.692 46.255 17.068 C 46.649 16.443 46.845 15.721 46.845 14.9 L 46.845 6.942 L 44.556 6.942 Z M 43.648 13.097 C 43.326 13.294 42.953 13.392 42.529 13.392 C 42.107 13.392 41.734 13.294 41.411 13.097 C 41.09 12.902 40.828 12.624 40.654 12.291 C 40.468 11.935 40.374 11.539 40.381 11.138 C 40.381 10.687 40.472 10.294 40.654 9.959 C 40.829 9.631 41.087 9.356 41.403 9.161 C 41.719 8.965 42.089 8.866 42.512 8.866 C 42.935 8.866 43.311 8.964 43.64 9.161 C 43.969 9.358 44.221 9.623 44.397 9.959 C 44.573 10.294 44.661 10.681 44.661 11.121 C 44.661 11.56 44.573 11.964 44.396 12.3 C 44.226 12.63 43.967 12.906 43.649 13.097 Z M 70.805 8.78 C 70.462 8.154 69.95 7.637 69.326 7.289 C 68.692 6.931 67.976 6.752 67.178 6.752 C 66.332 6.752 65.57 6.942 64.889 7.324 C 64.223 7.691 63.667 8.23 63.278 8.884 C 62.884 9.543 62.687 10.288 62.687 11.121 C 62.687 11.953 62.887 12.716 63.286 13.375 C 63.685 14.033 64.254 14.572 64.933 14.935 C 65.631 15.317 66.427 15.508 67.318 15.508 C 68.012 15.508 68.651 15.387 69.239 15.143 C 69.826 14.901 70.35 14.527 70.77 14.051 L 69.396 12.699 C 69.138 12.999 68.834 13.219 68.481 13.358 C 68.104 13.501 67.704 13.571 67.301 13.566 C 66.819 13.566 66.397 13.468 66.032 13.27 C 65.672 13.077 65.38 12.777 65.196 12.412 C 65.118 12.259 65.056 12.098 65.011 11.933 L 71.227 11.918 C 71.274 11.734 71.304 11.562 71.316 11.406 C 71.327 11.253 71.333 11.1 71.333 10.947 C 71.333 10.138 71.157 9.415 70.804 8.779 Z M 65.963 8.953 C 66.303 8.757 66.703 8.658 67.159 8.658 C 67.594 8.658 67.958 8.745 68.251 8.918 C 68.545 9.092 68.774 9.347 68.938 9.681 C 69.017 9.843 69.078 10.023 69.122 10.222 L 65.012 10.233 C 65.055 10.077 65.111 9.931 65.178 9.794 C 65.349 9.441 65.623 9.148 65.963 8.952 Z M 80.333 8.78 C 79.99 8.154 79.477 7.637 78.854 7.289 C 78.219 6.931 77.503 6.752 76.705 6.752 C 75.86 6.752 75.097 6.942 74.417 7.324 C 73.75 7.691 73.194 8.23 72.805 8.884 C 72.411 9.543 72.215 10.288 72.215 11.121 C 72.215 11.953 72.415 12.716 72.813 13.375 C 73.212 14.033 73.781 14.572 74.46 14.935 C 75.158 15.317 75.954 15.508 76.846 15.508 C 77.539 15.508 78.179 15.387 78.766 15.143 C 79.353 14.901 79.877 14.527 80.298 14.051 L 78.924 12.699 C 78.678 12.991 78.363 13.217 78.008 13.358 C 77.632 13.501 77.231 13.571 76.828 13.566 C 76.346 13.566 75.924 13.468 75.56 13.27 C 75.199 13.077 74.907 12.778 74.723 12.412 C 74.645 12.259 74.583 12.099 74.539 11.933 L 80.755 11.918 C 80.801 11.734 80.831 11.562 80.843 11.406 C 80.855 11.25 80.86 11.098 80.86 10.947 C 80.86 10.138 80.684 9.415 80.332 8.779 Z M 75.489 8.953 C 75.831 8.757 76.229 8.658 76.687 8.658 C 77.121 8.658 77.486 8.745 77.779 8.918 C 78.072 9.092 78.301 9.347 78.466 9.681 C 78.544 9.843 78.606 10.023 78.649 10.222 L 74.539 10.233 C 74.58 10.082 74.636 9.934 74.706 9.794 C 74.877 9.441 75.15 9.148 75.489 8.952 Z M 34.45 15.316 L 34.45 6.942 L 36.792 6.942 L 36.792 15.317 L 34.45 15.317 Z M 35.196 2.782 L 34.45 2.782 L 34.45 5.087 L 36.792 5.087 L 36.792 2.781 L 35.195 2.781 L 35.196 2.781 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 0 12.71 L 5.774 9.401 L 0 6.109 Z M 7.01 11.463 L 1.227 14.776 L 7.031 18.077 Z\" fill=\"rgb(107,16,235)\"></path><path d=\"M 8.256 0.001 L 1.187 4.019 L 9.433 8.721 L 9.463 18.086 L 16.511 14.079 L 16.511 4.694 L 8.255 0 Z\" fill=\"rgb(107,16,235)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1wx69pi\",layoutDependency:layoutDependency,layoutId:\"id8_NKymj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59.023 16.246\" overflow=\"visible\"><path d=\"M 10.707 3.759 C 10.389 3.01 9.921 2.334 9.332 1.773 C 8.726 1.2 8.013 0.755 7.233 0.463 C 6.424 0.154 5.55 0 4.608 0 L 0 0 L 0 12.525 L 4.646 12.525 C 5.575 12.525 6.44 12.37 7.241 12.062 C 8.019 11.769 8.729 11.324 9.332 10.752 C 9.923 10.189 10.391 9.509 10.708 8.756 C 11.034 7.99 11.197 7.156 11.197 6.253 C 11.197 5.349 11.034 4.519 10.708 3.759 Z M 8.164 8.212 C 7.832 8.823 7.329 9.325 6.717 9.655 C 6.095 9.993 5.381 10.163 4.572 10.163 L 2.46 10.163 L 2.46 2.363 L 4.573 2.363 C 5.382 2.363 6.093 2.535 6.708 2.879 C 7.312 3.212 7.813 3.705 8.156 4.303 C 8.505 4.909 8.681 5.416 8.681 6.236 C 8.681 7.056 8.509 7.588 8.164 8.212 L 8.164 8.212 Z M 26.854 12.535 L 26.854 4.161 L 29.195 4.161 L 29.195 12.536 L 26.854 12.536 Z M 27.599 0 L 26.854 0 L 26.854 2.306 L 29.196 2.306 L 29.196 0 L 27.599 0 L 27.6 0 Z M 39.389 6.12 C 39.051 5.476 38.542 4.936 37.919 4.56 C 37.291 4.178 36.583 3.987 35.797 3.987 C 35.227 3.981 34.663 4.109 34.151 4.36 C 33.862 4.504 33.607 4.68 33.385 4.884 L 33.385 0 L 31.078 0 L 31.078 12.535 L 33.368 12.535 L 33.368 11.791 C 33.592 12.006 33.85 12.188 34.142 12.336 C 34.635 12.584 35.187 12.709 35.798 12.709 C 36.584 12.709 37.288 12.518 37.911 12.136 C 38.531 11.756 39.039 11.218 39.381 10.576 C 39.739 9.917 39.918 9.177 39.918 8.357 C 39.918 7.536 39.742 6.779 39.389 6.12 L 39.389 6.119 Z M 37.267 9.518 C 37.093 9.845 36.834 10.121 36.519 10.316 C 36.202 10.513 35.832 10.611 35.409 10.611 C 34.986 10.611 34.611 10.513 34.282 10.316 C 33.959 10.126 33.697 9.85 33.525 9.518 C 33.349 9.183 33.26 8.796 33.26 8.357 C 33.26 7.917 33.349 7.513 33.525 7.178 C 33.695 6.847 33.955 6.571 34.273 6.38 C 34.596 6.183 34.969 6.085 35.391 6.085 C 35.815 6.085 36.186 6.183 36.51 6.38 C 36.832 6.577 37.085 6.845 37.267 7.186 C 37.449 7.527 37.54 7.911 37.54 8.34 C 37.54 8.791 37.449 9.183 37.267 9.518 Z M 22.718 4.161 L 22.718 4.905 C 22.488 4.686 22.227 4.502 21.943 4.36 C 21.451 4.112 20.898 3.987 20.288 3.987 C 19.502 3.987 18.797 4.178 18.175 4.56 C 17.554 4.94 17.047 5.478 16.705 6.12 C 16.347 6.779 16.168 7.519 16.168 8.34 C 16.168 9.16 16.343 9.917 16.696 10.576 C 17.035 11.22 17.543 11.76 18.166 12.136 C 18.794 12.517 19.502 12.709 20.288 12.709 C 20.887 12.709 21.436 12.584 21.934 12.336 C 22.223 12.191 22.478 12.016 22.699 11.812 L 22.699 12.154 C 22.699 12.767 22.489 13.255 22.066 13.619 C 21.643 13.984 21.08 14.166 20.376 14.166 C 19.801 14.166 19.309 14.064 18.905 13.862 C 18.483 13.647 18.109 13.349 17.804 12.987 L 16.326 14.425 C 16.749 15.003 17.304 15.451 17.991 15.769 C 18.677 16.087 19.479 16.246 20.395 16.246 C 21.31 16.246 22.097 16.075 22.789 15.734 C 23.482 15.393 24.024 14.911 24.418 14.287 C 24.811 13.662 25.008 12.94 25.008 12.119 L 25.008 4.161 L 22.719 4.161 Z M 21.811 10.316 C 21.489 10.513 21.116 10.611 20.692 10.611 C 20.27 10.611 19.897 10.513 19.574 10.316 C 19.253 10.121 18.991 9.842 18.817 9.51 C 18.631 9.154 18.537 8.758 18.544 8.357 C 18.544 7.905 18.635 7.513 18.817 7.178 C 18.991 6.85 19.25 6.575 19.566 6.38 C 19.882 6.183 20.252 6.085 20.675 6.085 C 21.098 6.085 21.474 6.183 21.803 6.38 C 22.131 6.577 22.384 6.842 22.56 7.178 C 22.736 7.513 22.824 7.9 22.824 8.34 C 22.824 8.779 22.736 9.183 22.559 9.518 C 22.388 9.848 22.13 10.125 21.811 10.316 Z M 48.968 5.999 C 48.625 5.372 48.113 4.856 47.489 4.508 C 46.855 4.15 46.139 3.971 45.341 3.971 C 44.495 3.971 43.733 4.161 43.051 4.542 C 42.385 4.91 41.829 5.449 41.441 6.103 C 41.047 6.762 40.85 7.507 40.85 8.34 C 40.85 9.172 41.05 9.934 41.449 10.593 C 41.848 11.252 42.417 11.791 43.096 12.154 C 43.794 12.535 44.59 12.726 45.481 12.726 C 46.174 12.726 46.814 12.605 47.401 12.362 C 47.989 12.12 48.513 11.746 48.933 11.27 L 47.559 9.917 C 47.301 10.218 46.997 10.438 46.644 10.576 C 46.267 10.72 45.867 10.79 45.464 10.784 C 44.982 10.784 44.56 10.687 44.195 10.489 C 43.835 10.296 43.543 9.996 43.359 9.631 C 43.281 9.478 43.219 9.317 43.174 9.152 L 49.39 9.137 C 49.437 8.952 49.467 8.781 49.479 8.625 C 49.49 8.472 49.496 8.319 49.496 8.166 C 49.496 7.356 49.32 6.634 48.967 5.998 Z M 44.126 6.172 C 44.465 5.976 44.866 5.877 45.322 5.877 C 45.757 5.877 46.121 5.964 46.414 6.137 C 46.708 6.311 46.937 6.565 47.101 6.9 C 47.18 7.061 47.24 7.241 47.285 7.441 L 43.175 7.452 C 43.218 7.296 43.274 7.15 43.341 7.012 C 43.512 6.66 43.786 6.367 44.126 6.171 Z M 58.496 5.999 C 58.153 5.373 57.64 4.856 57.016 4.508 C 56.382 4.15 55.666 3.971 54.868 3.971 C 54.023 3.971 53.259 4.161 52.579 4.542 C 51.913 4.91 51.357 5.449 50.968 6.103 C 50.574 6.762 50.378 7.507 50.378 8.34 C 50.378 9.172 50.577 9.934 50.976 10.593 C 51.375 11.252 51.944 11.791 52.623 12.154 C 53.321 12.535 54.117 12.726 55.009 12.726 C 55.702 12.726 56.342 12.605 56.929 12.362 C 57.516 12.119 58.04 11.746 58.461 11.27 L 57.086 9.917 C 56.841 10.209 56.526 10.436 56.171 10.576 C 55.794 10.72 55.394 10.79 54.991 10.784 C 54.509 10.784 54.087 10.687 53.723 10.489 C 53.362 10.296 53.069 9.996 52.886 9.631 C 52.807 9.478 52.746 9.317 52.702 9.152 L 58.918 9.137 C 58.964 8.952 58.994 8.781 59.005 8.625 C 59.018 8.469 59.023 8.316 59.023 8.166 C 59.023 7.356 58.847 6.634 58.495 5.998 Z M 53.652 6.172 C 53.993 5.976 54.392 5.877 54.85 5.877 C 55.284 5.877 55.649 5.964 55.941 6.137 C 56.235 6.311 56.463 6.565 56.628 6.9 C 56.707 7.061 56.768 7.241 56.812 7.441 L 52.702 7.452 C 52.743 7.3 52.799 7.153 52.869 7.012 C 53.04 6.66 53.313 6.367 53.652 6.171 Z M 12.613 12.535 L 12.613 4.161 L 14.955 4.161 L 14.955 12.536 L 12.613 12.536 Z M 13.359 0.001 L 12.613 0.001 L 12.613 2.306 L 14.955 2.306 L 14.955 0 L 13.358 0 L 13.359 0 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1svqks2\",layoutDependency:layoutDependency,layoutId:\"QoWh0eIjT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.197 12.525\" overflow=\"visible\"><path d=\"M 10.707 3.759 C 10.389 3.01 9.921 2.334 9.332 1.773 C 8.726 1.2 8.013 0.755 7.233 0.463 C 6.424 0.154 5.55 0 4.608 0 L 0 0 L 0 12.525 L 4.646 12.525 C 5.575 12.525 6.44 12.37 7.241 12.062 C 8.019 11.769 8.729 11.324 9.332 10.752 C 9.923 10.189 10.391 9.509 10.708 8.756 C 11.034 7.99 11.197 7.156 11.197 6.253 C 11.197 5.349 11.034 4.519 10.708 3.759 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aofu8p\",layoutDependency:layoutDependency,layoutId:\"glqjgWDxF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.221 7.8\" overflow=\"visible\"><path d=\"M 5.704 5.849 C 5.373 6.461 4.87 6.962 4.257 7.292 C 3.635 7.631 2.921 7.8 2.113 7.8 L 0 7.8 L 0 0 L 2.113 0 C 2.922 0 3.633 0.172 4.248 0.516 C 4.852 0.85 5.353 1.342 5.696 1.941 C 6.046 2.547 6.221 3.053 6.221 3.873 C 6.221 4.693 6.049 5.225 5.704 5.849 L 5.704 5.85 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1o9xacp\",layoutDependency:layoutDependency,layoutId:\"HmeosSdBI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.341 8.375\" overflow=\"visible\"><path d=\"M 0 8.374 L 0 0 L 2.341 0 L 2.341 8.375 L 0 8.375 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v834zy\",layoutDependency:layoutDependency,layoutId:\"q3dgvFzOR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.342 2.306\" overflow=\"visible\"><path d=\"M 0.745 0 L 0 0 L 0 2.306 L 2.342 2.306 L 2.342 0 L 0.745 0 L 0.746 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-178fn6v\",layoutDependency:layoutDependency,layoutId:\"zSjme7nSj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.84 12.709\" overflow=\"visible\"><path d=\"M 8.312 6.12 C 7.973 5.476 7.464 4.936 6.841 4.56 C 6.213 4.178 5.505 3.987 4.719 3.987 C 4.149 3.981 3.585 4.109 3.073 4.36 C 2.784 4.504 2.529 4.68 2.307 4.884 L 2.307 0 L 0 0 L 0 12.535 L 2.29 12.535 L 2.29 11.791 C 2.514 12.006 2.772 12.188 3.065 12.336 C 3.557 12.584 4.11 12.709 4.72 12.709 C 5.506 12.709 6.211 12.518 6.833 12.136 C 7.454 11.756 7.961 11.218 8.304 10.576 C 8.662 9.917 8.84 9.177 8.84 8.357 C 8.84 7.536 8.664 6.779 8.312 6.12 L 8.312 6.119 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1el6a15\",layoutDependency:layoutDependency,layoutId:\"Kuzjd7xKP\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.28 4.526\" overflow=\"visible\"><path d=\"M 4.007 3.433 C 3.832 3.76 3.574 4.036 3.258 4.231 C 2.942 4.428 2.572 4.526 2.149 4.526 C 1.726 4.526 1.35 4.428 1.021 4.231 C 0.699 4.041 0.437 3.765 0.264 3.434 C 0.088 3.098 0 2.711 0 2.272 C 0 1.832 0.088 1.428 0.264 1.093 C 0.435 0.762 0.694 0.486 1.013 0.295 C 1.335 0.099 1.708 0 2.131 0 C 2.554 0 2.926 0.099 3.249 0.295 C 3.572 0.492 3.825 0.76 4.007 1.101 C 4.189 1.442 4.28 1.827 4.28 2.255 C 4.28 2.706 4.189 3.099 4.007 3.434 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sw1z62\",layoutDependency:layoutDependency,layoutId:\"GWqJaDZ7q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.84 12.258\" overflow=\"visible\"><path d=\"M 6.55 0.173 L 6.55 0.917 C 6.32 0.698 6.059 0.515 5.775 0.373 C 5.282 0.124 4.73 0 4.12 0 C 3.334 0 2.629 0.191 2.007 0.573 C 1.386 0.952 0.879 1.491 0.537 2.133 C 0.179 2.791 0 3.531 0 4.352 C 0 5.173 0.175 5.93 0.528 6.588 C 0.867 7.233 1.375 7.772 1.998 8.149 C 2.626 8.53 3.334 8.721 4.12 8.721 C 4.718 8.721 5.268 8.597 5.766 8.348 C 6.055 8.204 6.31 8.029 6.531 7.825 L 6.531 8.167 C 6.531 8.779 6.321 9.268 5.897 9.632 C 5.475 9.996 4.912 10.178 4.207 10.178 C 3.633 10.178 3.141 10.077 2.737 9.875 C 2.315 9.659 1.941 9.362 1.636 8.999 L 0.158 10.438 C 0.581 11.015 1.135 11.464 1.822 11.782 C 2.509 12.099 3.311 12.258 4.227 12.258 C 5.142 12.258 5.929 12.088 6.621 11.747 C 7.313 11.405 7.856 10.924 8.25 10.299 C 8.643 9.675 8.84 8.952 8.84 8.132 L 8.84 0.173 L 6.55 0.173 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kjbuoc\",layoutDependency:layoutDependency,layoutId:\"q2ivgJXV6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.281 4.526\" overflow=\"visible\"><path d=\"M 3.267 4.231 C 2.945 4.428 2.572 4.526 2.149 4.526 C 1.726 4.526 1.354 4.428 1.03 4.231 C 0.709 4.036 0.448 3.757 0.273 3.425 C 0.088 3.069 -0.006 2.673 0 2.272 C 0 1.82 0.091 1.428 0.273 1.093 C 0.448 0.765 0.706 0.49 1.022 0.295 C 1.339 0.099 1.709 0 2.132 0 C 2.555 0 2.93 0.098 3.259 0.295 C 3.588 0.492 3.84 0.757 4.016 1.093 C 4.192 1.428 4.281 1.815 4.281 2.255 C 4.281 2.694 4.192 3.098 4.015 3.434 C 3.845 3.764 3.586 4.04 3.268 4.231 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fsnmv2\",layoutDependency:layoutDependency,layoutId:\"CWWy46KiQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.646 8.755\" overflow=\"visible\"><path d=\"M 8.118 2.028 C 7.775 1.401 7.263 0.885 6.639 0.537 C 6.005 0.179 5.289 0 4.491 0 C 3.646 0 2.883 0.19 2.202 0.571 C 1.536 0.939 0.98 1.478 0.591 2.132 C 0.197 2.791 0 3.536 0 4.369 C 0 5.201 0.2 5.963 0.599 6.622 C 0.998 7.281 1.567 7.82 2.246 8.183 C 2.944 8.564 3.74 8.755 4.631 8.755 C 5.325 8.755 5.964 8.634 6.552 8.391 C 7.139 8.149 7.663 7.775 8.083 7.299 L 6.709 5.946 C 6.451 6.247 6.147 6.467 5.794 6.605 C 5.417 6.749 5.017 6.819 4.614 6.813 C 4.132 6.813 3.71 6.716 3.345 6.518 C 2.985 6.325 2.693 6.025 2.509 5.66 C 2.431 5.507 2.369 5.346 2.324 5.181 L 8.54 5.166 C 8.587 4.981 8.617 4.81 8.629 4.654 C 8.64 4.501 8.646 4.348 8.646 4.195 C 8.646 3.385 8.47 2.663 8.117 2.027 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mq37sd\",layoutDependency:layoutDependency,layoutId:\"ekll4wCPq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.11 1.575\" overflow=\"visible\"><path d=\"M 0.951 0.295 C 1.29 0.099 1.691 0 2.147 0 C 2.582 0 2.946 0.087 3.239 0.26 C 3.533 0.434 3.762 0.688 3.926 1.023 C 4.005 1.184 4.065 1.364 4.11 1.564 L 0 1.575 C 0.043 1.419 0.099 1.273 0.166 1.135 C 0.337 0.783 0.611 0.49 0.951 0.294 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k11636\",layoutDependency:layoutDependency,layoutId:\"gPM3ZDfYP\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.645 8.755\" overflow=\"visible\"><path d=\"M 8.118 2.028 C 7.775 1.401 7.262 0.885 6.639 0.537 C 6.004 0.179 5.288 0 4.49 0 C 3.645 0 2.882 0.19 2.202 0.571 C 1.535 0.939 0.979 1.478 0.59 2.132 C 0.196 2.791 0 3.536 0 4.369 C 0 5.201 0.2 5.963 0.598 6.622 C 0.997 7.281 1.566 7.82 2.245 8.183 C 2.943 8.564 3.739 8.755 4.631 8.755 C 5.324 8.755 5.964 8.634 6.551 8.391 C 7.138 8.148 7.662 7.775 8.083 7.299 L 6.709 5.946 C 6.463 6.238 6.148 6.465 5.793 6.605 C 5.417 6.749 5.016 6.819 4.613 6.813 C 4.131 6.813 3.709 6.716 3.345 6.518 C 2.984 6.325 2.692 6.025 2.508 5.66 C 2.43 5.507 2.368 5.346 2.324 5.181 L 8.54 5.166 C 8.586 4.981 8.616 4.81 8.628 4.654 C 8.64 4.498 8.645 4.345 8.645 4.195 C 8.645 3.385 8.469 2.663 8.117 2.027 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dx3gim\",layoutDependency:layoutDependency,layoutId:\"mGDIKpHsS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.11 1.575\" overflow=\"visible\"><path d=\"M 0.95 0.295 C 1.291 0.099 1.69 0 2.148 0 C 2.581 0 2.946 0.087 3.239 0.26 C 3.533 0.434 3.761 0.688 3.926 1.023 C 4.005 1.184 4.066 1.364 4.11 1.564 L 0 1.575 C 0.041 1.423 0.097 1.276 0.166 1.135 C 0.337 0.783 0.61 0.49 0.95 0.294 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11cslgw\",layoutDependency:layoutDependency,layoutId:\"Z3LwgYFP6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.342 8.375\" overflow=\"visible\"><path d=\"M 0 8.374 L 0 0 L 2.342 0 L 2.342 8.375 L 0 8.375 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14s8qgm\",layoutDependency:layoutDependency,layoutId:\"Ce_plgr46\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.342 2.306\" overflow=\"visible\"><path d=\"M 0.746 0.001 L 0 0.001 L 0 2.306 L 2.342 2.306 L 2.342 0 L 0.745 0 L 0.746 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1b5tqug\",layoutDependency:layoutDependency,layoutId:\"b67ApzTvX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.031 11.968\" overflow=\"visible\"><path d=\"M 0 6.601 L 5.774 3.292 L 0 0 Z M 7.01 5.354 L 1.227 8.668 L 7.031 11.968 Z\" fill=\"rgb(107,16,235)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17f8jlh\",layoutDependency:layoutDependency,layoutId:\"UG9iN9sG9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.774 6.601\" overflow=\"visible\"><path d=\"M 0 6.601 L 5.774 3.292 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14kbf7m\",layoutDependency:layoutDependency,layoutId:\"oc0FNEj9y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.804 6.614\" overflow=\"visible\"><path d=\"M 5.784 0 L 0 3.313 L 5.804 6.614 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9pjdpd\",layoutDependency:layoutDependency,layoutId:\"ySDt0Mr8i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.324 18.086\" overflow=\"visible\"><path d=\"M 7.069 0.001 L 0 4.019 L 8.246 8.721 L 8.276 18.086 L 15.324 14.079 L 15.324 4.694 L 7.068 0 Z\" fill=\"rgb(107,16,235)\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://documentation.gravitee.io/\",motionChild:true,nodeId:\"cx11SEkgE\",openInNewTab:true,scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-x3tz2c framer-aoqboz\",\"data-framer-name\":\"Gravitee\",layoutDependency:layoutDependency,layoutId:\"cx11SEkgE\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1e4daxi\",layoutDependency:layoutDependency,layoutId:\"XE4Bobrs8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.536 19\" overflow=\"visible\"><g><path d=\"M 0 0 L 106.536 0 L 106.536 19 L 0 19 Z\" fill=\"transparent\"></path><path d=\"M 9.609 0 C 4.331 0 0.052 4.234 0.052 9.456 C 0.052 14.679 4.331 18.912 9.609 18.912 L 13.971 18.912 L 13.971 14.281 L 20.06 14.281 L 15.48 8.992 L 9.361 8.992 L 13.937 14.276 L 9.609 14.276 C 6.918 14.276 4.737 12.118 4.737 9.457 C 4.737 6.795 6.919 4.637 9.609 4.636 C 10.946 4.636 12.156 5.169 13.037 6.032 L 13.424 6.41 L 16.694 3.089 L 16.312 2.716 C 14.518 0.97 12.112 -0.005 9.609 0 Z\" fill=\"rgb(236,231,227)\"></path><g><defs><linearGradient id=\"idsXE4Bobrs8_4g1689211172\" x1=\"0.9295170814701914\" x2=\"0.07048291852980854\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,114,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(240,17,20)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 9.609 0 C 4.331 0 0.052 4.234 0.052 9.456 C 0.052 14.679 4.331 18.912 9.609 18.912 L 13.971 18.912 L 13.971 14.281 L 20.06 14.281 L 15.48 8.992 L 9.361 8.992 L 13.937 14.276 L 9.609 14.276 C 6.918 14.276 4.737 12.118 4.737 9.457 C 4.737 6.795 6.919 4.637 9.609 4.636 C 10.946 4.636 12.156 5.169 13.037 6.032 L 13.424 6.41 L 16.694 3.089 L 16.312 2.716 C 14.518 0.97 12.112 -0.005 9.609 0 Z\" fill=\"url(#idsXE4Bobrs8_4g1689211172)\"></path></g><path d=\"M 97.323 4.544 L 106.534 4.544 L 106.534 5.693 L 99.518 5.693 C 99.024 5.693 98.623 6.09 98.623 6.579 L 98.623 7.832 C 98.623 8.321 99.024 8.717 99.518 8.717 L 105.745 8.717 L 105.745 9.866 L 99.518 9.866 C 99.024 9.866 98.623 10.263 98.623 10.752 L 98.623 12.333 C 98.623 12.822 99.024 13.219 99.518 13.219 L 106.534 13.219 L 106.534 14.368 L 97.323 14.368 Z M 86.158 4.544 L 95.368 4.544 L 95.368 5.693 L 88.353 5.693 C 87.859 5.693 87.458 6.09 87.458 6.579 L 87.458 7.832 C 87.458 8.321 87.859 8.717 88.353 8.717 L 94.581 8.717 L 94.581 9.866 L 88.353 9.866 C 87.859 9.866 87.458 10.263 87.458 10.752 L 87.458 12.333 C 87.458 12.822 87.859 13.219 88.353 13.219 L 95.368 13.219 L 95.368 14.368 L 86.158 14.368 Z M 84.53 5.693 L 80.737 5.693 C 80.243 5.693 79.843 6.09 79.843 6.579 L 79.843 14.369 L 78.515 14.369 L 78.515 6.579 C 78.515 6.09 78.114 5.693 77.62 5.693 L 73.827 5.693 L 73.827 4.544 L 84.53 4.544 Z M 72.192 4.544 L 72.192 14.368 L 70.865 14.368 L 70.865 4.544 Z M 64.275 14.368 L 62.754 14.368 L 57.541 4.544 L 58.965 4.544 L 63.001 12.142 C 63.105 12.337 63.308 12.458 63.529 12.458 C 63.749 12.458 63.952 12.337 64.056 12.142 L 68.093 4.544 L 69.503 4.544 Z M 52.707 4.544 L 54.159 4.544 L 59.372 14.368 L 57.962 14.368 L 56.523 11.646 L 50.342 11.646 L 48.89 14.368 L 47.48 14.368 L 52.707 4.544 Z M 53.966 6.823 C 53.862 6.629 53.659 6.507 53.439 6.507 C 53.218 6.507 53.016 6.628 52.911 6.822 L 51.413 9.63 C 51.316 9.814 51.322 10.035 51.431 10.213 C 51.539 10.39 51.732 10.498 51.94 10.496 L 54.928 10.496 C 55.136 10.498 55.329 10.391 55.437 10.214 C 55.545 10.036 55.553 9.815 55.456 9.632 Z M 38.396 10.25 L 38.396 14.369 L 37.069 14.369 L 37.069 4.543 L 43.278 4.543 C 45.352 4.543 46.791 5.515 46.791 7.39 C 46.791 8.963 45.739 9.934 44.136 10.181 L 46.998 14.367 L 45.478 14.367 L 42.684 10.248 L 38.397 10.248 Z M 38.396 8.524 C 38.396 8.85 38.664 9.115 38.993 9.115 L 43.209 9.115 C 44.619 9.115 45.491 8.498 45.491 7.39 C 45.491 6.282 44.619 5.68 43.209 5.68 L 38.993 5.68 C 38.665 5.678 38.398 5.942 38.396 6.27 L 38.396 8.524 Z M 29.618 4.394 C 32.189 4.394 34.085 5.653 34.79 7.568 L 33.67 8.156 C 33.075 6.555 31.664 5.57 29.618 5.57 C 27.004 5.57 25.151 7.13 25.151 9.442 C 25.151 11.768 26.99 13.342 29.563 13.342 C 31.386 13.342 32.968 12.544 33.512 11.3 C 33.712 10.842 33.293 10.414 32.788 10.414 L 28.843 10.414 L 28.843 9.265 L 33.395 9.265 C 34.219 9.265 34.887 9.925 34.887 10.74 L 34.887 14.368 L 33.642 14.368 L 33.642 12.658 C 33.034 13.698 31.512 14.505 29.563 14.519 C 26.23 14.519 23.795 12.398 23.795 9.443 C 23.795 6.487 26.271 4.394 29.618 4.394 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eot3rd\",layoutDependency:layoutDependency,layoutId:\"cKoGGJmLH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.536 19\" overflow=\"visible\"><path d=\"M 0 0 L 106.536 0 L 106.536 19 L 0 19 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ov81zq\",layoutDependency:layoutDependency,layoutId:\"r8K61aTxq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.008 18.912\" overflow=\"visible\"><path d=\"M 9.557 0 C 4.279 0 0 4.234 0 9.456 C 0 14.679 4.279 18.912 9.557 18.912 L 13.919 18.912 L 13.919 14.281 L 20.008 14.281 L 15.427 8.992 L 9.309 8.992 L 13.884 14.276 L 9.556 14.276 C 6.866 14.276 4.685 12.118 4.685 9.457 C 4.685 6.795 6.866 4.637 9.557 4.636 C 10.894 4.636 12.104 5.169 12.984 6.032 L 13.371 6.41 L 16.642 3.089 L 16.26 2.716 C 14.466 0.97 12.06 -0.005 9.556 0 Z\" fill=\"rgb(236,231,227)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jyjbmf\",layoutDependency:layoutDependency,layoutId:\"aV2nbOIYJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.008 18.912\" overflow=\"visible\"><g><defs><linearGradient id=\"idsaV2nbOIYJ_1g1689211172\" x1=\"0.9295170814701914\" x2=\"0.07048291852980854\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,114,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(240,17,20)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 9.557 0 C 4.279 0 0 4.234 0 9.456 C 0 14.679 4.279 18.912 9.557 18.912 L 13.919 18.912 L 13.919 14.281 L 20.008 14.281 L 15.427 8.992 L 9.309 8.992 L 13.884 14.276 L 9.556 14.276 C 6.866 14.276 4.685 12.118 4.685 9.457 C 4.685 6.795 6.866 4.637 9.557 4.636 C 10.894 4.636 12.104 5.169 12.984 6.032 L 13.371 6.41 L 16.642 3.089 L 16.26 2.716 C 14.466 0.97 12.06 -0.005 9.556 0 Z\" fill=\"url(#idsaV2nbOIYJ_1g1689211172)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ldqfzm\",layoutDependency:layoutDependency,layoutId:\"FcBRWlxiK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82.738 10.125\" overflow=\"visible\"><path d=\"M 73.528 0.15 L 82.738 0.15 L 82.738 1.299 L 75.722 1.299 C 75.228 1.299 74.827 1.696 74.827 2.185 L 74.827 3.438 C 74.827 3.927 75.228 4.323 75.722 4.323 L 81.95 4.323 L 81.95 5.473 L 75.722 5.473 C 75.228 5.473 74.827 5.87 74.827 6.358 L 74.827 7.939 C 74.827 8.429 75.228 8.826 75.722 8.826 L 82.738 8.826 L 82.738 9.974 L 73.528 9.974 Z M 62.363 0.15 L 71.573 0.15 L 71.573 1.299 L 64.558 1.299 C 64.063 1.299 63.663 1.696 63.663 2.185 L 63.663 3.438 C 63.663 3.927 64.063 4.323 64.558 4.323 L 70.785 4.323 L 70.785 5.473 L 64.558 5.473 C 64.063 5.473 63.663 5.87 63.663 6.358 L 63.663 7.939 C 63.663 8.429 64.063 8.826 64.558 8.826 L 71.573 8.826 L 71.573 9.974 L 62.363 9.974 Z M 60.735 1.299 L 56.942 1.299 C 56.448 1.299 56.047 1.696 56.047 2.185 L 56.047 9.975 L 54.719 9.975 L 54.719 2.185 C 54.719 1.696 54.319 1.299 53.824 1.299 L 50.031 1.299 L 50.031 0.15 L 60.735 0.15 Z M 48.396 0.15 L 48.396 9.974 L 47.069 9.974 L 47.069 0.15 Z M 40.48 9.974 L 38.959 9.974 L 33.745 0.15 L 35.17 0.15 L 39.205 7.749 C 39.31 7.943 39.512 8.064 39.733 8.064 C 39.954 8.064 40.157 7.943 40.261 7.749 L 44.297 0.15 L 45.707 0.15 Z M 28.911 0.15 L 30.363 0.15 L 35.577 9.974 L 34.166 9.974 L 32.728 7.252 L 26.546 7.252 L 25.094 9.974 L 23.684 9.974 L 28.912 0.15 Z M 30.171 2.429 C 30.066 2.235 29.864 2.114 29.643 2.113 C 29.423 2.113 29.22 2.234 29.115 2.428 L 27.617 5.237 C 27.52 5.42 27.527 5.642 27.635 5.819 C 27.743 5.997 27.937 6.104 28.144 6.102 L 31.133 6.102 C 31.34 6.104 31.534 5.997 31.642 5.82 C 31.75 5.643 31.757 5.422 31.661 5.238 Z M 14.601 5.856 L 14.601 9.975 L 13.274 9.975 L 13.274 0.149 L 19.482 0.149 C 21.557 0.149 22.995 1.121 22.995 2.996 C 22.995 4.569 21.944 5.541 20.34 5.787 L 23.202 9.974 L 21.682 9.974 L 18.889 5.855 L 14.602 5.855 Z M 14.601 4.13 C 14.601 4.456 14.868 4.721 15.197 4.721 L 19.413 4.721 C 20.824 4.721 21.695 4.105 21.695 2.997 C 21.695 1.888 20.824 1.287 19.413 1.287 L 15.197 1.287 C 14.87 1.285 14.602 1.549 14.6 1.876 L 14.6 4.13 Z M 5.822 0 C 8.394 0 10.289 1.259 10.994 3.174 L 9.875 3.763 C 9.279 2.161 7.869 1.177 5.822 1.177 C 3.209 1.177 1.355 2.736 1.355 5.049 C 1.355 7.375 3.195 8.948 5.767 8.948 C 7.591 8.948 9.172 8.15 9.716 6.906 C 9.917 6.448 9.497 6.02 8.992 6.02 L 5.048 6.02 L 5.048 4.871 L 9.6 4.871 C 10.424 4.871 11.091 5.532 11.091 6.347 L 11.091 9.974 L 9.847 9.974 L 9.847 8.264 C 9.238 9.304 7.717 10.111 5.767 10.125 C 2.434 10.125 0 8.004 0 5.049 C 0 2.093 2.475 0 5.822 0 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gn9st0\",layoutDependency:layoutDependency,layoutId:\"wR5NtsPSy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.21 9.824\" overflow=\"visible\"><path d=\"M 0 0 L 9.21 0 L 9.21 1.149 L 2.194 1.149 C 1.7 1.149 1.299 1.546 1.299 2.035 L 1.299 3.288 C 1.299 3.777 1.7 4.173 2.194 4.173 L 8.422 4.173 L 8.422 5.323 L 2.194 5.323 C 1.7 5.323 1.299 5.72 1.299 6.208 L 1.299 7.789 C 1.299 8.279 1.7 8.676 2.194 8.676 L 9.21 8.676 L 9.21 9.824 L 0 9.824 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1laxnkp\",layoutDependency:layoutDependency,layoutId:\"fNXkR34xy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.21 9.824\" overflow=\"visible\"><path d=\"M 0 0 L 9.21 0 L 9.21 1.149 L 2.195 1.149 C 1.701 1.149 1.3 1.546 1.3 2.035 L 1.3 3.288 C 1.3 3.777 1.701 4.173 2.195 4.173 L 8.422 4.173 L 8.422 5.323 L 2.195 5.323 C 1.701 5.323 1.3 5.72 1.3 6.208 L 1.3 7.789 C 1.3 8.279 1.701 8.676 2.195 8.676 L 9.21 8.676 L 9.21 9.824 L 0 9.824 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mn97f7\",layoutDependency:layoutDependency,layoutId:\"Y0TJve8O0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.704 9.825\" overflow=\"visible\"><path d=\"M 10.704 1.149 L 6.911 1.149 C 6.417 1.149 6.016 1.546 6.016 2.035 L 6.016 9.825 L 4.688 9.825 L 4.688 2.035 C 4.688 1.546 4.288 1.149 3.793 1.149 L 0 1.149 L 0 0 L 10.704 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nppudx\",layoutDependency:layoutDependency,layoutId:\"GxYUvMX0W\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.327 9.824\" overflow=\"visible\"><path d=\"M 1.327 0 L 1.327 9.824 L 0 9.824 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o8pk2y\",layoutDependency:layoutDependency,layoutId:\"E8UnV5AKS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.962 9.824\" overflow=\"visible\"><path d=\"M 6.734 9.824 L 5.213 9.824 L 0 0 L 1.424 0 L 5.46 7.599 C 5.564 7.793 5.767 7.914 5.988 7.914 C 6.208 7.914 6.411 7.793 6.516 7.599 L 10.552 0 L 11.962 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g0h7gh\",layoutDependency:layoutDependency,layoutId:\"yAS3nVuWS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.893 9.824\" overflow=\"visible\"><path d=\"M 5.227 0 L 6.679 0 L 11.893 9.824 L 10.482 9.824 L 9.043 7.102 L 2.862 7.102 L 1.41 9.824 L 0 9.824 L 5.228 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13k367o\",layoutDependency:layoutDependency,layoutId:\"APyAVzj0r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.179 3.989\" overflow=\"visible\"><path d=\"M 2.622 0.316 C 2.517 0.122 2.315 0 2.095 0 C 1.874 0 1.671 0.121 1.567 0.314 L 0.068 3.123 C -0.029 3.307 -0.022 3.528 0.086 3.706 C 0.194 3.883 0.388 3.991 0.595 3.989 L 3.584 3.989 C 3.791 3.991 3.985 3.883 4.093 3.706 C 4.201 3.529 4.208 3.308 4.112 3.124 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ix0zyl\",layoutDependency:layoutDependency,layoutId:\"UDtiXDLum\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.929 9.826\" overflow=\"visible\"><path d=\"M 1.327 5.707 L 1.327 9.826 L 0 9.826 L 0 0 L 6.209 0 C 8.283 0 9.722 0.972 9.722 2.847 C 9.722 4.42 8.67 5.391 7.067 5.638 L 9.929 9.824 L 8.409 9.824 L 5.615 5.705 L 1.328 5.705 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g17ys7\",layoutDependency:layoutDependency,layoutId:\"pmxeosaLH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.095 3.434\" overflow=\"visible\"><path d=\"M 0.001 2.844 C 0.001 3.17 0.268 3.434 0.597 3.434 L 4.813 3.434 C 6.224 3.434 7.095 2.818 7.095 1.71 C 7.095 0.601 6.224 0 4.813 0 L 0.597 0 C 0.269 -0.002 0.002 0.262 0 0.59 L 0 2.844 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tm2vh2\",layoutDependency:layoutDependency,layoutId:\"cV0ReIuOe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.091 10.125\" overflow=\"visible\"><path d=\"M 5.822 0 C 8.394 0 10.289 1.259 10.994 3.174 L 9.875 3.763 C 9.279 2.161 7.869 1.177 5.822 1.177 C 3.209 1.177 1.355 2.736 1.355 5.049 C 1.355 7.375 3.195 8.948 5.767 8.948 C 7.591 8.948 9.172 8.15 9.716 6.906 C 9.917 6.448 9.497 6.02 8.992 6.02 L 5.048 6.02 L 5.048 4.871 L 9.6 4.871 C 10.424 4.871 11.091 5.532 11.091 6.347 L 11.091 9.974 L 9.847 9.974 L 9.847 8.264 C 9.238 9.304 7.717 10.111 5.767 10.125 C 2.434 10.125 0 8.004 0 5.049 C 0 2.093 2.475 0 5.822 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.ideogram.ai/\",motionChild:true,nodeId:\"zNL0SA20g\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jdeglo framer-aoqboz\",\"data-framer-name\":\"Ideogram\",layoutDependency:layoutDependency,layoutId:\"zNL0SA20g\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-193xqwj\",layoutDependency:layoutDependency,layoutId:\"PDaPUfnz6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 101.333 22.017\" overflow=\"visible\"><g><path d=\"M 0 0 L 101.333 0 L 101.333 22 L 0 22 Z\" fill=\"transparent\"></path><path d=\"M 21.577 9.949 C 23.343 7.893 22.508 5.378 20.597 4.508 C 20.437 4.429 20.309 4.223 20.244 4.033 C 19.024 0.981 15.877 -0.68 12.651 0.269 C 11.399 0.633 10.195 0.997 8.877 0.886 C 8.332 0.839 7.947 1.234 8.043 1.709 C 8.107 2.041 8.525 2.389 8.878 2.562 C 9.151 2.705 9.552 2.578 9.905 2.61 C 11.045 2.689 11.944 3.622 11.96 4.729 C 11.977 6.073 11.029 7.007 9.568 7.023 C 7.401 7.039 5.233 7.039 3.067 7.023 C 2.424 7.023 1.895 7.181 1.879 7.893 C 1.862 8.619 2.424 8.778 3.034 8.778 L 3.677 8.778 C 5.635 8.778 7.577 8.762 9.537 8.778 C 10.949 8.794 11.944 9.727 11.944 10.993 C 11.944 12.305 10.997 13.191 9.568 13.223 C 8.894 13.238 8.236 13.223 7.561 13.223 L 2.906 13.223 C 2.312 13.223 1.879 13.476 1.862 14.076 C 1.846 14.677 2.247 14.963 2.857 14.963 L 3.5 14.963 C 5.507 14.963 7.513 14.946 9.52 14.963 C 10.997 14.978 11.96 15.911 11.944 17.239 C 11.928 18.521 10.965 19.391 9.504 19.391 C 9.263 19.391 9.023 19.375 8.781 19.422 C 8.268 19.501 7.883 19.849 8.011 20.339 C 8.091 20.656 8.525 21.067 8.83 21.099 C 9.504 21.162 10.21 21.067 10.885 20.957 C 11.286 20.893 11.527 20.909 11.864 21.193 C 12.811 22 13.919 22.221 15.155 21.827 C 16.167 21.494 16.761 20.751 17.226 19.881 C 18.655 20.245 19.923 20.102 20.935 18.979 C 21.898 17.888 21.995 16.686 21.448 15.373 C 21.384 15.2 21.416 14.915 21.528 14.772 C 22.941 12.953 22.957 11.799 21.577 9.949 Z M 18.398 4.286 C 17.885 4.586 17.371 4.887 17.001 5.124 C 15.926 4.76 14.915 4.428 13.743 4.033 C 13.517 3.558 13.181 2.846 12.811 2.055 C 14.995 1.249 17.355 2.167 18.398 4.286 Z M 19.473 17.982 C 18.799 18.489 17.98 18.378 17.307 17.793 C 17.017 17.539 16.584 17.302 16.231 17.334 C 15.557 17.397 15.573 17.967 15.621 18.489 C 15.685 19.216 15.396 19.801 14.721 20.102 C 14.079 20.387 13.485 20.26 12.923 19.738 C 14.353 17.35 13.759 15.515 12.394 14.171 C 12.795 13.507 13.181 12.874 13.566 12.225 C 13.983 11.529 15.299 11.687 15.781 12.494 C 15.877 12.653 15.925 12.826 15.974 13.001 C 16.439 14.582 17.451 15.483 19.169 15.641 C 19.457 15.673 19.843 16.053 19.955 16.353 C 20.18 16.954 20.019 17.555 19.473 17.983 Z M 20.807 7.591 C 20.774 8.335 20.309 8.888 19.586 9.046 C 19.377 9.094 19.088 9.046 18.976 9.173 C 18.735 9.41 18.382 9.806 18.446 10.011 C 18.559 10.327 18.944 10.691 19.281 10.786 C 20.308 11.103 20.79 11.529 20.79 12.352 C 20.79 13.111 20.389 13.601 19.666 13.807 C 18.959 14.013 18.237 13.712 17.9 13.063 C 17.804 12.874 17.756 12.668 17.675 12.479 C 17.113 10.833 15.942 10.011 14.192 10.059 L 13.791 10.059 C 13.323 9.323 12.852 8.591 12.377 7.86 C 12.667 7.465 12.939 6.911 13.373 6.516 C 13.662 6.247 14.208 6.009 14.545 6.105 C 14.995 6.215 15.396 6.627 15.781 6.958 C 15.909 7.069 15.829 7.401 15.941 7.544 C 16.199 7.86 16.488 8.287 16.841 8.366 C 17.339 8.461 17.611 8.034 17.691 7.528 C 17.901 6.341 18.687 5.804 19.698 6.136 C 20.421 6.357 20.838 6.816 20.806 7.591 Z M 69.931 8.525 L 67.684 8.525 C 67.652 8.841 67.62 9.126 67.588 9.363 C 67.026 9.047 66.528 8.667 65.966 8.493 C 64.024 7.94 62.193 9.127 61.728 11.182 C 61.166 13.665 62.37 15.99 64.393 16.354 C 65.613 16.575 66.641 16.259 67.62 15.152 L 67.62 16.227 C 67.62 17.003 67.491 17.714 66.673 18.062 C 65.854 18.41 65.019 18.189 64.297 17.461 C 64.184 17.351 63.991 17.224 63.847 17.224 C 63.237 17.192 62.627 17.208 62.017 17.208 C 61.937 17.287 61.873 17.382 61.792 17.461 C 62.161 18.046 62.419 18.742 62.916 19.185 C 64.361 20.435 66.079 20.529 67.797 19.897 C 69.434 19.28 69.947 17.888 69.964 16.259 C 69.98 13.918 69.964 11.577 69.964 9.237 C 69.98 8.999 69.947 8.778 69.931 8.525 Z M 65.789 14.409 C 64.746 14.393 63.976 13.555 63.976 12.4 C 63.976 11.261 64.746 10.391 65.773 10.375 C 66.833 10.36 67.636 11.245 67.62 12.431 C 67.62 13.602 66.865 14.409 65.789 14.409 Z M 101.253 10.977 C 101.093 9.142 99.455 8.035 97.625 8.477 C 96.822 8.667 96.1 9.205 95.265 9.632 C 94.767 8.968 93.981 8.351 92.969 8.43 C 92.07 8.493 91.187 8.857 90.288 9.079 C 90.257 8.901 90.236 8.721 90.224 8.541 L 87.96 8.541 L 87.96 16.322 L 90.272 16.322 C 90.272 14.82 90.256 13.397 90.272 11.973 C 90.288 10.882 91.075 10.265 92.118 10.423 C 92.985 10.565 93.435 11.071 93.451 12.021 C 93.467 13.428 93.451 14.851 93.451 16.307 L 95.731 16.307 C 95.747 15.99 95.779 15.705 95.779 15.421 C 95.779 14.314 95.763 13.207 95.795 12.099 C 95.827 10.993 96.389 10.407 97.368 10.391 C 98.379 10.375 98.973 10.977 99.005 12.115 C 99.021 12.795 99.005 13.491 99.005 14.171 L 99.005 16.291 L 101.269 16.291 C 101.285 14.504 101.413 12.732 101.253 10.977 Z M 39.702 7.639 L 39.702 9.363 C 39.075 9.031 38.578 8.651 38.016 8.493 C 36.089 7.94 34.243 9.142 33.794 11.198 C 33.232 13.697 34.452 16.006 36.491 16.37 C 37.711 16.591 38.738 16.243 39.653 15.279 C 39.702 15.721 39.733 16.022 39.766 16.307 L 41.997 16.307 L 41.997 5.946 L 39.717 5.946 C 39.702 6.547 39.702 7.101 39.702 7.639 Z M 37.887 14.409 C 36.811 14.409 36.025 13.539 36.057 12.353 C 36.073 11.214 36.891 10.359 37.919 10.391 C 38.963 10.423 39.717 11.277 39.701 12.431 C 39.685 13.586 38.947 14.393 37.887 14.409 Z M 83.529 9.521 C 82.775 8.699 81.94 8.303 80.961 8.335 C 79.147 8.399 77.83 9.775 77.605 11.751 C 77.365 13.918 78.408 15.816 80.094 16.291 C 80.19 16.322 80.303 16.322 80.415 16.354 C 81.619 16.575 82.663 16.259 83.545 15.247 C 83.609 15.721 83.642 15.99 83.69 16.291 L 85.889 16.291 L 85.889 8.525 L 83.69 8.525 C 83.642 8.825 83.593 9.079 83.529 9.521 Z M 81.763 14.393 C 80.704 14.377 79.965 13.555 79.965 12.384 C 79.965 11.229 80.72 10.375 81.779 10.375 C 82.807 10.375 83.609 11.229 83.626 12.369 C 83.626 13.571 82.855 14.409 81.763 14.393 Z M 56.446 8.335 C 54.054 8.367 52.369 10.059 52.369 12.415 C 52.369 14.804 54.038 16.449 56.446 16.465 C 58.886 16.481 60.604 14.788 60.604 12.4 C 60.604 9.996 58.871 8.288 56.446 8.335 Z M 56.959 14.345 C 56.205 14.567 55.483 14.298 55.081 13.665 C 54.616 12.938 54.68 11.609 55.194 10.977 C 55.675 10.411 56.47 10.224 57.153 10.518 C 58.019 10.898 58.228 11.609 58.228 12.463 C 58.196 13.459 57.763 14.108 56.96 14.345 Z M 46.059 8.588 C 44.133 9.253 43.137 11.198 43.619 13.412 C 44.037 15.373 45.754 16.607 47.793 16.417 C 49.607 16.243 50.827 15.342 51.149 13.903 C 49.929 13.649 49.238 13.76 48.242 14.329 C 47.183 14.946 45.995 14.283 45.931 12.953 C 46.187 12.938 46.444 12.922 46.701 12.922 C 48.034 12.922 49.383 12.89 50.715 12.938 C 51.325 12.953 51.485 12.732 51.485 12.163 C 51.437 9.363 48.837 7.639 46.059 8.589 Z M 45.963 11.577 C 46.059 10.724 46.605 10.217 47.456 10.201 C 48.323 10.186 48.885 10.676 48.997 11.577 Z M 74.17 8.509 L 71.906 8.509 L 71.906 16.291 L 74.218 16.291 L 74.218 13.555 C 74.218 11.214 74.266 11.151 76.578 10.803 C 76.594 10.803 76.626 10.771 76.675 10.739 L 76.675 8.161 C 75.743 8.683 75.005 9.095 74.25 9.506 C 74.234 9.205 74.202 8.873 74.17 8.509 Z M 29.957 16.338 L 32.173 16.338 L 32.173 6.485 L 29.957 6.485 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 9.215 11.894 C 9.809 11.894 10.307 11.688 10.307 11.008 C 10.307 10.328 9.825 10.138 9.215 10.138 L 1.14 10.138 C 0.546 10.138 0.032 10.281 0.016 10.961 C 0 11.688 0.498 11.878 1.14 11.878 L 5.137 11.878 C 6.486 11.894 7.851 11.894 9.215 11.894 Z M 5.86 5.631 L 9.392 5.631 C 9.921 5.631 10.275 5.362 10.307 4.84 C 10.339 4.271 9.985 3.939 9.44 3.923 C 8.242 3.891 7.042 3.891 5.844 3.923 C 5.282 3.939 4.945 4.287 4.977 4.84 C 4.977 5.362 5.314 5.631 5.86 5.631 Z M 9.44 18.094 C 9.969 18.062 10.291 17.761 10.291 17.239 C 10.291 16.718 9.969 16.401 9.44 16.386 C 8.241 16.37 7.043 16.37 5.844 16.386 C 5.297 16.386 4.977 16.702 4.961 17.208 C 4.945 17.761 5.282 18.094 5.86 18.109 C 6.453 18.125 7.032 18.109 7.626 18.109 C 8.219 18.094 8.83 18.125 9.439 18.094 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-n2kfol\",layoutDependency:layoutDependency,layoutId:\"XNxNdEL0g\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 101.333 22\" overflow=\"visible\"><path d=\"M 0 0 L 101.333 0 L 101.333 22 L 0 22 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1lpuyiv\",layoutDependency:layoutDependency,layoutId:\"RDWdS55Pv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.471 22.015\" overflow=\"visible\"><path d=\"M 19.715 9.946 C 21.481 7.89 20.646 5.375 18.736 4.505 C 18.576 4.426 18.447 4.221 18.382 4.031 C 17.162 0.978 14.016 -0.683 10.789 0.267 C 9.537 0.63 8.333 0.994 7.016 0.883 C 6.47 0.836 6.085 1.231 6.182 1.706 C 6.246 2.038 6.663 2.386 7.016 2.559 C 7.29 2.702 7.69 2.575 8.044 2.607 C 9.184 2.686 10.082 3.619 10.098 4.727 C 10.115 6.071 9.168 7.004 7.706 7.02 C 5.54 7.036 3.372 7.036 1.205 7.02 C 0.562 7.02 0.033 7.178 0.017 7.89 C 0 8.617 0.562 8.775 1.172 8.775 L 1.815 8.775 C 3.774 8.775 5.716 8.759 7.675 8.775 C 9.087 8.791 10.082 9.725 10.082 10.99 C 10.082 12.303 9.136 13.188 7.706 13.22 C 7.032 13.235 6.374 13.22 5.7 13.22 L 1.044 13.22 C 0.45 13.22 0.017 13.473 0 14.073 C -0.016 14.675 0.386 14.96 0.996 14.96 L 1.638 14.96 C 3.645 14.96 5.652 14.943 7.658 14.96 C 9.136 14.975 10.098 15.909 10.082 17.237 C 10.066 18.518 9.104 19.388 7.642 19.388 C 7.402 19.388 7.161 19.372 6.92 19.419 C 6.406 19.499 6.021 19.846 6.15 20.337 C 6.23 20.653 6.663 21.065 6.968 21.097 C 7.642 21.159 8.348 21.065 9.023 20.954 C 9.424 20.891 9.665 20.906 10.002 21.191 C 10.949 21.997 12.057 22.219 13.294 21.824 C 14.305 21.491 14.899 20.748 15.364 19.878 C 16.793 20.242 18.062 20.099 19.073 18.977 C 20.036 17.885 20.133 16.683 19.586 15.371 C 19.522 15.197 19.554 14.912 19.666 14.769 C 21.08 12.951 21.096 11.796 19.715 9.946 Z M 16.536 4.283 C 16.023 4.583 15.509 4.884 15.14 5.121 C 14.064 4.757 13.053 4.425 11.881 4.03 C 11.656 3.555 11.319 2.843 10.95 2.053 C 13.133 1.246 15.493 2.164 16.536 4.283 Z M 17.612 17.979 C 16.938 18.486 16.118 18.375 15.445 17.79 C 15.156 17.537 14.722 17.299 14.369 17.331 C 13.695 17.395 13.711 17.964 13.759 18.486 C 13.823 19.213 13.534 19.799 12.86 20.099 C 12.218 20.384 11.624 20.257 11.062 19.735 C 12.491 17.347 11.897 15.513 10.532 14.168 C 10.934 13.504 11.319 12.871 11.704 12.223 C 12.122 11.527 13.438 11.685 13.92 12.491 C 14.016 12.65 14.064 12.823 14.112 12.998 C 14.578 14.579 15.589 15.481 17.307 15.639 C 17.596 15.671 17.981 16.05 18.094 16.351 C 18.318 16.951 18.158 17.553 17.612 17.98 Z M 18.945 7.589 C 18.912 8.332 18.447 8.885 17.724 9.043 C 17.516 9.091 17.226 9.043 17.114 9.17 C 16.874 9.407 16.52 9.803 16.584 10.009 C 16.697 10.325 17.082 10.689 17.42 10.783 C 18.446 11.1 18.928 11.527 18.928 12.349 C 18.928 13.109 18.527 13.599 17.804 13.804 C 17.098 14.01 16.376 13.709 16.038 13.061 C 15.942 12.871 15.894 12.665 15.814 12.476 C 15.252 10.831 14.08 10.009 12.33 10.056 L 11.929 10.056 C 11.462 9.321 10.99 8.588 10.516 7.857 C 10.805 7.462 11.078 6.909 11.512 6.513 C 11.8 6.244 12.346 6.007 12.683 6.102 C 13.133 6.213 13.534 6.624 13.92 6.955 C 14.048 7.067 13.968 7.399 14.08 7.541 C 14.337 7.857 14.626 8.285 14.98 8.363 C 15.477 8.459 15.75 8.031 15.83 7.525 C 16.039 6.339 16.826 5.801 17.836 6.133 C 18.559 6.355 18.976 6.813 18.944 7.589 Z M 68.07 8.523 L 65.822 8.523 C 65.79 8.839 65.758 9.123 65.726 9.361 C 65.164 9.044 64.666 8.665 64.104 8.491 C 62.162 7.937 60.332 9.124 59.866 11.179 C 59.304 13.663 60.508 15.987 62.531 16.351 C 63.751 16.573 64.779 16.257 65.758 15.149 L 65.758 16.225 C 65.758 17 65.63 17.711 64.811 18.059 C 63.992 18.407 63.158 18.186 62.435 17.459 C 62.322 17.348 62.13 17.221 61.986 17.221 C 61.376 17.189 60.766 17.205 60.155 17.205 C 60.075 17.285 60.011 17.379 59.93 17.459 C 60.3 18.043 60.557 18.739 61.054 19.182 C 62.499 20.432 64.217 20.527 65.935 19.894 C 67.572 19.277 68.086 17.885 68.102 16.257 C 68.118 13.915 68.102 11.575 68.102 9.234 C 68.118 8.997 68.086 8.775 68.07 8.523 Z M 63.928 14.406 C 62.884 14.39 62.114 13.552 62.114 12.397 C 62.114 11.259 62.884 10.389 63.912 10.373 C 64.972 10.357 65.774 11.243 65.758 12.429 C 65.758 13.599 65.004 14.406 63.928 14.406 Z M 99.392 10.974 C 99.231 9.139 97.594 8.032 95.763 8.475 C 94.96 8.665 94.238 9.203 93.403 9.629 C 92.906 8.965 92.119 8.349 91.108 8.427 C 90.208 8.491 89.326 8.854 88.426 9.076 C 88.395 8.898 88.374 8.719 88.362 8.538 L 86.098 8.538 L 86.098 16.319 L 88.41 16.319 C 88.41 14.817 88.394 13.394 88.41 11.97 C 88.426 10.879 89.213 10.262 90.256 10.421 C 91.124 10.563 91.573 11.069 91.589 12.018 C 91.605 13.425 91.589 14.849 91.589 16.304 L 93.869 16.304 C 93.885 15.987 93.917 15.703 93.917 15.418 C 93.917 14.311 93.901 13.204 93.933 12.097 C 93.965 10.99 94.527 10.405 95.506 10.389 C 96.518 10.373 97.112 10.974 97.144 12.113 C 97.16 12.793 97.144 13.489 97.144 14.169 L 97.144 16.288 L 99.408 16.288 C 99.424 14.501 99.552 12.729 99.392 10.974 Z M 37.84 7.637 L 37.84 9.361 C 37.214 9.029 36.716 8.649 36.154 8.491 C 34.228 7.937 32.382 9.139 31.932 11.195 C 31.37 13.694 32.59 16.003 34.63 16.367 C 35.85 16.589 36.876 16.241 37.792 15.276 C 37.84 15.719 37.872 16.019 37.904 16.304 L 40.136 16.304 L 40.136 5.943 L 37.856 5.943 C 37.84 6.545 37.84 7.098 37.84 7.636 Z M 36.026 14.406 C 34.95 14.406 34.163 13.536 34.195 12.35 C 34.211 11.211 35.03 10.357 36.058 10.389 C 37.101 10.42 37.856 11.275 37.84 12.429 C 37.824 13.583 37.085 14.39 36.026 14.406 Z M 81.668 9.519 C 80.913 8.696 80.078 8.301 79.099 8.332 C 77.285 8.396 75.968 9.772 75.744 11.749 C 75.503 13.915 76.546 15.813 78.232 16.288 C 78.328 16.319 78.441 16.319 78.553 16.351 C 79.757 16.573 80.801 16.257 81.684 15.245 C 81.748 15.719 81.78 15.987 81.828 16.288 L 84.028 16.288 L 84.028 8.523 L 81.828 8.523 C 81.78 8.823 81.732 9.076 81.668 9.519 Z M 79.902 14.39 C 78.842 14.374 78.104 13.552 78.104 12.381 C 78.104 11.227 78.858 10.373 79.918 10.373 C 80.945 10.373 81.748 11.227 81.764 12.366 C 81.764 13.568 80.994 14.406 79.902 14.39 Z M 54.584 8.333 C 52.192 8.364 50.507 10.057 50.507 12.413 C 50.507 14.801 52.176 16.446 54.584 16.462 C 57.024 16.478 58.742 14.785 58.742 12.397 C 58.742 9.993 57.009 8.285 54.584 8.333 Z M 55.098 14.343 C 54.344 14.564 53.621 14.295 53.22 13.663 C 52.754 12.935 52.818 11.607 53.332 10.974 C 53.814 10.408 54.608 10.222 55.291 10.515 C 56.158 10.895 56.366 11.607 56.366 12.461 C 56.334 13.457 55.901 14.105 55.098 14.343 Z M 44.198 8.585 C 42.271 9.25 41.276 11.195 41.758 13.409 C 42.175 15.371 43.892 16.605 45.931 16.415 C 47.746 16.241 48.966 15.339 49.287 13.9 C 48.067 13.647 47.376 13.757 46.38 14.327 C 45.321 14.943 44.134 14.28 44.069 12.951 C 44.326 12.935 44.582 12.919 44.84 12.919 C 46.172 12.919 47.521 12.887 48.853 12.935 C 49.463 12.951 49.624 12.729 49.624 12.16 C 49.576 9.361 46.975 7.637 44.197 8.586 Z M 44.101 11.575 C 44.198 10.721 44.743 10.215 45.594 10.199 C 46.461 10.183 47.023 10.673 47.136 11.575 Z M 72.308 8.507 L 70.044 8.507 L 70.044 16.288 L 72.356 16.288 L 72.356 13.552 C 72.356 11.211 72.404 11.148 74.716 10.8 C 74.732 10.8 74.764 10.768 74.813 10.737 L 74.813 8.159 C 73.882 8.681 73.143 9.092 72.388 9.503 C 72.372 9.203 72.34 8.87 72.308 8.507 Z M 28.095 16.335 L 30.311 16.335 L 30.311 6.482 L 28.095 6.482 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ysg6ld\",layoutDependency:layoutDependency,layoutId:\"yQBJVcsj3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.739 22.015\" overflow=\"visible\"><path d=\"M 19.715 9.946 C 21.481 7.89 20.646 5.375 18.736 4.505 C 18.576 4.426 18.447 4.221 18.382 4.031 C 17.162 0.978 14.016 -0.683 10.789 0.267 C 9.537 0.63 8.333 0.994 7.016 0.883 C 6.47 0.836 6.085 1.231 6.182 1.706 C 6.246 2.038 6.663 2.386 7.016 2.559 C 7.29 2.702 7.69 2.575 8.044 2.607 C 9.184 2.686 10.082 3.619 10.098 4.727 C 10.115 6.071 9.168 7.004 7.706 7.02 C 5.54 7.036 3.372 7.036 1.205 7.02 C 0.562 7.02 0.033 7.178 0.017 7.89 C 0 8.617 0.562 8.775 1.172 8.775 L 1.815 8.775 C 3.774 8.775 5.716 8.759 7.675 8.775 C 9.087 8.791 10.082 9.725 10.082 10.99 C 10.082 12.303 9.136 13.188 7.706 13.22 C 7.032 13.235 6.374 13.22 5.7 13.22 L 1.044 13.22 C 0.45 13.22 0.017 13.473 0 14.073 C -0.016 14.675 0.386 14.96 0.996 14.96 L 1.638 14.96 C 3.645 14.96 5.652 14.943 7.658 14.96 C 9.136 14.975 10.098 15.909 10.082 17.237 C 10.066 18.518 9.104 19.388 7.642 19.388 C 7.402 19.388 7.161 19.372 6.92 19.419 C 6.406 19.499 6.021 19.846 6.15 20.337 C 6.23 20.653 6.663 21.065 6.968 21.097 C 7.642 21.159 8.348 21.065 9.023 20.954 C 9.424 20.891 9.665 20.906 10.002 21.191 C 10.949 21.997 12.057 22.219 13.294 21.824 C 14.305 21.491 14.899 20.748 15.364 19.878 C 16.793 20.242 18.062 20.099 19.073 18.977 C 20.036 17.885 20.133 16.683 19.586 15.371 C 19.522 15.197 19.554 14.912 19.666 14.769 C 21.08 12.951 21.096 11.796 19.715 9.946 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vqhgi4\",layoutDependency:layoutDependency,layoutId:\"FGR_g7aPT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.587 3.359\" overflow=\"visible\"><path d=\"M 5.587 2.521 C 5.073 2.821 4.559 3.121 4.19 3.359 C 3.115 2.995 2.103 2.663 0.931 2.267 C 0.706 1.793 0.369 1.081 0 0.29 C 2.183 -0.517 4.543 0.401 5.587 2.521 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19a5j7k\",layoutDependency:layoutDependency,layoutId:\"tx59Eh8FS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.66 8.466\" overflow=\"visible\"><path d=\"M 7.079 6.197 C 6.405 6.704 5.586 6.593 4.913 6.008 C 4.623 5.754 4.19 5.517 3.837 5.549 C 3.163 5.612 3.179 6.182 3.227 6.704 C 3.291 7.431 3.002 8.016 2.327 8.317 C 1.685 8.602 1.091 8.475 0.529 7.953 C 1.959 5.565 1.365 3.73 0 2.386 C 0.401 1.722 0.787 1.089 1.172 0.44 C 1.589 -0.256 2.905 -0.098 3.387 0.709 C 3.483 0.868 3.531 1.041 3.58 1.216 C 4.045 2.797 5.057 3.698 6.775 3.856 C 7.063 3.888 7.449 4.268 7.561 4.568 C 7.786 5.169 7.625 5.77 7.079 6.198 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lwfkr\",layoutDependency:layoutDependency,layoutId:\"qet9sE2o8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.43 7.832\" overflow=\"visible\"><path d=\"M 8.429 1.552 C 8.397 2.295 7.931 2.849 7.209 3.007 C 7 3.055 6.711 3.007 6.599 3.133 C 6.358 3.371 6.005 3.767 6.069 3.972 C 6.181 4.288 6.567 4.652 6.904 4.747 C 7.931 5.063 8.413 5.49 8.413 6.313 C 8.413 7.072 8.011 7.562 7.289 7.767 C 6.582 7.973 5.86 7.673 5.523 7.024 C 5.427 6.835 5.379 6.629 5.298 6.439 C 4.736 4.794 3.565 3.972 1.815 4.019 L 1.413 4.019 C 0.946 3.284 0.475 2.551 0 1.821 C 0.289 1.425 0.562 0.872 0.996 0.477 C 1.285 0.207 1.831 -0.03 2.167 0.065 C 2.617 0.176 3.019 0.587 3.404 0.919 C 3.532 1.03 3.452 1.362 3.564 1.505 C 3.821 1.821 4.111 2.248 4.464 2.327 C 4.961 2.422 5.234 1.995 5.314 1.489 C 5.523 0.302 6.31 -0.235 7.321 0.097 C 8.043 0.318 8.461 0.777 8.429 1.552 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u98vmk\",layoutDependency:layoutDependency,layoutId:\"X9JbP9dJG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.381 11.922\" overflow=\"visible\"><path d=\"M 8.342 0.168 L 6.094 0.168 C 6.062 0.484 6.03 0.768 5.998 1.006 C 5.436 0.689 4.938 0.31 4.376 0.136 C 2.434 -0.418 0.604 0.769 0.138 2.824 C -0.424 5.308 0.78 7.632 2.803 7.996 C 4.023 8.218 5.051 7.902 6.03 6.794 L 6.03 7.87 C 6.03 8.645 5.902 9.356 5.083 9.704 C 4.264 10.052 3.43 9.831 2.707 9.104 C 2.594 8.993 2.402 8.866 2.258 8.866 C 1.648 8.834 1.038 8.85 0.427 8.85 C 0.347 8.93 0.283 9.024 0.202 9.104 C 0.572 9.688 0.829 10.384 1.326 10.827 C 2.771 12.077 4.489 12.172 6.207 11.539 C 7.844 10.922 8.358 9.53 8.374 7.902 C 8.39 5.56 8.374 3.22 8.374 0.879 C 8.39 0.642 8.358 0.42 8.342 0.168 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j7jyem\",layoutDependency:layoutDependency,layoutId:\"udZt5Er3v\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.644 4.034\" overflow=\"visible\"><path d=\"M 1.813 4.034 C 0.77 4.018 0 3.18 0 2.025 C 0 0.886 0.77 0.016 1.797 0 C 2.857 -0.015 3.66 0.87 3.644 2.056 C 3.644 3.227 2.889 4.034 1.813 4.034 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z2p4zh\",layoutDependency:layoutDependency,layoutId:\"z7j4_ywv6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.373 7.942\" overflow=\"visible\"><path d=\"M 13.293 2.597 C 13.133 0.762 11.495 -0.345 9.665 0.097 C 8.862 0.287 8.14 0.825 7.305 1.252 C 6.807 0.588 6.021 -0.029 5.009 0.05 C 4.11 0.113 3.227 0.477 2.328 0.699 C 2.297 0.521 2.276 0.341 2.264 0.161 L 0 0.161 L 0 7.942 L 2.312 7.942 C 2.312 6.44 2.296 5.017 2.312 3.593 C 2.328 2.502 3.115 1.885 4.158 2.043 C 5.025 2.185 5.475 2.691 5.491 3.641 C 5.507 5.048 5.491 6.471 5.491 7.927 L 7.771 7.927 C 7.787 7.61 7.819 7.325 7.819 7.041 C 7.819 5.934 7.803 4.827 7.835 3.719 C 7.867 2.613 8.429 2.027 9.408 2.011 C 10.419 1.995 11.013 2.597 11.045 3.735 C 11.061 4.415 11.045 5.111 11.045 5.791 L 11.045 7.911 L 13.309 7.911 C 13.325 6.124 13.453 4.352 13.293 2.597 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16e0bdy\",layoutDependency:layoutDependency,layoutId:\"S5S7foRtx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.34 10.488\" overflow=\"visible\"><path d=\"M 6.045 1.693 L 6.045 3.417 C 5.418 3.085 4.921 2.705 4.359 2.547 C 2.432 1.994 0.586 3.196 0.137 5.252 C -0.425 7.751 0.795 10.06 2.834 10.424 C 4.054 10.645 5.081 10.297 5.996 9.333 C 6.045 9.775 6.076 10.076 6.109 10.361 L 8.34 10.361 L 8.34 0 L 6.06 0 C 6.045 0.601 6.045 1.155 6.045 1.693 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gybyp1\",layoutDependency:layoutDependency,layoutId:\"Fnt4BwH03\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.646 4.018\" overflow=\"visible\"><path d=\"M 1.832 4.018 C 0.756 4.018 -0.031 3.148 0.001 1.962 C 0.017 0.824 0.836 -0.031 1.864 0.001 C 2.907 0.032 3.662 0.887 3.646 2.041 C 3.63 3.196 2.891 4.002 1.832 4.018 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-185hui0\",layoutDependency:layoutDependency,layoutId:\"NM1l_QjsP\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.318 8.088\" overflow=\"visible\"><path d=\"M 5.958 1.188 C 5.204 0.366 4.369 -0.03 3.39 0.002 C 1.576 0.066 0.259 1.442 0.034 3.418 C -0.206 5.585 0.837 7.483 2.523 7.958 C 2.619 7.989 2.732 7.989 2.844 8.021 C 4.048 8.242 5.092 7.926 5.974 6.914 C 6.038 7.388 6.071 7.657 6.119 7.958 L 8.318 7.958 L 8.318 0.192 L 6.119 0.192 C 6.071 0.492 6.022 0.746 5.958 1.188 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qcywc3\",layoutDependency:layoutDependency,layoutId:\"pi3J7Du82\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.661 4.018\" overflow=\"visible\"><path d=\"M 1.798 4.017 C 0.739 4.001 0 3.179 0 2.009 C 0 0.854 0.755 0 1.814 0 C 2.841 0 3.644 0.854 3.661 1.993 C 3.661 3.195 2.89 4.033 1.798 4.017 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10tlv8v\",layoutDependency:layoutDependency,layoutId:\"ggPL9NSok\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.235 8.13\" overflow=\"visible\"><path d=\"M 4.077 0.001 C 1.685 0.032 0 1.725 0 4.081 C 0 6.47 1.669 8.114 4.077 8.13 C 6.517 8.146 8.235 6.454 8.235 4.066 C 8.235 1.662 6.502 -0.046 4.077 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jaskks\",layoutDependency:layoutDependency,layoutId:\"zdqIbRMKU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.461 4.042\" overflow=\"visible\"><path d=\"M 2.192 3.965 C 1.438 4.186 0.715 3.918 0.314 3.285 C -0.151 2.558 -0.087 1.229 0.427 0.596 C 0.908 0.03 1.702 -0.156 2.385 0.138 C 3.252 0.518 3.461 1.229 3.461 2.083 C 3.429 3.079 2.995 3.728 2.193 3.965 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cela3c\",layoutDependency:layoutDependency,layoutId:\"OSJMgX5Jt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.986 8.11\" overflow=\"visible\"><path d=\"M 2.56 0.262 C 0.634 0.927 -0.362 2.872 0.12 5.086 C 0.538 7.047 2.255 8.281 4.294 8.091 C 6.108 7.917 7.328 7.016 7.65 5.577 C 6.43 5.323 5.739 5.434 4.743 6.003 C 3.684 6.62 2.496 5.957 2.432 4.627 C 2.688 4.612 2.945 4.596 3.202 4.596 C 4.535 4.596 5.884 4.564 7.216 4.612 C 7.826 4.627 7.986 4.406 7.986 3.837 C 7.938 1.037 5.338 -0.687 2.56 0.263 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3mcsaf\",layoutDependency:layoutDependency,layoutId:\"gfSic0dKv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.035 1.376\" overflow=\"visible\"><path d=\"M 0 1.376 C 0.097 0.523 0.642 0.016 1.493 0 C 2.36 -0.015 2.922 0.475 3.035 1.376 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qo49a7\",layoutDependency:layoutDependency,layoutId:\"gF79YX7J8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.769 8.129\" overflow=\"visible\"><path d=\"M 2.264 0.348 L 0 0.348 L 0 8.129 L 2.312 8.129 L 2.312 5.393 C 2.312 3.053 2.36 2.989 4.672 2.641 C 4.688 2.641 4.72 2.609 4.769 2.578 L 4.769 0 C 3.837 0.522 3.099 0.933 2.344 1.345 C 2.328 1.044 2.296 0.711 2.264 0.348 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18ike5s\",layoutDependency:layoutDependency,layoutId:\"wPu6Ibp4J\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.216 9.853\" overflow=\"visible\"><path d=\"M 0 9.853 L 2.216 9.853 L 2.216 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-fviy8x\",layoutDependency:layoutDependency,layoutId:\"nJYyW3fD0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.293 14.217\" overflow=\"visible\"><path d=\"M 9.2 7.995 C 9.793 7.995 10.291 7.789 10.291 7.109 C 10.291 6.429 9.81 6.239 9.2 6.239 L 1.124 6.239 C 0.53 6.239 0.016 6.382 0 7.062 C -0.016 7.789 0.482 7.979 1.124 7.979 L 5.122 7.979 C 6.47 7.995 7.835 7.995 9.2 7.995 Z M 5.844 1.732 L 9.376 1.732 C 9.906 1.732 10.259 1.463 10.291 0.941 C 10.323 0.372 9.97 0.04 9.424 0.024 C 8.226 -0.008 7.027 -0.008 5.828 0.024 C 5.266 0.04 4.929 0.388 4.962 0.941 C 4.962 1.463 5.298 1.732 5.844 1.732 Z M 9.424 14.195 C 9.954 14.163 10.275 13.862 10.275 13.34 C 10.275 12.819 9.954 12.502 9.424 12.487 C 8.226 12.471 7.027 12.471 5.828 12.487 C 5.282 12.487 4.962 12.803 4.945 13.309 C 4.929 13.862 5.266 14.195 5.844 14.21 C 6.438 14.226 7.016 14.21 7.61 14.21 C 8.204 14.195 8.814 14.226 9.424 14.195 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bz8zxs\",layoutDependency:layoutDependency,layoutId:\"EZkCNizGB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.291 1.756\" overflow=\"visible\"><path d=\"M 9.2 1.756 C 9.793 1.756 10.291 1.55 10.291 0.87 C 10.291 0.19 9.81 0 9.2 0 L 1.124 0 C 0.53 0 0.016 0.143 0 0.823 C -0.016 1.55 0.482 1.74 1.124 1.74 L 5.122 1.74 C 6.47 1.756 7.835 1.756 9.2 1.756 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3htbae\",layoutDependency:layoutDependency,layoutId:\"cQJul8xoH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.334 1.732\" overflow=\"visible\"><path d=\"M 0.885 1.732 L 4.417 1.732 C 4.946 1.732 5.3 1.463 5.332 0.941 C 5.364 0.372 5.01 0.04 4.465 0.024 C 3.266 -0.008 2.067 -0.008 0.869 0.024 C 0.307 0.04 -0.03 0.388 0.002 0.941 C 0.002 1.463 0.339 1.732 0.885 1.732 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5zglls\",layoutDependency:layoutDependency,layoutId:\"Fync830L7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.331 1.742\" overflow=\"visible\"><path d=\"M 4.48 1.72 C 5.009 1.688 5.331 1.387 5.331 0.865 C 5.331 0.344 5.009 0.027 4.48 0.012 C 3.281 -0.004 2.082 -0.004 0.884 0.012 C 0.337 0.012 0.017 0.328 0.001 0.834 C -0.015 1.387 0.322 1.72 0.9 1.735 C 1.493 1.751 2.072 1.735 2.666 1.735 C 3.259 1.72 3.87 1.751 4.479 1.72 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://jam.dev/docs\",motionChild:true,nodeId:\"Ti2vvFuc_\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1k9ezyn framer-aoqboz\",\"data-framer-name\":\"JAM\",layoutDependency:layoutDependency,layoutId:\"Ti2vvFuc_\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-yk7sae\",layoutDependency:layoutDependency,layoutId:\"U02Bp0ufY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53.091 24\" overflow=\"visible\"><g><path d=\"M 0 0 L 53.091 0 L 53.091 24 L 0 24 Z\" fill=\"transparent\"></path><path d=\"M 26.672 19.248 C 26.106 18.824 25.524 18.385 24.01 17.984 C 22.496 17.583 21.764 17.673 21.065 17.762 C 20.857 17.789 20.649 17.81 20.441 17.825 C 19.743 18.32 19.288 19.087 19.188 19.936 C 19.135 20.43 19.452 20.889 19.933 21.014 C 19.982 21.026 20.032 21.035 20.087 21.044 C 20.516 21.096 20.952 21.048 21.36 20.905 C 21.436 21.438 21.681 22.077 22.351 22.601 C 22.458 22.687 22.578 22.745 22.716 22.781 C 22.852 22.817 22.985 22.827 23.122 22.806 C 23.801 22.72 24.418 22.367 24.837 21.826 C 25.068 22.095 25.397 22.368 25.87 22.576 C 25.916 22.599 25.964 22.612 26.018 22.626 C 26.5 22.756 27.004 22.516 27.208 22.061 C 27.548 21.271 27.543 20.364 27.191 19.613 C 26.999 19.489 26.838 19.37 26.672 19.248 Z\" fill=\"rgb(115,229,191)\"></path><path d=\"M 49.046 18.9 C 48.04 18.9 47.458 18.665 46.892 18.44 C 46.235 18.175 45.557 17.9 43.99 17.9 C 42.423 17.9 41.74 18.175 41.088 18.44 C 40.526 18.665 39.945 18.9 38.933 18.9 C 37.785 18.9 36.901 18.6 36.299 18.006 C 35.697 17.41 35.394 16.535 35.394 15.4 C 35.394 15.365 35.399 12.075 35.905 8.825 C 36.623 4.231 37.977 1.9 39.945 1.9 C 41.163 1.9 41.81 2.535 42.327 3.045 C 42.807 3.525 43.185 3.9 43.99 3.9 C 44.793 3.9 45.173 3.525 45.653 3.045 C 46.169 2.535 46.817 1.9 48.035 1.9 C 50.001 1.9 51.356 4.231 52.075 8.825 C 52.58 12.075 52.585 15.371 52.585 15.4 C 52.585 16.535 52.282 17.41 51.68 18.005 C 51.079 18.6 50.193 18.9 49.046 18.9 Z M 27.94 19.905 C 26.969 19.647 26.468 19.272 25.98 18.909 C 25.415 18.485 24.833 18.046 23.319 17.644 C 21.804 17.244 21.073 17.335 20.373 17.423 C 19.772 17.497 19.15 17.576 18.172 17.316 C 17.064 17.023 16.288 16.506 15.863 15.777 C 15.437 15.049 15.373 14.127 15.67 13.03 C 16.444 10.175 18.263 7.169 20.537 4.997 C 22.959 2.683 25.499 1.658 27.506 2.19 C 29.513 2.721 31.193 4.865 32.122 8.066 C 32.992 11.077 33.049 14.575 32.275 17.43 C 31.978 18.527 31.456 19.294 30.719 19.714 C 29.983 20.135 29.049 20.199 27.941 19.905 Z M 7.584 18.9 C 5.895 18.9 4.177 18.34 2.857 17.36 C 1.34 16.24 0.505 14.655 0.505 12.901 C 0.505 11.516 1.3 9.901 3.54 9.901 C 4.773 9.901 5.056 9.621 5.056 8.401 L 5.056 6.401 C 5.056 3.121 6.29 1.901 9.607 1.901 C 12.924 1.901 14.158 3.121 14.158 6.401 L 14.158 12.401 C 14.158 14.532 13.596 16.161 12.494 17.256 C 11.387 18.346 9.738 18.901 7.585 18.901 Z\" fill=\"rgb(255,64,112)\"></path><path d=\"M 22.887 10.792 C 22.643 10.728 22.155 10.599 21.828 11.806 C 21.5 13.013 21.988 13.143 22.233 13.207 C 22.477 13.272 22.966 13.401 23.292 12.194 C 23.62 10.987 23.132 10.857 22.887 10.793 Z M 27.283 11.957 C 27.039 11.892 26.551 11.763 26.223 12.97 C 25.896 14.177 26.384 14.307 26.628 14.372 C 26.873 14.437 27.361 14.566 27.688 13.359 C 28.015 12.151 27.527 12.022 27.283 11.957 Z M 26.132 7.511 C 25.888 7.446 25.399 7.317 25.072 8.524 C 24.745 9.732 25.233 9.861 25.478 9.926 C 25.722 9.991 26.21 10.12 26.537 8.913 C 26.865 7.705 26.376 7.576 26.132 7.511 Z M 48.035 2.4 C 52.079 2.4 52.079 15.4 52.079 15.4 C 52.079 17.4 51.068 18.4 49.047 18.4 C 47.023 18.4 47.023 17.4 43.99 17.4 C 40.956 17.4 40.956 18.4 38.933 18.4 C 36.911 18.4 35.9 17.4 35.9 15.4 C 35.9 15.4 35.9 2.4 39.945 2.4 C 41.967 2.4 41.967 4.4 43.99 4.4 C 46.012 4.4 46.012 2.4 48.035 2.4 Z M 48.035 1.4 C 46.604 1.4 45.85 2.145 45.299 2.695 C 44.804 3.185 44.556 3.401 43.99 3.401 C 43.423 3.401 43.175 3.185 42.68 2.695 C 42.129 2.145 41.375 1.401 39.945 1.401 C 39.196 1.401 38.519 1.68 37.922 2.225 C 37.452 2.655 37.047 3.24 36.688 4.01 C 36.148 5.175 35.713 6.765 35.404 8.745 C 34.893 12.035 34.888 15.265 34.888 15.4 C 34.888 16.671 35.242 17.665 35.945 18.356 C 36.643 19.05 37.649 19.4 38.933 19.4 C 40.041 19.4 40.698 19.135 41.275 18.9 C 41.911 18.64 42.519 18.4 43.99 18.4 C 45.461 18.4 46.063 18.645 46.705 18.9 C 47.287 19.135 47.939 19.4 49.047 19.4 C 50.33 19.4 51.337 19.051 52.034 18.356 C 52.732 17.665 53.091 16.671 53.091 15.4 C 53.091 15.265 53.086 12.035 52.575 8.751 C 52.267 6.77 51.837 5.175 51.291 4.015 C 50.932 3.245 50.527 2.66 50.057 2.231 C 49.461 1.68 48.783 1.4 48.035 1.4 Z\" fill=\"rgb(30,38,36)\"></path><path d=\"M 33.842 12.759 C 33.809 11.147 33.569 9.545 33.128 7.994 C 32.682 6.452 32.041 5.092 31.27 4.055 C 30.37 2.853 29.322 2.084 28.155 1.775 C 26.988 1.465 25.692 1.613 24.31 2.21 C 23.117 2.727 21.873 3.588 20.708 4.703 C 19.543 5.828 18.526 7.096 17.681 8.477 C 16.784 9.932 16.102 11.485 15.7 12.968 C 15.367 14.195 15.449 15.247 15.947 16.093 C 16.439 16.943 17.319 17.538 18.56 17.868 C 18.765 17.921 18.953 17.961 19.133 17.993 C 18.796 18.47 18.584 19.024 18.513 19.604 C 18.425 20.337 18.906 21.033 19.629 21.225 C 19.702 21.244 19.782 21.26 19.859 21.265 C 20.21 21.302 20.533 21.289 20.812 21.244 C 21.005 21.83 21.371 22.344 21.863 22.718 C 22.028 22.844 22.207 22.933 22.408 22.986 C 22.608 23.039 22.814 23.052 23.015 23.023 C 23.63 22.941 24.207 22.678 24.671 22.266 C 24.895 22.444 25.163 22.614 25.485 22.756 C 25.556 22.785 25.633 22.811 25.705 22.83 C 26.428 23.022 27.198 22.655 27.492 21.978 C 27.727 21.44 27.819 20.848 27.769 20.276 C 27.941 20.337 28.124 20.396 28.329 20.451 C 29.569 20.779 30.633 20.698 31.489 20.206 C 32.348 19.724 32.95 18.853 33.282 17.627 C 33.684 16.144 33.879 14.461 33.842 12.759 Z M 26.56 21.586 C 26.506 21.709 26.406 21.806 26.281 21.854 C 26.156 21.902 26.016 21.899 25.894 21.844 C 24.826 21.38 24.647 20.515 24.647 20.515 C 24.647 20.515 24.29 21.833 22.868 22.037 C 22.801 22.045 22.733 22.041 22.668 22.025 C 22.602 22.007 22.541 21.977 22.487 21.936 C 21.359 21.057 21.716 19.739 21.716 19.739 C 21.716 19.739 21.124 20.4 19.964 20.273 C 19.939 20.271 19.914 20.266 19.89 20.259 C 19.649 20.198 19.489 19.968 19.518 19.721 C 19.6 19.06 19.934 18.456 20.45 18.036 C 20.627 18.022 20.794 18.004 20.952 17.983 C 21.635 17.895 22.284 17.819 23.705 18.195 C 25.127 18.572 25.644 18.962 26.197 19.373 C 26.328 19.47 26.457 19.572 26.604 19.667 C 26.842 20.288 26.826 20.977 26.561 21.587 Z M 28.589 19.489 C 26.636 18.972 26.897 18.006 23.967 17.229 C 21.036 16.453 20.775 17.418 18.821 16.901 C 16.868 16.383 16.152 15.159 16.676 13.227 C 18.247 7.431 23.985 1.705 27.892 2.74 C 31.8 3.775 33.875 11.572 32.305 17.368 C 31.781 19.3 30.543 20.007 28.588 19.489 Z M 9.607 2.4 C 12.641 2.4 13.652 3.4 13.652 6.4 L 13.652 12.4 C 13.652 16.4 11.63 18.4 7.585 18.4 C 4.551 18.4 1.011 16.4 1.011 12.9 C 1.011 11.9 1.517 10.4 3.54 10.4 C 5.056 10.4 5.561 9.9 5.561 8.4 L 5.561 6.4 C 5.561 3.4 6.573 2.4 9.607 2.4 Z M 9.607 1.4 C 7.741 1.4 6.548 1.76 5.734 2.571 C 4.915 3.375 4.551 4.554 4.551 6.399 L 4.551 8.399 C 4.551 9.074 4.429 9.23 4.404 9.255 C 4.379 9.279 4.223 9.4 3.539 9.4 C 1.092 9.4 0 11.16 0 12.9 C 0 14.815 0.905 16.54 2.553 17.759 C 3.959 18.799 5.79 19.399 7.585 19.399 C 9.875 19.399 11.644 18.795 12.848 17.604 C 14.052 16.415 14.663 14.665 14.663 12.399 L 14.663 6.399 C 14.663 4.554 14.3 3.375 13.48 2.569 C 12.665 1.759 11.473 1.399 9.607 1.399 Z\" fill=\"rgb(30,38,36)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19p977f\",layoutDependency:layoutDependency,layoutId:\"MrfkI5gTv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53.091 24\" overflow=\"visible\"><path d=\"M 0 0 L 53.091 0 L 53.091 24 L 0 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lds3z9\",layoutDependency:layoutDependency,layoutId:\"fDh6iULUZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.276 5.131\" overflow=\"visible\"><path d=\"M 7.49 1.562 C 6.924 1.138 6.341 0.699 4.828 0.298 C 3.314 -0.103 2.582 -0.012 1.882 0.076 C 1.675 0.103 1.467 0.124 1.258 0.139 C 0.561 0.634 0.106 1.401 0.006 2.25 C -0.048 2.745 0.269 3.203 0.751 3.328 C 0.799 3.34 0.85 3.349 0.905 3.358 C 1.334 3.41 1.77 3.363 2.178 3.22 C 2.253 3.752 2.498 4.391 3.168 4.916 C 3.276 5.001 3.396 5.059 3.533 5.095 C 3.67 5.132 3.803 5.141 3.94 5.12 C 4.619 5.034 5.235 4.681 5.655 4.14 C 5.886 4.409 6.215 4.682 6.687 4.89 C 6.733 4.913 6.782 4.927 6.836 4.94 C 7.317 5.07 7.822 4.83 8.026 4.375 C 8.365 3.585 8.36 2.678 8.008 1.927 C 7.816 1.804 7.655 1.684 7.49 1.562 Z\" fill=\"rgb(115,229,191)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-q1hlun\",layoutDependency:layoutDependency,layoutId:\"Tgl9F3wnJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 52.08 18.186\" overflow=\"visible\"><path d=\"M 48.54 17 C 47.535 17 46.953 16.765 46.386 16.54 C 45.729 16.275 45.052 16 43.484 16 C 41.917 16 41.234 16.275 40.583 16.54 C 40.02 16.765 39.439 17 38.428 17 C 37.28 17 36.396 16.7 35.793 16.105 C 35.192 15.51 34.889 14.635 34.889 13.5 C 34.889 13.465 34.894 10.175 35.399 6.925 C 36.117 2.33 37.472 0 39.439 0 C 40.657 0 41.305 0.635 41.821 1.145 C 42.301 1.625 42.68 2 43.484 2 C 44.288 2 44.668 1.625 45.148 1.145 C 45.664 0.635 46.311 0 47.529 0 C 49.496 0 50.851 2.33 51.569 6.925 C 52.075 10.175 52.08 13.471 52.08 13.5 C 52.08 14.635 51.777 15.51 51.175 16.105 C 50.573 16.7 49.688 16.999 48.54 16.999 Z M 27.435 18.004 C 26.463 17.747 25.963 17.372 25.475 17.009 C 24.91 16.585 24.327 16.145 22.813 15.744 C 21.299 15.343 20.567 15.434 19.868 15.523 C 19.267 15.597 18.644 15.676 17.667 15.416 C 16.559 15.122 15.783 14.606 15.357 13.877 C 14.932 13.148 14.868 12.226 15.164 11.129 C 15.938 8.275 17.758 5.268 20.032 3.097 C 22.454 0.783 24.993 -0.242 27.001 0.289 C 29.008 0.821 30.688 2.964 31.617 6.166 C 32.487 9.177 32.543 12.675 31.769 15.529 C 31.473 16.626 30.951 17.393 30.214 17.814 C 29.477 18.235 28.544 18.298 27.436 18.004 Z M 7.079 17 C 5.39 17 3.671 16.44 2.351 15.46 C 0.834 14.34 0 12.755 0 11.001 C 0 9.616 0.794 8.001 3.034 8.001 C 4.268 8.001 4.551 7.721 4.551 6.5 L 4.551 4.5 C 4.551 1.22 5.785 0.001 9.102 0.001 C 12.418 0.001 13.652 1.22 13.652 4.5 L 13.652 10.5 C 13.652 12.631 13.091 14.26 11.988 15.356 C 10.881 16.446 9.233 17.001 7.079 17.001 Z\" fill=\"rgb(255,64,112)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t6fl4p\",layoutDependency:layoutDependency,layoutId:\"WBqr5WAa6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.191 17\" overflow=\"visible\"><path d=\"M 13.652 17 C 12.646 17 12.064 16.765 11.497 16.54 C 10.841 16.275 10.163 16 8.596 16 C 7.028 16 6.345 16.275 5.694 16.54 C 5.132 16.765 4.551 17 3.539 17 C 2.391 17 1.507 16.7 0.905 16.105 C 0.303 15.51 0 14.635 0 13.5 C 0 13.465 0.005 10.175 0.511 6.925 C 1.228 2.33 2.583 0 4.551 0 C 5.769 0 6.416 0.635 6.932 1.145 C 7.412 1.625 7.791 2 8.596 2 C 9.399 2 9.779 1.625 10.259 1.145 C 10.775 0.635 11.423 0 12.641 0 C 14.607 0 15.962 2.33 16.681 6.925 C 17.186 10.175 17.191 13.471 17.191 13.5 C 17.191 14.635 16.888 15.51 16.286 16.105 C 15.684 16.7 14.799 16.999 13.652 16.999 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y7luj1\",layoutDependency:layoutDependency,layoutId:\"k1iVfr26w\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.331 18.034\" overflow=\"visible\"><path d=\"M 12.454 17.852 C 11.482 17.595 10.982 17.22 10.494 16.857 C 9.928 16.433 9.346 15.994 7.832 15.592 C 6.318 15.191 5.586 15.282 4.886 15.371 C 4.286 15.445 3.663 15.524 2.686 15.264 C 1.577 14.97 0.801 14.454 0.376 13.725 C -0.05 12.996 -0.114 12.074 0.183 10.978 C 0.957 8.123 2.776 5.116 5.051 2.945 C 7.472 0.631 10.012 -0.394 12.019 0.138 C 14.027 0.669 15.707 2.812 16.635 6.014 C 17.505 9.025 17.562 12.523 16.788 15.378 C 16.491 16.474 15.969 17.242 15.232 17.662 C 14.496 18.083 13.563 18.146 12.454 17.852 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wkcx7f\",layoutDependency:layoutDependency,layoutId:\"Y60nXnwgy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.652 17\" overflow=\"visible\"><path d=\"M 7.079 16.999 C 5.39 16.999 3.671 16.439 2.351 15.459 C 0.834 14.339 0 12.754 0 11 C 0 9.615 0.794 8 3.034 8 C 4.268 8 4.551 7.72 4.551 6.5 L 4.551 4.5 C 4.551 1.22 5.785 0 9.102 0 C 12.418 0 13.652 1.22 13.652 4.5 L 13.652 10.5 C 13.652 12.631 13.091 14.26 11.988 15.355 C 10.881 16.445 9.233 17 7.079 17 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1l1rpmo\",layoutDependency:layoutDependency,layoutId:\"jrv9Ypdvs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.373 18\" overflow=\"visible\"><path d=\"M 1.169 9.392 C 0.925 9.328 0.437 9.199 0.109 10.406 C -0.218 11.613 0.27 11.743 0.514 11.807 C 0.759 11.872 1.248 12.001 1.574 10.794 C 1.901 9.587 1.413 9.457 1.169 9.393 Z M 5.565 10.557 C 5.32 10.492 4.832 10.363 4.505 11.57 C 4.178 12.777 4.666 12.907 4.91 12.972 C 5.154 13.037 5.643 13.166 5.97 11.959 C 6.297 10.751 5.809 10.622 5.565 10.557 Z M 4.413 6.111 C 4.17 6.046 3.681 5.917 3.354 7.124 C 3.026 8.332 3.515 8.461 3.76 8.526 C 4.004 8.591 4.492 8.72 4.819 7.513 C 5.146 6.305 4.658 6.176 4.414 6.111 Z M 26.317 1 C 30.361 1 30.361 14 30.361 14 C 30.361 16 29.35 17 27.328 17 C 25.305 17 25.305 16 22.272 16 C 19.237 16 19.237 17 17.215 17 C 15.193 17 14.181 16 14.181 14 C 14.181 14 14.181 1 18.226 1 C 20.248 1 20.248 3 22.272 3 C 24.293 3 24.293 1 26.317 1 Z M 26.317 0 C 24.885 0 24.132 0.745 23.581 1.295 C 23.085 1.785 22.837 2.001 22.272 2.001 C 21.705 2.001 21.457 1.785 20.962 1.295 C 20.41 0.745 19.657 0.001 18.226 0.001 C 17.477 0.001 16.801 0.28 16.204 0.825 C 15.733 1.255 15.329 1.84 14.97 2.61 C 14.429 3.775 13.994 5.365 13.686 7.345 C 13.175 10.635 13.17 13.865 13.17 14 C 13.17 15.271 13.524 16.265 14.227 16.956 C 14.925 17.65 15.93 18 17.215 18 C 18.322 18 18.98 17.735 19.557 17.5 C 20.193 17.24 20.8 17 22.272 17 C 23.743 17 24.344 17.245 24.986 17.5 C 25.568 17.735 26.221 18 27.328 18 C 28.612 18 29.618 17.651 30.316 16.956 C 31.014 16.265 31.373 15.271 31.373 14 C 31.373 13.865 31.368 10.635 30.856 7.351 C 30.549 5.37 30.119 3.775 29.573 2.615 C 29.213 1.845 28.809 1.26 28.339 0.831 C 27.743 0.28 27.065 0 26.317 0 Z\" fill=\"rgb(30,38,36)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t9z9te\",layoutDependency:layoutDependency,layoutId:\"RxwxXpwdg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.684 2.493\" overflow=\"visible\"><path d=\"M 1.169 0.039 C 0.925 -0.025 0.437 -0.155 0.109 1.052 C -0.218 2.26 0.27 2.389 0.514 2.454 C 0.759 2.519 1.248 2.648 1.574 1.441 C 1.901 0.233 1.413 0.104 1.169 0.039 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l6kaud\",layoutDependency:layoutDependency,layoutId:\"fqEXO7qhZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.684 2.493\" overflow=\"visible\"><path d=\"M 1.169 0.039 C 0.925 -0.026 0.437 -0.155 0.109 1.052 C -0.218 2.259 0.27 2.389 0.514 2.454 C 0.759 2.519 1.248 2.648 1.574 1.44 C 1.901 0.233 1.413 0.104 1.169 0.039 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-edbquw\",layoutDependency:layoutDependency,layoutId:\"rA6mvkOTW\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.684 2.493\" overflow=\"visible\"><path d=\"M 1.169 0.039 C 0.925 -0.026 0.437 -0.155 0.109 1.052 C -0.218 2.26 0.271 2.389 0.515 2.454 C 0.759 2.519 1.247 2.648 1.575 1.441 C 1.902 0.234 1.413 0.104 1.17 0.039 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fjcczm\",layoutDependency:layoutDependency,layoutId:\"B4R7MoE40\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.18 16\" overflow=\"visible\"><path d=\"M 12.135 0 C 16.18 0 16.18 13 16.18 13 C 16.18 15 15.169 16 13.147 16 C 11.124 16 11.124 15 8.09 15 C 5.056 15 5.056 16 3.033 16 C 1.012 16 0 15 0 13 C 0 13 0 0 4.045 0 C 6.067 0 6.067 2 8.09 2 C 10.112 2 10.112 0 12.135 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aodj4h\",layoutDependency:layoutDependency,layoutId:\"pVcvNu5QY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.203 18\" overflow=\"visible\"><path d=\"M 13.147 0 C 11.716 0 10.962 0.745 10.411 1.295 C 9.916 1.785 9.668 2.001 9.102 2.001 C 8.535 2.001 8.287 1.785 7.792 1.295 C 7.241 0.745 6.487 0.001 5.057 0.001 C 4.308 0.001 3.631 0.28 3.034 0.825 C 2.564 1.255 2.159 1.84 1.8 2.61 C 1.26 3.775 0.825 5.365 0.516 7.345 C 0.005 10.635 0 13.865 0 14 C 0 15.271 0.354 16.265 1.057 16.956 C 1.755 17.65 2.761 18 4.045 18 C 5.153 18 5.81 17.735 6.387 17.5 C 7.023 17.24 7.631 17 9.102 17 C 10.573 17 11.175 17.245 11.817 17.5 C 12.399 17.735 13.051 18 14.159 18 C 15.442 18 16.449 17.651 17.146 16.956 C 17.844 16.265 18.203 15.271 18.203 14 C 18.203 13.865 18.198 10.635 17.687 7.351 C 17.379 5.37 16.949 3.775 16.403 2.615 C 16.044 1.845 15.639 1.26 15.169 0.831 C 14.573 0.28 13.895 0 13.147 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-19r61wm\",layoutDependency:layoutDependency,layoutId:\"XxJCmk3by\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33.846 21.639\" overflow=\"visible\"><path d=\"M 33.842 11.36 C 33.809 9.748 33.569 8.146 33.128 6.595 C 32.682 5.053 32.041 3.693 31.27 2.655 C 30.37 1.454 29.322 0.684 28.155 0.375 C 26.988 0.066 25.692 0.214 24.31 0.811 C 23.117 1.328 21.873 2.189 20.708 3.304 C 19.543 4.428 18.526 5.697 17.681 7.078 C 16.784 8.532 16.102 10.086 15.7 11.569 C 15.367 12.796 15.449 13.847 15.947 14.694 C 16.439 15.543 17.319 16.139 18.56 16.468 C 18.765 16.522 18.953 16.561 19.133 16.593 C 18.796 17.071 18.584 17.625 18.513 18.205 C 18.425 18.937 18.906 19.634 19.629 19.825 C 19.702 19.845 19.782 19.861 19.859 19.866 C 20.21 19.903 20.533 19.889 20.812 19.844 C 21.005 20.431 21.371 20.945 21.863 21.319 C 22.028 21.445 22.207 21.534 22.408 21.587 C 22.608 21.64 22.814 21.653 23.015 21.623 C 23.63 21.542 24.207 21.279 24.671 20.867 C 24.895 21.045 25.163 21.215 25.485 21.356 C 25.556 21.385 25.633 21.412 25.705 21.431 C 26.428 21.623 27.198 21.256 27.492 20.579 C 27.727 20.041 27.819 19.449 27.769 18.877 C 27.941 18.938 28.124 18.996 28.329 19.052 C 29.569 19.38 30.633 19.299 31.489 18.807 C 32.348 18.324 32.95 17.454 33.282 16.228 C 33.684 14.745 33.879 13.062 33.842 11.36 Z M 26.56 20.187 C 26.506 20.31 26.406 20.406 26.281 20.455 C 26.156 20.503 26.016 20.5 25.894 20.445 C 24.826 19.981 24.647 19.116 24.647 19.116 C 24.647 19.116 24.29 20.434 22.868 20.638 C 22.801 20.646 22.733 20.642 22.668 20.625 C 22.602 20.608 22.541 20.578 22.487 20.537 C 21.359 19.658 21.716 18.34 21.716 18.34 C 21.716 18.34 21.124 19.001 19.964 18.874 C 19.939 18.872 19.914 18.867 19.89 18.86 C 19.649 18.799 19.489 18.569 19.518 18.321 C 19.6 17.661 19.934 17.057 20.45 16.637 C 20.627 16.623 20.794 16.604 20.952 16.584 C 21.635 16.496 22.284 16.42 23.705 16.796 C 25.127 17.172 25.644 17.563 26.197 17.974 C 26.328 18.071 26.457 18.172 26.604 18.268 C 26.842 18.889 26.826 19.578 26.561 20.188 Z M 28.589 18.09 C 26.636 17.572 26.897 16.607 23.967 15.83 C 21.036 15.054 20.775 16.019 18.821 15.502 C 16.868 14.984 16.152 13.759 16.676 11.828 C 18.247 6.031 23.985 0.305 27.892 1.34 C 31.8 2.376 33.875 10.173 32.305 15.969 C 31.781 17.9 30.543 18.608 28.588 18.09 Z M 9.607 1.001 C 12.641 1.001 13.652 2.001 13.652 5.001 L 13.652 11.001 C 13.652 15.001 11.63 17.001 7.585 17.001 C 4.551 17.001 1.011 15.001 1.011 11.501 C 1.011 10.501 1.517 9.001 3.54 9.001 C 5.056 9.001 5.561 8.501 5.561 7.001 L 5.561 5.001 C 5.561 2.001 6.573 1.001 9.607 1.001 Z M 9.607 0.001 C 7.741 0.001 6.548 0.361 5.734 1.172 C 4.915 1.975 4.551 3.155 4.551 5 L 4.551 7 C 4.551 7.675 4.429 7.831 4.404 7.855 C 4.379 7.88 4.223 8.001 3.539 8.001 C 1.092 8.001 0 9.761 0 11.5 C 0 13.415 0.905 15.14 2.553 16.36 C 3.959 17.4 5.79 18 7.585 18 C 9.875 18 11.644 17.396 12.848 16.205 C 14.052 15.015 14.663 13.265 14.663 11 L 14.663 5 C 14.663 3.155 14.3 1.975 13.48 1.17 C 12.665 0.36 11.473 0 9.607 0 Z\" fill=\"rgb(30,38,36)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nzcc0a\",layoutDependency:layoutDependency,layoutId:\"Wx_7zDhZe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.347 21.421\" overflow=\"visible\"><path d=\"M 18.343 11.142 C 18.31 9.529 18.07 7.928 17.628 6.377 C 17.183 4.835 16.541 3.475 15.77 2.437 C 14.871 1.236 13.823 0.466 12.655 0.157 C 11.488 -0.152 10.192 -0.004 8.81 0.593 C 7.617 1.11 6.374 1.971 5.209 3.086 C 4.044 4.21 3.026 5.478 2.181 6.86 C 1.284 8.314 0.602 9.868 0.2 11.351 C -0.132 12.578 -0.051 13.629 0.447 14.476 C 0.94 15.325 1.82 15.921 3.06 16.25 C 3.265 16.304 3.453 16.343 3.633 16.375 C 3.297 16.853 3.084 17.407 3.014 17.987 C 2.925 18.719 3.407 19.416 4.129 19.607 C 4.202 19.627 4.282 19.643 4.359 19.648 C 4.711 19.684 5.033 19.671 5.312 19.626 C 5.505 20.213 5.872 20.727 6.363 21.1 C 6.528 21.227 6.708 21.316 6.908 21.369 C 7.108 21.422 7.314 21.435 7.516 21.405 C 8.131 21.324 8.707 21.061 9.171 20.649 C 9.395 20.827 9.663 20.996 9.985 21.138 C 10.056 21.167 10.133 21.194 10.206 21.212 C 10.929 21.404 11.698 21.038 11.992 20.361 C 12.227 19.823 12.319 19.231 12.27 18.659 C 12.441 18.72 12.625 18.778 12.83 18.834 C 14.07 19.162 15.134 19.081 15.99 18.588 C 16.848 18.106 17.45 17.236 17.783 16.01 C 18.184 14.527 18.379 12.844 18.343 11.142 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u8trp7\",layoutDependency:layoutDependency,layoutId:\"AlEM0TQz_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.257 4.13\" overflow=\"visible\"><path d=\"M 7.046 3.675 C 6.992 3.798 6.891 3.894 6.766 3.943 C 6.641 3.991 6.502 3.988 6.379 3.933 C 5.312 3.469 5.132 2.604 5.132 2.604 C 5.132 2.604 4.776 3.922 3.354 4.126 C 3.287 4.134 3.219 4.13 3.153 4.114 C 3.088 4.096 3.027 4.066 2.973 4.025 C 1.845 3.146 2.202 1.828 2.202 1.828 C 2.202 1.828 1.609 2.489 0.45 2.362 C 0.425 2.36 0.4 2.355 0.376 2.348 C 0.134 2.287 -0.025 2.057 0.003 1.81 C 0.085 1.149 0.419 0.545 0.936 0.125 C 1.112 0.111 1.28 0.092 1.438 0.072 C 2.12 -0.016 2.769 -0.092 4.191 0.284 C 5.612 0.66 6.129 1.051 6.683 1.462 C 6.814 1.559 6.943 1.66 7.09 1.756 C 7.328 2.377 7.312 3.066 7.046 3.676 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b1jhc\",layoutDependency:layoutDependency,layoutId:\"GvjQS5OeB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.322 17.036\" overflow=\"visible\"><path d=\"M 12.079 16.872 C 10.126 16.354 10.388 15.388 7.457 14.611 C 4.527 13.835 4.265 14.801 2.311 14.283 C 0.358 13.766 -0.358 12.541 0.166 10.609 C 1.737 4.813 7.476 -0.913 11.383 0.122 C 15.29 1.158 17.365 8.955 15.795 14.75 C 15.271 16.682 14.033 17.39 12.079 16.872 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v1cr09\",layoutDependency:layoutDependency,layoutId:\"pwvLTSB8p\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.641 16\" overflow=\"visible\"><path d=\"M 8.596 0 C 11.63 0 12.641 1 12.641 4 L 12.641 10 C 12.641 14 10.619 16 6.574 16 C 3.54 16 0 14 0 10.5 C 0 9.5 0.506 8 2.529 8 C 4.045 8 4.551 7.5 4.551 6 L 4.551 4 C 4.551 1 5.562 0 8.596 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eegxqe\",layoutDependency:layoutDependency,layoutId:\"NxVq52MYK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.663 18\" overflow=\"visible\"><path d=\"M 9.607 0.001 C 7.741 0.001 6.548 0.361 5.734 1.172 C 4.915 1.975 4.551 3.155 4.551 5 L 4.551 7 C 4.551 7.675 4.429 7.831 4.404 7.855 C 4.379 7.88 4.223 8.001 3.539 8.001 C 1.092 8.001 0 9.761 0 11.5 C 0 13.415 0.905 15.14 2.553 16.36 C 3.959 17.4 5.79 18 7.585 18 C 9.875 18 11.644 17.396 12.848 16.205 C 14.052 15.015 14.663 13.265 14.663 11 L 14.663 5 C 14.663 3.155 14.3 1.975 13.48 1.17 C 12.665 0.36 11.473 0 9.607 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://developers.make.com/\",motionChild:true,nodeId:\"E305NMGPt\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wn6m2h framer-aoqboz\",\"data-framer-name\":\"Make\",layoutDependency:layoutDependency,layoutId:\"E305NMGPt\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1hlyofe\",layoutDependency:layoutDependency,layoutId:\"ZTZYb2ZfM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66.08 14.07\" overflow=\"visible\"><g><path d=\"M 0 0 L 65.8 0 L 65.8 14 L 0 14 Z\" fill=\"transparent\"></path><path d=\"M 22.54 7.28 L 22.54 13.37 C 22.54 13.58 22.4 13.72 22.19 13.72 L 19.6 13.72 C 19.39 13.72 19.25 13.58 19.25 13.37 L 19.25 3.71 C 19.25 3.5 19.39 3.36 19.6 3.36 L 22.19 3.36 C 22.4 3.36 22.54 3.5 22.54 3.71 L 22.54 4.48 C 23.17 3.64 24.08 3.15 25.34 3.15 C 26.53 3.15 27.58 3.64 28.21 4.55 C 28.98 3.64 30.03 3.15 31.36 3.15 C 33.6 3.15 35.14 4.55 35.14 7.14 L 35.14 13.37 C 35.14 13.58 35 13.72 34.79 13.72 L 32.2 13.72 C 31.99 13.72 31.85 13.58 31.85 13.37 L 31.85 7.84 C 31.85 6.72 31.22 6.16 30.38 6.16 C 29.68 6.16 29.12 6.65 28.77 7.28 L 28.77 13.37 C 28.77 13.58 28.63 13.72 28.42 13.72 L 25.83 13.72 C 25.62 13.72 25.48 13.58 25.48 13.37 L 25.48 7.84 C 25.48 6.72 24.85 6.16 24.01 6.16 C 23.38 6.09 22.82 6.58 22.54 7.28 M 39.41 13.93 C 37.52 13.93 35.91 12.67 35.91 10.64 C 35.91 8.82 37.1 7.98 39.27 7.35 L 42.07 6.58 C 42 5.88 41.44 5.53 40.6 5.53 C 39.83 5.53 39.34 5.81 39.06 6.44 C 38.99 6.58 38.85 6.72 38.64 6.65 L 36.47 6.09 C 36.26 6.02 36.12 5.81 36.19 5.6 C 36.82 3.85 38.57 2.94 40.67 2.94 C 43.54 2.94 45.15 4.34 45.15 6.79 L 45.15 13.3 C 45.15 13.51 45.01 13.65 44.8 13.65 L 42.35 13.65 C 42.14 13.65 42 13.51 42 13.3 L 42 12.74 C 41.23 13.58 40.46 13.93 39.41 13.93 M 40.25 11.34 C 40.67 11.34 41.02 11.2 41.51 10.92 L 42.07 10.57 L 42.07 8.89 L 40.6 9.31 C 39.62 9.59 39.2 9.87 39.2 10.43 C 39.2 11.06 39.76 11.34 40.25 11.34 M 50.47 8.82 L 49.49 9.8 L 49.49 13.37 C 49.49 13.58 49.35 13.72 49.14 13.72 L 46.62 13.72 C 46.41 13.72 46.27 13.58 46.27 13.37 L 46.27 0.35 C 46.27 0.14 46.41 0 46.62 0 L 49.14 0 C 49.35 0 49.49 0.14 49.49 0.35 L 49.49 6.23 L 52.43 3.43 C 52.5 3.36 52.57 3.36 52.64 3.36 L 55.72 3.36 C 56.07 3.36 56.21 3.78 55.93 3.99 L 52.92 6.79 L 56.35 13.16 C 56.49 13.37 56.28 13.72 56.07 13.72 L 53.13 13.72 C 52.99 13.72 52.85 13.65 52.85 13.51 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 61.32 14.07 C 58.52 14.07 56 12.25 56 8.61 C 56 5.18 58.45 3.15 61.18 3.15 C 63.91 3.15 66.01 5.18 66.08 8.33 L 66.08 9.03 C 66.08 9.24 65.94 9.38 65.73 9.38 L 59.22 9.38 C 59.29 10.64 60.27 11.41 61.53 11.41 C 62.37 11.41 63.14 11.06 63.63 10.36 C 63.77 10.22 63.98 10.15 64.12 10.29 L 65.73 11.41 C 65.87 11.55 65.94 11.76 65.8 11.9 C 64.89 13.37 63.49 14.07 61.32 14.07 M 59.29 7.49 L 62.79 7.49 C 62.79 6.3 61.95 5.74 61.04 5.74 C 60.2 5.74 59.36 6.23 59.29 7.49\" fill=\"rgb(0,0,0)\"></path><g><defs><linearGradient id=\"idsZTZYb2ZfM_5g1132048895\" x1=\"0\" x2=\"1\" y1=\"0.6480436593536365\" y2=\"0.3519563406463635\"><stop offset=\"0\" stop-color=\"rgb(176,45,233)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(109,0,204)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.9 3.15 L 14.42 3.15 C 14.63 3.15 14.77 3.29 14.77 3.5 L 14.77 13.09 C 14.77 13.3 14.63 13.44 14.42 13.44 L 11.9 13.44 C 11.69 13.44 11.55 13.3 11.55 13.09 L 11.55 3.57 C 11.55 3.36 11.69 3.15 11.9 3.15 Z\" fill=\"url(#idsZTZYb2ZfM_5g1132048895)\"></path></g><g><defs><linearGradient id=\"idsZTZYb2ZfM_6g-1994618280\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(255,0,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(176,45,233)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 4.227 3.36 L 0.027 11.97 C -0.043 12.18 0.027 12.39 0.167 12.46 L 2.407 13.65 C 2.547 13.72 2.757 13.65 2.897 13.51 L 7.097 4.9 C 7.167 4.69 7.097 4.48 6.957 4.41 L 4.717 3.22 C 4.647 3.22 4.647 3.15 4.577 3.15 C 4.437 3.15 4.297 3.22 4.227 3.36 Z\" fill=\"url(#idsZTZYb2ZfM_6g-1994618280)\"></path></g><g><defs><linearGradient id=\"idsZTZYb2ZfM_7g1028016519\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(255,0,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(96,33,195)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 7.718 3.5 L 5.968 12.81 C 5.898 13.02 6.038 13.16 6.248 13.23 L 8.698 13.72 C 8.908 13.79 9.048 13.65 9.118 13.44 L 10.938 4.06 C 11.008 3.85 10.868 3.71 10.658 3.64 L 8.208 3.15 L 8.138 3.15 C 7.928 3.22 7.788 3.29 7.718 3.5 Z\" fill=\"url(#idsZTZYb2ZfM_7g1028016519)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1i5ibfi\",layoutDependency:layoutDependency,layoutId:\"VhOaK01yC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65.8 14\" overflow=\"visible\"><path d=\"M 0 0 L 65.8 0 L 65.8 14 L 0 14 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-16ysru7\",layoutDependency:layoutDependency,layoutId:\"qghPT3Aya\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 37.145 13.93\" overflow=\"visible\"><path d=\"M 3.29 7.28 L 3.29 13.37 C 3.29 13.58 3.15 13.72 2.94 13.72 L 0.35 13.72 C 0.14 13.72 0 13.58 0 13.37 L 0 3.71 C 0 3.5 0.14 3.36 0.35 3.36 L 2.94 3.36 C 3.15 3.36 3.29 3.5 3.29 3.71 L 3.29 4.48 C 3.92 3.64 4.83 3.15 6.09 3.15 C 7.28 3.15 8.33 3.64 8.96 4.55 C 9.73 3.64 10.78 3.15 12.11 3.15 C 14.35 3.15 15.89 4.55 15.89 7.14 L 15.89 13.37 C 15.89 13.58 15.75 13.72 15.54 13.72 L 12.95 13.72 C 12.74 13.72 12.6 13.58 12.6 13.37 L 12.6 7.84 C 12.6 6.72 11.97 6.16 11.13 6.16 C 10.43 6.16 9.87 6.65 9.52 7.28 L 9.52 13.37 C 9.52 13.58 9.38 13.72 9.17 13.72 L 6.58 13.72 C 6.37 13.72 6.23 13.58 6.23 13.37 L 6.23 7.84 C 6.23 6.72 5.6 6.16 4.76 6.16 C 4.13 6.09 3.57 6.58 3.29 7.28 M 20.16 13.93 C 18.27 13.93 16.66 12.67 16.66 10.64 C 16.66 8.82 17.85 7.98 20.02 7.35 L 22.82 6.58 C 22.75 5.88 22.19 5.53 21.35 5.53 C 20.58 5.53 20.09 5.81 19.81 6.44 C 19.74 6.58 19.6 6.72 19.39 6.65 L 17.22 6.09 C 17.01 6.02 16.87 5.81 16.94 5.6 C 17.57 3.85 19.32 2.94 21.42 2.94 C 24.29 2.94 25.9 4.34 25.9 6.79 L 25.9 13.3 C 25.9 13.51 25.76 13.65 25.55 13.65 L 23.1 13.65 C 22.89 13.65 22.75 13.51 22.75 13.3 L 22.75 12.74 C 21.98 13.58 21.21 13.93 20.16 13.93 M 21 11.34 C 21.42 11.34 21.77 11.2 22.26 10.92 L 22.82 10.57 L 22.82 8.89 L 21.35 9.31 C 20.37 9.59 19.95 9.87 19.95 10.43 C 19.95 11.06 20.51 11.34 21 11.34 M 31.22 8.82 L 30.24 9.8 L 30.24 13.37 C 30.24 13.58 30.1 13.72 29.89 13.72 L 27.37 13.72 C 27.16 13.72 27.02 13.58 27.02 13.37 L 27.02 0.35 C 27.02 0.14 27.16 0 27.37 0 L 29.89 0 C 30.1 0 30.24 0.14 30.24 0.35 L 30.24 6.23 L 33.18 3.43 C 33.25 3.36 33.32 3.36 33.39 3.36 L 36.47 3.36 C 36.82 3.36 36.96 3.78 36.68 3.99 L 33.67 6.79 L 37.1 13.16 C 37.24 13.37 37.03 13.72 36.82 13.72 L 33.88 13.72 C 33.74 13.72 33.6 13.65 33.6 13.51 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4sg13o\",layoutDependency:layoutDependency,layoutId:\"nVzJuJYi1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.89 10.57\" overflow=\"visible\"><path d=\"M 3.29 4.13 L 3.29 10.22 C 3.29 10.43 3.15 10.57 2.94 10.57 L 0.35 10.57 C 0.14 10.57 0 10.43 0 10.22 L 0 0.56 C 0 0.35 0.14 0.21 0.35 0.21 L 2.94 0.21 C 3.15 0.21 3.29 0.35 3.29 0.56 L 3.29 1.33 C 3.92 0.49 4.83 0 6.09 0 C 7.28 0 8.33 0.49 8.96 1.4 C 9.73 0.49 10.78 0 12.11 0 C 14.35 0 15.89 1.4 15.89 3.99 L 15.89 10.22 C 15.89 10.43 15.75 10.57 15.54 10.57 L 12.95 10.57 C 12.74 10.57 12.6 10.43 12.6 10.22 L 12.6 4.69 C 12.6 3.57 11.97 3.01 11.13 3.01 C 10.43 3.01 9.87 3.5 9.52 4.13 L 9.52 10.22 C 9.52 10.43 9.38 10.57 9.17 10.57 L 6.58 10.57 C 6.37 10.57 6.23 10.43 6.23 10.22 L 6.23 4.69 C 6.23 3.57 5.6 3.01 4.76 3.01 C 4.13 2.94 3.57 3.43 3.29 4.13\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ksvb0o\",layoutDependency:layoutDependency,layoutId:\"O_RPiJu5g\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.24 10.99\" overflow=\"visible\"><path d=\"M 3.5 10.99 C 1.61 10.99 0 9.73 0 7.7 C 0 5.88 1.19 5.04 3.36 4.41 L 6.16 3.64 C 6.09 2.94 5.53 2.59 4.69 2.59 C 3.92 2.59 3.43 2.87 3.15 3.5 C 3.08 3.64 2.94 3.78 2.73 3.71 L 0.56 3.15 C 0.35 3.08 0.21 2.87 0.28 2.66 C 0.91 0.91 2.66 0 4.76 0 C 7.63 0 9.24 1.4 9.24 3.85 L 9.24 10.36 C 9.24 10.57 9.1 10.71 8.89 10.71 L 6.44 10.71 C 6.23 10.71 6.09 10.57 6.09 10.36 L 6.09 9.8 C 5.32 10.64 4.55 10.99 3.5 10.99\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-le5x5v\",layoutDependency:layoutDependency,layoutId:\"ivTjunC9w\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.87 2.45\" overflow=\"visible\"><path d=\"M 1.05 2.45 C 1.47 2.45 1.82 2.31 2.31 2.03 L 2.87 1.68 L 2.87 0 L 1.4 0.42 C 0.42 0.7 0 0.98 0 1.54 C 0 2.17 0.56 2.45 1.05 2.45\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12epi63\",layoutDependency:layoutDependency,layoutId:\"BSYnGLtk9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.125 13.72\" overflow=\"visible\"><path d=\"M 4.2 8.82 L 3.22 9.8 L 3.22 13.37 C 3.22 13.58 3.08 13.72 2.87 13.72 L 0.35 13.72 C 0.14 13.72 0 13.58 0 13.37 L 0 0.35 C 0 0.14 0.14 0 0.35 0 L 2.87 0 C 3.08 0 3.22 0.14 3.22 0.35 L 3.22 6.23 L 6.16 3.43 C 6.23 3.36 6.3 3.36 6.37 3.36 L 9.45 3.36 C 9.8 3.36 9.94 3.78 9.66 3.99 L 6.65 6.79 L 10.08 13.16 C 10.22 13.37 10.01 13.72 9.8 13.72 L 6.86 13.72 C 6.72 13.72 6.58 13.65 6.58 13.51 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1jl8iz5\",layoutDependency:layoutDependency,layoutId:\"uvDwOEEr_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.08 10.92\" overflow=\"visible\"><path d=\"M 5.32 10.92 C 2.52 10.92 0 9.1 0 5.46 C 0 2.03 2.45 0 5.18 0 C 7.91 0 10.01 2.03 10.08 5.18 L 10.08 5.88 C 10.08 6.09 9.94 6.23 9.73 6.23 L 3.22 6.23 C 3.29 7.49 4.27 8.26 5.53 8.26 C 6.37 8.26 7.14 7.91 7.63 7.21 C 7.77 7.07 7.98 7 8.12 7.14 L 9.73 8.26 C 9.87 8.4 9.94 8.61 9.8 8.75 C 8.89 10.22 7.49 10.92 5.32 10.92 M 3.29 4.34 L 6.79 4.34 C 6.79 3.15 5.95 2.59 5.04 2.59 C 4.2 2.59 3.36 3.08 3.29 4.34\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ph6sw4\",layoutDependency:layoutDependency,layoutId:\"aBelPTT32\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.08 10.92\" overflow=\"visible\"><path d=\"M 5.32 10.92 C 2.52 10.92 0 9.1 0 5.46 C 0 2.03 2.45 0 5.18 0 C 7.91 0 10.01 2.03 10.08 5.18 L 10.08 5.88 C 10.08 6.09 9.94 6.23 9.73 6.23 L 3.22 6.23 C 3.29 7.49 4.27 8.26 5.53 8.26 C 6.37 8.26 7.14 7.91 7.63 7.21 C 7.77 7.07 7.98 7 8.12 7.14 L 9.73 8.26 C 9.87 8.4 9.94 8.61 9.8 8.75 C 8.89 10.22 7.49 10.92 5.32 10.92\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hi343f\",layoutDependency:layoutDependency,layoutId:\"G7LzU9GRA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.5 1.75\" overflow=\"visible\"><path d=\"M 0 1.75 L 3.5 1.75 C 3.5 0.56 2.66 0 1.75 0 C 0.91 0 0.07 0.49 0 1.75\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f6xbni\",layoutDependency:layoutDependency,layoutId:\"liSyDpXHR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.22 10.29\" overflow=\"visible\"><g><defs><linearGradient id=\"idsliSyDpXHR_1g1132048895\" x1=\"0\" x2=\"1\" y1=\"0.6480436593536365\" y2=\"0.3519563406463635\"><stop offset=\"0\" stop-color=\"rgb(176,45,233)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(109,0,204)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0.35 0 L 2.87 0 C 3.08 0 3.22 0.14 3.22 0.35 L 3.22 9.94 C 3.22 10.15 3.08 10.29 2.87 10.29 L 0.35 10.29 C 0.14 10.29 0 10.15 0 9.94 L 0 0.42 C 0 0.21 0.14 0 0.35 0 Z\" fill=\"url(#idsliSyDpXHR_1g1132048895)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-107xqoc\",layoutDependency:layoutDependency,layoutId:\"Kcfys3X0A\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.125 10.527\" overflow=\"visible\"><g><defs><linearGradient id=\"idsKcfys3X0A_1g-1994618280\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(255,0,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(176,45,233)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 4.227 0.21 L 0.027 8.82 C -0.043 9.03 0.027 9.24 0.167 9.31 L 2.407 10.5 C 2.547 10.57 2.757 10.5 2.897 10.36 L 7.097 1.75 C 7.167 1.54 7.097 1.33 6.957 1.26 L 4.717 0.07 C 4.647 0.07 4.647 0 4.577 0 C 4.437 0 4.297 0.07 4.227 0.21 Z\" fill=\"url(#idsKcfys3X0A_1g-1994618280)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13c1fcq\",layoutDependency:layoutDependency,layoutId:\"QVa4VhGiG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.006 10.588\" overflow=\"visible\"><g><defs><linearGradient id=\"idsQVa4VhGiG_1g1028016519\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(255,0,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(96,33,195)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.768 0.35 L 0.018 9.66 C -0.052 9.87 0.088 10.01 0.298 10.08 L 2.748 10.57 C 2.958 10.64 3.098 10.5 3.168 10.29 L 4.988 0.91 C 5.058 0.7 4.918 0.56 4.708 0.49 L 2.258 0 L 2.188 0 C 1.978 0.07 1.838 0.14 1.768 0.35 Z\" fill=\"url(#idsQVa4VhGiG_1g1028016519)\"></path></g></svg>',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://help.usemultiplier.com/\",motionChild:true,nodeId:\"dLypaC68_\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-f6lscd framer-aoqboz\",\"data-framer-name\":\"Multiplier\",layoutDependency:layoutDependency,layoutId:\"dLypaC68_\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-fojnqr\",layoutDependency:layoutDependency,layoutId:\"jd7h5cHA6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87.546 26.016\" overflow=\"visible\"><g><path d=\"M 15.86 0 L 12.161 5.456 L 12.161 0.001 L 10.249 0.001 L 6.271 5.871 L 6.271 0 L 4.638 0 L 0 6.836 L 0 18.825 L 1.633 18.825 L 4.821 14.137 L 4.821 22.421 L 6.732 22.421 L 9.633 18.145 L 9.633 26.016 L 11.821 26.016 L 18.057 16.835 L 18.057 0.001 L 15.86 0.001 Z\" fill=\"rgb(247,105,24)\"></path><path d=\"M 28.033 14.882 L 31.245 5.572 L 34.117 5.572 L 34.117 17.089 L 32.277 17.089 L 32.277 7.573 L 29.058 16.977 L 26.949 16.977 L 23.754 7.589 L 23.754 17.087 L 21.914 17.087 L 21.914 5.571 L 24.821 5.571 L 28.033 14.882 Z M 41.314 16.097 C 40.767 16.959 39.899 17.321 38.858 17.321 C 36.974 17.321 35.82 16.114 35.82 14.123 L 35.82 8.934 L 37.625 8.934 L 37.625 13.891 C 37.625 15.148 38.172 15.77 39.274 15.77 C 40.593 15.77 41.305 14.847 41.305 13.373 L 41.305 8.934 L 43.112 8.934 L 43.119 17.089 L 41.314 17.089 Z M 46.513 5.572 L 46.513 17.088 L 44.708 17.088 L 44.708 5.572 Z M 53.014 8.934 L 53.014 10.485 L 50.688 10.485 L 50.688 14.451 C 50.688 15.45 51.078 15.658 51.903 15.658 C 52.236 15.648 52.568 15.604 52.893 15.529 L 52.893 17.114 C 52.624 17.226 51.903 17.286 51.635 17.286 C 49.855 17.286 48.882 16.553 48.882 14.683 L 48.882 10.485 L 47.424 10.485 L 47.424 8.934 L 48.884 8.934 L 48.884 7.209 L 50.689 5.864 L 50.689 8.934 Z M 55.888 17.089 L 55.888 17.088 L 55.889 17.088 Z M 54.083 17.088 L 54.083 8.943 L 55.888 8.943 L 55.888 17.088 Z M 54.003 5.572 L 55.957 5.572 L 55.957 7.469 L 54.003 7.469 Z M 64.326 13.01 C 64.326 11.459 63.276 10.287 61.731 10.287 C 60.186 10.287 59.153 11.415 59.153 13.011 C 59.153 14.605 60.246 15.674 61.731 15.674 C 63.276 15.674 64.326 14.563 64.326 13.011 Z M 57.408 20.458 L 57.408 8.943 L 59.213 8.943 L 59.213 9.899 C 59.856 9.148 60.82 8.657 62.061 8.657 C 64.534 8.657 66.201 10.554 66.201 13.01 C 66.201 15.467 64.517 17.32 62.061 17.32 C 60.75 17.32 59.839 16.821 59.196 16.07 L 59.213 20.458 Z M 69.101 17.087 L 67.295 17.087 L 67.295 5.571 L 69.101 5.571 Z M 70.698 8.943 L 72.503 8.943 L 72.503 17.087 L 70.698 17.087 Z M 72.565 7.468 L 70.611 7.468 L 70.611 5.571 L 72.565 5.571 Z M 79.595 12.26 C 79.595 11.002 78.857 10.174 77.599 10.174 C 76.531 10.174 75.663 10.846 75.446 12.26 Z M 81.549 12.855 C 81.549 13.088 81.531 13.295 81.496 13.579 L 75.42 13.579 C 75.611 15.131 76.54 15.804 77.781 15.804 C 78.926 15.804 79.665 15.346 80.107 14.347 L 81.409 15.501 C 80.637 16.743 79.239 17.321 77.729 17.321 C 75.151 17.321 73.509 15.553 73.509 13.027 C 73.509 10.502 75.238 8.657 77.616 8.657 C 80.003 8.657 81.549 10.364 81.549 12.855 Z M 84.5 10.228 C 85.099 9.055 86.071 8.754 86.826 8.754 C 87.112 8.754 87.295 8.771 87.546 8.865 L 87.546 10.65 C 87.234 10.555 86.965 10.512 86.617 10.512 C 85.359 10.512 84.491 11.357 84.491 13.159 L 84.491 17.089 L 82.694 17.089 L 82.694 8.942 L 84.5 8.942 Z\" fill=\"rgb(247,105,24)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9xj1sj\",layoutDependency:layoutDependency,layoutId:\"vy1Ff4C4Y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.057 26.016\" overflow=\"visible\"><path d=\"M 15.86 0 L 12.161 5.456 L 12.161 0.001 L 10.249 0.001 L 6.271 5.871 L 6.271 0 L 4.638 0 L 0 6.836 L 0 18.825 L 1.633 18.825 L 4.821 14.137 L 4.821 22.421 L 6.732 22.421 L 9.633 18.145 L 9.633 26.016 L 11.821 26.016 L 18.057 16.835 L 18.057 0.001 L 15.86 0.001 Z\" fill=\"rgb(247,105,24)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-9as6wy\",layoutDependency:layoutDependency,layoutId:\"tPdWA0I6j\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65.632 14.887\" overflow=\"visible\"><path d=\"M 6.119 9.31 L 9.33 0.001 L 12.203 0.001 L 12.203 11.517 L 10.363 11.517 L 10.363 2.001 L 7.144 11.405 L 5.034 11.405 L 1.84 2.018 L 1.84 11.516 L 0 11.516 L 0 0 L 2.907 0 L 6.119 9.311 Z M 19.4 10.526 C 18.853 11.387 17.985 11.75 16.944 11.75 C 15.06 11.75 13.906 10.543 13.906 8.552 L 13.906 3.363 L 15.711 3.363 L 15.711 8.319 C 15.711 9.577 16.257 10.199 17.36 10.199 C 18.679 10.199 19.391 9.276 19.391 7.801 L 19.391 3.363 L 21.197 3.363 L 21.205 11.517 L 19.4 11.517 Z M 24.599 0.001 L 24.599 11.517 L 22.794 11.517 L 22.794 0.001 Z M 31.1 3.363 L 31.1 4.914 L 28.774 4.914 L 28.774 8.879 C 28.774 9.879 29.164 10.087 29.988 10.087 C 30.322 10.076 30.654 10.033 30.979 9.957 L 30.979 11.543 C 30.71 11.655 29.988 11.714 29.72 11.714 C 27.94 11.714 26.968 10.982 26.968 9.111 L 26.968 4.913 L 25.51 4.913 L 25.51 3.362 L 26.969 3.362 L 26.969 1.637 L 28.775 0.293 L 28.775 3.363 Z M 33.974 11.517 L 33.974 11.517 L 33.975 11.517 Z M 32.169 11.517 L 32.169 3.371 L 33.974 3.371 L 33.974 11.517 Z M 32.089 0.001 L 34.043 0.001 L 34.043 1.897 L 32.089 1.897 Z M 42.412 7.439 C 42.412 5.888 41.361 4.716 39.816 4.716 C 38.271 4.716 37.239 5.844 37.239 7.44 C 37.239 9.034 38.332 10.103 39.817 10.103 C 41.361 10.103 42.412 8.992 42.412 7.44 Z M 35.494 14.887 L 35.494 3.371 L 37.299 3.371 L 37.299 4.327 C 37.942 3.577 38.906 3.086 40.146 3.086 C 42.62 3.086 44.287 4.982 44.287 7.439 C 44.287 9.896 42.603 11.749 40.146 11.749 C 38.836 11.749 37.924 11.249 37.282 10.499 L 37.299 14.887 Z M 47.186 11.516 L 45.381 11.516 L 45.381 0 L 47.186 0 Z M 48.783 3.371 L 50.589 3.371 L 50.589 11.516 L 48.783 11.516 Z M 50.65 1.897 L 48.697 1.897 L 48.697 0 L 50.65 0 Z M 57.681 6.689 C 57.681 5.43 56.943 4.603 55.685 4.603 C 54.617 4.603 53.749 5.275 53.532 6.689 Z M 59.634 7.284 C 59.634 7.517 59.617 7.723 59.582 8.008 L 53.506 8.008 C 53.697 9.56 54.625 10.232 55.867 10.232 C 57.012 10.232 57.75 9.775 58.192 8.775 L 59.495 9.93 C 58.723 11.171 57.325 11.75 55.815 11.75 C 53.237 11.75 51.595 9.982 51.595 7.456 C 51.595 4.93 53.324 3.086 55.702 3.086 C 58.088 3.086 59.634 4.793 59.634 7.284 Z M 62.586 4.656 C 63.184 3.484 64.157 3.182 64.912 3.182 C 65.198 3.182 65.38 3.199 65.632 3.294 L 65.632 5.078 C 65.319 4.984 65.051 4.941 64.703 4.941 C 63.444 4.941 62.577 5.785 62.577 7.588 L 62.577 11.517 L 60.78 11.517 L 60.78 3.37 L 62.586 3.37 Z\" fill=\"rgb(247,105,24)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11dgd18\",layoutDependency:layoutDependency,layoutId:\"lrfwZYObp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.203 11.517\" overflow=\"visible\"><path d=\"M 6.119 9.311 L 2.907 0 L 0 0 L 0 11.516 L 1.84 11.516 L 1.84 2.018 L 5.034 11.405 L 7.144 11.405 L 10.363 2.001 L 10.363 11.517 L 12.203 11.517 L 12.203 0.001 L 9.33 0.001 L 6.119 9.31 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pu1bzn\",layoutDependency:layoutDependency,layoutId:\"zwMcrNG4F\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.299 8.387\" overflow=\"visible\"><path d=\"M 5.494 8.154 L 7.299 8.154 L 7.292 0 L 5.485 0 L 5.485 4.439 C 5.485 5.913 4.774 6.836 3.454 6.836 C 2.352 6.836 1.805 6.214 1.805 4.956 L 1.805 0 L 0 0 L 0 5.189 C 0 7.18 1.154 8.387 3.038 8.387 C 4.079 8.387 4.947 8.024 5.494 7.163 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r4dr8x\",layoutDependency:layoutDependency,layoutId:\"k6UnU4VT0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.806 11.516\" overflow=\"visible\"><path d=\"M 1.806 0 L 0 0 L 0 11.516 L 1.805 11.516 L 1.805 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aqzfb3\",layoutDependency:layoutDependency,layoutId:\"FNdEVKrkM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.59 11.421\" overflow=\"visible\"><path d=\"M 3.265 3.07 L 3.265 0 L 1.46 1.345 L 1.46 3.069 L 0 3.069 L 0 4.621 L 1.458 4.621 L 1.458 8.818 C 1.458 10.689 2.431 11.421 4.211 11.421 C 4.479 11.421 5.2 11.362 5.469 11.25 L 5.469 9.665 C 5.144 9.74 4.812 9.784 4.479 9.794 C 3.654 9.794 3.264 9.586 3.264 8.587 L 3.264 4.621 L 5.59 4.621 L 5.59 3.07 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7r1ux5\",layoutDependency:layoutDependency,layoutId:\"uJIRgGV0L\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.806 8.146\" overflow=\"visible\"><path d=\"M 1.806 8.145 L 0 8.145 L 0 0 L 1.805 0 L 1.805 8.146 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k4s6fb\",layoutDependency:layoutDependency,layoutId:\"u2kzGV_Np\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.954 1.897\" overflow=\"visible\"><path d=\"M 0 0 L 1.954 0 L 1.954 1.897 L 0 1.897 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-107n4uk\",layoutDependency:layoutDependency,layoutId:\"qnmCETdTa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.173 5.387\" overflow=\"visible\"><path d=\"M 5.173 2.723 C 5.173 4.276 4.123 5.387 2.578 5.387 C 1.093 5.387 0 4.318 0 2.724 C 0 1.128 1.033 0 2.578 0 C 4.123 0 5.173 1.172 5.173 2.724 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ybwwq2\",layoutDependency:layoutDependency,layoutId:\"Cqzg7Eq3Y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.793 11.801\" overflow=\"visible\"><path d=\"M 1.805 11.801 L 1.788 7.413 C 2.431 8.163 3.342 8.663 4.653 8.663 C 7.109 8.663 8.793 6.81 8.793 4.353 C 8.793 1.897 7.126 0 4.653 0 C 3.412 0 2.448 0.491 1.805 1.241 L 1.805 0.285 L 0 0.285 L 0 11.801 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qdio69\",layoutDependency:layoutDependency,layoutId:\"T82LDyDOS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.805 11.516\" overflow=\"visible\"><path d=\"M 1.805 0 L 0 0 L 0 11.516 L 1.805 11.516 L 1.805 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a738b8\",layoutDependency:layoutDependency,layoutId:\"MKIaE4bqE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.805 8.146\" overflow=\"visible\"><path d=\"M 0 8.145 L 1.805 8.145 L 1.805 0 L 0 0 L 0 8.146 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12qh4ed\",layoutDependency:layoutDependency,layoutId:\"IXkZo4J2T\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.954 1.897\" overflow=\"visible\"><path d=\"M 1.954 0 L 0 0 L 0 1.897 L 1.954 1.897 L 1.954 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w77lgw\",layoutDependency:layoutDependency,layoutId:\"qyzUTw2a3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.149 2.086\" overflow=\"visible\"><path d=\"M 4.149 2.086 C 4.149 0.828 3.411 0 2.153 0 C 1.085 0 0.217 0.672 0 2.086 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ibkdmb\",layoutDependency:layoutDependency,layoutId:\"H12LwYEjF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.039 8.664\" overflow=\"visible\"><path d=\"M 8.039 4.198 C 8.039 4.431 8.021 4.638 7.986 4.922 L 1.911 4.922 C 2.102 6.474 3.03 7.146 4.271 7.146 C 5.417 7.146 6.155 6.689 6.597 5.69 L 7.9 6.844 C 7.128 8.085 5.73 8.664 4.219 8.664 C 1.642 8.664 0 6.896 0 4.37 C 0 1.845 1.729 0 4.107 0 C 6.493 0 8.039 1.707 8.039 4.198 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vna9yh\",layoutDependency:layoutDependency,layoutId:\"zP2NKDanZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.852 8.335\" overflow=\"visible\"><path d=\"M 1.806 1.472 L 1.806 0.188 L 0 0.188 L 0 8.335 L 1.797 8.335 L 1.797 4.405 C 1.797 2.603 2.665 1.758 3.923 1.758 C 4.271 1.758 4.54 1.801 4.852 1.896 L 4.852 0.111 C 4.601 0.017 4.418 0 4.132 0 C 3.377 0 2.405 0.302 1.806 1.474 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://help.nightfall.ai/\",motionChild:true,nodeId:\"T0Bp9GmM8\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xljpmw framer-aoqboz\",\"data-framer-name\":\"NightfallAI\",layoutDependency:layoutDependency,layoutId:\"T0Bp9GmM8\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ftcsk6\",layoutDependency:layoutDependency,layoutId:\"h5jV6ZGad\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119.294 24.001\" overflow=\"visible\"><g><path d=\"M 0 0 L 119.294 0 L 119.294 24 L 0 24 Z\" fill=\"transparent\"></path><path d=\"M 39.243 13.204 L 33.363 6.093 L 32.169 6.093 L 32.169 17.179 L 34.134 17.179 L 34.134 10.128 L 39.913 17.179 L 41.208 17.179 L 41.208 6.093 L 39.243 6.093 Z M 44.382 8.058 C 45.067 8.058 45.576 7.548 45.576 6.828 C 45.576 6.123 45.067 5.598 44.383 5.598 C 43.698 5.598 43.16 6.123 43.16 6.828 C 43.16 7.548 43.684 8.058 44.383 8.058 Z M 45.314 9.033 L 43.408 9.033 L 43.408 17.179 L 45.314 17.179 Z M 53.301 10.008 C 52.646 9.228 51.801 8.839 50.797 8.839 C 49.662 8.839 48.701 9.228 47.93 10.023 C 47.158 10.803 46.779 11.809 46.779 13.023 C 46.779 14.223 47.143 15.213 47.886 16.009 C 48.628 16.804 49.574 17.193 50.724 17.193 C 51.758 17.193 52.602 16.819 53.243 16.084 L 53.243 16.564 C 53.243 17.959 52.297 18.934 50.68 18.934 C 49.72 18.934 48.789 18.619 47.901 17.974 L 47.129 19.459 C 48.191 20.239 49.385 20.629 50.724 20.629 C 52.019 20.629 53.068 20.239 53.869 19.474 C 54.669 18.709 55.077 17.674 55.077 16.368 L 55.077 9.034 L 53.301 9.034 L 53.301 10.009 Z M 51.001 15.484 C 50.331 15.484 49.778 15.259 49.342 14.793 C 48.904 14.328 48.687 13.744 48.687 13.039 C 48.687 12.333 48.905 11.763 49.341 11.313 C 49.778 10.848 50.331 10.623 51.001 10.623 C 51.656 10.623 52.209 10.849 52.646 11.313 C 53.083 11.763 53.301 12.333 53.301 13.039 C 53.301 13.744 53.083 14.328 52.646 14.793 C 52.209 15.259 51.656 15.484 51.001 15.484 Z M 58.888 17.179 L 58.888 12.768 C 58.888 11.493 59.674 10.608 60.795 10.608 C 61.843 10.608 62.527 11.373 62.527 12.739 L 62.527 17.179 L 64.419 17.179 L 64.419 12.213 C 64.419 11.119 64.113 10.293 63.517 9.708 C 62.92 9.123 62.207 8.823 61.348 8.823 C 60.227 8.823 59.296 9.348 58.845 10.083 L 58.845 5.778 L 56.995 5.778 L 56.995 17.179 Z M 71.157 15.169 C 70.706 15.453 70.255 15.589 69.818 15.589 C 69.047 15.589 68.668 15.093 68.668 14.119 L 68.668 10.683 L 71.318 10.683 L 71.318 9.033 L 68.668 9.033 L 68.668 6.153 L 66.791 6.153 L 66.791 9.033 L 65.451 9.033 L 65.451 10.683 L 66.761 10.683 L 66.761 14.193 C 66.761 16.279 67.679 17.373 69.469 17.373 C 70.357 17.373 71.128 17.149 71.754 16.699 Z M 76.865 7.218 C 77.214 7.218 77.637 7.324 78.131 7.548 L 78.728 6.018 C 78.03 5.643 77.316 5.463 76.603 5.463 C 74.725 5.463 73.459 6.603 73.459 8.658 L 73.459 9.033 L 72.207 9.033 L 72.207 10.683 L 73.459 10.683 L 73.459 17.179 L 75.351 17.179 L 75.351 10.683 L 77.826 10.683 L 77.826 9.033 L 75.351 9.033 L 75.351 8.703 C 75.351 7.743 75.89 7.218 76.865 7.218 Z M 84.758 10.068 C 84.045 9.243 83.186 8.839 82.181 8.839 C 81.06 8.839 80.114 9.243 79.372 10.039 C 78.63 10.833 78.266 11.853 78.266 13.068 C 78.266 14.284 78.63 15.319 79.372 16.144 C 80.114 16.969 81.046 17.373 82.181 17.373 C 83.215 17.373 84.074 16.969 84.758 16.173 L 84.758 17.179 L 86.563 17.179 L 86.563 9.033 L 84.758 9.033 Z M 84.801 13.099 C 84.801 13.804 84.583 14.389 84.146 14.869 C 83.709 15.349 83.157 15.589 82.473 15.589 C 81.788 15.589 81.235 15.349 80.798 14.869 C 80.376 14.389 80.158 13.803 80.158 13.099 C 80.158 12.408 80.376 11.824 80.798 11.344 C 81.235 10.864 81.788 10.624 82.473 10.624 C 83.157 10.624 83.709 10.864 84.146 11.344 C 84.583 11.824 84.801 12.408 84.801 13.099 Z M 90.388 5.779 L 88.496 5.779 L 88.496 17.179 L 90.388 17.179 Z M 94.212 5.779 L 92.32 5.779 L 92.32 17.179 L 94.212 17.179 Z M 108.634 17.179 L 104.515 6.093 L 102.986 6.093 L 98.823 17.179 L 100.934 17.179 L 101.822 14.659 L 105.635 14.659 L 106.523 17.179 Z M 105.067 12.813 L 102.404 12.813 L 103.743 9.019 Z M 110.008 17.179 L 112.002 17.179 L 112.002 6.093 L 110.008 6.093 Z M 114.848 9.053 L 115.351 9.053 L 115.351 6.777 L 116.126 6.777 L 116.126 6.282 L 114.074 6.282 L 114.074 6.776 L 114.848 6.776 Z M 116.977 9.053 L 116.977 7.411 L 117.791 8.625 L 117.955 8.625 L 118.771 7.411 L 118.771 9.053 L 119.265 9.053 L 119.265 6.282 L 118.949 6.282 L 117.875 7.898 L 116.798 6.282 L 116.485 6.282 L 116.485 9.053 Z\" fill=\"rgb(32,22,90)\"></path><g opacity=\"0.46\"><defs><radialGradient id=\"idsh5jV6ZGad_4g-1416546150\" cy=\"0.5428898413813354\" cx=\"0.49999557178679904\" r=\"0.494685273989891\" gradientTransform=\"translate(0.49999557178679904, 0.5428898413813354) scale(1 1) translate(-0.49999557178679904, -0.5428898413813354)\"><stop offset=\"0\" stop-color=\"rgb(57,5,136)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(24,0,86)\" stop-opacity=\"1\"></stop></radialGradient></defs><path d=\"M 22.518 12.478 C 22.521 14.102 22.186 15.709 21.535 17.196 C 19.773 21.206 15.907 23.503 11.33 23.503 C 5.89 23.503 1.27 20.051 0.229 14.8 C -0.632 10.495 0.974 6.064 4.37 3.375 C 7.765 0.685 12.359 0.208 16.214 2.141 C 20.068 4.075 22.514 8.085 22.518 12.478 Z\" fill=\"url(#idsh5jV6ZGad_4g-1416546150)\"></path></g><g opacity=\"0.46\"><defs><radialGradient id=\"idsh5jV6ZGad_5g-1416546150\" cy=\"0.6257032659849262\" cx=\"0.5776683205968636\" r=\"0.49999275651008657\" gradientTransform=\"translate(0.5776683205968636, 0.6257032659849262) scale(1 1) translate(-0.5776683205968636, -0.6257032659849262)\"><stop offset=\"0\" stop-color=\"rgb(57,5,136)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(24,0,86)\" stop-opacity=\"1\"></stop></radialGradient></defs><path d=\"M 11.259 22.45 C 16.641 22.45 21.004 17.984 21.004 12.476 C 21.004 6.967 16.641 2.501 11.259 2.501 C 5.877 2.501 1.514 6.967 1.514 12.475 C 1.514 17.984 5.877 22.449 11.259 22.449 Z\" fill=\"url(#idsh5jV6ZGad_5g-1416546150)\"></path></g><g><defs><radialGradient id=\"idsh5jV6ZGad_6g-1416546150\" cy=\"0.7523720376122197\" cx=\"0.6946259036669279\" r=\"0.4999999999999999\" gradientTransform=\"translate(0.6946259036669279, 0.7523720376122197) scale(1 1) translate(-0.6946259036669279, -0.7523720376122197)\"><stop offset=\"0\" stop-color=\"rgb(57,5,136)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(24,0,86)\" stop-opacity=\"1\"></stop></radialGradient></defs><path d=\"M 11.259 20.771 C 15.735 20.771 19.363 17.057 19.363 12.475 C 19.363 7.894 15.735 4.181 11.26 4.181 C 6.783 4.181 3.155 7.894 3.155 12.475 C 3.155 17.057 6.783 20.771 11.259 20.771 Z\" fill=\"url(#idsh5jV6ZGad_6g-1416546150)\"></path></g><g><defs><linearGradient id=\"idsh5jV6ZGad_7g687557014\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(164,105,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 7.338 7.617 L 13.075 13.562 L 14.731 10.422 L 21.489 17.34 C 21.489 17.34 17.375 26.776 8.179 22.908 C -1.018 19.039 1.524 15.598 1.524 15.598 Z\" fill=\"url(#idsh5jV6ZGad_7g687557014)\"></path></g><path d=\"M 12.29 12.738 L 14.731 10.422 C 14.731 10.422 15.65 11.899 15.251 12.84 C 15.092 13.214 14.304 14.919 14.304 14.919 Z\" fill=\"rgb(129,31,220)\"></path><g opacity=\"0.8\"><defs><radialGradient id=\"idsh5jV6ZGad_9g1359548813\" cy=\"1.534832895161442\" cx=\"2.4706138712217345\" r=\"0.8149506868142057\" gradientTransform=\"translate(2.4706138712217345, 1.534832895161442) scale(1 1) translate(-2.4706138712217345, -1.534832895161442)\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(164,105,255,0.01)\" stop-opacity=\"0.01\"></stop></radialGradient></defs><path d=\"M 11.683 8.171 C 11.63 8.114 11.683 7.955 11.831 7.818 L 16.267 3.284 C 16.402 3.146 16.557 3.079 16.613 3.136 C 16.666 3.19 16.613 3.349 16.466 3.487 L 12.036 8.021 C 11.902 8.16 11.747 8.225 11.683 8.171 Z\" fill=\"url(#idsh5jV6ZGad_9g1359548813)\"></path></g><g opacity=\"0.4\"><defs><radialGradient id=\"idsh5jV6ZGad_10g1359548812\" cy=\"1.6790989690278584\" cx=\"3.1499459012525075\" r=\"0.8149089544343588\" gradientTransform=\"translate(3.1499459012525075, 1.6790989690278584) scale(1 1) translate(-3.1499459012525075, -1.6790989690278584)\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(164,105,255,0.01)\" stop-opacity=\"0.01\"></stop></radialGradient></defs><path d=\"M 15.033 8.904 C 14.98 8.847 15.033 8.688 15.181 8.551 L 19.61 4.017 C 19.744 3.879 19.899 3.811 19.953 3.869 C 20.009 3.923 19.953 4.082 19.808 4.221 L 15.379 8.755 C 15.239 8.894 15.089 8.961 15.033 8.904 Z\" fill=\"url(#idsh5jV6ZGad_10g1359548812)\"></path></g><g opacity=\"0.4\"><defs><radialGradient id=\"idsh5jV6ZGad_11g1359548812\" cy=\"0.9210594253002693\" cx=\"2.6474047141171733\" r=\"0.8149473909788921\" gradientTransform=\"translate(2.6474047141171733, 0.9210594253002693) scale(1 1) translate(-2.6474047141171733, -0.9210594253002693)\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(164,105,255,0.01)\" stop-opacity=\"0.01\"></stop></radialGradient></defs><path d=\"M 12.539 5.057 C 12.486 4.999 12.539 4.841 12.684 4.704 L 17.116 0.168 C 17.25 0.031 17.405 -0.036 17.459 0.02 C 17.515 0.075 17.459 0.234 17.314 0.372 L 12.885 4.908 C 12.751 5.045 12.595 5.11 12.539 5.056 Z\" fill=\"url(#idsh5jV6ZGad_11g1359548812)\"></path></g><g><defs><linearGradient id=\"idsh5jV6ZGad_12g966320539\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(112,14,219)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(110,14,217)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 7.007 21.431 C 3.96 19.128 7.536 13.17 8.199 11.613 C 8.862 10.056 7.338 7.617 7.338 7.617 L 0.254 14.875 C 1.363 20.196 5.952 23.999 11.267 24 C 13.355 24.029 15.411 23.47 17.21 22.383 C 16.497 21.982 15.74 21.663 14.954 21.432 C 12.564 20.753 10.051 23.732 7.007 21.432 Z\" fill=\"url(#idsh5jV6ZGad_12g966320539)\"></path></g><path d=\"M 7.007 21.431 C 3.96 19.128 7.536 13.17 8.199 11.613 C 8.862 10.056 7.338 7.617 7.338 7.617 L 0.254 14.875 C 1.363 20.196 5.952 23.999 11.267 24 C 13.355 24.029 15.411 23.47 17.21 22.383 C 16.497 21.982 15.74 21.663 14.954 21.432 C 12.564 20.753 10.051 23.732 7.007 21.432 Z\" fill=\"rgb(129,31,220)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1eotzzn\",layoutDependency:layoutDependency,layoutId:\"J2KNRPkeK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119.294 24\" overflow=\"visible\"><path d=\"M 0 0 L 119.294 0 L 119.294 24 L 0 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-wx667f\",layoutDependency:layoutDependency,layoutId:\"tyqUVAinA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87.096 15.166\" overflow=\"visible\"><path d=\"M 7.074 7.741 L 1.194 0.63 L 0 0.63 L 0 11.716 L 1.964 11.716 L 1.964 4.665 L 7.744 11.716 L 9.039 11.716 L 9.039 0.63 L 7.074 0.63 Z M 12.212 2.595 C 12.897 2.595 13.407 2.085 13.407 1.365 C 13.407 0.66 12.897 0.135 12.213 0.135 C 11.528 0.135 10.991 0.66 10.991 1.365 C 10.991 2.085 11.514 2.595 12.213 2.595 Z M 13.144 3.57 L 11.238 3.57 L 11.238 11.716 L 13.144 11.716 Z M 21.131 4.545 C 20.477 3.765 19.632 3.376 18.628 3.376 C 17.492 3.376 16.532 3.765 15.76 4.56 C 14.989 5.34 14.61 6.346 14.61 7.56 C 14.61 8.76 14.974 9.75 15.716 10.546 C 16.459 11.341 17.405 11.73 18.555 11.73 C 19.588 11.73 20.432 11.356 21.073 10.621 L 21.073 11.101 C 21.073 12.496 20.128 13.471 18.511 13.471 C 17.551 13.471 16.619 13.156 15.731 12.511 L 14.96 13.996 C 16.022 14.776 17.216 15.166 18.555 15.166 C 19.85 15.166 20.898 14.776 21.7 14.011 C 22.5 13.246 22.907 12.211 22.907 10.905 L 22.907 3.571 L 21.131 3.571 L 21.131 4.546 Z M 18.832 10.021 C 18.162 10.021 17.609 9.796 17.173 9.33 C 16.735 8.865 16.518 8.281 16.518 7.576 C 16.518 6.87 16.736 6.3 17.172 5.85 C 17.609 5.385 18.162 5.16 18.832 5.16 C 19.487 5.16 20.04 5.386 20.476 5.85 C 20.914 6.3 21.131 6.87 21.131 7.576 C 21.131 8.281 20.913 8.865 20.477 9.33 C 20.039 9.796 19.487 10.021 18.832 10.021 Z M 26.718 11.716 L 26.718 7.305 C 26.718 6.03 27.505 5.145 28.626 5.145 C 29.674 5.145 30.358 5.91 30.358 7.276 L 30.358 11.716 L 32.25 11.716 L 32.25 6.75 C 32.25 5.656 31.944 4.83 31.348 4.245 C 30.751 3.66 30.037 3.36 29.179 3.36 C 28.058 3.36 27.126 3.885 26.675 4.62 L 26.675 0.315 L 24.826 0.315 L 24.826 11.716 Z M 38.988 9.706 C 38.537 9.99 38.085 10.126 37.649 10.126 C 36.877 10.126 36.498 9.63 36.498 8.656 L 36.498 5.22 L 39.148 5.22 L 39.148 3.57 L 36.499 3.57 L 36.499 0.69 L 34.621 0.69 L 34.621 3.57 L 33.282 3.57 L 33.282 5.22 L 34.592 5.22 L 34.592 8.73 C 34.592 10.816 35.509 11.91 37.3 11.91 C 38.188 11.91 38.959 11.686 39.584 11.236 Z M 44.696 1.755 C 45.044 1.755 45.467 1.861 45.962 2.085 L 46.559 0.555 C 45.86 0.18 45.147 0 44.433 0 C 42.556 0 41.29 1.14 41.29 3.195 L 41.29 3.57 L 40.038 3.57 L 40.038 5.22 L 41.29 5.22 L 41.29 11.716 L 43.182 11.716 L 43.182 5.22 L 45.656 5.22 L 45.656 3.57 L 43.182 3.57 L 43.182 3.24 C 43.182 2.28 43.72 1.755 44.696 1.755 Z M 52.588 4.605 C 51.875 3.78 51.016 3.376 50.012 3.376 C 48.891 3.376 47.945 3.78 47.202 4.576 C 46.46 5.37 46.096 6.39 46.096 7.605 C 46.096 8.821 46.46 9.856 47.202 10.681 C 47.945 11.506 48.877 11.91 50.012 11.91 C 51.045 11.91 51.904 11.506 52.588 10.71 L 52.588 11.716 L 54.393 11.716 L 54.393 3.57 L 52.588 3.57 Z M 52.632 7.636 C 52.632 8.341 52.413 8.926 51.977 9.406 C 51.54 9.886 50.987 10.126 50.303 10.126 C 49.619 10.126 49.066 9.886 48.629 9.406 C 48.207 8.926 47.989 8.34 47.989 7.636 C 47.989 6.945 48.207 6.361 48.629 5.881 C 49.066 5.401 49.619 5.161 50.303 5.161 C 50.987 5.161 51.54 5.401 51.977 5.881 C 52.413 6.361 52.632 6.945 52.632 7.636 Z M 58.219 0.316 L 56.327 0.316 L 56.327 11.716 L 58.219 11.716 Z M 62.043 0.316 L 60.15 0.316 L 60.15 11.716 L 62.043 11.716 Z M 76.465 11.716 L 72.345 0.63 L 70.816 0.63 L 66.654 11.716 L 68.764 11.716 L 69.652 9.196 L 73.466 9.196 L 74.353 11.716 Z M 72.898 7.35 L 70.235 7.35 L 71.574 3.556 Z M 77.838 11.716 L 79.832 11.716 L 79.832 0.63 L 77.838 0.63 Z M 82.679 3.59 L 83.181 3.59 L 83.181 1.314 L 83.956 1.314 L 83.956 0.819 L 81.904 0.819 L 81.904 1.313 L 82.679 1.313 Z M 84.808 3.59 L 84.808 1.948 L 85.622 3.162 L 85.786 3.162 L 86.601 1.948 L 86.601 3.59 L 87.096 3.59 L 87.096 0.819 L 86.78 0.819 L 85.706 2.435 L 84.629 0.819 L 84.316 0.819 L 84.316 3.59 Z\" fill=\"rgb(32,22,90)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-n01bxq\",layoutDependency:layoutDependency,layoutId:\"BQx1DOYri\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.039 11.085\" overflow=\"visible\"><path d=\"M 7.074 7.11 L 1.194 0 L 0 0 L 0 11.085 L 1.964 11.085 L 1.964 4.035 L 7.744 11.085 L 9.039 11.085 L 9.039 0 L 7.074 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qa873e\",layoutDependency:layoutDependency,layoutId:\"YdtoMJKGG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.416 2.46\" overflow=\"visible\"><path d=\"M 1.222 2.46 C 1.907 2.46 2.416 1.95 2.416 1.23 C 2.416 0.525 1.907 0 1.223 0 C 0.538 0 0 0.525 0 1.23 C 0 1.95 0.524 2.46 1.223 2.46 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9i82mk\",layoutDependency:layoutDependency,layoutId:\"pmWTHswI9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.906 8.146\" overflow=\"visible\"><path d=\"M 1.906 0 L 0 0 L 0 8.146 L 1.906 8.146 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1btmqyc\",layoutDependency:layoutDependency,layoutId:\"hjXpeP9__\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.298 11.79\" overflow=\"visible\"><path d=\"M 6.522 1.17 C 5.867 0.39 5.022 0 4.018 0 C 2.883 0 1.922 0.39 1.151 1.184 C 0.379 1.964 0 2.97 0 4.184 C 0 5.384 0.364 6.375 1.107 7.17 C 1.849 7.965 2.795 8.355 3.945 8.355 C 4.979 8.355 5.823 7.981 6.464 7.245 L 6.464 7.725 C 6.464 9.12 5.518 10.096 3.901 10.096 C 2.941 10.096 2.01 9.78 1.122 9.136 L 0.35 10.62 C 1.412 11.4 2.606 11.79 3.945 11.79 C 5.24 11.79 6.289 11.4 7.09 10.636 C 7.89 9.87 8.298 8.836 8.298 7.53 L 8.298 0.196 L 6.522 0.196 L 6.522 1.17 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m3cldh\",layoutDependency:layoutDependency,layoutId:\"Rie7cv22e\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.614 4.861\" overflow=\"visible\"><path d=\"M 2.314 4.861 C 1.644 4.861 1.091 4.636 0.655 4.17 C 0.217 3.705 0 3.121 0 2.416 C 0 1.71 0.218 1.14 0.654 0.69 C 1.091 0.225 1.644 0 2.314 0 C 2.969 0 3.522 0.226 3.959 0.69 C 4.396 1.14 4.614 1.71 4.614 2.416 C 4.614 3.121 4.396 3.705 3.959 4.17 C 3.522 4.636 2.969 4.861 2.314 4.861 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ifi8zp\",layoutDependency:layoutDependency,layoutId:\"s6bOWEwXS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.424 11.401\" overflow=\"visible\"><path d=\"M 1.892 11.401 L 1.892 6.99 C 1.892 5.716 2.679 4.83 3.8 4.83 C 4.848 4.83 5.532 5.596 5.532 6.961 L 5.532 11.401 L 7.424 11.401 L 7.424 6.436 C 7.424 5.341 7.118 4.516 6.522 3.93 C 5.925 3.345 5.212 3.045 4.353 3.045 C 3.232 3.045 2.3 3.57 1.849 4.305 L 1.849 0 L 0 0 L 0 11.401 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kyqo6c\",layoutDependency:layoutDependency,layoutId:\"I5ZSWRg8K\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.303 11.22\" overflow=\"visible\"><path d=\"M 5.706 9.016 C 5.255 9.3 4.804 9.436 4.367 9.436 C 3.596 9.436 3.217 8.94 3.217 7.965 L 3.217 4.53 L 5.867 4.53 L 5.867 2.88 L 3.217 2.88 L 3.217 0 L 1.34 0 L 1.34 2.88 L 0 2.88 L 0 4.53 L 1.31 4.53 L 1.31 8.04 C 1.31 10.125 2.228 11.22 4.018 11.22 C 4.906 11.22 5.677 10.996 6.303 10.545 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rn6yh2\",layoutDependency:layoutDependency,layoutId:\"hU3PZ8tdq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.521 11.716\" overflow=\"visible\"><path d=\"M 4.658 1.755 C 5.007 1.755 5.43 1.861 5.924 2.085 L 6.521 0.555 C 5.823 0.18 5.109 0 4.396 0 C 2.518 0 1.252 1.14 1.252 3.195 L 1.252 3.57 L 0 3.57 L 0 5.22 L 1.252 5.22 L 1.252 11.716 L 3.144 11.716 L 3.144 5.22 L 5.619 5.22 L 5.619 3.57 L 3.144 3.57 L 3.144 3.24 C 3.144 2.28 3.683 1.755 4.658 1.755 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s6rtvu\",layoutDependency:layoutDependency,layoutId:\"RsV2CaIi4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.297 8.535\" overflow=\"visible\"><path d=\"M 6.492 1.23 C 5.779 0.404 4.92 0 3.916 0 C 2.795 0 1.849 0.404 1.106 1.2 C 0.364 1.995 0 3.015 0 4.23 C 0 5.445 0.364 6.48 1.106 7.305 C 1.849 8.13 2.78 8.535 3.916 8.535 C 4.949 8.535 5.808 8.13 6.492 7.335 L 6.492 8.34 L 8.297 8.34 L 8.297 0.194 L 6.492 0.194 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ov1mk4\",layoutDependency:layoutDependency,layoutId:\"J2fxQ1RHu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.643 4.965\" overflow=\"visible\"><path d=\"M 4.643 2.475 C 4.643 3.18 4.424 3.765 3.988 4.245 C 3.551 4.725 2.999 4.965 2.315 4.965 C 1.63 4.965 1.077 4.725 0.64 4.245 C 0.218 3.765 0 3.179 0 2.475 C 0 1.784 0.218 1.2 0.64 0.72 C 1.077 0.24 1.63 0 2.315 0 C 2.999 0 3.551 0.24 3.988 0.72 C 4.424 1.2 4.643 1.784 4.643 2.475 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fx3gfr\",layoutDependency:layoutDependency,layoutId:\"JETe2p0BO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.892 11.4\" overflow=\"visible\"><path d=\"M 1.892 0 L 0 0 L 0 11.4 L 1.892 11.4 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7fmwx0\",layoutDependency:layoutDependency,layoutId:\"N66lFRIT5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.892 11.4\" overflow=\"visible\"><path d=\"M 1.892 0 L 0 0 L 0 11.4 L 1.892 11.4 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hdjewk\",layoutDependency:layoutDependency,layoutId:\"F7LW44q7M\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.811 11.085\" overflow=\"visible\"><path d=\"M 9.811 11.085 L 5.692 0 L 4.163 0 L 0 11.085 L 2.111 11.085 L 2.999 8.565 L 6.812 8.565 L 7.7 11.085 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8oh21j\",layoutDependency:layoutDependency,layoutId:\"RbPA6zlui\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.663 3.795\" overflow=\"visible\"><path d=\"M 2.663 3.795 L 0 3.795 L 1.339 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11r4524\",layoutDependency:layoutDependency,layoutId:\"KfpqSmjom\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.994 11.085\" overflow=\"visible\"><path d=\"M 0 11.085 L 1.994 11.085 L 1.994 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-myjeq2\",layoutDependency:layoutDependency,layoutId:\"WqKwI_vmo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.052 2.771\" overflow=\"visible\"><path d=\"M 0.774 2.771 L 1.277 2.771 L 1.277 0.495 L 2.052 0.495 L 2.052 0 L 0 0 L 0 0.494 L 0.774 0.494 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z47z5s\",layoutDependency:layoutDependency,layoutId:\"bR9ns4ehk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.78 2.771\" overflow=\"visible\"><path d=\"M 0.492 2.771 L 0.492 1.129 L 1.307 2.344 L 1.47 2.344 L 2.286 1.129 L 2.286 2.771 L 2.78 2.771 L 2.78 0 L 2.464 0 L 1.391 1.616 L 0.313 0 L 0 0 L 0 2.771 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f2ets0\",layoutDependency:layoutDependency,layoutId:\"xkv4NbY6_\",opacity:.46,requiresOverflowVisible:false,style:{opacity:.46},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.518 22.538\" overflow=\"visible\"><g opacity=\"0.46\"><defs><radialGradient id=\"idsxkv4NbY6__1g-1416546150\" cy=\"0.5428898413813354\" cx=\"0.49999557178679904\" r=\"0.494685273989891\" gradientTransform=\"translate(0.49999557178679904, 0.5428898413813354) scale(1 1) translate(-0.49999557178679904, -0.5428898413813354)\"><stop offset=\"0\" stop-color=\"rgb(57,5,136)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(24,0,86)\" stop-opacity=\"1\"></stop></radialGradient></defs><path d=\"M 22.518 11.513 C 22.521 13.137 22.186 14.744 21.535 16.231 C 19.773 20.241 15.907 22.538 11.33 22.538 C 5.89 22.538 1.27 19.086 0.229 13.835 C -0.632 9.53 0.974 5.099 4.37 2.41 C 7.765 -0.28 12.359 -0.757 16.214 1.176 C 20.068 3.11 22.514 7.12 22.518 11.513 Z\" fill=\"url(#idsxkv4NbY6__1g-1416546150)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xme70w\",layoutDependency:layoutDependency,layoutId:\"hig7ICmdM\",opacity:.46,requiresOverflowVisible:false,style:{opacity:.46},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.49 19.949\" overflow=\"visible\"><g opacity=\"0.46\"><defs><radialGradient id=\"idshig7ICmdM_1g-1416546150\" cy=\"0.6257032659849262\" cx=\"0.5776683205968636\" r=\"0.49999275651008657\" gradientTransform=\"translate(0.5776683205968636, 0.6257032659849262) scale(1 1) translate(-0.5776683205968636, -0.6257032659849262)\"><stop offset=\"0\" stop-color=\"rgb(57,5,136)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(24,0,86)\" stop-opacity=\"1\"></stop></radialGradient></defs><path d=\"M 9.745 19.949 C 15.127 19.949 19.49 15.483 19.49 9.975 C 19.49 4.465 15.127 0 9.745 0 C 4.363 0 0 4.465 0 9.974 C 0 15.483 4.362 19.948 9.745 19.948 Z\" fill=\"url(#idshig7ICmdM_1g-1416546150)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4d3u5\",layoutDependency:layoutDependency,layoutId:\"Uy88SXt6R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.208 16.59\" overflow=\"visible\"><g><defs><radialGradient id=\"idsUy88SXt6R_1g-1416546150\" cy=\"0.7523720376122197\" cx=\"0.6946259036669279\" r=\"0.4999999999999999\" gradientTransform=\"translate(0.6946259036669279, 0.7523720376122197) scale(1 1) translate(-0.6946259036669279, -0.7523720376122197)\"><stop offset=\"0\" stop-color=\"rgb(57,5,136)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(24,0,86)\" stop-opacity=\"1\"></stop></radialGradient></defs><path d=\"M 8.104 16.59 C 12.58 16.59 16.208 12.877 16.208 8.295 C 16.208 3.714 12.58 0 8.105 0 C 3.628 0 0 3.714 0 8.295 C 0 12.876 3.628 16.59 8.104 16.59 Z\" fill=\"url(#idsUy88SXt6R_1g-1416546150)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1o6lg5r\",layoutDependency:layoutDependency,layoutId:\"HE2zaWi_6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.287 16.222\" overflow=\"visible\"><g><defs><linearGradient id=\"idsHE2zaWi_6_1g687557014\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(164,105,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.136 0 L 11.873 5.946 L 13.529 2.805 L 20.287 9.723 C 20.287 9.723 16.173 19.159 6.977 15.291 C -2.22 11.423 0.322 7.981 0.322 7.981 Z\" fill=\"url(#idsHE2zaWi_6_1g687557014)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-436tm2\",layoutDependency:layoutDependency,layoutId:\"sx8e_vCrV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.061 4.497\" overflow=\"visible\"><path d=\"M 0 2.316 L 2.441 0 C 2.441 0 3.36 1.477 2.961 2.418 C 2.802 2.792 2.014 4.497 2.014 4.497 Z\" fill=\"rgb(129,31,220)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gx29oj\",layoutDependency:layoutDependency,layoutId:\"swaGv9wRr\",opacity:.8,requiresOverflowVisible:false,style:{opacity:.8},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.97 5.075\" overflow=\"visible\"><g opacity=\"0.8\"><defs><radialGradient id=\"idsswaGv9wRr_1g1359548813\" cy=\"1.534832895161442\" cx=\"2.4706138712217345\" r=\"0.8149506868142057\" gradientTransform=\"translate(2.4706138712217345, 1.534832895161442) scale(1 1) translate(-2.4706138712217345, -1.534832895161442)\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(164,105,255,0.01)\" stop-opacity=\"0.01\"></stop></radialGradient></defs><path d=\"M 0.02 5.055 C -0.033 4.999 0.02 4.839 0.168 4.703 L 4.604 0.169 C 4.739 0.03 4.893 -0.037 4.95 0.02 C 5.003 0.075 4.95 0.234 4.802 0.371 L 0.373 4.905 C 0.239 5.045 0.084 5.11 0.02 5.055 Z\" fill=\"url(#idsswaGv9wRr_1g1359548813)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ksnvtc\",layoutDependency:layoutDependency,layoutId:\"XRdjzg284\",opacity:.4,requiresOverflowVisible:false,style:{opacity:.4},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.961 5.076\" overflow=\"visible\"><g opacity=\"0.4\"><defs><radialGradient id=\"idsXRdjzg284_1g1359548812\" cy=\"1.6790989690278584\" cx=\"3.1499459012525075\" r=\"0.8149089544343588\" gradientTransform=\"translate(3.1499459012525075, 1.6790989690278584) scale(1 1) translate(-3.1499459012525075, -1.6790989690278584)\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(164,105,255,0.01)\" stop-opacity=\"0.01\"></stop></radialGradient></defs><path d=\"M 0.02 5.055 C -0.033 4.999 0.02 4.84 0.168 4.702 L 4.597 0.169 C 4.731 0.031 4.886 -0.037 4.94 0.02 C 4.996 0.075 4.94 0.234 4.795 0.373 L 0.366 4.907 C 0.226 5.046 0.076 5.113 0.02 5.055 Z\" fill=\"url(#idsXRdjzg284_1g1359548812)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ld93ho\",layoutDependency:layoutDependency,layoutId:\"RszzjqKus\",opacity:.4,requiresOverflowVisible:false,style:{opacity:.4},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.961 5.075\" overflow=\"visible\"><g opacity=\"0.4\"><defs><radialGradient id=\"idsRszzjqKus_1g1359548812\" cy=\"0.9210594253002693\" cx=\"2.6474047141171733\" r=\"0.8149473909788921\" gradientTransform=\"translate(2.6474047141171733, 0.9210594253002693) scale(1 1) translate(-2.6474047141171733, -0.9210594253002693)\"><stop offset=\"0\" stop-color=\"rgb(255,255,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(164,105,255,0.01)\" stop-opacity=\"0.01\"></stop></radialGradient></defs><path d=\"M 0.02 5.057 C -0.033 4.999 0.02 4.841 0.165 4.704 L 4.597 0.168 C 4.731 0.031 4.886 -0.036 4.94 0.02 C 4.995 0.075 4.94 0.234 4.795 0.372 L 0.366 4.908 C 0.231 5.045 0.076 5.11 0.02 5.056 Z\" fill=\"url(#idsRszzjqKus_1g1359548812)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bb0u4j\",layoutDependency:layoutDependency,layoutId:\"xdA_WgdNU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.956 16.383\" overflow=\"visible\"><g><defs><linearGradient id=\"idsxdA_WgdNU_1g966320539\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(112,14,219)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(110,14,217)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.753 13.813 C 3.706 11.511 7.282 5.552 7.945 3.995 C 8.608 2.438 7.084 0 7.084 0 L 0 7.258 C 1.108 12.578 5.698 16.381 11.012 16.382 C 13.101 16.412 15.157 15.853 16.956 14.766 C 16.242 14.365 15.485 14.045 14.7 13.814 C 12.31 13.135 9.796 16.115 6.753 13.814 Z\" fill=\"url(#idsxdA_WgdNU_1g966320539)\"></path></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rb7ovd\",layoutDependency:layoutDependency,layoutId:\"HMGJ5EpMI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.956 16.383\" overflow=\"visible\"><path d=\"M 6.753 13.813 C 3.706 11.511 7.282 5.552 7.945 3.995 C 8.608 2.438 7.084 0 7.084 0 L 0 7.258 C 1.108 12.578 5.698 16.381 11.012 16.382 C 13.101 16.412 15.157 15.853 16.956 14.766 C 16.242 14.365 15.485 14.045 14.7 13.814 C 12.31 13.135 9.796 16.115 6.753 13.814 Z\" fill=\"rgb(129,31,220)\"></path></svg>',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.onum.com/\",motionChild:true,nodeId:\"MzvGRZWu0\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rzuyxy framer-aoqboz\",\"data-framer-name\":\"Onum\",layoutDependency:layoutDependency,layoutId:\"MzvGRZWu0\",whileHover:animation,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:93,pixelHeight:25,pixelWidth:93,src:\"https://framerusercontent.com/images/7XGRswcPOTnL2BBrhbVxULUMW98.svg\"},className:\"framer-155v5ql\",\"data-framer-name\":\"Onum logo\",layoutDependency:layoutDependency,layoutId:\"BKRmDYqRU\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.usepylon.com/pylon-docs\",motionChild:true,nodeId:\"zZ5iDsrDu\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-js1w4d framer-aoqboz\",\"data-framer-name\":\"Pylon\",layoutDependency:layoutDependency,layoutId:\"zZ5iDsrDu\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-bv0o1x\",layoutDependency:layoutDependency,layoutId:\"lqvW617ZE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73.77 21.177\" overflow=\"visible\"><g><path d=\"M 0 0 L 73.77 0 L 73.77 21.177 L 0 21.177 Z\" fill=\"transparent\"></path><path d=\"M 10.408 0 C 4.689 0 0 4.75 0 10.589 C 0 16.427 4.689 21.177 10.408 21.177 C 16.183 21.177 20.816 16.427 20.816 10.589 C 20.816 4.75 16.183 0 10.408 0 Z M 9.093 18.372 C 7.548 18.086 6.119 17.399 4.976 16.255 L 9.093 16.255 Z M 9.093 13.622 L 3.202 13.622 C 2.971 13.05 2.799 12.455 2.688 11.847 L 9.093 11.847 Z M 9.093 9.215 L 2.688 9.215 C 2.802 8.585 2.973 8.013 3.202 7.441 L 9.093 7.441 Z M 9.093 4.865 L 5.033 4.865 C 6.171 3.776 7.602 3.04 9.15 2.748 L 9.15 4.865 Z M 11.723 18.372 L 11.723 2.748 C 15.44 3.378 18.242 6.639 18.242 10.531 C 18.242 14.48 15.44 17.743 11.723 18.372 Z\" fill=\"rgb(65,56,194)\"></path><path d=\"M 35.684 5.037 C 35.336 4.393 34.797 3.873 34.14 3.549 C 33.454 3.205 32.539 3.033 31.51 3.033 L 26.591 3.033 L 26.591 16.427 L 29.279 16.427 L 29.279 11.39 L 31.51 11.39 C 32.596 11.39 33.454 11.217 34.14 10.818 C 34.826 10.417 35.341 9.902 35.684 9.272 C 36.027 8.642 36.199 7.955 36.199 7.211 C 36.205 6.455 36.029 5.709 35.684 5.036 Z M 33.282 8.528 C 32.997 8.814 32.425 9.043 31.681 9.043 L 29.622 9.043 L 29.622 5.209 L 31.681 5.209 C 32.482 5.209 32.996 5.38 33.282 5.724 C 33.626 6.067 33.797 6.468 33.797 7.096 C 33.797 7.726 33.625 8.184 33.282 8.528 Z M 38.944 20.146 L 41.06 15.454 L 40.659 15.454 L 36.999 6.468 L 39.917 6.468 L 42.317 12.706 L 44.834 6.525 L 47.693 6.525 L 41.803 20.146 Z M 48.265 16.598 L 48.265 2.862 L 50.953 2.862 L 50.953 16.598 Z M 61.075 9.043 C 60.674 8.299 60.103 7.669 59.359 7.269 C 58.615 6.868 57.814 6.639 56.957 6.639 C 56.042 6.639 55.242 6.868 54.499 7.269 C 53.755 7.669 53.183 8.299 52.783 9.043 C 52.325 9.787 52.153 10.646 52.153 11.619 C 52.151 12.534 52.367 13.436 52.783 14.251 C 53.183 14.995 53.812 15.568 54.499 16.026 C 55.252 16.441 56.098 16.658 56.957 16.655 C 57.872 16.655 58.673 16.427 59.416 16.025 C 60.16 15.625 60.732 14.995 61.132 14.251 C 61.589 13.507 61.761 12.591 61.761 11.619 C 61.704 10.646 61.475 9.787 61.075 9.043 Z M 58.387 13.679 C 57.987 14.08 57.472 14.309 56.9 14.309 C 56.328 14.309 55.871 14.08 55.413 13.679 C 55.013 13.279 54.785 12.591 54.785 11.733 C 54.785 10.818 55.013 10.188 55.413 9.787 C 55.814 9.329 56.328 9.157 56.9 9.157 C 57.472 9.157 57.929 9.386 58.33 9.787 C 58.73 10.187 58.959 10.818 58.959 11.733 C 59.016 12.591 58.787 13.222 58.387 13.679 Z M 62.905 16.427 L 62.905 6.868 L 65.306 6.868 L 65.421 8.069 C 65.686 7.707 66.015 7.397 66.393 7.154 C 66.965 6.81 67.594 6.638 68.337 6.638 C 69.481 6.638 70.396 7.039 71.082 7.783 C 71.712 8.528 72.055 9.672 72.055 11.046 L 72.055 16.426 L 69.367 16.426 L 69.367 11.274 C 69.367 10.473 69.195 9.958 68.909 9.557 C 68.624 9.214 68.223 8.985 67.594 8.985 C 66.965 8.985 66.508 9.214 66.107 9.615 C 65.707 10.073 65.535 10.645 65.535 11.446 L 65.535 16.368 L 62.905 16.368 L 62.905 16.426 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qmf989\",layoutDependency:layoutDependency,layoutId:\"ZP0v8dbm5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73.77 21.177\" overflow=\"visible\"><path d=\"M 0 0 L 73.77 0 L 73.77 21.177 L 0 21.177 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-13jll1d\",layoutDependency:layoutDependency,layoutId:\"O1NhnZlvV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.816 21.177\" overflow=\"visible\"><path d=\"M 10.408 0 C 4.689 0 0 4.75 0 10.589 C 0 16.427 4.689 21.177 10.408 21.177 C 16.183 21.177 20.816 16.427 20.816 10.589 C 20.816 4.75 16.183 0 10.408 0 Z M 9.093 18.372 C 7.548 18.086 6.119 17.399 4.976 16.255 L 9.093 16.255 Z M 9.093 13.622 L 3.202 13.622 C 2.971 13.05 2.799 12.455 2.688 11.847 L 9.093 11.847 Z M 9.093 9.215 L 2.688 9.215 C 2.802 8.585 2.973 8.013 3.202 7.441 L 9.093 7.441 Z M 9.093 4.865 L 5.033 4.865 C 6.171 3.776 7.602 3.04 9.15 2.748 L 9.15 4.865 Z M 11.723 18.372 L 11.723 2.748 C 15.44 3.378 18.242 6.639 18.242 10.531 C 18.242 14.48 15.44 17.743 11.723 18.372 Z\" fill=\"rgb(65,56,194)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18hw0ym\",layoutDependency:layoutDependency,layoutId:\"A0bLVel5y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.816 21.177\" overflow=\"visible\"><path d=\"M 10.408 0 C 4.689 0 0 4.75 0 10.589 C 0 16.427 4.689 21.177 10.408 21.177 C 16.183 21.177 20.816 16.427 20.816 10.589 C 20.816 4.75 16.183 0 10.408 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ws29dp\",layoutDependency:layoutDependency,layoutId:\"XBAMi8CRJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.118 2.117\" overflow=\"visible\"><path d=\"M 4.118 2.117 C 2.572 1.832 1.144 1.145 0 0 L 4.118 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r5gysg\",layoutDependency:layoutDependency,layoutId:\"tg7b2PJxJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.405 1.775\" overflow=\"visible\"><path d=\"M 6.405 1.775 L 0.514 1.775 C 0.283 1.202 0.111 0.608 0 0 L 6.405 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m84p8o\",layoutDependency:layoutDependency,layoutId:\"BXnDv79tz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.405 1.774\" overflow=\"visible\"><path d=\"M 6.405 1.774 L 0 1.774 C 0.114 1.144 0.285 0.572 0.514 0 L 6.405 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x8ea6y\",layoutDependency:layoutDependency,layoutId:\"E7cHgc2JQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.117 2.117\" overflow=\"visible\"><path d=\"M 4.06 2.117 L 0 2.117 C 1.139 1.028 2.569 0.293 4.117 0 L 4.117 2.117 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p0ob9s\",layoutDependency:layoutDependency,layoutId:\"Vvka39c3A\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.519 15.625\" overflow=\"visible\"><path d=\"M 0 15.625 L 0 0 C 3.717 0.63 6.519 3.891 6.519 7.783 C 6.519 11.733 3.717 14.995 0 15.625 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1g8yi1j\",layoutDependency:layoutDependency,layoutId:\"AOdMeElIs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45.463 17.285\" overflow=\"visible\"><path d=\"M 9.093 2.175 C 8.745 1.531 8.205 1.011 7.549 0.687 C 6.863 0.344 5.948 0.172 4.919 0.172 L 0 0.172 L 0 13.565 L 2.688 13.565 L 2.688 8.528 L 4.919 8.528 C 6.005 8.528 6.863 8.356 7.549 7.956 C 8.235 7.555 8.75 7.04 9.093 6.411 C 9.436 5.781 9.608 5.094 9.608 4.35 C 9.614 3.594 9.437 2.847 9.093 2.174 Z M 6.691 5.667 C 6.406 5.953 5.834 6.181 5.09 6.181 L 3.031 6.181 L 3.031 2.347 L 5.09 2.347 C 5.891 2.347 6.405 2.519 6.691 2.862 C 7.034 3.205 7.206 3.606 7.206 4.235 C 7.206 4.865 7.034 5.323 6.691 5.667 Z M 12.353 17.285 L 14.468 12.592 L 14.068 12.592 L 10.408 3.606 L 13.325 3.606 L 15.726 9.845 L 18.242 3.663 L 21.102 3.663 L 15.212 17.285 Z M 21.673 13.737 L 21.673 0 L 24.361 0 L 24.361 13.737 Z M 34.483 6.181 C 34.083 5.437 33.511 4.808 32.768 4.407 C 32.024 4.007 31.223 3.777 30.366 3.777 C 29.451 3.777 28.651 4.007 27.907 4.407 C 27.163 4.808 26.592 5.437 26.191 6.181 C 25.734 6.925 25.562 7.784 25.562 8.757 C 25.56 9.672 25.776 10.575 26.191 11.39 C 26.592 12.134 27.221 12.706 27.907 13.165 C 28.66 13.58 29.506 13.796 30.366 13.794 C 31.281 13.794 32.082 13.565 32.825 13.164 C 33.568 12.763 34.141 12.134 34.54 11.39 C 34.998 10.646 35.17 9.73 35.17 8.757 C 35.113 7.784 34.884 6.925 34.483 6.181 Z M 31.796 10.818 C 31.396 11.218 30.881 11.448 30.309 11.448 C 29.737 11.448 29.279 11.218 28.822 10.818 C 28.422 10.417 28.193 9.73 28.193 8.872 C 28.193 7.956 28.422 7.327 28.822 6.925 C 29.222 6.468 29.737 6.295 30.309 6.295 C 30.881 6.295 31.338 6.525 31.739 6.925 C 32.139 7.326 32.368 7.956 32.368 8.872 C 32.425 9.73 32.196 10.36 31.796 10.818 Z M 36.313 13.565 L 36.313 4.006 L 38.715 4.006 L 38.83 5.208 C 39.094 4.845 39.424 4.535 39.802 4.293 C 40.374 3.948 41.002 3.777 41.746 3.777 C 42.889 3.777 43.804 4.178 44.491 4.922 C 45.121 5.666 45.463 6.811 45.463 8.184 L 45.463 13.564 L 42.775 13.564 L 42.775 8.413 C 42.775 7.612 42.604 7.096 42.318 6.696 C 42.032 6.352 41.632 6.124 41.002 6.124 C 40.374 6.124 39.916 6.352 39.516 6.754 C 39.115 7.211 38.944 7.783 38.944 8.585 L 38.944 13.507 L 36.313 13.507 L 36.313 13.564 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1juk5sr\",layoutDependency:layoutDependency,layoutId:\"mWbMneRZB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.608 13.393\" overflow=\"visible\"><path d=\"M 9.093 2.003 C 8.745 1.359 8.205 0.839 7.549 0.515 C 6.863 0.172 5.948 0 4.918 0 L 0 0 L 0 13.393 L 2.688 13.393 L 2.688 8.357 L 4.918 8.357 C 6.004 8.357 6.863 8.184 7.549 7.784 C 8.235 7.384 8.75 6.868 9.093 6.239 C 9.436 5.609 9.608 4.922 9.608 4.178 C 9.614 3.422 9.437 2.676 9.093 2.003 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mjhzeq\",layoutDependency:layoutDependency,layoutId:\"nx4rFOsFn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.175 3.834\" overflow=\"visible\"><path d=\"M 3.66 3.32 C 3.375 3.606 2.803 3.834 2.059 3.834 L 0 3.834 L 0 0 L 2.059 0 C 2.86 0 3.374 0.172 3.66 0.515 C 4.004 0.858 4.175 1.259 4.175 1.888 C 4.175 2.518 4.003 2.976 3.66 3.32 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y4ndjh\",layoutDependency:layoutDependency,layoutId:\"ZUuUSFY7I\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.694 13.678\" overflow=\"visible\"><path d=\"M 1.945 13.678 L 4.061 8.986 L 3.66 8.986 L 0 0 L 2.917 0 L 5.318 6.238 L 7.834 0.057 L 10.694 0.057 L 4.804 13.678 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1am5a1s\",layoutDependency:layoutDependency,layoutId:\"nFWwA_hqm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.688 13.737\" overflow=\"visible\"><path d=\"M 0 13.737 L 0 0 L 2.688 0 L 2.688 13.737 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zqgr3d\",layoutDependency:layoutDependency,layoutId:\"Q9v0DR8Yz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.608 10.016\" overflow=\"visible\"><path d=\"M 8.921 2.404 C 8.521 1.66 7.949 1.031 7.206 0.63 C 6.462 0.23 5.661 0 4.804 0 C 3.889 0 3.089 0.23 2.345 0.63 C 1.601 1.031 1.03 1.66 0.629 2.404 C 0.172 3.148 0 4.007 0 4.98 C -0.002 5.895 0.214 6.797 0.629 7.612 C 1.03 8.357 1.659 8.929 2.345 9.387 C 3.098 9.802 3.944 10.019 4.804 10.016 C 5.719 10.016 6.52 9.788 7.263 9.386 C 8.006 8.986 8.579 8.357 8.978 7.612 C 9.436 6.868 9.608 5.953 9.608 4.98 C 9.551 4.007 9.322 3.148 8.921 2.404 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ybz7uz\",layoutDependency:layoutDependency,layoutId:\"npGuqTzqG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.183 5.152\" overflow=\"visible\"><path d=\"M 3.602 4.522 C 3.202 4.923 2.687 5.152 2.116 5.152 C 1.543 5.152 1.086 4.923 0.628 4.522 C 0.229 4.122 0 3.435 0 2.576 C 0 1.661 0.229 1.031 0.628 0.63 C 1.029 0.173 1.543 0 2.116 0 C 2.687 0 3.145 0.23 3.545 0.63 C 3.946 1.031 4.175 1.661 4.175 2.576 C 4.231 3.435 4.003 4.065 3.602 4.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-127f1ma\",layoutDependency:layoutDependency,layoutId:\"JAHsJrbMj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.15 9.788\" overflow=\"visible\"><path d=\"M 0 9.788 L 0 0.23 L 2.401 0.23 L 2.516 1.431 C 2.781 1.069 3.11 0.758 3.488 0.516 C 4.061 0.172 4.689 0 5.432 0 C 6.576 0 7.491 0.401 8.177 1.145 C 8.807 1.889 9.15 3.034 9.15 4.407 L 9.15 9.788 L 6.462 9.788 L 6.462 4.636 C 6.462 3.835 6.29 3.32 6.005 2.919 C 5.719 2.576 5.318 2.347 4.689 2.347 C 4.06 2.347 3.603 2.576 3.202 2.977 C 2.802 3.435 2.63 4.007 2.63 4.808 L 2.63 9.73 L 0 9.73 L 0 9.788 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.scraperapi.com/\",motionChild:true,nodeId:\"raQzY_o5d\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1av2hha framer-aoqboz\",\"data-framer-name\":\"ScraperAPI\",layoutDependency:layoutDependency,layoutId:\"raQzY_o5d\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1n48szu\",layoutDependency:layoutDependency,layoutId:\"Q3_wrl11U\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118.519 20.148\" overflow=\"visible\"><g><path d=\"M 0 0 L 118.519 0 L 118.519 20.148 L 0 20.148 Z\" fill=\"transparent\"></path><path d=\"M 4.896 16.259 L 11.965 16.259 C 13.031 16.259 14.064 15.679 14.58 14.742 C 15.129 13.805 15.129 12.645 14.58 11.708 C 14.032 10.773 13.031 10.191 11.965 10.191 L 8.447 10.191 C 7.351 10.22 6.325 9.652 5.768 8.707 C 5.219 7.758 5.219 6.589 5.768 5.64 C 6.325 4.695 7.351 4.127 8.447 4.156 L 14.967 4.156\" fill=\"transparent\" stroke-width=\"2.179\" stroke=\"rgb(26,34,228)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 13.354 1.186 L 8.48 1.186 C 6.319 1.153 4.308 2.288 3.219 4.156 C 2.122 6.027 2.154 8.319 3.219 10.191 C 4.284 12.063 6.318 13.193 8.481 13.161 L 11.063 13.161\" fill=\"transparent\" stroke-width=\"2.179\" stroke=\"rgb(26,34,228)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.058 19.196 L 11.932 19.196 C 13.516 19.2 15.037 18.572 16.158 17.451 C 17.278 16.331 17.906 14.81 17.902 13.225 C 17.902 9.933 15.224 7.254 11.932 7.254 L 9.35 7.254 M 16.679 5.899 C 17.298 5.911 17.876 5.588 18.19 5.054 C 18.504 4.519 18.504 3.857 18.19 3.322 C 17.876 2.787 17.298 2.464 16.679 2.477 C 15.733 2.477 14.967 3.243 14.967 4.188 C 14.967 5.133 15.733 5.899 16.679 5.899 Z M 2.896 18.035 C 3.841 18.035 4.607 17.269 4.607 16.324 C 4.607 15.379 3.841 14.613 2.896 14.613 C 1.951 14.613 1.185 15.379 1.185 16.324 C 1.185 17.269 1.951 18.035 2.896 18.035 Z\" fill=\"transparent\" stroke-width=\"2.179\" stroke=\"rgb(26,34,228)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 31.488 15.597 C 34.105 15.597 35.621 14.402 35.621 12.733 C 35.621 11.16 34.655 10.344 31.943 9.852 C 30.161 9.529 29.61 9.169 29.61 8.486 C 29.61 7.898 30.407 7.329 31.583 7.329 C 32.816 7.329 33.631 7.822 34.067 8.979 L 35.546 7.879 C 34.864 6.419 33.669 5.736 31.564 5.736 C 29.023 5.736 27.581 7.139 27.581 8.676 C 27.581 10.268 28.567 11.084 31.393 11.615 C 33.043 11.937 33.593 12.279 33.593 12.867 C 33.593 13.511 32.91 14.004 31.564 14.004 C 30.236 14.004 29.118 13.567 28.624 12.43 L 27.259 13.606 C 28.056 14.99 29.649 15.597 31.488 15.597 Z M 41.677 5.736 C 38.719 5.736 36.956 7.576 36.956 10.667 C 36.956 13.758 38.719 15.597 41.715 15.597 C 43.915 15.597 45.337 14.497 45.868 12.772 L 44.01 12.146 C 43.763 13.321 42.986 13.985 41.677 13.985 C 40.008 13.985 39.003 12.828 39.003 10.686 C 39.003 8.543 39.99 7.348 41.677 7.348 C 42.853 7.348 43.573 7.974 43.896 9.15 L 45.792 8.391 C 45.204 6.836 43.972 5.736 41.677 5.736 Z M 52.57 5.736 C 51.09 5.736 50.085 6.4 49.573 7.633 L 49.403 5.926 L 47.677 5.926 L 47.677 15.407 L 49.707 15.407 L 49.707 10.382 C 49.707 8.448 50.958 7.538 52.096 7.538 C 52.607 7.538 53.024 7.633 53.29 7.784 L 53.613 5.926 C 53.347 5.793 52.949 5.736 52.57 5.736 Z M 62.948 14.08 C 62.436 14.08 62.247 13.853 62.247 13.379 L 62.247 9.093 C 62.247 6.817 60.616 5.736 58.246 5.736 C 56.179 5.736 54.719 6.704 54.264 8.201 L 55.837 9.036 C 56.236 7.841 57.108 7.329 58.284 7.329 C 59.516 7.329 60.218 8.069 60.218 9.207 L 60.218 9.719 L 57.81 10.136 C 55.325 10.572 54.112 11.653 54.112 13.113 C 54.112 14.763 55.42 15.597 57.203 15.597 C 58.606 15.597 59.82 15.085 60.407 14.194 C 60.616 15.237 61.299 15.597 62.341 15.597 C 62.816 15.597 63.213 15.502 63.517 15.37 L 63.65 14.004 C 63.421 14.06 63.184 14.085 62.948 14.08 Z M 57.639 14.061 C 56.747 14.061 56.216 13.681 56.216 12.98 C 56.216 12.221 56.861 11.785 58.151 11.539 L 60.218 11.121 L 60.218 12.259 C 60.218 13.397 58.91 14.061 57.639 14.061 Z M 70.104 5.736 C 68.587 5.736 67.43 6.533 66.88 7.69 L 66.785 5.926 L 65.003 5.926 L 65.003 19.39 L 67.032 19.39 L 67.032 13.89 C 67.601 14.914 68.701 15.597 70.104 15.597 C 72.683 15.597 74.295 13.758 74.295 10.647 C 74.295 7.557 72.683 5.736 70.104 5.736 Z M 69.649 13.947 C 68.113 13.947 67.127 12.847 67.032 11.027 L 67.032 10.307 C 67.127 8.467 68.113 7.367 69.649 7.367 C 71.279 7.367 72.265 8.6 72.265 10.667 C 72.265 12.733 71.28 13.947 69.649 13.947 Z M 84.836 10.382 C 84.836 7.633 83.281 5.736 80.437 5.736 C 77.479 5.736 75.809 7.576 75.809 10.667 C 75.809 13.758 77.573 15.597 80.57 15.597 C 82.656 15.597 83.963 14.801 84.646 13.397 L 82.959 12.696 C 82.656 13.53 81.821 13.985 80.57 13.985 C 79.053 13.985 78.047 13.094 77.82 11.425 L 84.76 11.425 C 84.799 11.179 84.836 10.742 84.836 10.382 Z M 80.437 7.348 C 81.84 7.348 82.731 8.277 82.94 9.87 L 77.82 9.87 C 78.047 8.239 78.958 7.348 80.437 7.348 Z M 91.701 5.736 C 90.222 5.736 89.217 6.4 88.705 7.633 L 88.535 5.926 L 86.809 5.926 L 86.809 15.407 L 88.838 15.407 L 88.838 10.382 C 88.838 8.448 90.09 7.538 91.227 7.538 C 91.739 7.538 92.156 7.633 92.422 7.784 L 92.744 5.926 C 92.479 5.793 92.081 5.736 91.701 5.736 Z\" fill=\"rgb(9,10,58)\"></path><path d=\"M 102.284 14.08 C 101.772 14.08 101.582 13.853 101.582 13.379 L 101.582 9.093 C 101.582 6.817 99.951 5.736 97.581 5.736 C 95.514 5.736 94.054 6.704 93.599 8.201 L 95.173 9.036 C 95.571 7.841 96.443 7.329 97.619 7.329 C 98.852 7.329 99.553 8.069 99.553 9.207 L 99.553 9.719 L 97.145 10.136 C 94.661 10.572 93.447 11.653 93.447 13.113 C 93.447 14.763 94.756 15.597 96.538 15.597 C 97.941 15.597 99.155 15.085 99.743 14.194 C 99.951 15.237 100.634 15.597 101.677 15.597 C 102.151 15.597 102.55 15.502 102.853 15.37 L 102.985 14.004 C 102.756 14.06 102.52 14.085 102.284 14.08 Z M 96.974 14.061 C 96.083 14.061 95.552 13.681 95.552 12.98 C 95.552 12.221 96.197 11.785 97.486 11.539 L 99.553 11.121 L 99.553 12.259 C 99.553 13.397 98.244 14.061 96.974 14.061 Z M 109.439 5.736 C 107.921 5.736 106.765 6.533 106.215 7.69 L 106.12 5.926 L 104.338 5.926 L 104.338 19.39 L 106.367 19.39 L 106.367 13.89 C 106.936 14.914 108.036 15.597 109.439 15.597 C 112.018 15.597 113.63 13.758 113.63 10.647 C 113.63 7.557 112.018 5.736 109.439 5.736 Z M 108.984 13.947 C 107.447 13.947 106.461 12.847 106.367 11.027 L 106.367 10.307 C 106.461 8.467 107.447 7.367 108.984 7.367 C 110.615 7.367 111.601 8.6 111.601 10.667 C 111.601 12.733 110.615 13.947 108.984 13.947 Z M 116.719 4.333 C 117.591 4.333 118.065 3.859 118.065 3.062 C 118.065 2.266 117.591 1.81 116.719 1.81 C 115.847 1.81 115.353 2.266 115.353 3.062 C 115.353 3.859 115.847 4.333 116.719 4.333 Z M 117.724 5.926 L 115.695 5.926 L 115.695 15.407 L 117.724 15.407 Z\" fill=\"rgb(26,34,228)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ab98o9\",layoutDependency:layoutDependency,layoutId:\"uOub4huZf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118.519 20.148\" overflow=\"visible\"><path d=\"M 0 0 L 118.519 0 L 118.519 20.148 L 0 20.148 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-asru84\",layoutDependency:layoutDependency,layoutId:\"pLntznIA3\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.095 12.105\" overflow=\"visible\"><path d=\"M 0 12.105 L 7.069 12.105 C 8.135 12.105 9.167 11.524 9.684 10.588 C 10.232 9.651 10.232 8.491 9.684 7.554 C 9.136 6.618 8.135 6.037 7.069 6.037 L 3.551 6.037 C 2.455 6.065 1.429 5.497 0.872 4.552 C 0.323 3.604 0.323 2.434 0.872 1.485 C 1.429 0.541 2.455 -0.028 3.551 0.001 L 10.071 0.001\" fill=\"transparent\" stroke-width=\"2.179\" stroke=\"rgb(26,34,228)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ezuihs\",layoutDependency:layoutDependency,layoutId:\"MvotPMZ3N\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.946 11.976\" overflow=\"visible\"><path d=\"M 10.946 0.001 L 6.072 0.001 C 3.91 -0.032 1.9 1.103 0.811 2.97 C -0.286 4.842 -0.254 7.133 0.811 9.006 C 1.876 10.878 3.909 12.007 6.072 11.975 L 8.655 11.975\" fill=\"transparent\" stroke-width=\"2.179\" stroke=\"rgb(26,34,228)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-14i1xsy\",layoutDependency:layoutDependency,layoutId:\"reuSs_TSf\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.24 16.72\" overflow=\"visible\"><path d=\"M 5.873 16.72 L 10.747 16.72 C 12.331 16.723 13.852 16.095 14.972 14.974 C 16.093 13.854 16.721 12.333 16.717 10.749 C 16.717 7.456 14.039 4.777 10.747 4.777 L 8.164 4.777 M 15.493 3.422 C 16.113 3.435 16.691 3.112 17.005 2.577 C 17.318 2.042 17.318 1.38 17.005 0.845 C 16.691 0.311 16.113 -0.013 15.493 0 C 14.548 0 13.782 0.766 13.782 1.711 C 13.782 2.657 14.548 3.423 15.493 3.423 Z M 1.711 15.558 C 2.656 15.558 3.422 14.792 3.422 13.847 C 3.422 12.902 2.656 12.136 1.711 12.136 C 0.766 12.136 0 12.902 0 13.847 C 0 14.792 0.766 15.558 1.711 15.558 Z\" fill=\"transparent\" stroke-width=\"2.179\" stroke=\"rgb(26,34,228)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rwtlyu\",layoutDependency:layoutDependency,layoutId:\"BdfJfimLI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.844 11.942\" overflow=\"visible\"><path d=\"M 0 11.942 L 4.874 11.942 C 6.459 11.946 7.979 11.318 9.1 10.197 C 10.22 9.076 10.848 7.556 10.844 5.971 C 10.844 2.679 8.166 0 4.874 0 L 2.292 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sm7wt1\",layoutDependency:layoutDependency,layoutId:\"ZQ2MsX_Tz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.458 3.423\" overflow=\"visible\"><path d=\"M 1.711 3.422 C 2.331 3.435 2.909 3.112 3.223 2.577 C 3.536 2.042 3.536 1.38 3.223 0.845 C 2.909 0.311 2.331 -0.013 1.711 0 C 0.766 0 0 0.766 0 1.711 C 0 2.657 0.766 3.423 1.711 3.423 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17vqqvl\",layoutDependency:layoutDependency,layoutId:\"TITOXN39h\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.422 3.422\" overflow=\"visible\"><path d=\"M 1.711 3.422 C 2.656 3.422 3.422 2.656 3.422 1.711 C 3.422 0.766 2.656 0 1.711 0 C 0.766 0 0 0.766 0 1.711 C 0 2.656 0.766 3.422 1.711 3.422 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-mimmie\",layoutDependency:layoutDependency,layoutId:\"DhZYy4SoK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65.485 13.653\" overflow=\"visible\"><path d=\"M 4.229 9.861 C 6.846 9.861 8.362 8.666 8.362 6.997 C 8.362 5.424 7.396 4.608 4.684 4.116 C 2.901 3.793 2.351 3.433 2.351 2.75 C 2.351 2.161 3.148 1.593 4.324 1.593 C 5.556 1.593 6.372 2.086 6.807 3.243 L 8.287 2.143 C 7.604 0.683 6.41 0 4.304 0 C 1.764 0 0.322 1.403 0.322 2.939 C 0.322 4.532 1.308 5.347 4.134 5.879 C 5.784 6.201 6.334 6.542 6.334 7.13 C 6.334 7.775 5.651 8.268 4.304 8.268 C 2.977 8.268 1.859 7.831 1.365 6.694 L 0 7.87 C 0.796 9.254 2.39 9.861 4.229 9.861 Z M 14.418 0 C 11.46 0 9.696 1.839 9.696 4.93 C 9.696 8.021 11.459 9.861 14.456 9.861 C 16.656 9.861 18.078 8.761 18.609 7.036 L 16.75 6.41 C 16.504 7.585 15.727 8.249 14.418 8.249 C 12.749 8.249 11.744 7.092 11.744 4.95 C 11.744 2.807 12.73 1.612 14.418 1.612 C 15.593 1.612 16.314 2.238 16.636 3.413 L 18.533 2.655 C 17.945 1.099 16.713 0 14.418 0 Z M 25.31 0 C 23.831 0 22.826 0.664 22.314 1.896 L 22.144 0.19 L 20.418 0.19 L 20.418 9.671 L 22.447 9.671 L 22.447 4.646 C 22.447 2.712 23.699 1.801 24.836 1.801 C 25.348 1.801 25.765 1.896 26.031 2.048 L 26.353 0.19 C 26.088 0.056 25.69 0 25.31 0 Z M 35.689 8.344 C 35.177 8.344 34.988 8.116 34.988 7.642 L 34.988 3.356 C 34.988 1.081 33.357 0 30.987 0 C 28.92 0 27.459 0.967 27.004 2.465 L 28.578 3.299 C 28.976 2.105 29.849 1.593 31.024 1.593 C 32.257 1.593 32.959 2.333 32.959 3.47 L 32.959 3.982 L 30.55 4.399 C 28.066 4.836 26.853 5.916 26.853 7.377 C 26.853 9.027 28.161 9.861 29.944 9.861 C 31.347 9.861 32.561 9.349 33.148 8.458 C 33.357 9.501 34.04 9.861 35.081 9.861 C 35.557 9.861 35.954 9.766 36.258 9.633 L 36.391 8.268 C 36.161 8.323 35.925 8.349 35.689 8.344 Z M 30.379 8.324 C 29.488 8.324 28.957 7.945 28.957 7.244 C 28.957 6.485 29.601 6.049 30.892 5.803 L 32.959 5.385 L 32.959 6.523 C 32.959 7.661 31.65 8.324 30.379 8.324 Z M 42.844 0 C 41.327 0 40.17 0.796 39.621 1.953 L 39.526 0.19 L 37.744 0.19 L 37.744 13.653 L 39.773 13.653 L 39.773 8.154 C 40.341 9.178 41.441 9.861 42.844 9.861 C 45.424 9.861 47.036 8.021 47.036 4.911 C 47.036 1.821 45.424 0 42.844 0 Z M 42.39 8.211 C 40.853 8.211 39.867 7.111 39.773 5.29 L 39.773 4.57 C 39.867 2.73 40.853 1.631 42.39 1.631 C 44.02 1.631 45.006 2.864 45.006 4.93 C 45.006 6.997 44.021 8.211 42.39 8.211 Z M 57.576 4.646 C 57.576 1.896 56.022 0 53.178 0 C 50.219 0 48.55 1.839 48.55 4.93 C 48.55 8.021 50.314 9.861 53.31 9.861 C 55.396 9.861 56.704 9.064 57.387 7.661 L 55.699 6.959 C 55.396 7.794 54.561 8.249 53.31 8.249 C 51.793 8.249 50.788 7.358 50.561 5.689 L 57.501 5.689 C 57.539 5.442 57.576 5.006 57.576 4.646 Z M 53.178 1.612 C 54.581 1.612 55.472 2.541 55.681 4.134 L 50.561 4.134 C 50.788 2.503 51.699 1.612 53.178 1.612 Z M 64.442 0 C 62.963 0 61.958 0.664 61.446 1.896 L 61.276 0.19 L 59.55 0.19 L 59.55 9.671 L 61.579 9.671 L 61.579 4.646 C 61.579 2.712 62.83 1.801 63.968 1.801 C 64.48 1.801 64.897 1.896 65.163 2.048 L 65.485 0.19 C 65.219 0.056 64.821 0 64.442 0 Z\" fill=\"rgb(9,10,58)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-atadei\",layoutDependency:layoutDependency,layoutId:\"ziJEXw7c5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.362 9.861\" overflow=\"visible\"><path d=\"M 4.229 9.861 C 6.846 9.861 8.362 8.666 8.362 6.997 C 8.362 5.424 7.396 4.608 4.684 4.116 C 2.901 3.793 2.351 3.433 2.351 2.75 C 2.351 2.161 3.148 1.593 4.324 1.593 C 5.556 1.593 6.372 2.086 6.807 3.243 L 8.287 2.143 C 7.604 0.683 6.41 0 4.304 0 C 1.764 0 0.322 1.403 0.322 2.939 C 0.322 4.532 1.308 5.347 4.134 5.879 C 5.784 6.201 6.334 6.542 6.334 7.13 C 6.334 7.775 5.651 8.268 4.304 8.268 C 2.977 8.268 1.859 7.831 1.365 6.694 L 0 7.87 C 0.796 9.254 2.39 9.861 4.229 9.861 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zxx03w\",layoutDependency:layoutDependency,layoutId:\"g8TtaFfFa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.913 9.861\" overflow=\"visible\"><path d=\"M 4.721 0 C 1.764 0 0 1.839 0 4.93 C 0 8.021 1.763 9.861 4.759 9.861 C 6.959 9.861 8.381 8.761 8.913 7.036 L 7.054 6.41 C 6.807 7.585 6.03 8.249 4.721 8.249 C 3.053 8.249 2.047 7.092 2.047 4.95 C 2.047 2.807 3.034 1.612 4.721 1.612 C 5.897 1.612 6.618 2.238 6.94 3.413 L 8.836 2.655 C 8.249 1.099 7.016 0 4.721 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gjucs1\",layoutDependency:layoutDependency,layoutId:\"Y9026QNxt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.936 9.671\" overflow=\"visible\"><path d=\"M 4.893 0 C 3.413 0 2.408 0.664 1.896 1.896 L 1.726 0.19 L 0 0.19 L 0 9.671 L 2.03 9.671 L 2.03 4.646 C 2.03 2.712 3.281 1.801 4.419 1.801 C 4.93 1.801 5.347 1.896 5.613 2.048 L 5.936 0.19 C 5.67 0.056 5.272 0 4.893 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k2mqte\",layoutDependency:layoutDependency,layoutId:\"pBCXO08Ne\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.539 9.861\" overflow=\"visible\"><path d=\"M 8.836 8.344 C 8.324 8.344 8.136 8.116 8.136 7.642 L 8.136 3.356 C 8.136 1.081 6.504 0 4.134 0 C 2.067 0 0.607 0.967 0.152 2.465 L 1.725 3.299 C 2.124 2.105 2.996 1.593 4.172 1.593 C 5.404 1.593 6.106 2.333 6.106 3.47 L 6.106 3.982 L 3.698 4.399 C 1.213 4.836 0 5.916 0 7.377 C 0 9.027 1.308 9.861 3.091 9.861 C 4.494 9.861 5.708 9.349 6.296 8.458 C 6.504 9.501 7.187 9.861 8.229 9.861 C 8.704 9.861 9.101 9.766 9.405 9.633 L 9.539 8.268 C 9.309 8.323 9.073 8.349 8.836 8.344 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mis0g\",layoutDependency:layoutDependency,layoutId:\"jJm0krto7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.001 2.939\" overflow=\"visible\"><path d=\"M 1.422 2.939 C 0.531 2.939 0 2.56 0 1.859 C 0 1.1 0.644 0.664 1.935 0.418 L 4.001 0 L 4.001 1.138 C 4.001 2.276 2.693 2.939 1.422 2.939 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pi82wv\",layoutDependency:layoutDependency,layoutId:\"oxr8XkJyx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.292 13.653\" overflow=\"visible\"><path d=\"M 5.101 0 C 3.584 0 2.427 0.796 1.877 1.953 L 1.782 0.19 L 0 0.19 L 0 13.653 L 2.029 13.653 L 2.029 8.154 C 2.598 9.178 3.698 9.861 5.101 9.861 C 7.68 9.861 9.292 8.021 9.292 4.911 C 9.292 1.821 7.68 0 5.101 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nx59pp\",layoutDependency:layoutDependency,layoutId:\"mtS_T4UuC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.233 6.58\" overflow=\"visible\"><path d=\"M 2.617 6.58 C 1.081 6.58 0.095 5.48 0 3.659 L 0 2.939 C 0.095 1.099 1.081 0 2.617 0 C 4.247 0 5.233 1.233 5.233 3.299 C 5.233 5.366 4.248 6.58 2.617 6.58 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hy7it1\",layoutDependency:layoutDependency,layoutId:\"IzVZsL53S\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.027 9.861\" overflow=\"visible\"><path d=\"M 9.027 4.646 C 9.027 1.896 7.473 0 4.628 0 C 1.67 0 0 1.839 0 4.93 C 0 8.021 1.764 9.861 4.761 9.861 C 6.847 9.861 8.154 9.064 8.837 7.661 L 7.15 6.959 C 6.847 7.794 6.012 8.249 4.761 8.249 C 3.244 8.249 2.239 7.358 2.011 5.689 L 8.951 5.689 C 8.99 5.442 9.027 5.006 9.027 4.646 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rzdjum\",layoutDependency:layoutDependency,layoutId:\"EYMdBnQZv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.12 2.522\" overflow=\"visible\"><path d=\"M 2.617 0 C 4.02 0 4.911 0.929 5.12 2.522 L 0 2.522 C 0.227 0.891 1.138 0 2.617 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kqsh39\",layoutDependency:layoutDependency,layoutId:\"IfKqD3gKu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.936 9.671\" overflow=\"visible\"><path d=\"M 4.893 0 C 3.413 0 2.408 0.664 1.896 1.896 L 1.726 0.19 L 0 0.19 L 0 9.671 L 2.029 9.671 L 2.029 4.646 C 2.029 2.712 3.281 1.801 4.419 1.801 C 4.93 1.801 5.347 1.896 5.613 2.048 L 5.936 0.19 C 5.67 0.056 5.272 0 4.893 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-30x051\",layoutDependency:layoutDependency,layoutId:\"k3HwFeSxa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.618 17.579\" overflow=\"visible\"><path d=\"M 8.836 12.27 C 8.324 12.27 8.135 12.042 8.135 11.568 L 8.135 7.282 C 8.135 5.007 6.504 3.926 4.133 3.926 C 2.067 3.926 0.607 4.893 0.151 6.391 L 1.725 7.225 C 2.124 6.031 2.996 5.519 4.172 5.519 C 5.404 5.519 6.106 6.259 6.106 7.396 L 6.106 7.908 L 3.698 8.325 C 1.213 8.761 0 9.842 0 11.303 C 0 12.953 1.308 13.787 3.09 13.787 C 4.494 13.787 5.707 13.275 6.296 12.384 C 6.504 13.427 7.187 13.787 8.23 13.787 C 8.704 13.787 9.102 13.692 9.405 13.559 L 9.538 12.194 C 9.308 12.249 9.072 12.275 8.836 12.27 Z M 3.527 12.25 C 2.636 12.25 2.104 11.871 2.104 11.17 C 2.104 10.411 2.75 9.975 4.039 9.729 L 6.106 9.311 L 6.106 10.449 C 6.106 11.587 4.797 12.25 3.527 12.25 Z M 15.991 3.926 C 14.474 3.926 13.318 4.722 12.767 5.879 L 12.673 4.116 L 10.89 4.116 L 10.89 17.579 L 12.919 17.579 L 12.919 12.08 C 13.488 13.104 14.588 13.787 15.991 13.787 C 18.57 13.787 20.182 11.947 20.182 8.837 C 20.182 5.747 18.57 3.926 15.991 3.926 Z M 15.536 12.137 C 14 12.137 13.014 11.037 12.919 9.216 L 12.919 8.496 C 13.014 6.656 14 5.557 15.536 5.557 C 17.167 5.557 18.153 6.79 18.153 8.856 C 18.153 10.923 17.167 12.137 15.536 12.137 Z M 23.271 2.523 C 24.144 2.523 24.618 2.049 24.618 1.252 C 24.618 0.456 24.144 0 23.271 0 C 22.399 0 21.906 0.456 21.906 1.252 C 21.906 2.049 22.399 2.523 23.271 2.523 Z M 24.276 4.116 L 22.247 4.116 L 22.247 13.597 L 24.276 13.597 Z\" fill=\"rgb(26,34,228)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10iqgrk\",layoutDependency:layoutDependency,layoutId:\"GKCYMx47X\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.538 9.861\" overflow=\"visible\"><path d=\"M 8.836 8.344 C 8.324 8.344 8.135 8.116 8.135 7.642 L 8.135 3.356 C 8.135 1.081 6.504 0 4.133 0 C 2.067 0 0.607 0.967 0.151 2.465 L 1.725 3.299 C 2.124 2.105 2.996 1.593 4.172 1.593 C 5.404 1.593 6.106 2.333 6.106 3.47 L 6.106 3.982 L 3.698 4.399 C 1.213 4.836 0 5.916 0 7.377 C 0 9.027 1.308 9.861 3.09 9.861 C 4.494 9.861 5.707 9.349 6.296 8.458 C 6.504 9.501 7.187 9.861 8.23 9.861 C 8.704 9.861 9.102 9.766 9.405 9.633 L 9.538 8.268 C 9.308 8.323 9.072 8.349 8.836 8.344 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jsflqb\",layoutDependency:layoutDependency,layoutId:\"AYYK7URWf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.001 2.939\" overflow=\"visible\"><path d=\"M 1.422 2.939 C 0.531 2.939 0 2.56 0 1.859 C 0 1.1 0.645 0.664 1.934 0.418 L 4.001 0 L 4.001 1.138 C 4.001 2.276 2.693 2.939 1.422 2.939 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1483pob\",layoutDependency:layoutDependency,layoutId:\"TDue2bcUw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.292 13.653\" overflow=\"visible\"><path d=\"M 5.101 0 C 3.584 0 2.427 0.796 1.877 1.953 L 1.782 0.19 L 0 0.19 L 0 13.653 L 2.029 13.653 L 2.029 8.154 C 2.598 9.178 3.698 9.861 5.101 9.861 C 7.68 9.861 9.292 8.021 9.292 4.911 C 9.292 1.821 7.68 0 5.101 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18x51cz\",layoutDependency:layoutDependency,layoutId:\"OQExtYKm3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.234 6.58\" overflow=\"visible\"><path d=\"M 2.617 6.58 C 1.081 6.58 0.095 5.48 0 3.659 L 0 2.939 C 0.095 1.099 1.081 0 2.617 0 C 4.248 0 5.234 1.233 5.234 3.299 C 5.234 5.366 4.248 6.58 2.617 6.58 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ov4j0a\",layoutDependency:layoutDependency,layoutId:\"gsNTX_Akd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.712 2.523\" overflow=\"visible\"><path d=\"M 1.365 2.523 C 2.238 2.523 2.712 2.049 2.712 1.252 C 2.712 0.456 2.238 0 1.365 0 C 0.493 0 0 0.456 0 1.252 C 0 2.049 0.493 2.523 1.365 2.523 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xnpkkv\",layoutDependency:layoutDependency,layoutId:\"yStz4f2nz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.029 9.481\" overflow=\"visible\"><path d=\"M 2.029 0 L 0 0 L 0 9.481 L 2.029 9.481 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.seam.co/latest\",motionChild:true,nodeId:\"ya01VSORt\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-69tjfl framer-aoqboz\",\"data-framer-name\":\"Seam\",layoutDependency:layoutDependency,layoutId:\"ya01VSORt\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-14mj1nn\",layoutDependency:layoutDependency,layoutId:\"irQDw2SPL\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71.012 17.887\" overflow=\"visible\"><g><path d=\"M 0 0 L 71.012 0 L 71.012 17.887 L 0 17.887 Z\" fill=\"transparent\"></path><g transform=\"translate(2.325 0.894)\"><path d=\"M 5.609 3.759 L 4.93 3.025 C 4.054 2.06 2.569 1.898 1.388 2.667 M 1.388 2.667 C -0.257 3.741 -0.526 6.566 1.048 8.249 L 5.073 12.559 C 5.448 12.953 6.039 13.024 6.504 12.738 L 7.953 11.808 C 8.078 11.727 8.161 11.593 8.179 11.445 C 8.196 11.296 8.146 11.147 8.042 11.039 L 3.803 6.496 C 3.338 5.995 3.427 5.172 4.018 4.796 L 5.627 3.741 L 8.561 6.871 C 8.937 7.265 9.527 7.336 9.974 7.05 L 12.264 5.566 C 12.997 5.1 13.122 4.081 12.514 3.436 L 10.832 1.648 C 9.098 -0.195 6.289 -0.534 4.178 0.843 L 1.388 2.667 Z\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 11.404 6.12 L 12.21 6.978 C 13.98 8.874 13.605 11.915 11.422 13.328 L 8.238 15.403 C 6.471 16.543 4.141 16.249 2.712 14.706 L 0.458 12.29 C 0.177 11.99 0.044 11.58 0.096 11.172 C 0.148 10.764 0.379 10.4 0.726 10.18 L 2.05 9.321\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 8.024 11.039 L 8.382 11.432 C 9.759 12.917 9.098 15.063 7.541 15.779\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g><path d=\"M 58.282 13.648 L 54.794 13.648 L 54.794 5.706 C 54.794 5.24 54.794 4.758 54.776 4.257 L 58.245 4.257 L 58.245 5.116 L 58.264 5.116 C 58.8 4.507 59.73 3.953 61.143 3.953 C 62.396 3.953 63.326 4.436 63.916 5.294 L 63.952 5.294 C 64.453 4.74 65.436 3.953 67.279 3.953 C 69.658 3.953 70.964 5.419 70.964 7.834 L 70.964 13.648 L 67.475 13.648 L 67.475 8.514 C 67.475 7.548 67.046 6.815 66.062 6.815 C 65.061 6.815 64.614 7.602 64.614 8.335 L 64.614 13.648 L 61.143 13.648 L 61.143 8.514 C 61.143 7.548 60.714 6.815 59.73 6.815 C 58.729 6.815 58.282 7.602 58.282 8.335 Z M 46.687 13.863 C 44.022 13.863 42.126 11.645 42.126 8.908 C 42.126 6.135 43.914 3.935 46.776 3.935 C 48.046 3.935 49.101 4.382 49.673 5.043 L 49.692 5.043 L 49.692 4.258 L 53.108 4.258 L 53.108 13.648 L 49.674 13.648 L 49.674 12.736 L 49.656 12.736 C 49.119 13.326 48.01 13.863 46.687 13.863 Z M 47.76 10.929 C 48.994 10.929 49.763 10.052 49.763 8.907 C 49.763 7.816 48.994 6.886 47.76 6.886 C 46.525 6.886 45.757 7.816 45.757 8.907 C 45.757 10.052 46.525 10.929 47.76 10.929 Z M 36.493 13.952 C 33.38 13.952 31.234 11.984 31.234 8.89 C 31.234 5.992 33.363 3.935 36.421 3.935 C 39.516 3.935 41.358 5.956 41.358 8.889 C 41.358 9.14 41.34 9.515 41.322 9.784 L 34.454 9.784 C 34.578 10.732 35.366 11.358 36.618 11.358 C 38.031 11.358 38.853 10.625 39.372 9.999 L 41.483 11.769 C 40.607 12.789 38.961 13.952 36.493 13.952 Z M 34.507 7.709 L 38.084 7.709 C 38.031 6.779 37.351 6.188 36.35 6.188 C 35.294 6.188 34.615 6.797 34.507 7.709 Z M 26.223 13.648 L 22.216 13.648 L 22.216 11.126 L 26.24 11.126 C 26.687 11.126 26.992 11.072 26.992 10.714 C 26.992 10.267 26.598 10.285 25.739 10.106 L 24.863 9.927 C 23.039 9.551 22.18 8.782 22.18 7.101 C 22.18 6.117 22.484 5.455 23.057 4.972 C 23.682 4.454 24.648 4.257 26.169 4.257 L 29.961 4.257 L 29.835 6.779 L 26.437 6.779 C 25.99 6.779 25.757 6.832 25.757 7.137 C 25.757 7.512 26.079 7.53 26.92 7.709 L 27.814 7.906 C 29.532 8.282 30.605 8.943 30.605 10.66 C 30.605 11.715 30.247 12.431 29.657 12.878 C 28.852 13.487 27.618 13.648 26.222 13.648 Z\" fill=\"rgb(1,6,21)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e9iq6r\",layoutDependency:layoutDependency,layoutId:\"aHkwDhvQN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71.012 17.887\" overflow=\"visible\"><path d=\"M 0 0 L 71.012 0 L 71.012 17.887 L 0 17.887 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1f313wt\",layoutDependency:layoutDependency,layoutId:\"JMubA7vEE\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.33 16.094\" overflow=\"visible\"><g><path d=\"M 5.609 3.759 L 4.93 3.025 C 4.054 2.06 2.569 1.898 1.388 2.667 M 1.388 2.667 C -0.257 3.741 -0.526 6.566 1.048 8.249 L 5.073 12.559 C 5.448 12.953 6.039 13.024 6.504 12.738 L 7.953 11.808 C 8.078 11.727 8.161 11.593 8.179 11.445 C 8.196 11.296 8.146 11.147 8.042 11.039 L 3.803 6.496 C 3.338 5.995 3.427 5.172 4.018 4.796 L 5.627 3.741 L 8.561 6.871 C 8.937 7.265 9.527 7.336 9.974 7.05 L 12.264 5.566 C 12.997 5.1 13.122 4.081 12.514 3.436 L 10.832 1.648 C 9.098 -0.195 6.289 -0.534 4.178 0.843 L 1.388 2.667 Z\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 11.404 6.12 L 12.21 6.978 C 13.98 8.874 13.605 11.915 11.422 13.328 L 8.238 15.403 C 6.471 16.543 4.141 16.249 2.712 14.706 L 0.458 12.29 C 0.177 11.99 0.044 11.58 0.096 11.172 C 0.148 10.764 0.379 10.4 0.726 10.18 L 2.05 9.321\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 8.024 11.039 L 8.382 11.432 C 9.759 12.917 9.098 15.063 7.541 15.779\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-bmzc02\",layoutDependency:layoutDependency,layoutId:\"tLjZ4FDqs\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.902 12.912\" overflow=\"visible\"><path d=\"M 5.609 3.759 L 4.93 3.025 C 4.054 2.06 2.569 1.898 1.388 2.667 M 1.388 2.667 C -0.257 3.741 -0.526 6.566 1.048 8.249 L 5.073 12.559 C 5.448 12.953 6.039 13.024 6.504 12.738 L 7.953 11.808 C 8.078 11.727 8.161 11.593 8.179 11.445 C 8.196 11.296 8.146 11.147 8.042 11.039 L 3.803 6.496 C 3.338 5.995 3.427 5.172 4.018 4.796 L 5.627 3.741 L 8.561 6.871 C 8.937 7.265 9.527 7.336 9.974 7.05 L 12.264 5.566 C 12.997 5.1 13.122 4.081 12.514 3.436 L 10.832 1.648 C 9.098 -0.195 6.289 -0.534 4.178 0.843 L 1.388 2.667 Z\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2ryxez\",layoutDependency:layoutDependency,layoutId:\"y_2Vhd01Z\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.221 1.578\" overflow=\"visible\"><path d=\"M 4.221 1.578 L 3.541 0.844 C 2.665 -0.122 1.18 -0.283 0 0.486\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s48emd\",layoutDependency:layoutDependency,layoutId:\"h9vSmmD7Q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.902 12.912\" overflow=\"visible\"><path d=\"M 1.388 2.667 C -0.257 3.741 -0.526 6.566 1.048 8.249 L 5.073 12.559 C 5.448 12.953 6.039 13.024 6.504 12.738 L 7.953 11.808 C 8.078 11.727 8.161 11.593 8.179 11.445 C 8.196 11.296 8.146 11.147 8.042 11.039 L 3.803 6.496 C 3.338 5.995 3.427 5.172 4.018 4.796 L 5.627 3.741 L 8.561 6.871 C 8.937 7.265 9.527 7.336 9.974 7.05 L 12.264 5.566 C 12.997 5.1 13.122 4.081 12.514 3.436 L 10.832 1.648 C 9.098 -0.195 6.289 -0.534 4.178 0.843 L 1.388 2.667 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c2g58b\",layoutDependency:layoutDependency,layoutId:\"Gi0yIx7vp\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.245 9.975\" overflow=\"visible\"><path d=\"M 11.319 0 L 12.125 0.859 C 13.895 2.755 13.52 5.795 11.337 7.208 L 8.153 9.283 C 6.386 10.423 4.056 10.129 2.627 8.586 L 0.373 6.17 C 0.092 5.87 -0.041 5.46 0.011 5.052 C 0.063 4.644 0.294 4.281 0.641 4.06 L 1.965 3.201\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hbcgws\",layoutDependency:layoutDependency,layoutId:\"QEU_u09ds\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.59 4.74\" overflow=\"visible\"><path d=\"M 0.483 0 L 0.841 0.393 C 2.218 1.878 1.556 4.024 0 4.74\" fill=\"transparent\" stroke-width=\"2.277\" stroke=\"rgb(1,6,21)\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-ma9b8i\",layoutDependency:layoutDependency,layoutId:\"dHJN2WKnW\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48.784 10.017\" overflow=\"visible\"><path d=\"M 36.101 9.712 L 32.614 9.712 L 32.614 1.771 C 32.614 1.305 32.614 0.823 32.596 0.322 L 36.065 0.322 L 36.065 1.18 L 36.083 1.18 C 36.62 0.572 37.55 0.017 38.963 0.017 C 40.215 0.017 41.146 0.501 41.736 1.359 L 41.772 1.359 C 42.273 0.805 43.256 0.017 45.099 0.017 C 47.478 0.017 48.784 1.484 48.784 3.899 L 48.784 9.712 L 45.295 9.712 L 45.295 4.579 C 45.295 3.613 44.866 2.88 43.882 2.88 C 42.881 2.88 42.433 3.667 42.433 4.4 L 42.433 9.712 L 38.963 9.712 L 38.963 4.579 C 38.963 3.613 38.534 2.88 37.55 2.88 C 36.549 2.88 36.101 3.667 36.101 4.4 Z M 24.507 9.927 C 21.842 9.927 19.946 7.709 19.946 4.973 C 19.946 2.2 21.734 0 24.596 0 C 25.866 0 26.921 0.447 27.493 1.108 L 27.511 1.108 L 27.511 0.322 L 30.928 0.322 L 30.928 9.713 L 27.494 9.713 L 27.494 8.801 L 27.476 8.801 C 26.939 9.391 25.83 9.928 24.507 9.928 Z M 25.58 6.994 C 26.814 6.994 27.583 6.117 27.583 4.972 C 27.583 3.881 26.814 2.951 25.58 2.951 C 24.345 2.951 23.577 3.881 23.577 4.972 C 23.577 6.117 24.345 6.994 25.58 6.994 Z M 14.313 10.017 C 11.2 10.017 9.053 8.049 9.053 4.955 C 9.053 2.057 11.183 0 14.241 0 C 17.336 0 19.178 2.021 19.178 4.954 C 19.178 5.205 19.16 5.58 19.142 5.849 L 12.273 5.849 C 12.398 6.797 13.186 7.423 14.438 7.423 C 15.851 7.423 16.673 6.69 17.192 6.064 L 19.303 7.834 C 18.427 8.854 16.781 10.017 14.313 10.017 Z M 12.327 3.774 L 15.904 3.774 C 15.851 2.844 15.171 2.253 14.17 2.253 C 13.114 2.253 12.434 2.862 12.327 3.774 Z M 4.043 9.712 L 0.035 9.712 L 0.035 7.191 L 4.06 7.191 C 4.507 7.191 4.812 7.137 4.812 6.779 C 4.812 6.331 4.418 6.349 3.559 6.171 L 2.683 5.992 C 0.859 5.616 0 4.847 0 3.166 C 0 2.182 0.304 1.52 0.877 1.037 C 1.502 0.519 2.468 0.322 3.989 0.322 L 7.781 0.322 L 7.655 2.844 L 4.257 2.844 C 3.81 2.844 3.577 2.897 3.577 3.201 C 3.577 3.577 3.899 3.595 4.74 3.774 L 5.634 3.971 C 7.352 4.346 8.425 5.008 8.425 6.725 C 8.425 7.78 8.067 8.496 7.477 8.943 C 6.672 9.551 5.437 9.712 4.042 9.712 Z\" fill=\"rgb(1,6,21)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yytpt0\",layoutDependency:layoutDependency,layoutId:\"kgNJqysY8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.188 9.695\" overflow=\"visible\"><path d=\"M 3.506 9.695 L 0.018 9.695 L 0.018 1.753 C 0.018 1.288 0.018 0.805 0 0.304 L 3.47 0.304 L 3.47 1.163 L 3.488 1.163 C 4.025 0.555 4.955 0 6.367 0 C 7.62 0 8.55 0.483 9.14 1.342 L 9.176 1.342 C 9.677 0.788 10.66 0 12.503 0 C 14.882 0 16.188 1.467 16.188 3.882 L 16.188 9.695 L 12.699 9.695 L 12.699 4.561 C 12.699 3.595 12.27 2.862 11.287 2.862 C 10.285 2.862 9.838 3.649 9.838 4.382 L 9.838 9.695 L 6.367 9.695 L 6.367 4.561 C 6.367 3.595 5.939 2.862 4.955 2.862 C 3.953 2.862 3.506 3.649 3.506 4.382 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fi3w1r\",layoutDependency:layoutDependency,layoutId:\"L3Ka1X6yC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.982 9.928\" overflow=\"visible\"><path d=\"M 4.561 9.927 C 1.896 9.927 0 7.709 0 4.973 C 0 2.2 1.789 0 4.65 0 C 5.921 0 6.976 0.447 7.548 1.108 L 7.566 1.108 L 7.566 0.322 L 10.982 0.322 L 10.982 9.713 L 7.548 9.713 L 7.548 8.801 L 7.53 8.801 C 6.994 9.391 5.885 9.928 4.561 9.928 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v52xrz\",layoutDependency:layoutDependency,layoutId:\"AF4hNm2UX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.006 4.043\" overflow=\"visible\"><path d=\"M 2.003 4.043 C 3.237 4.043 4.006 3.166 4.006 2.021 C 4.006 0.93 3.237 0 2.003 0 C 0.768 0 0 0.93 0 2.021 C 0 3.166 0.768 4.043 2.003 4.043 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uf59ty\",layoutDependency:layoutDependency,layoutId:\"yGprWvzcC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.25 10.017\" overflow=\"visible\"><path d=\"M 5.259 10.017 C 2.147 10.017 0 8.049 0 4.955 C 0 2.057 2.129 0 5.188 0 C 8.282 0 10.124 2.021 10.124 4.954 C 10.124 5.205 10.106 5.58 10.089 5.849 L 3.22 5.849 C 3.345 6.797 4.132 7.423 5.385 7.423 C 6.797 7.423 7.62 6.69 8.139 6.064 L 10.25 7.834 C 9.373 8.854 7.727 10.017 5.259 10.017 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qrp7vz\",layoutDependency:layoutDependency,layoutId:\"z2pGIlCbh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.577 1.521\" overflow=\"visible\"><path d=\"M 0 1.521 L 3.577 1.521 C 3.524 0.59 2.844 0 1.843 0 C 0.787 0 0.107 0.608 0 1.52 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-miny6i\",layoutDependency:layoutDependency,layoutId:\"ZhOPi5KOQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.425 9.391\" overflow=\"visible\"><path d=\"M 4.043 9.391 L 0.035 9.391 L 0.035 6.869 L 4.06 6.869 C 4.507 6.869 4.812 6.815 4.812 6.457 C 4.812 6.01 4.418 6.028 3.559 5.849 L 2.683 5.67 C 0.859 5.294 0 4.525 0 2.844 C 0 1.86 0.304 1.198 0.877 0.715 C 1.502 0.197 2.468 0 3.989 0 L 7.781 0 L 7.655 2.522 L 4.257 2.522 C 3.81 2.522 3.577 2.575 3.577 2.88 C 3.577 3.255 3.899 3.274 4.74 3.452 L 5.634 3.649 C 7.352 4.025 8.425 4.686 8.425 6.403 C 8.425 7.458 8.067 8.174 7.477 8.621 C 6.672 9.23 5.437 9.391 4.042 9.391 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.sola.security/\",motionChild:true,nodeId:\"Pu3or61Nr\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-m6a20y framer-aoqboz\",\"data-framer-name\":\"Sola\",layoutDependency:layoutDependency,layoutId:\"Pu3or61Nr\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-570j9e\",layoutDependency:layoutDependency,layoutId:\"DrXtONp19\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63.771 24\" overflow=\"visible\"><g><path d=\"M 0 0 L 63.771 0 L 63.771 24 L 0 24 Z\" fill=\"transparent\"></path><path d=\"M 17.37 10.921 C 18.033 10.511 18.48 9.828 18.591 9.057 C 18.699 9.239 18.758 9.448 18.758 9.667 L 18.758 17.301 C 18.758 17.711 18.549 18.093 18.202 18.312 L 12.588 21.883 C 11.791 22.389 10.75 21.816 10.75 20.871 L 10.75 15.017 Z M 2.787 7.804 C 2.144 7.4 1.713 6.734 1.607 5.982 C 1.504 6.16 1.448 6.365 1.448 6.578 L 1.448 14.041 C 1.448 14.443 1.649 14.816 1.982 15.03 L 7.4 18.52 C 8.169 19.016 9.173 18.456 9.173 17.532 L 9.173 11.809 L 2.787 7.805 Z\" fill=\"rgb(2,6,23)\"></path><path d=\"M 10.75 6.097 C 10.75 5.152 11.791 4.579 12.588 5.085 L 16.879 7.814 L 18.591 9.057 C 18.893 9.615 17.155 9.363 16.616 9.697 L 10.75 13.328 L 10.75 6.096 Z M 9.173 3.104 C 9.173 2.189 8.159 1.634 7.384 2.124 L 3.203 4.768 L 1.607 5.982 C 1.312 6.523 2.933 6.269 3.459 6.592 L 9.173 10.109 L 9.173 3.104 Z\" fill=\"rgb(2,6,23)\"></path><path d=\"M 19.431 7.897 C 19.589 8.013 19.723 8.159 19.823 8.328 C 20.062 8.733 20.188 9.196 20.188 9.667 L 20.188 17.301 C 20.188 18.202 19.729 19.04 18.969 19.522 L 18.202 18.312 C 18.548 18.093 18.758 17.711 18.758 17.301 L 18.758 9.667 C 18.758 9.448 18.698 9.239 18.591 9.057 L 16.878 7.814 L 12.587 5.085 C 11.791 4.579 10.749 5.152 10.749 6.097 L 10.749 13.328 L 16.615 9.698 C 16.633 9.687 16.651 9.677 16.67 9.668 C 16.732 9.638 16.807 9.613 16.889 9.592 C 16.997 9.564 17.12 9.544 17.247 9.529 C 17.382 9.512 17.524 9.499 17.663 9.486 C 17.744 9.479 17.824 9.471 17.905 9.463 C 18.071 9.446 18.225 9.425 18.347 9.394 C 18.415 9.378 18.481 9.352 18.54 9.315 C 18.376 9.983 17.955 10.56 17.37 10.921 L 10.75 15.018 L 10.75 20.872 C 10.75 21.816 11.791 22.389 12.588 21.883 L 18.202 18.312 L 18.969 19.522 L 13.354 23.092 C 11.606 24.204 9.319 22.946 9.319 20.872 L 9.319 19.783 C 8.485 20.283 7.438 20.261 6.626 19.726 L 1.209 16.236 C 0.464 15.755 0.015 14.928 0.016 14.041 L 0.016 6.579 C 0.016 6.109 0.142 5.655 0.372 5.261 C 0.467 5.098 0.592 4.956 0.741 4.843 L 2.336 3.627 C 2.37 3.602 2.404 3.579 2.439 3.557 L 6.619 0.912 C 8.336 -0.171 10.604 1.046 10.604 3.104 L 10.604 3.835 C 11.453 3.323 12.52 3.339 13.354 3.876 L 17.645 6.604 C 17.67 6.62 17.695 6.636 17.718 6.653 Z M 9.173 3.104 C 9.173 2.189 8.159 1.634 7.383 2.124 L 3.203 4.767 L 1.607 5.982 C 1.502 6.163 1.447 6.369 1.447 6.579 L 1.447 14.042 C 1.447 14.443 1.649 14.816 1.982 15.031 L 7.4 18.521 C 8.168 19.016 9.173 18.456 9.173 17.532 L 9.173 11.809 L 2.786 7.805 C 2.22 7.45 1.814 6.888 1.657 6.238 C 1.72 6.274 1.789 6.3 1.86 6.313 C 2.016 6.347 2.176 6.369 2.336 6.38 L 2.464 6.391 C 2.628 6.405 2.798 6.42 2.955 6.444 C 3.071 6.461 3.18 6.483 3.275 6.512 C 3.345 6.534 3.407 6.56 3.459 6.592 L 9.173 10.109 L 9.173 3.104 Z\" fill=\"rgb(2,6,23)\"></path><path d=\"M 1.192 16.319 C 0.445 15.835 0 15 0 14.112 L 0 6.601 C 0 6.136 0.122 5.679 0.355 5.276 C 0.45 5.113 0.576 4.97 0.725 4.855 L 2.32 3.633 C 2.353 3.607 2.388 3.583 2.423 3.561 L 6.601 0.902 C 8.318 -0.191 10.585 1.035 10.585 3.106 L 10.585 15.094 C 10.585 17.24 10.731 19.474 9.3 19.888 L 9.297 19.889 C 7.87 20.303 7.5 20.409 6.609 19.831 Z M 7.365 2.12 L 3.186 4.779 L 1.592 6.003 C 1.488 6.182 1.431 6.388 1.431 6.602 L 1.431 14.112 C 1.43 14.513 1.631 14.887 1.966 15.106 L 7.382 18.619 C 8.151 19.117 9.155 18.553 9.155 17.624 L 9.155 11.866 L 2.77 7.836 C 2.202 7.478 1.797 6.912 1.641 6.259 C 1.703 6.296 1.771 6.322 1.843 6.337 C 1.999 6.37 2.158 6.392 2.318 6.403 L 2.447 6.414 C 2.611 6.427 2.775 6.445 2.938 6.467 C 3.046 6.482 3.153 6.505 3.258 6.536 C 3.323 6.555 3.385 6.582 3.443 6.616 L 9.155 10.155 L 9.155 3.107 C 9.155 2.186 8.141 1.627 7.365 2.121 Z\" fill=\"rgb(2,6,23)\"></path><path d=\"M 13.406 22.995 C 12.515 23.573 12.145 23.467 10.718 23.053 L 10.714 23.052 C 9.284 22.639 9.429 20.404 9.429 18.258 L 9.429 6.271 C 9.429 4.2 11.698 2.975 13.413 4.066 L 17.593 6.725 C 17.628 6.747 17.663 6.771 17.696 6.797 L 19.29 8.019 C 19.439 8.134 19.565 8.277 19.66 8.44 C 19.893 8.844 20.016 9.301 20.015 9.767 L 20.015 17.275 C 20.018 18.166 19.569 18.996 18.824 19.483 Z M 12.649 5.285 C 11.875 4.792 10.86 5.35 10.86 6.271 L 10.86 13.319 L 16.573 9.78 C 16.624 9.749 16.687 9.722 16.757 9.7 C 16.852 9.67 16.961 9.648 17.078 9.631 C 17.234 9.608 17.403 9.592 17.568 9.578 C 17.63 9.573 17.691 9.567 17.753 9.561 C 17.894 9.55 18.034 9.53 18.172 9.501 C 18.243 9.486 18.312 9.46 18.374 9.423 C 18.346 9.54 18.309 9.655 18.265 9.766 C 18.065 10.275 17.708 10.708 17.246 11 L 10.86 15.029 L 10.86 20.788 C 10.86 21.717 11.864 22.281 12.633 21.782 L 18.049 18.271 C 18.383 18.054 18.584 17.679 18.584 17.276 L 18.584 9.766 C 18.584 9.552 18.527 9.346 18.424 9.167 L 16.829 7.944 L 12.65 5.285 Z\" fill=\"rgb(2,6,23)\"></path><path d=\"M 17.37 10.921 C 18.033 10.511 18.48 9.828 18.591 9.056 C 18.699 9.239 18.758 9.448 18.758 9.667 L 18.758 17.301 C 18.758 17.711 18.549 18.092 18.202 18.312 L 12.588 21.883 C 11.791 22.389 10.75 21.816 10.75 20.871 L 10.75 15.017 Z\" fill=\"rgb(46,129,229)\"></path><path d=\"M 2.787 7.804 C 2.144 7.4 1.713 6.734 1.607 5.982 C 1.503 6.164 1.448 6.369 1.448 6.579 L 1.448 14.042 C 1.448 14.443 1.649 14.816 1.982 15.031 L 7.4 18.521 C 8.169 19.016 9.173 18.456 9.173 17.532 L 9.173 11.809 L 2.787 7.805 Z\" fill=\"rgb(160,181,236)\"></path><path d=\"M 10.75 6.097 C 10.75 5.152 11.791 4.579 12.588 5.085 L 14.733 6.45 L 16.879 7.814 L 17.038 8.108 C 17.34 8.666 17.155 9.363 16.616 9.698 L 10.75 13.328 Z M 9.173 3.104 C 9.173 2.189 8.159 1.634 7.384 2.124 L 5.292 3.446 L 3.203 4.767 L 3.048 5.052 C 2.753 5.593 2.934 6.27 3.459 6.592 L 9.173 10.109 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 35.495 8.929 L 30.553 8.929 C 29.821 8.915 29.139 9.298 28.769 9.93 C 28.399 10.561 28.399 11.344 28.769 11.975 C 29.139 12.607 29.821 12.99 30.553 12.976 L 33.472 12.976 C 34.59 12.976 35.496 13.883 35.496 15.001 C 35.496 16.119 34.59 17.025 33.472 17.025 L 28.53 17.025 M 38.916 12.976 C 38.916 15.212 40.728 17.025 42.964 17.025 C 45.199 17.025 47.012 15.212 47.012 12.976 C 47.012 10.741 45.199 8.928 42.964 8.928 C 40.728 8.928 38.916 10.741 38.916 12.976 Z M 50.431 4.975 L 50.619 17.025 M 62.135 17.025 L 62.135 12.976 C 62.135 10.741 60.323 8.929 58.087 8.929 C 55.852 8.929 54.04 10.742 54.04 12.977 C 54.04 15.212 55.852 17.025 58.087 17.025 L 59.244 17.025\" fill=\"transparent\" stroke-width=\"3\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xze6qj\",layoutDependency:layoutDependency,layoutId:\"Ovs_hjTb7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63.771 24\" overflow=\"visible\"><path d=\"M 0 0 L 63.771 0 L 63.771 24 L 0 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-q5zwfe\",layoutDependency:layoutDependency,layoutId:\"imTYqZGg0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.31 16.089\" overflow=\"visible\"><path d=\"M 15.922 4.939 C 16.585 4.529 17.033 3.846 17.144 3.075 C 17.251 3.256 17.31 3.466 17.31 3.684 L 17.31 11.318 C 17.31 11.728 17.101 12.11 16.755 12.33 L 11.14 15.9 C 10.343 16.407 9.302 15.834 9.302 14.889 L 9.302 9.035 Z M 1.339 1.822 C 0.697 1.418 0.265 0.751 0.16 0 C 0.057 0.178 0 0.383 0 0.596 L 0 8.059 C 0 8.46 0.202 8.833 0.535 9.048 L 5.953 12.538 C 6.721 13.034 7.726 12.474 7.726 11.55 L 7.726 5.827 L 1.339 1.823 Z\" fill=\"rgb(2,6,23)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-166o7nh\",layoutDependency:layoutDependency,layoutId:\"idjThLkoi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.008 13.014\" overflow=\"visible\"><path d=\"M 6.62 1.864 C 7.283 1.454 7.73 0.771 7.841 0 C 7.949 0.182 8.008 0.392 8.008 0.61 L 8.008 8.244 C 8.008 8.654 7.799 9.036 7.452 9.255 L 1.838 12.826 C 1.041 13.332 0 12.759 0 11.814 L 0 5.96 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15wy3uo\",layoutDependency:layoutDependency,layoutId:\"YOM29K9fr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.726 12.723\" overflow=\"visible\"><path d=\"M 1.339 1.822 C 0.697 1.418 0.265 0.751 0.16 0 C 0.057 0.178 0 0.383 0 0.596 L 0 8.059 C 0 8.46 0.202 8.833 0.535 9.048 L 5.953 12.538 C 6.721 13.034 7.726 12.474 7.726 11.55 L 7.726 5.827 L 1.339 1.823 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-b7ekcg\",layoutDependency:layoutDependency,layoutId:\"IT6ViDM2o\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.054 11.386\" overflow=\"visible\"><path d=\"M 9.178 4.155 C 9.178 3.21 10.219 2.638 11.016 3.144 L 15.307 5.872 L 17.019 7.115 C 17.322 7.674 15.583 7.422 15.044 7.756 L 9.178 11.386 L 9.178 4.154 Z M 7.602 1.163 C 7.602 0.247 6.588 -0.307 5.812 0.182 L 1.631 2.826 L 0.036 4.041 C -0.259 4.582 1.362 4.327 1.887 4.651 L 7.601 8.167 L 7.601 1.163 Z\" fill=\"rgb(2,6,23)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w9kucz\",layoutDependency:layoutDependency,layoutId:\"o2PDQENPV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.876 8.431\" overflow=\"visible\"><path d=\"M 0 1.2 C 0 0.255 1.041 -0.318 1.838 0.188 L 6.129 2.917 L 7.841 4.16 C 8.144 4.718 6.405 4.467 5.866 4.801 L 0 8.431 L 0 1.199 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16fr6tl\",layoutDependency:layoutDependency,layoutId:\"gPR11EEvN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.602 8.167\" overflow=\"visible\"><path d=\"M 7.602 1.163 C 7.602 0.247 6.588 -0.307 5.812 0.182 L 1.631 2.826 L 0.036 4.041 C -0.259 4.582 1.362 4.327 1.887 4.651 L 7.601 8.167 L 7.601 1.163 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-166u9fb\",layoutDependency:layoutDependency,layoutId:\"jm2hKg4Id\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.172 22.998\" overflow=\"visible\"><path d=\"M 19.415 7.39 C 19.574 7.505 19.707 7.651 19.807 7.82 C 20.046 8.226 20.172 8.688 20.172 9.159 L 20.172 16.793 C 20.172 17.694 19.713 18.532 18.953 19.014 L 18.187 17.804 C 18.532 17.585 18.742 17.203 18.742 16.793 L 18.742 9.159 C 18.742 8.941 18.682 8.731 18.575 8.549 L 16.862 7.306 L 12.571 4.577 C 11.775 4.071 10.733 4.645 10.733 5.589 L 10.733 12.82 L 16.599 9.19 C 16.617 9.179 16.635 9.169 16.654 9.16 C 16.716 9.13 16.791 9.105 16.873 9.084 C 16.982 9.056 17.104 9.037 17.231 9.021 C 17.366 9.004 17.508 8.991 17.648 8.978 C 17.728 8.971 17.808 8.963 17.889 8.955 C 18.056 8.938 18.209 8.917 18.331 8.886 C 18.399 8.87 18.465 8.844 18.525 8.808 C 18.36 9.475 17.939 10.052 17.354 10.413 L 10.734 14.51 L 10.734 20.364 C 10.734 21.308 11.775 21.881 12.572 21.375 L 18.187 17.804 L 18.953 19.014 L 13.339 22.584 C 11.59 23.696 9.303 22.438 9.303 20.364 L 9.303 19.275 C 8.469 19.775 7.422 19.753 6.61 19.218 L 1.193 15.728 C 0.448 15.247 -0.001 14.42 0 13.534 L 0 6.071 C 0 5.601 0.126 5.147 0.357 4.753 C 0.451 4.591 0.576 4.448 0.725 4.335 L 2.32 3.12 C 2.354 3.095 2.388 3.071 2.423 3.049 L 6.603 0.404 C 8.32 -0.679 10.588 0.539 10.588 2.596 L 10.588 3.327 C 11.438 2.816 12.504 2.832 13.338 3.368 L 17.63 6.096 C 17.654 6.112 17.679 6.128 17.702 6.146 Z M 9.157 2.596 C 9.157 1.681 8.144 1.126 7.367 1.616 L 3.187 4.259 L 1.592 5.474 C 1.487 5.656 1.431 5.861 1.431 6.071 L 1.431 13.534 C 1.431 13.935 1.633 14.308 1.967 14.523 L 7.384 18.013 C 8.152 18.508 9.158 17.948 9.158 17.024 L 9.158 11.302 L 2.77 7.297 C 2.204 6.942 1.799 6.38 1.642 5.73 C 1.704 5.766 1.773 5.792 1.844 5.806 C 2.001 5.839 2.16 5.861 2.32 5.872 L 2.448 5.883 C 2.613 5.897 2.782 5.912 2.939 5.936 C 3.056 5.953 3.164 5.975 3.259 6.004 C 3.329 6.026 3.392 6.052 3.444 6.085 L 9.158 9.601 L 9.158 2.596 Z\" fill=\"rgb(2,6,23)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t1thlu\",layoutDependency:layoutDependency,layoutId:\"XtOjbpcvg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.172 22.998\" overflow=\"visible\"><path d=\"M 19.415 7.39 C 19.574 7.505 19.707 7.651 19.807 7.82 C 20.046 8.226 20.172 8.688 20.172 9.159 L 20.172 16.793 C 20.172 17.694 19.713 18.532 18.953 19.014 L 18.187 17.804 C 18.532 17.585 18.742 17.203 18.742 16.793 L 18.742 9.159 C 18.742 8.941 18.682 8.731 18.575 8.549 L 16.862 7.306 L 12.571 4.577 C 11.775 4.071 10.733 4.645 10.733 5.589 L 10.733 12.82 L 16.599 9.19 C 16.617 9.179 16.635 9.169 16.654 9.16 C 16.716 9.13 16.791 9.105 16.873 9.084 C 16.982 9.056 17.104 9.037 17.231 9.021 C 17.366 9.004 17.508 8.991 17.648 8.978 C 17.728 8.971 17.808 8.963 17.889 8.955 C 18.056 8.938 18.209 8.917 18.331 8.886 C 18.399 8.87 18.465 8.844 18.525 8.808 C 18.36 9.475 17.939 10.052 17.354 10.413 L 10.734 14.51 L 10.734 20.364 C 10.734 21.308 11.775 21.881 12.572 21.375 L 18.187 17.804 L 18.953 19.014 L 13.339 22.584 C 11.59 23.696 9.303 22.438 9.303 20.364 L 9.303 19.275 C 8.469 19.775 7.422 19.753 6.61 19.218 L 1.193 15.728 C 0.448 15.247 -0.001 14.42 0 13.534 L 0 6.071 C 0 5.601 0.126 5.147 0.357 4.753 C 0.451 4.591 0.576 4.448 0.725 4.335 L 2.32 3.12 C 2.354 3.095 2.388 3.071 2.423 3.049 L 6.603 0.404 C 8.32 -0.679 10.588 0.539 10.588 2.596 L 10.588 3.327 C 11.438 2.816 12.504 2.832 13.338 3.368 L 17.63 6.096 C 17.654 6.112 17.679 6.128 17.702 6.146 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1siv0vp\",layoutDependency:layoutDependency,layoutId:\"hOmU0oGSW\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.727 16.764\" overflow=\"visible\"><path d=\"M 7.726 1.162 C 7.726 0.247 6.712 -0.308 5.936 0.183 L 1.756 2.825 L 0.16 4.04 C 0.056 4.222 0 4.427 0 4.637 L 0 12.1 C 0 12.501 0.202 12.874 0.536 13.089 L 5.953 16.579 C 6.721 17.074 7.727 16.514 7.727 15.591 L 7.727 9.868 L 1.339 5.863 C 0.773 5.508 0.368 4.946 0.211 4.296 C 0.273 4.332 0.342 4.358 0.413 4.372 C 0.57 4.405 0.729 4.428 0.889 4.438 L 1.017 4.449 C 1.181 4.463 1.351 4.479 1.508 4.502 C 1.624 4.519 1.733 4.541 1.828 4.57 C 1.898 4.592 1.96 4.618 2.013 4.651 L 7.727 8.167 L 7.727 1.162 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-k253cx\",layoutDependency:layoutDependency,layoutId:\"Ttfx9ici7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.59 19.738\" overflow=\"visible\"><path d=\"M 1.192 15.825 C 0.445 15.341 0 14.506 0 13.618 L 0 6.107 C 0 5.642 0.122 5.185 0.355 4.782 C 0.45 4.619 0.576 4.476 0.725 4.361 L 2.32 3.139 C 2.353 3.114 2.388 3.09 2.423 3.067 L 6.601 0.408 C 8.318 -0.685 10.585 0.542 10.585 2.612 L 10.585 14.6 C 10.585 16.746 10.731 18.98 9.3 19.395 L 9.297 19.395 C 7.87 19.809 7.5 19.915 6.609 19.337 Z M 7.365 1.626 L 3.186 4.286 L 1.592 5.509 C 1.488 5.688 1.431 5.894 1.431 6.108 L 1.431 13.618 C 1.43 14.019 1.631 14.393 1.966 14.612 L 7.382 18.125 C 8.151 18.623 9.155 18.059 9.155 17.13 L 9.155 11.372 L 2.77 7.342 C 2.202 6.984 1.797 6.418 1.641 5.765 C 1.703 5.802 1.771 5.828 1.843 5.843 C 1.999 5.876 2.158 5.898 2.318 5.909 L 2.447 5.92 C 2.611 5.933 2.775 5.951 2.938 5.973 C 3.046 5.988 3.153 6.011 3.258 6.042 C 3.323 6.061 3.385 6.088 3.443 6.123 L 9.155 9.661 L 9.155 2.613 C 9.155 1.692 8.141 1.133 7.365 1.627 Z\" fill=\"rgb(2,6,23)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1odtmcg\",layoutDependency:layoutDependency,layoutId:\"cGHmUMTtc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.59 19.738\" overflow=\"visible\"><path d=\"M 6.609 19.337 C 7.5 19.915 7.87 19.809 9.297 19.395 L 9.3 19.395 C 10.731 18.98 10.585 16.746 10.585 14.6 L 10.585 2.612 C 10.585 0.542 8.318 -0.685 6.601 0.408 L 2.423 3.067 C 2.388 3.09 2.353 3.114 2.32 3.139 L 0.725 4.361 C 0.576 4.476 0.45 4.619 0.355 4.782 C 0.122 5.185 0 5.642 0 6.107 L 0 13.618 C 0 14.506 0.445 15.341 1.192 15.825 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1offg44\",layoutDependency:layoutDependency,layoutId:\"WA3FIghfw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.724 16.867\" overflow=\"visible\"><path d=\"M 5.934 0.184 C 6.71 -0.31 7.724 0.249 7.724 1.17 L 7.724 8.218 L 2.012 4.679 C 1.954 4.645 1.892 4.618 1.827 4.599 C 1.722 4.568 1.615 4.545 1.507 4.53 C 1.344 4.507 1.18 4.49 1.016 4.477 L 0.887 4.465 C 0.727 4.455 0.568 4.433 0.411 4.4 C 0.34 4.385 0.272 4.359 0.21 4.322 C 0.366 4.975 0.771 5.541 1.339 5.899 L 7.724 9.928 L 7.724 15.686 C 7.724 16.616 6.72 17.18 5.951 16.681 L 0.535 13.169 C 0.2 12.95 -0.001 12.575 0 12.175 L 0 4.665 C 0 4.451 0.057 4.245 0.16 4.066 L 1.755 2.842 L 5.934 0.183 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-154ory5\",layoutDependency:layoutDependency,layoutId:\"Rh75iusOi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.59 19.737\" overflow=\"visible\"><path d=\"M 3.981 19.336 C 3.09 19.914 2.72 19.808 1.293 19.394 L 1.289 19.394 C -0.141 18.98 0.004 16.745 0.004 14.599 L 0.004 2.612 C 0.004 0.541 2.272 -0.684 3.988 0.408 L 8.168 3.067 C 8.203 3.089 8.238 3.113 8.27 3.138 L 9.865 4.361 C 10.014 4.475 10.14 4.618 10.235 4.782 C 10.468 5.185 10.591 5.642 10.59 6.108 L 10.59 13.616 C 10.592 14.507 10.144 15.338 9.398 15.824 Z M 3.224 1.627 C 2.449 1.133 1.435 1.691 1.435 2.612 L 1.435 9.66 L 7.148 6.122 C 7.199 6.09 7.262 6.063 7.332 6.041 C 7.427 6.011 7.536 5.989 7.653 5.972 C 7.809 5.949 7.978 5.934 8.143 5.919 C 8.205 5.914 8.266 5.908 8.328 5.902 C 8.469 5.891 8.609 5.871 8.747 5.842 C 8.818 5.827 8.887 5.801 8.949 5.764 C 8.921 5.881 8.884 5.996 8.84 6.107 C 8.64 6.616 8.283 7.049 7.821 7.341 L 1.435 11.371 L 1.435 17.129 C 1.435 18.059 2.439 18.622 3.208 18.124 L 8.624 14.612 C 8.958 14.395 9.159 14.02 9.159 13.617 L 9.159 6.107 C 9.159 5.893 9.102 5.687 8.999 5.508 L 7.404 4.285 L 3.225 1.627 Z\" fill=\"rgb(2,6,23)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hp0zuc\",layoutDependency:layoutDependency,layoutId:\"iGmh7fYAy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.59 19.737\" overflow=\"visible\"><path d=\"M 3.981 19.336 C 3.09 19.914 2.72 19.808 1.293 19.394 L 1.289 19.394 C -0.141 18.98 0.004 16.745 0.004 14.599 L 0.004 2.612 C 0.004 0.541 2.272 -0.684 3.988 0.408 L 8.168 3.067 C 8.203 3.089 8.238 3.113 8.27 3.138 L 9.865 4.361 C 10.014 4.475 10.14 4.618 10.235 4.782 C 10.468 5.185 10.591 5.642 10.59 6.108 L 10.59 13.616 C 10.592 14.507 10.144 15.338 9.398 15.824 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v5nhy6\",layoutDependency:layoutDependency,layoutId:\"Yw5KVEhzw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.725 16.867\" overflow=\"visible\"><path d=\"M 1.79 0.184 C 1.015 -0.31 0 0.248 0 1.169 L 0 8.217 L 5.713 4.679 C 5.765 4.647 5.827 4.62 5.897 4.599 C 5.992 4.568 6.101 4.546 6.218 4.529 C 6.374 4.506 6.544 4.491 6.708 4.476 C 6.77 4.471 6.832 4.465 6.893 4.459 C 7.034 4.448 7.174 4.428 7.312 4.399 C 7.384 4.385 7.452 4.358 7.515 4.322 C 7.487 4.438 7.45 4.553 7.405 4.664 C 7.206 5.174 6.849 5.606 6.387 5.899 L 0.001 9.928 L 0.001 15.687 C 0.001 16.616 1.005 17.179 1.773 16.681 L 7.19 13.169 C 7.523 12.953 7.725 12.578 7.725 12.174 L 7.725 4.664 C 7.725 4.45 7.668 4.244 7.564 4.065 L 5.97 2.842 L 1.79 0.184 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fwq7fs\",layoutDependency:layoutDependency,layoutId:\"ajhygwAml\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.008 13.015\" overflow=\"visible\"><path d=\"M 6.62 1.864 C 7.283 1.455 7.73 0.772 7.841 0 C 7.949 0.182 8.008 0.392 8.008 0.61 L 8.008 8.244 C 8.008 8.654 7.799 9.036 7.452 9.256 L 1.838 12.826 C 1.041 13.332 0 12.76 0 11.815 L 0 5.961 Z\" fill=\"rgb(46,129,229)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y98qoi\",layoutDependency:layoutDependency,layoutId:\"SohJvKm43\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.726 12.723\" overflow=\"visible\"><path d=\"M 1.339 1.822 C 0.697 1.418 0.265 0.751 0.16 0 C 0.055 0.181 0 0.387 0 0.597 L 0 8.06 C 0 8.46 0.202 8.833 0.535 9.049 L 5.953 12.539 C 6.721 13.034 7.726 12.474 7.726 11.55 L 7.726 5.827 L 1.339 1.823 Z\" fill=\"rgb(160,181,236)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1tc6wru\",layoutDependency:layoutDependency,layoutId:\"mWe5K_Dgi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.276 11.386\" overflow=\"visible\"><path d=\"M 7.843 4.155 C 7.843 3.21 8.884 2.638 9.681 3.144 L 11.826 4.508 L 13.972 5.872 L 14.131 6.166 C 14.433 6.725 14.248 7.422 13.709 7.757 L 7.843 11.386 Z M 6.267 1.163 C 6.267 0.247 5.252 -0.307 4.477 0.182 L 2.385 1.505 L 0.296 2.826 L 0.141 3.111 C -0.154 3.652 0.027 4.329 0.552 4.651 L 6.267 8.167 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kp2rk4\",layoutDependency:layoutDependency,layoutId:\"Lufm5_7ZG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.433 8.431\" overflow=\"visible\"><path d=\"M 0 1.2 C 0 0.255 1.041 -0.318 1.838 0.188 L 3.983 1.553 L 6.129 2.917 L 6.288 3.211 C 6.59 3.769 6.405 4.466 5.866 4.801 L 0 8.431 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-98xwig\",layoutDependency:layoutDependency,layoutId:\"OBrs0w9LA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.267 8.167\" overflow=\"visible\"><path d=\"M 6.267 1.163 C 6.267 0.247 5.252 -0.307 4.477 0.182 L 2.385 1.505 L 0.296 2.826 L 0.141 3.111 C -0.154 3.652 0.027 4.329 0.552 4.651 L 6.267 8.167 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-7urf23\",layoutDependency:layoutDependency,layoutId:\"hW5ILvbf9\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33.643 12.05\" overflow=\"visible\"><path d=\"M 7.003 3.954 L 2.061 3.954 C 1.33 3.94 0.647 4.323 0.277 4.955 C -0.092 5.587 -0.092 6.369 0.277 7.001 C 0.647 7.632 1.33 8.015 2.061 8.002 L 4.98 8.002 C 6.098 8.002 7.004 8.908 7.004 10.026 C 7.004 11.144 6.098 12.05 4.98 12.05 L 0.038 12.05 M 10.424 8.002 C 10.424 10.237 12.236 12.05 14.472 12.05 C 16.708 12.05 18.52 10.237 18.52 8.002 C 18.52 5.766 16.708 3.953 14.472 3.953 C 12.236 3.953 10.424 5.766 10.424 8.002 Z M 21.939 0 L 22.128 12.05 M 33.643 12.05 L 33.643 8.002 C 33.643 5.766 31.831 3.954 29.595 3.955 C 27.36 3.955 25.548 5.767 25.548 8.002 C 25.548 10.237 27.36 12.05 29.595 12.05 L 30.752 12.05\" fill=\"transparent\" stroke-width=\"3\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cf69s7\",layoutDependency:layoutDependency,layoutId:\"oWOOmmqbr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.004 8.097\" overflow=\"visible\"><path d=\"M 7.003 0 L 2.061 0 C 1.33 -0.013 0.647 0.37 0.277 1.001 C -0.092 1.633 -0.092 2.415 0.277 3.047 C 0.647 3.679 1.33 4.062 2.061 4.048 L 4.98 4.048 C 6.098 4.048 7.004 4.954 7.004 6.072 C 7.004 7.19 6.098 8.097 4.98 8.097 L 0.038 8.097\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-129a0bs\",layoutDependency:layoutDependency,layoutId:\"sF9eVCH4Y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.096 8.096\" overflow=\"visible\"><path d=\"M 0 4.048 C 0 6.284 1.812 8.096 4.048 8.096 C 6.284 8.096 8.096 6.284 8.096 4.048 C 8.096 1.812 6.284 0 4.048 0 C 1.812 0 0 1.812 0 4.048 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vmjog6\",layoutDependency:layoutDependency,layoutId:\"NfzLxP5Th\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 12.05\" overflow=\"visible\"><path d=\"M 0 0 L 0.189 12.05\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3nc33r\",layoutDependency:layoutDependency,layoutId:\"lEZpamhuN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.096 8.096\" overflow=\"visible\"><path d=\"M 8.096 8.096 L 8.096 4.047 C 8.095 1.812 6.283 0 4.048 0 C 1.812 0 0 1.812 0 4.048 C 0 6.283 1.812 8.095 4.047 8.096 L 5.204 8.096\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.snyk.io/\",motionChild:true,nodeId:\"yrhDfhEqD\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gdv3gg framer-aoqboz\",\"data-framer-name\":\"Snyk\",layoutDependency:layoutDependency,layoutId:\"yrhDfhEqD\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1mcspm9\",layoutDependency:layoutDependency,layoutId:\"PNdRJmq4_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 67.813 35\" overflow=\"visible\"><g><path d=\"M 0 0 L 67.813 0 L 67.813 35 L 0 35 Z\" fill=\"transparent\"></path><path d=\"M 61.058 19.302 L 60.796 19.302 L 60.796 23.851 L 57.522 23.851 L 57.522 12.521 L 60.796 7.413 L 60.796 17.985 C 61.445 17.187 63.639 14.166 63.639 14.166 L 67.681 14.166 L 63.856 18.223 L 67.812 23.871 L 63.681 23.871 L 61.059 19.302 Z M 51.938 18.557 L 53.281 14.192 L 56.522 14.192 L 52.722 23.82 C 51.591 26.715 49.968 28.675 47.55 28.675 C 46.813 28.688 46.085 28.524 45.425 28.198 L 46.728 26.185 C 46.926 26.207 47.126 26.217 47.326 26.216 C 48.441 26.216 49.28 25.133 49.822 23.847 L 45.836 14.193 L 49.505 14.193 L 50.939 18.505 C 51.158 19.287 51.317 20.086 51.417 20.891 C 51.549 20.105 51.723 19.326 51.938 18.558 Z M 42.054 18.333 C 42.054 17.073 41.495 16.476 40.433 16.476 C 39.931 16.475 39.438 16.603 38.999 16.848 L 38.999 23.851 L 35.725 23.851 L 35.725 14.284 L 38.927 14.022 L 38.851 15.586 L 38.959 15.586 C 39.726 14.558 40.933 13.953 42.216 13.953 C 43.889 13.953 45.34 14.989 45.34 17.443 L 45.34 23.851 L 42.054 23.851 L 42.054 18.333 Z M 26.348 23.357 L 26.642 21.128 C 27.623 21.605 28.698 21.859 29.789 21.871 C 30.507 21.871 30.96 21.631 30.96 21.204 C 30.96 19.982 26.549 20.276 26.549 17.08 C 26.549 15.037 28.425 13.961 30.777 13.961 C 31.86 13.988 32.931 14.191 33.949 14.562 L 33.631 16.75 C 32.716 16.385 31.746 16.179 30.762 16.139 C 30.189 16.139 29.723 16.343 29.723 16.713 C 29.723 17.92 34.228 17.682 34.228 20.799 C 34.228 22.873 32.383 24.066 29.854 24.066 C 28.647 24.1 27.447 23.857 26.348 23.357 Z\" fill=\"rgb(9,28,48)\"></path><path d=\"M 19.233 9.235 L 2.955 9.235 C 2.955 8.214 4.426 5.137 7.369 0 L 8.593 8.129 L 13.564 8.129 L 14.785 0.002 C 17.752 5.207 19.235 8.285 19.233 9.235 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.069 34.998 L 0 27.245 L 0 9.153 C 0 9.153 4.094 7.64 11.083 7.64 C 18.071 7.64 22.137 9.151 22.137 9.151 L 22.137 27.243 L 11.068 34.998 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.069 33.909 L 0.707 26.682 L 0.707 9.879 C 0.707 9.879 4.582 8.476 11.069 8.476 Z\" fill=\"rgb(219,219,219)\"></path><path d=\"M 11.083 8.476 L 11.068 8.476 L 11.068 33.895 L 21.346 26.689 L 21.346 9.879 C 21.346 9.879 17.569 8.476 11.083 8.476 Z\" fill=\"rgb(198,198,198)\"></path><path d=\"M 16.675 29.954 L 15.804 22.365 L 10.999 22.365 L 10.999 33.927 L 11.069 33.992 C 12.97 32.692 14.84 31.346 16.676 29.955 Z\" fill=\"rgb(59,59,99)\"></path><path d=\"M 5.466 30.014 L 11.069 33.991 L 11.069 22.135 L 6.219 22.135 Z\" fill=\"rgb(83,83,122)\"></path><path d=\"M 13.468 27.768 C 13.468 29.071 12.23 29.718 11.095 29.718 C 9.96 29.718 8.705 29.071 8.705 27.768\" fill=\"rgb(188,147,117)\"></path><path d=\"M 11.08 28.443 C 10.17 28.443 9.728 27.785 9.728 26.431 L 10.16 26.431 C 10.16 28.016 10.781 28.016 11.08 28.016 C 11.379 28.016 12.001 28.016 12.001 26.432 L 12.435 26.432 C 12.435 27.785 11.993 28.444 11.08 28.444 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.069 26.761 C 11.299 27.453 11.969 27.9 12.696 27.849 C 13.595 27.862 14.397 27.289 14.677 26.436 C 15.201 25.029 15.196 23.066 15.196 23.066 C 15.196 23.066 17.517 20.202 17.517 19.247 L 11.064 19.247 Z\" fill=\"rgb(196,154,126)\"></path><path d=\"M 4.53 19.243 C 4.53 20.362 6.831 23.061 6.831 23.061 C 6.831 23.061 6.831 25.021 7.347 26.432 C 7.627 27.286 8.431 27.859 9.33 27.845 C 10.08 27.878 10.771 27.445 11.069 26.756 L 11.069 19.243 Z\" fill=\"rgb(216,183,160)\"></path><path d=\"M 17.24 12.806 C 15.45 11.001 15.003 7.239 15.003 7.239 C 14.667 8.433 13.942 11.92 13.942 11.92 C 12.991 11.635 12.006 11.48 11.013 11.459 C 10.964 11.459 10.964 16.169 11.013 25.592 L 12.448 24.563 L 12.725 19.574 L 14.264 21.303 L 16.25 21.873 L 16.991 21.355 C 17.205 21.05 17.373 20.714 17.488 20.36 C 17.765 19.667 17.146 14.323 17.146 14.323 C 16.927 13.877 17.24 12.806 17.24 12.806 Z\" fill=\"rgb(59,59,99)\"></path><path d=\"M 8.234 11.92 C 8.234 11.92 7.517 8.423 7.175 7.237 C 7.175 7.237 6.728 11.001 4.938 12.805 C 4.938 12.805 5.251 13.875 5.031 14.328 C 5.031 14.328 4.412 19.667 4.687 20.364 C 4.802 20.72 4.969 21.056 5.184 21.362 L 5.925 21.879 L 7.909 21.309 L 9.448 19.574 L 9.718 24.565 L 11.071 25.565 L 11.071 11.442 C 10.107 11.454 9.15 11.616 8.234 11.92 Z\" fill=\"rgb(83,83,122)\"></path><path d=\"M 15.987 3.749 C 16.284 4.298 18.836 9.325 18.836 11.068 L 17.703 14.101 C 17.894 15.813 18.277 19.531 17.988 20.257 C 17.811 20.705 17.135 21.631 16.554 22.379 L 17.345 29.485 L 16.274 30.241 L 15.681 25.049 C 15.602 25.592 15.471 26.126 15.289 26.644 C 15.07 27.273 14.626 27.798 14.042 28.119 C 14.011 29.723 12.507 30.587 11.092 30.587 C 9.677 30.587 8.15 29.723 8.117 28.121 C 7.532 27.8 7.086 27.274 6.867 26.644 C 6.691 26.146 6.563 25.633 6.484 25.112 L 5.916 30.336 L 4.837 29.566 L 5.615 22.405 C 5.031 21.653 4.341 20.715 4.161 20.257 C 3.874 19.541 4.24 15.813 4.433 14.101 L 3.239 10.963 L 3.239 10.86 C 3.239 9.118 5.868 4.294 6.154 3.75 L 7.003 2.223 L 7.777 7.538 L 8.196 10.402 L 8.743 11.29 C 9.495 11.032 10.282 10.891 11.076 10.872 C 11.873 10.892 12.663 11.032 13.418 11.29 L 13.965 10.402 L 15.161 2.217 L 15.987 3.75 Z M 11.094 29.448 C 11.721 29.448 12.612 29.169 12.835 28.429 L 12.766 28.429 C 12.649 28.428 12.533 28.42 12.418 28.403 C 12.094 28.804 11.594 29.019 11.08 28.978 C 10.569 29.018 10.07 28.804 9.746 28.405 C 9.631 28.424 9.514 28.434 9.397 28.435 L 9.328 28.435 C 9.553 29.169 10.458 29.448 11.095 29.448 Z M 10.361 28.233 C 10.794 28.527 11.362 28.527 11.795 28.233 C 11.648 28.168 11.507 28.089 11.376 27.995 C 11.279 28.02 11.177 28.031 11.075 28.026 C 10.973 28.029 10.871 28.019 10.772 27.995 C 10.644 28.089 10.506 28.169 10.361 28.233 Z M 14.811 22.722 C 15.593 21.782 16.74 20.269 16.909 19.844 C 17.027 19.41 16.819 16.516 16.548 14.085 L 16.534 13.951 L 16.774 13.35 C 16.026 12.564 15.502 11.488 15.146 10.473 L 15.098 10.791 L 13.917 12.701 L 13.441 12.516 C 12.688 12.217 11.89 12.048 11.08 12.015 C 10.274 12.046 9.48 12.216 8.731 12.516 L 8.269 12.71 L 7.074 10.8 L 7.039 10.562 C 6.678 11.567 6.154 12.624 5.409 13.393 L 5.626 13.965 L 5.612 14.101 C 5.337 16.524 5.119 19.417 5.251 19.863 C 5.382 20.309 6.573 21.792 7.343 22.727 L 7.472 22.885 L 7.472 23.085 C 7.472 23.104 7.472 24.964 7.949 26.257 C 8.144 26.884 8.728 27.307 9.384 27.298 C 9.876 27.282 10.318 26.993 10.531 26.548 C 10.717 26.188 10.81 25.594 10.81 24.771 L 11.288 24.771 C 11.279 25.378 11.381 25.982 11.587 26.553 C 11.807 26.996 12.253 27.282 12.747 27.298 C 13.401 27.306 13.984 26.884 14.18 26.259 C 14.658 24.962 14.658 23.104 14.658 23.085 L 14.658 22.885 L 14.812 22.722 Z\" fill=\"rgb(51,49,82)\"></path><path d=\"M 14.682 17.665 L 12.364 17.665 L 12.364 17.689 C 12.396 18.505 13.068 19.15 13.885 19.149 C 14.701 19.148 15.372 18.505 15.407 17.689 L 15.407 17.665 Z\" fill=\"rgb(51,49,82)\"></path><path d=\"M 12.942 17.665 L 12.942 17.689 C 12.942 17.919 13.033 18.141 13.197 18.304 C 13.36 18.467 13.581 18.558 13.812 18.557 C 14.292 18.557 14.681 18.169 14.683 17.689 L 14.683 17.665 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.681 17.665 C 13.731 17.665 13.759 17.787 13.748 17.86 C 13.728 17.976 13.626 18.061 13.509 18.059 C 13.542 18.214 13.671 18.331 13.829 18.35 C 14.038 18.381 14.232 18.238 14.264 18.029 C 14.286 17.877 14.211 17.66 14.087 17.66 Z M 9.087 17.665 L 6.768 17.665 L 6.768 17.689 C 6.8 18.506 7.473 19.15 8.29 19.149 C 9.106 19.148 9.777 18.504 9.811 17.689 L 9.811 17.665 Z\" fill=\"rgb(51,49,82)\"></path><path d=\"M 7.349 17.665 L 7.349 17.689 C 7.373 18.151 7.756 18.513 8.218 18.512 C 8.681 18.512 9.062 18.15 9.087 17.688 L 9.087 17.665 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 8.485 17.665 L 8.068 17.665 C 8.12 17.665 8.146 17.787 8.137 17.86 C 8.117 17.976 8.015 18.061 7.898 18.059 C 7.932 18.246 8.099 18.381 8.289 18.375 C 8.48 18.37 8.639 18.226 8.663 18.037 C 8.687 17.884 8.612 17.665 8.485 17.665 Z\" fill=\"rgb(51,49,82)\"></path><path d=\"M 14.505 16.99 C 14.603 16.885 15.43 15.963 14.323 15.963 C 13.327 15.963 12.607 16.756 12.412 16.99 Z\" fill=\"rgb(196,154,126)\"></path><path d=\"M 9.739 16.99 C 9.551 16.75 8.832 15.963 7.828 15.963 C 6.724 15.963 7.551 16.885 7.645 16.99 Z M 4.429 10.767 C 4.493 9.863 5.452 7.697 6.365 5.874 L 6.604 7.545 C 6.511 8.165 6.09 10.612 4.953 12.153 L 4.429 10.768 Z\" fill=\"rgb(216,183,160)\"></path><path d=\"M 15.576 7.402 L 15.798 5.865 C 16.711 7.688 17.67 9.853 17.734 10.757 L 17.223 12.114 C 15.994 10.423 15.607 7.664 15.576 7.402 Z\" fill=\"rgb(196,154,126)\"></path><path d=\"M 10.229 25.78 C 9.801 25.46 9.362 25.064 9.362 24.746 C 9.362 24.544 9.728 23.918 9.728 23.918 L 12.445 23.918 C 12.445 23.918 12.801 24.472 12.801 24.746 C 12.801 25.021 12.359 25.427 11.915 25.746 C 11.764 25.491 11.573 25.448 11.484 25.648 C 11.438 25.78 11.426 25.922 11.451 26.059 C 11.212 26.212 11.035 26.298 11.035 26.298 C 11.035 26.298 10.899 26.222 10.703 26.095 C 10.737 25.943 10.729 25.784 10.679 25.637 C 10.588 25.431 10.394 25.481 10.241 25.744 L 10.229 25.78 Z\" fill=\"rgb(51,49,82)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1683n5v\",layoutDependency:layoutDependency,layoutId:\"q243PAI8K\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 67.813 35\" overflow=\"visible\"><path d=\"M 0 0 L 67.813 0 L 67.813 35 L 0 35 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1b9boy4\",layoutDependency:layoutDependency,layoutId:\"zKHIsWHrr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41.464 21.262\" overflow=\"visible\"><path d=\"M 34.711 11.889 L 34.448 11.889 L 34.448 16.438 L 31.174 16.438 L 31.174 5.108 L 34.448 0 L 34.448 10.571 C 35.098 9.774 37.292 6.752 37.292 6.752 L 41.334 6.752 L 37.508 10.81 L 41.464 16.457 L 37.333 16.457 L 34.711 11.889 Z M 25.59 11.144 L 26.933 6.778 L 30.174 6.778 L 26.374 16.407 C 25.244 19.302 23.621 21.262 21.202 21.262 C 20.466 21.274 19.737 21.111 19.077 20.784 L 20.38 18.772 C 20.579 18.794 20.778 18.804 20.978 18.803 C 22.094 18.803 22.932 17.719 23.475 16.433 L 19.488 6.779 L 23.157 6.779 L 24.591 11.091 C 24.81 11.874 24.97 12.672 25.069 13.478 C 25.201 12.691 25.376 11.912 25.59 11.145 Z M 15.706 10.919 C 15.706 9.659 15.147 9.063 14.085 9.063 C 13.583 9.062 13.09 9.19 12.652 9.435 L 12.652 16.438 L 9.377 16.438 L 9.377 6.871 L 12.58 6.608 L 12.503 8.173 L 12.611 8.173 C 13.378 7.145 14.586 6.539 15.868 6.54 C 17.542 6.54 18.992 7.575 18.992 10.03 L 18.992 16.438 L 15.706 16.438 L 15.706 10.92 Z M 0 15.943 L 0.294 13.715 C 1.275 14.192 2.35 14.446 3.442 14.457 C 4.159 14.457 4.613 14.218 4.613 13.791 C 4.613 12.569 0.201 12.863 0.201 9.667 C 0.201 7.623 2.077 6.547 4.429 6.547 C 5.512 6.574 6.583 6.778 7.601 7.149 L 7.283 9.337 C 6.368 8.972 5.398 8.765 4.414 8.726 C 3.841 8.726 3.375 8.929 3.375 9.299 C 3.375 10.507 7.88 10.268 7.88 13.385 C 7.88 15.459 6.035 16.653 3.507 16.653 C 2.299 16.686 1.1 16.444 0 15.944 Z\" fill=\"rgb(9,28,48)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19fx71x\",layoutDependency:layoutDependency,layoutId:\"I3R8Vm7ub\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.29 16.457\" overflow=\"visible\"><path d=\"M 3.536 11.889 L 3.274 11.889 L 3.274 16.438 L 0 16.438 L 0 5.108 L 3.274 0 L 3.274 10.571 C 3.924 9.774 6.118 6.752 6.118 6.752 L 10.159 6.752 L 6.334 10.81 L 10.29 16.457 L 6.159 16.457 L 3.537 11.889 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tcmcx8\",layoutDependency:layoutDependency,layoutId:\"bJxSxNOKI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.097 14.484\" overflow=\"visible\"><path d=\"M 6.513 4.366 L 7.856 0 L 11.097 0 L 7.297 9.629 C 6.167 12.523 4.543 14.483 2.125 14.483 C 1.389 14.496 0.66 14.332 0 14.006 L 1.303 11.993 C 1.501 12.015 1.701 12.025 1.901 12.025 C 3.017 12.025 3.855 10.941 4.398 9.655 L 0.411 0.001 L 4.08 0.001 L 5.514 4.313 C 5.733 5.095 5.892 5.894 5.992 6.7 C 6.124 5.913 6.299 5.134 6.513 4.366 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pmdkqd\",layoutDependency:layoutDependency,layoutId:\"PLwJiQ_SY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.615 9.898\" overflow=\"visible\"><path d=\"M 6.329 4.379 C 6.329 3.119 5.77 2.523 4.708 2.523 C 4.206 2.522 3.713 2.65 3.275 2.895 L 3.275 9.898 L 0 9.898 L 0 0.331 L 3.202 0.069 L 3.126 1.633 L 3.234 1.633 C 4.001 0.605 5.208 -0.001 6.491 0 C 8.164 0 9.615 1.035 9.615 3.49 L 9.615 9.898 L 6.329 9.898 L 6.329 4.38 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rsal3m\",layoutDependency:layoutDependency,layoutId:\"TC0oRVSpF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.88 10.109\" overflow=\"visible\"><path d=\"M 0 9.396 L 0.294 7.168 C 1.275 7.645 2.35 7.898 3.442 7.91 C 4.159 7.91 4.613 7.671 4.613 7.244 C 4.613 6.021 0.201 6.315 0.201 3.119 C 0.201 1.076 2.077 0 4.429 0 C 5.512 0.027 6.583 0.23 7.601 0.602 L 7.283 2.79 C 6.368 2.425 5.398 2.218 4.414 2.179 C 3.841 2.179 3.375 2.382 3.375 2.752 C 3.375 3.959 7.88 3.721 7.88 6.838 C 7.88 8.912 6.035 10.106 3.507 10.106 C 2.299 10.139 1.1 9.897 0 9.397 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16ixbly\",layoutDependency:layoutDependency,layoutId:\"iFjThuaj8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.279 9.235\" overflow=\"visible\"><path d=\"M 16.278 9.235 L 0 9.235 C 0 8.214 1.471 5.137 4.414 0 L 5.638 8.129 L 10.609 8.129 L 11.831 0.002 C 14.797 5.207 16.28 8.285 16.279 9.235 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m0aim0\",layoutDependency:layoutDependency,layoutId:\"qDe8zTu9q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.137 27.358\" overflow=\"visible\"><path d=\"M 11.069 27.358 L 0 19.605 L 0 1.513 C 0 1.513 4.094 0 11.083 0 C 18.071 0 22.137 1.511 22.137 1.511 L 22.137 19.603 L 11.068 27.358 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n0uj6h\",layoutDependency:layoutDependency,layoutId:\"rnzYLat1Q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.361 25.433\" overflow=\"visible\"><path d=\"M 10.361 25.433 L 0 18.207 L 0 1.403 C 0 1.403 3.875 0 10.361 0 Z\" fill=\"rgb(219,219,219)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1icnbtb\",layoutDependency:layoutDependency,layoutId:\"da2PZf3Re\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.278 25.419\" overflow=\"visible\"><path d=\"M 0.015 0 L 0 0 L 0 25.419 L 10.278 18.213 L 10.278 1.403 C 10.278 1.403 6.501 0 0.015 0 Z\" fill=\"rgb(198,198,198)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9cqtpq\",layoutDependency:layoutDependency,layoutId:\"PXhN1aVlV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.677 11.627\" overflow=\"visible\"><path d=\"M 5.677 7.589 L 4.805 0 L 0 0 L 0 11.562 L 0.07 11.627 C 1.972 10.327 3.841 8.981 5.677 7.59 Z\" fill=\"rgb(59,59,99)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15pk3i4\",layoutDependency:layoutDependency,layoutId:\"QEdifheoQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.603 11.856\" overflow=\"visible\"><path d=\"M 0 7.879 L 5.603 11.856 L 5.603 0 L 0.753 0 Z\" fill=\"rgb(83,83,122)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hhajnf\",layoutDependency:layoutDependency,layoutId:\"LAKpu7gF0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.763 1.95\" overflow=\"visible\"><path d=\"M 4.763 0 C 4.763 1.303 3.526 1.95 2.39 1.95 C 1.255 1.95 0 1.303 0 0\" fill=\"rgb(188,147,117)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ac0s4d\",layoutDependency:layoutDependency,layoutId:\"T0K1KWLAU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.707 2.013\" overflow=\"visible\"><path d=\"M 1.353 2.013 C 0.442 2.013 0 1.354 0 0 L 0.432 0 C 0.432 1.585 1.054 1.585 1.353 1.585 C 1.652 1.585 2.273 1.585 2.273 0.001 L 2.707 0.001 C 2.707 1.354 2.266 2.013 1.353 2.013 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14p0mx5\",layoutDependency:layoutDependency,layoutId:\"E6dxoC6xc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.453 8.606\" overflow=\"visible\"><path d=\"M 0.005 7.514 C 0.236 8.206 0.905 8.653 1.633 8.602 C 2.531 8.615 3.333 8.042 3.614 7.189 C 4.137 5.782 4.132 3.819 4.132 3.819 C 4.132 3.819 6.453 0.954 6.453 0 L 0 0 Z\" fill=\"rgb(196,154,126)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-35lvs2\",layoutDependency:layoutDependency,layoutId:\"dzOdcUQr8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.539 8.604\" overflow=\"visible\"><path d=\"M 0 0 C 0 1.119 2.301 3.819 2.301 3.819 C 2.301 3.819 2.301 5.778 2.818 7.189 C 3.098 8.043 3.902 8.616 4.801 8.602 C 5.55 8.635 6.242 8.202 6.539 7.513 L 6.539 0 Z\" fill=\"rgb(216,183,160)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3n39ff\",layoutDependency:layoutDependency,layoutId:\"MfPcyk1AU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.583 18.352\" overflow=\"visible\"><path d=\"M 6.264 5.566 C 4.473 3.762 4.026 0 4.026 0 C 3.691 1.194 2.966 4.681 2.966 4.681 C 2.015 4.396 1.03 4.241 0.037 4.22 C -0.012 4.22 -0.012 8.93 0.037 18.352 L 1.471 17.324 L 1.749 12.335 L 3.288 14.063 L 5.274 14.634 L 6.015 14.116 C 6.229 13.811 6.397 13.475 6.512 13.121 C 6.789 12.428 6.169 7.084 6.169 7.084 C 5.951 6.638 6.264 5.566 6.264 5.566 Z\" fill=\"rgb(59,59,99)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12ayopa\",layoutDependency:layoutDependency,layoutId:\"Ztu8LjIeL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.454 18.328\" overflow=\"visible\"><path d=\"M 3.617 4.683 C 3.617 4.683 2.9 1.186 2.558 0 C 2.558 0 2.111 3.764 0.321 5.568 C 0.321 5.568 0.635 6.638 0.415 7.091 C 0.415 7.091 -0.205 12.43 0.07 13.127 C 0.185 13.483 0.353 13.819 0.568 14.125 L 1.309 14.642 L 3.292 14.072 L 4.831 12.337 L 5.101 17.328 L 6.454 18.328 L 6.454 4.205 C 5.49 4.217 4.533 4.379 3.618 4.683 Z\" fill=\"rgb(83,83,122)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1q1jus7\",layoutDependency:layoutDependency,layoutId:\"CeEt33N5e\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.597 28.37\" overflow=\"visible\"><path d=\"M 12.748 1.532 C 13.045 2.081 15.597 7.108 15.597 8.851 L 14.464 11.884 C 14.656 13.595 15.038 17.314 14.749 18.04 C 14.572 18.488 13.896 19.414 13.315 20.161 L 14.106 27.267 L 13.035 28.023 L 12.442 22.832 C 12.363 23.375 12.232 23.909 12.05 24.426 C 11.831 25.055 11.387 25.581 10.803 25.901 C 10.772 27.506 9.268 28.37 7.853 28.37 C 6.439 28.37 4.911 27.506 4.878 25.904 C 4.293 25.583 3.847 25.057 3.628 24.426 C 3.452 23.929 3.325 23.416 3.246 22.894 L 2.677 28.119 L 1.598 27.348 L 2.376 20.188 C 1.792 19.436 1.102 18.497 0.922 18.04 C 0.635 17.324 1.001 13.595 1.194 11.884 L 0 8.746 L 0 8.643 C 0 6.9 2.629 2.077 2.915 1.533 L 3.764 0.005 L 4.538 5.321 L 4.957 8.184 L 5.504 9.072 C 6.256 8.815 7.043 8.674 7.837 8.654 C 8.634 8.675 9.424 8.815 10.179 9.072 L 10.726 8.184 L 11.922 0 L 12.748 1.533 Z M 7.855 27.231 C 8.482 27.231 9.373 26.951 9.596 26.212 L 9.527 26.212 C 9.41 26.211 9.294 26.202 9.179 26.186 C 8.855 26.586 8.355 26.801 7.841 26.76 C 7.33 26.801 6.831 26.587 6.507 26.188 C 6.392 26.207 6.275 26.216 6.159 26.217 L 6.089 26.217 C 6.314 26.951 7.219 27.231 7.856 27.231 Z M 7.122 26.016 C 7.555 26.31 8.123 26.31 8.556 26.016 C 8.409 25.951 8.268 25.871 8.138 25.778 C 8.04 25.803 7.938 25.814 7.836 25.809 C 7.734 25.812 7.632 25.802 7.533 25.778 C 7.405 25.871 7.267 25.951 7.122 26.016 Z M 11.572 20.505 C 12.354 19.564 13.501 18.051 13.67 17.626 C 13.788 17.192 13.58 14.299 13.309 11.867 L 13.295 11.734 L 13.535 11.132 C 12.787 10.347 12.263 9.271 11.907 8.256 L 11.859 8.574 L 10.678 10.483 L 10.203 10.299 C 9.449 10 8.651 9.83 7.841 9.798 C 7.035 9.829 6.241 9.998 5.492 10.299 L 5.031 10.493 L 3.835 8.582 L 3.8 8.345 C 3.439 9.349 2.915 10.407 2.17 11.175 L 2.387 11.748 L 2.373 11.884 C 2.098 14.306 1.881 17.2 2.012 17.646 C 2.143 18.092 3.334 19.574 4.104 20.51 L 4.233 20.667 L 4.233 20.868 C 4.233 20.887 4.233 22.746 4.71 24.04 C 4.905 24.666 5.489 25.09 6.145 25.08 C 6.637 25.064 7.079 24.775 7.292 24.331 C 7.478 23.971 7.571 23.376 7.571 22.553 L 8.049 22.553 C 8.04 23.161 8.142 23.765 8.348 24.336 C 8.569 24.778 9.014 25.064 9.508 25.08 C 10.162 25.089 10.745 24.667 10.941 24.042 C 11.419 22.744 11.419 20.887 11.419 20.868 L 11.419 20.667 L 11.573 20.505 Z\" fill=\"rgb(51,49,82)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kfio2l\",layoutDependency:layoutDependency,layoutId:\"c4gcpIzJf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.597 28.37\" overflow=\"visible\"><path d=\"M 12.748 1.532 C 13.045 2.081 15.597 7.108 15.597 8.851 L 14.464 11.884 C 14.656 13.595 15.038 17.314 14.749 18.04 C 14.572 18.488 13.896 19.414 13.315 20.161 L 14.106 27.267 L 13.035 28.023 L 12.442 22.832 C 12.363 23.375 12.232 23.909 12.05 24.426 C 11.831 25.055 11.387 25.581 10.803 25.901 C 10.772 27.506 9.268 28.37 7.853 28.37 C 6.439 28.37 4.911 27.506 4.878 25.904 C 4.293 25.583 3.847 25.057 3.628 24.426 C 3.452 23.929 3.325 23.416 3.246 22.894 L 2.677 28.119 L 1.598 27.348 L 2.376 20.188 C 1.792 19.436 1.102 18.498 0.922 18.04 C 0.635 17.324 1.001 13.595 1.194 11.884 L 0 8.746 L 0 8.643 C 0 6.9 2.629 2.077 2.915 1.533 L 3.764 0.005 L 4.538 5.321 L 4.957 8.184 L 5.504 9.072 C 6.256 8.815 7.043 8.674 7.837 8.654 C 8.634 8.675 9.424 8.815 10.179 9.072 L 10.726 8.184 L 11.922 0 L 12.748 1.533 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lacqc7\",layoutDependency:layoutDependency,layoutId:\"mQys364oe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.507 1.045\" overflow=\"visible\"><path d=\"M 1.766 1.045 C 2.393 1.045 3.284 0.766 3.507 0.026 L 3.437 0.026 C 3.321 0.025 3.205 0.016 3.09 0 C 2.766 0.4 2.266 0.615 1.752 0.575 C 1.24 0.615 0.741 0.401 0.418 0.002 C 0.303 0.021 0.186 0.03 0.069 0.031 L 0 0.031 C 0.225 0.766 1.13 1.045 1.767 1.045 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3ep4c7\",layoutDependency:layoutDependency,layoutId:\"fKanbvLnd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.434 1\" overflow=\"visible\"><path d=\"M 0 0.238 C 0.433 0.532 1.001 0.532 1.434 0.238 C 1.287 0.174 1.147 0.094 1.016 0 C 0.918 0.026 0.816 0.036 0.715 0.031 C 0.613 0.034 0.51 0.024 0.411 0 C 0.283 0.094 0.145 0.174 0 0.238 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15xu4rm\",layoutDependency:layoutDependency,layoutId:\"kaHCZGHqZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.731 16.825\" overflow=\"visible\"><path d=\"M 9.599 12.249 C 10.381 11.309 11.529 9.796 11.698 9.371 C 11.815 8.937 11.608 6.043 11.337 3.612 L 11.322 3.478 L 11.562 2.877 C 10.814 2.091 10.291 1.015 9.934 0 L 9.887 0.318 L 8.705 2.228 L 8.23 2.043 C 7.477 1.744 6.679 1.575 5.869 1.542 C 5.063 1.573 4.268 1.743 3.52 2.043 L 3.058 2.237 L 1.863 0.327 L 1.827 0.089 C 1.466 1.094 0.943 2.151 0.198 2.92 L 0.415 3.492 L 0.4 3.628 C 0.125 6.051 -0.092 8.944 0.039 9.39 C 0.171 9.836 1.361 11.319 2.131 12.254 L 2.26 12.412 L 2.26 12.612 C 2.26 12.631 2.26 14.491 2.738 15.784 C 2.933 16.411 3.516 16.834 4.172 16.825 C 4.664 16.809 5.107 16.52 5.319 16.075 C 5.506 15.715 5.598 15.121 5.598 14.297 L 6.077 14.297 C 6.068 14.905 6.169 15.509 6.376 16.08 C 6.596 16.523 7.041 16.809 7.535 16.825 C 8.19 16.833 8.772 16.411 8.969 15.786 C 9.447 14.489 9.447 12.631 9.447 12.612 L 9.447 12.412 L 9.6 12.249 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hzuei6\",layoutDependency:layoutDependency,layoutId:\"kwGjc1LPu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.043 1.484\" overflow=\"visible\"><path d=\"M 2.318 0 L 0 0 L 0 0.024 C 0.032 0.84 0.704 1.485 1.521 1.484 C 2.337 1.483 3.008 0.84 3.043 0.024 L 3.043 0 Z\" fill=\"rgb(51,49,82)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sgxs3j\",layoutDependency:layoutDependency,layoutId:\"LOwzRPSLz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.741 1\" overflow=\"visible\"><path d=\"M 0 0 L 0 0.024 C 0 0.255 0.091 0.476 0.255 0.639 C 0.418 0.802 0.639 0.893 0.87 0.892 C 1.35 0.893 1.739 0.504 1.741 0.024 L 1.741 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-8zlyv8\",layoutDependency:layoutDependency,layoutId:\"d_kCbGvUZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.5 1.489\" overflow=\"visible\"><path d=\"M 6.913 0.005 C 6.963 0.005 6.991 0.127 6.98 0.201 C 6.96 0.317 6.858 0.401 6.74 0.399 C 6.774 0.554 6.903 0.672 7.061 0.691 C 7.27 0.721 7.464 0.578 7.496 0.37 C 7.518 0.217 7.443 0 7.319 0 Z M 2.319 0.005 L 0 0.005 L 0 0.029 C 0.032 0.846 0.704 1.491 1.522 1.489 C 2.338 1.488 3.008 0.845 3.043 0.029 L 3.043 0.005 Z\" fill=\"rgb(51,49,82)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qmhyib\",layoutDependency:layoutDependency,layoutId:\"O6tz9dGmN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.172 0.005 C 0.222 0.005 0.251 0.127 0.239 0.201 C 0.219 0.317 0.118 0.401 0 0.399 C 0.034 0.554 0.163 0.672 0.321 0.691 C 0.529 0.721 0.724 0.578 0.755 0.37 C 0.777 0.217 0.703 0 0.578 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-170pcjy\",layoutDependency:layoutDependency,layoutId:\"TjD8KjS3R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.043 1.484\" overflow=\"visible\"><path d=\"M 2.319 0 L 0 0 L 0 0.024 C 0.032 0.841 0.704 1.486 1.522 1.484 C 2.338 1.483 3.008 0.839 3.043 0.024 L 3.043 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xa7lru\",layoutDependency:layoutDependency,layoutId:\"MwfBHvvKJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.738 1\" overflow=\"visible\"><path d=\"M 0 0 L 0 0.024 C 0.024 0.486 0.406 0.848 0.869 0.847 C 1.332 0.847 1.713 0.485 1.738 0.023 L 1.738 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c0w9c3\",layoutDependency:layoutDependency,layoutId:\"psKYha76Z\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.587 0 L 0.17 0 C 0.222 0 0.249 0.122 0.239 0.195 C 0.219 0.312 0.118 0.396 0 0.394 C 0.035 0.581 0.201 0.716 0.392 0.71 C 0.583 0.705 0.741 0.561 0.765 0.372 C 0.789 0.219 0.715 0 0.588 0 Z\" fill=\"rgb(51,49,82)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h38s18\",layoutDependency:layoutDependency,layoutId:\"FDkBKTkxL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.482 1.027\" overflow=\"visible\"><path d=\"M 2.093 1.027 C 2.191 0.922 3.018 0 1.911 0 C 0.915 0 0.195 0.793 0 1.027 Z\" fill=\"rgb(196,154,126)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1r5pzm7\",layoutDependency:layoutDependency,layoutId:\"leWTilLWT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.311 11.115\" overflow=\"visible\"><path d=\"M 5.311 11.115 C 5.122 10.876 4.403 10.089 3.399 10.089 C 2.295 10.089 3.122 11.01 3.216 11.115 Z M 0 4.893 C 0.064 3.989 1.023 1.823 1.936 0 L 2.175 1.671 C 2.082 2.291 1.661 4.737 0.524 6.279 L 0 4.893 Z\" fill=\"rgb(216,183,160)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ceayod\",layoutDependency:layoutDependency,layoutId:\"Zm9xTCSBD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.48 1.027\" overflow=\"visible\"><path d=\"M 2.48 1.027 C 2.292 0.788 1.573 0 0.569 0 C -0.535 0 0.291 0.922 0.386 1.027 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1srwvcc\",layoutDependency:layoutDependency,layoutId:\"TZXTVxZPU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.175 6.279\" overflow=\"visible\"><path d=\"M 0 4.893 C 0.064 3.989 1.023 1.823 1.936 0 L 2.175 1.671 C 2.082 2.291 1.661 4.737 0.524 6.279 L 0 4.893 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kzx6sm\",layoutDependency:layoutDependency,layoutId:\"FzNMGMOAC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.158 6.249\" overflow=\"visible\"><path d=\"M 0 1.537 L 0.222 0 C 1.135 1.823 2.094 3.989 2.158 4.893 L 1.647 6.249 C 0.419 4.559 0.031 1.8 0 1.537 Z\" fill=\"rgb(196,154,126)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u6hmyt\",layoutDependency:layoutDependency,layoutId:\"cTQTCI26i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.439 2.38\" overflow=\"visible\"><path d=\"M 0.868 1.862 C 0.44 1.542 0 1.146 0 0.828 C 0 0.626 0.366 0 0.366 0 L 3.083 0 C 3.083 0 3.439 0.554 3.439 0.828 C 3.439 1.102 2.997 1.509 2.553 1.828 C 2.402 1.573 2.211 1.53 2.123 1.73 C 2.076 1.862 2.064 2.003 2.089 2.141 C 1.85 2.294 1.673 2.38 1.673 2.38 C 1.673 2.38 1.537 2.303 1.341 2.177 C 1.375 2.025 1.367 1.866 1.317 1.719 C 1.226 1.513 1.033 1.563 0.879 1.826 L 0.868 1.862 Z\" fill=\"rgb(51,49,82)\"></path></svg>',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.zenml.io/\",motionChild:true,nodeId:\"mOWKlsRTn\",scopeId:\"QT5xYIr4_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-l2kec5 framer-aoqboz\",\"data-framer-name\":\"ZenML\",layoutDependency:layoutDependency,layoutId:\"mOWKlsRTn\",whileHover:animation,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ho0wfw\",layoutDependency:layoutDependency,layoutId:\"P44KKe04f\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82.143 20.149\" overflow=\"visible\"><g><path d=\"M 0 0.149 L 82.143 0.149 L 82.143 20.149 L 0 20.149 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\"><path d=\"M 19.26 12.969 C 20.128 10.323 19.842 7.434 18.473 5.009 L 11.678 4.837 L 11.678 4.751 L 18.219 4.586 C 17.429 3.342 16.372 2.29 15.126 1.505 L 9.876 1.374 L 9.876 1.289 L 14.541 1.172 C 10.612 -0.935 5.758 -0.146 2.698 3.095 L 8.568 3.244 L 8.568 3.329 L 2.347 3.484 C 0.829 5.268 -0.003 7.534 0 9.877 C 0 9.983 0 10.086 0.006 10.189 L 0.006 10.211 L 2.35 10.27 L 2.35 10.355 L 0.014 10.414 L 0.014 10.435 C 0.099 11.976 0.546 13.476 1.319 14.812 L 5.226 14.91 L 5.226 14.996 L 1.487 15.09 C 2.479 16.683 3.902 17.962 5.591 18.778 L 5.591 10.574 L 6.539 10.574 C 6.613 10.574 6.684 10.603 6.736 10.655 C 6.788 10.707 6.817 10.778 6.816 10.852 L 6.816 19.27 C 8.806 19.914 10.948 19.914 12.937 19.27 L 12.937 10.852 C 12.937 10.778 12.966 10.707 13.018 10.655 C 13.07 10.603 13.141 10.573 13.215 10.574 L 14.161 10.574 L 14.161 18.779 C 15.272 18.243 16.273 17.504 17.111 16.6 L 14.659 16.539 L 14.659 16.454 L 17.306 16.387 C 18.118 15.462 18.749 14.393 19.168 13.236 L 15.636 13.147 L 15.636 13.061 L 19.26 12.968 Z M 15.531 10.313 L 4.222 10.313 L 4.018 9.497 L 5.591 9.497 L 5.591 8.622 L 5.913 8.622 C 6.145 8.621 6.367 8.713 6.531 8.877 C 6.695 9.041 6.787 9.264 6.786 9.496 L 9.265 9.496 L 9.265 8.33 L 3.261 8.33 C 3.144 7.397 2.59 6.669 2.59 6.669 C 4.222 7.047 9.876 7.076 9.876 7.076 C 9.876 7.076 15.531 7.047 17.162 6.669 C 17.162 6.669 16.61 7.397 16.493 8.33 L 10.489 8.33 L 10.489 9.496 L 12.968 9.496 C 12.968 9.013 13.359 8.622 13.842 8.622 L 14.163 8.622 L 14.163 9.496 L 15.737 9.496 Z\" fill=\"rgb(67,29,147)\"></path><path d=\"M 0 19.545 L 0.155 19.497 L 0.309 19.452 L 0.617 19.366 C 0.823 19.312 1.029 19.259 1.235 19.215 C 1.644 19.122 2.056 19.038 2.469 18.964 C 3.288 18.82 4.112 18.704 4.939 18.617 C 6.579 18.446 8.227 18.361 9.876 18.364 C 11.526 18.364 13.174 18.449 14.815 18.619 C 15.638 18.709 16.461 18.819 17.284 18.967 C 17.906 19.078 18.524 19.211 19.136 19.367 L 19.445 19.452 L 19.599 19.495 L 19.754 19.544 L 19.754 19.683 L 17.284 19.719 L 14.815 19.73 L 9.877 19.754 L 4.939 19.731 L 2.469 19.719 L 0.001 19.683 L 0.001 19.545 Z M 76.011 7.617 L 75.765 7.367 L 73.796 7.367 L 73.549 7.617 L 73.549 16.621 C 73.549 18.872 75.271 19.873 76.993 19.873 L 81.705 19.873 L 81.951 19.623 L 81.951 17.872 L 81.705 17.622 L 76.995 17.622 C 76.504 17.622 76.011 17.372 76.011 16.622 Z M 67.347 7.241 C 65.626 7.241 64.395 7.992 63.657 8.992 L 63.411 8.992 C 62.919 8.242 62.181 7.241 60.213 7.241 C 60.052 7.241 59.059 7.26 59.059 7.26 L 58.811 7.51 L 58.811 9.266 L 59.059 9.516 L 59.913 9.516 C 61.479 9.693 61.689 10.862 61.689 12.242 L 61.689 19.748 L 61.935 19.998 L 63.904 19.998 L 64.149 19.748 L 64.149 12.744 C 64.149 10.743 65.133 9.492 66.856 9.492 C 68.824 9.492 69.07 10.743 69.07 12.244 L 69.07 19.75 L 69.318 20 L 71.283 20 L 71.529 19.75 L 71.529 12.244 C 71.531 9.492 70.791 7.241 67.347 7.241 Z M 55.568 7.492 L 55.321 7.742 L 55.321 19.749 L 55.568 19.999 L 57.536 19.999 L 57.782 19.749 L 57.782 7.742 L 57.536 7.492 Z M 46.819 19.627 L 46.639 19.807 L 44.481 19.807 L 44.301 19.627 L 44.301 11.001 L 44.481 10.821 L 46.638 10.821 L 46.818 11.001 L 46.818 19.627 Z M 48.336 12.798 L 48.156 12.619 L 48.156 10.821 L 48.336 10.641 L 49.335 10.641 C 51.491 10.641 52.749 12.079 52.749 14.235 L 52.749 19.626 L 52.569 19.806 L 50.413 19.806 L 50.234 19.626 L 50.234 14.414 C 50.234 13.516 49.874 12.797 48.796 12.797 L 48.336 12.797 Z M 34.124 16.212 C 34.081 15.915 34.06 15.614 34.06 15.314 C 34.06 12.798 35.499 10.641 38.374 10.641 C 41.249 10.641 42.686 12.797 42.686 15.314 L 42.686 16.033 L 42.506 16.212 L 36.936 16.212 M 39.811 17.292 L 39.991 17.112 L 42.148 17.112 L 42.327 17.292 M 39.991 14.237 C 39.991 14.057 39.811 12.799 38.373 12.799 C 36.936 12.799 36.756 14.057 36.756 14.237 L 36.936 14.417 L 39.811 14.417 Z\" fill=\"rgb(67,29,147)\"></path><path d=\"M 42.327 17.292 C 42.147 18.371 41.249 19.987 38.553 19.987 C 35.857 19.987 34.612 18.37 34.431 17.292 L 34.612 17.112 L 37.029 17.112 L 37.209 17.292 C 37.388 17.652 38.014 17.832 38.554 17.832 C 39.093 17.832 39.632 17.652 39.811 17.292 M 32.084 9.384 L 23.638 9.384 L 23.459 9.204 L 23.459 7.407 L 23.637 7.227 L 32.084 7.227 L 32.264 7.407 L 32.264 9.204 M 26.334 17.471 L 26.334 17.649 L 32.444 17.649 L 32.623 17.83 L 32.623 19.627 L 32.444 19.807 L 23.457 19.807 L 23.278 19.627 L 23.278 17.65 L 23.458 17.291 L 25.565 14.472 L 28.434 10.779 L 28.614 10.599 L 31.091 10.599 L 31.271 10.779 L 26.333 17.47 Z\" fill=\"rgb(67,29,147)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-berd17\",layoutDependency:layoutDependency,layoutId:\"bAJoBigLA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82.143 20\" overflow=\"visible\"><path d=\"M 0 0 L 82.143 0 L 82.143 20 L 0 20 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-w5a1so\",layoutDependency:layoutDependency,layoutId:\"aWBWP4DKp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81.951 20\" overflow=\"visible\"><g><path d=\"M 19.26 12.969 C 20.128 10.323 19.842 7.434 18.473 5.009 L 11.678 4.837 L 11.678 4.751 L 18.219 4.586 C 17.429 3.342 16.372 2.29 15.126 1.505 L 9.876 1.374 L 9.876 1.289 L 14.541 1.172 C 10.612 -0.935 5.758 -0.146 2.698 3.095 L 8.568 3.244 L 8.568 3.329 L 2.347 3.484 C 0.829 5.268 -0.003 7.534 0 9.877 C 0 9.983 0 10.086 0.006 10.189 L 0.006 10.211 L 2.35 10.27 L 2.35 10.355 L 0.014 10.414 L 0.014 10.435 C 0.099 11.976 0.546 13.476 1.319 14.812 L 5.226 14.91 L 5.226 14.996 L 1.487 15.09 C 2.479 16.683 3.902 17.962 5.591 18.778 L 5.591 10.574 L 6.539 10.574 C 6.613 10.574 6.684 10.603 6.736 10.655 C 6.788 10.707 6.817 10.778 6.816 10.852 L 6.816 19.27 C 8.806 19.914 10.948 19.914 12.937 19.27 L 12.937 10.852 C 12.937 10.778 12.966 10.707 13.018 10.655 C 13.07 10.603 13.141 10.573 13.215 10.574 L 14.161 10.574 L 14.161 18.779 C 15.272 18.243 16.273 17.504 17.111 16.6 L 14.659 16.539 L 14.659 16.454 L 17.306 16.387 C 18.118 15.462 18.749 14.393 19.168 13.236 L 15.636 13.147 L 15.636 13.061 L 19.26 12.968 Z M 15.531 10.313 L 4.222 10.313 L 4.018 9.497 L 5.591 9.497 L 5.591 8.622 L 5.913 8.622 C 6.145 8.621 6.367 8.713 6.531 8.877 C 6.695 9.041 6.787 9.264 6.786 9.496 L 9.265 9.496 L 9.265 8.33 L 3.261 8.33 C 3.144 7.397 2.59 6.669 2.59 6.669 C 4.222 7.047 9.876 7.076 9.876 7.076 C 9.876 7.076 15.531 7.047 17.162 6.669 C 17.162 6.669 16.61 7.397 16.493 8.33 L 10.489 8.33 L 10.489 9.496 L 12.968 9.496 C 12.968 9.013 13.359 8.622 13.842 8.622 L 14.163 8.622 L 14.163 9.496 L 15.737 9.496 Z\" fill=\"rgb(67,29,147)\"></path><path d=\"M 0 19.545 L 0.155 19.497 L 0.309 19.452 L 0.617 19.366 C 0.823 19.312 1.029 19.259 1.235 19.215 C 1.644 19.122 2.056 19.038 2.469 18.964 C 3.288 18.82 4.112 18.704 4.939 18.617 C 6.579 18.446 8.227 18.361 9.876 18.364 C 11.526 18.364 13.174 18.449 14.815 18.619 C 15.638 18.709 16.461 18.819 17.284 18.967 C 17.906 19.078 18.524 19.211 19.136 19.367 L 19.445 19.452 L 19.599 19.495 L 19.754 19.544 L 19.754 19.683 L 17.284 19.719 L 14.815 19.73 L 9.877 19.754 L 4.939 19.731 L 2.469 19.719 L 0.001 19.683 L 0.001 19.545 Z M 76.011 7.617 L 75.765 7.367 L 73.796 7.367 L 73.549 7.617 L 73.549 16.621 C 73.549 18.872 75.271 19.873 76.993 19.873 L 81.705 19.873 L 81.951 19.623 L 81.951 17.872 L 81.705 17.622 L 76.995 17.622 C 76.504 17.622 76.011 17.372 76.011 16.622 Z M 67.347 7.241 C 65.626 7.241 64.395 7.992 63.657 8.992 L 63.411 8.992 C 62.919 8.242 62.181 7.241 60.213 7.241 C 60.052 7.241 59.059 7.26 59.059 7.26 L 58.811 7.51 L 58.811 9.266 L 59.059 9.516 L 59.913 9.516 C 61.479 9.693 61.689 10.862 61.689 12.242 L 61.689 19.748 L 61.935 19.998 L 63.904 19.998 L 64.149 19.748 L 64.149 12.744 C 64.149 10.743 65.133 9.492 66.856 9.492 C 68.824 9.492 69.07 10.743 69.07 12.244 L 69.07 19.75 L 69.318 20 L 71.283 20 L 71.529 19.75 L 71.529 12.244 C 71.531 9.492 70.791 7.241 67.347 7.241 Z M 55.568 7.492 L 55.321 7.742 L 55.321 19.749 L 55.568 19.999 L 57.536 19.999 L 57.782 19.749 L 57.782 7.742 L 57.536 7.492 Z M 46.819 19.627 L 46.639 19.807 L 44.481 19.807 L 44.301 19.627 L 44.301 11.001 L 44.481 10.821 L 46.638 10.821 L 46.818 11.001 L 46.818 19.627 Z M 48.336 12.798 L 48.156 12.619 L 48.156 10.821 L 48.336 10.641 L 49.335 10.641 C 51.491 10.641 52.749 12.079 52.749 14.235 L 52.749 19.626 L 52.569 19.806 L 50.413 19.806 L 50.234 19.626 L 50.234 14.414 C 50.234 13.516 49.874 12.797 48.796 12.797 L 48.336 12.797 Z M 34.124 16.212 C 34.081 15.915 34.06 15.614 34.06 15.314 C 34.06 12.798 35.499 10.641 38.374 10.641 C 41.249 10.641 42.686 12.797 42.686 15.314 L 42.686 16.033 L 42.506 16.212 L 36.936 16.212 M 39.811 17.292 L 39.991 17.112 L 42.148 17.112 L 42.327 17.292 M 39.991 14.237 C 39.991 14.057 39.811 12.799 38.373 12.799 C 36.936 12.799 36.756 14.057 36.756 14.237 L 36.936 14.417 L 39.811 14.417 Z\" fill=\"rgb(67,29,147)\"></path><path d=\"M 42.327 17.292 C 42.147 18.371 41.249 19.987 38.553 19.987 C 35.857 19.987 34.612 18.37 34.431 17.292 L 34.612 17.112 L 37.029 17.112 L 37.209 17.292 C 37.388 17.652 38.014 17.832 38.554 17.832 C 39.093 17.832 39.632 17.652 39.811 17.292 M 32.084 9.384 L 23.638 9.384 L 23.459 9.204 L 23.459 7.407 L 23.637 7.227 L 32.084 7.227 L 32.264 7.407 L 32.264 9.204 M 26.334 17.471 L 26.334 17.649 L 32.444 17.649 L 32.623 17.83 L 32.623 19.627 L 32.444 19.807 L 23.457 19.807 L 23.278 19.627 L 23.278 17.65 L 23.458 17.291 L 25.565 14.472 L 28.434 10.779 L 28.614 10.599 L 31.091 10.599 L 31.271 10.779 L 26.333 17.47 Z\" fill=\"rgb(67,29,147)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-13kqlfe\",layoutDependency:layoutDependency,layoutId:\"BfCwcHtGh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.753 19.753\" overflow=\"visible\"><path d=\"M 19.26 12.969 C 20.128 10.323 19.842 7.434 18.473 5.009 L 11.678 4.837 L 11.678 4.751 L 18.219 4.586 C 17.429 3.342 16.372 2.29 15.126 1.505 L 9.876 1.374 L 9.876 1.289 L 14.541 1.172 C 10.612 -0.935 5.758 -0.146 2.698 3.095 L 8.568 3.244 L 8.568 3.329 L 2.347 3.484 C 0.829 5.268 -0.003 7.534 0 9.877 C 0 9.983 0 10.086 0.006 10.189 L 0.006 10.211 L 2.35 10.27 L 2.35 10.355 L 0.014 10.414 L 0.014 10.435 C 0.099 11.976 0.546 13.476 1.319 14.812 L 5.226 14.91 L 5.226 14.996 L 1.487 15.09 C 2.479 16.683 3.902 17.962 5.591 18.778 L 5.591 10.574 L 6.539 10.574 C 6.613 10.574 6.684 10.603 6.736 10.655 C 6.788 10.707 6.817 10.778 6.816 10.852 L 6.816 19.27 C 8.806 19.914 10.948 19.914 12.937 19.27 L 12.937 10.852 C 12.937 10.778 12.966 10.707 13.018 10.655 C 13.07 10.603 13.141 10.573 13.215 10.574 L 14.161 10.574 L 14.161 18.779 C 15.272 18.243 16.273 17.504 17.111 16.6 L 14.659 16.539 L 14.659 16.454 L 17.306 16.387 C 18.118 15.462 18.749 14.393 19.168 13.236 L 15.636 13.147 L 15.636 13.061 L 19.26 12.968 Z M 15.531 10.313 L 4.222 10.313 L 4.018 9.497 L 5.591 9.497 L 5.591 8.622 L 5.913 8.622 C 6.145 8.621 6.367 8.713 6.531 8.877 C 6.695 9.041 6.787 9.264 6.786 9.496 L 9.265 9.496 L 9.265 8.33 L 3.261 8.33 C 3.144 7.397 2.59 6.669 2.59 6.669 C 4.222 7.047 9.876 7.076 9.876 7.076 C 9.876 7.076 15.531 7.047 17.162 6.669 C 17.162 6.669 16.61 7.397 16.493 8.33 L 10.489 8.33 L 10.489 9.496 L 12.968 9.496 C 12.968 9.013 13.359 8.622 13.842 8.622 L 14.163 8.622 L 14.163 9.496 L 15.737 9.496 Z\" fill=\"rgb(67,29,147)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pczkfr\",layoutDependency:layoutDependency,layoutId:\"VoDGSDl7Q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.753 19.753\" overflow=\"visible\"><path d=\"M 19.26 12.969 C 20.128 10.323 19.842 7.434 18.473 5.009 L 11.678 4.837 L 11.678 4.751 L 18.219 4.586 C 17.429 3.342 16.372 2.29 15.126 1.505 L 9.876 1.374 L 9.876 1.289 L 14.541 1.172 C 10.612 -0.935 5.758 -0.146 2.698 3.095 L 8.568 3.244 L 8.568 3.329 L 2.347 3.484 C 0.829 5.268 -0.003 7.534 0 9.877 C 0 9.983 0 10.086 0.006 10.189 L 0.006 10.211 L 2.35 10.27 L 2.35 10.355 L 0.014 10.414 L 0.014 10.435 C 0.099 11.976 0.546 13.476 1.319 14.812 L 5.226 14.91 L 5.226 14.996 L 1.487 15.09 C 2.479 16.683 3.902 17.962 5.591 18.778 L 5.591 10.574 L 6.539 10.574 C 6.613 10.574 6.684 10.603 6.736 10.655 C 6.788 10.707 6.817 10.778 6.816 10.852 L 6.816 19.27 C 8.806 19.914 10.948 19.914 12.937 19.27 L 12.937 10.852 C 12.937 10.778 12.966 10.707 13.018 10.655 C 13.07 10.603 13.141 10.573 13.215 10.574 L 14.161 10.574 L 14.161 18.779 C 15.272 18.243 16.273 17.504 17.111 16.6 L 14.659 16.539 L 14.659 16.454 L 17.306 16.387 C 18.118 15.462 18.749 14.393 19.168 13.236 L 15.636 13.147 L 15.636 13.061 L 19.26 12.968 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tnl3u0\",layoutDependency:layoutDependency,layoutId:\"nCn55gpEw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.572 3.644\" overflow=\"visible\"><path d=\"M 12.941 3.644 L 1.632 3.644 L 1.428 2.828 L 3.001 2.828 L 3.001 1.953 L 3.323 1.953 C 3.555 1.952 3.777 2.044 3.941 2.208 C 4.105 2.372 4.197 2.595 4.196 2.827 L 6.675 2.827 L 6.675 1.661 L 0.671 1.661 C 0.554 0.729 0 0 0 0 C 1.632 0.379 7.286 0.407 7.286 0.407 C 7.286 0.407 12.941 0.379 14.572 0 C 14.572 0 14.02 0.729 13.903 1.661 L 7.899 1.661 L 7.899 2.827 L 10.378 2.827 C 10.378 2.344 10.769 1.953 11.252 1.953 L 11.573 1.953 L 11.573 2.827 L 13.147 2.827 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-116qmec\",layoutDependency:layoutDependency,layoutId:\"LjJ5P2Yy2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81.951 12.759\" overflow=\"visible\"><path d=\"M 0 12.304 L 0.155 12.256 L 0.309 12.211 L 0.617 12.125 C 0.823 12.071 1.029 12.018 1.235 11.974 C 1.644 11.881 2.056 11.797 2.469 11.723 C 3.288 11.579 4.112 11.463 4.939 11.376 C 6.579 11.205 8.227 11.12 9.876 11.124 C 11.526 11.124 13.174 11.208 14.815 11.379 C 15.638 11.469 16.461 11.579 17.284 11.726 C 17.906 11.837 18.524 11.97 19.136 12.126 L 19.445 12.211 L 19.599 12.254 L 19.754 12.303 L 19.754 12.442 L 17.284 12.478 L 14.815 12.489 L 9.877 12.513 L 4.939 12.49 L 2.469 12.478 L 0.001 12.442 L 0.001 12.304 Z M 76.011 0.376 L 75.765 0.126 L 73.796 0.126 L 73.549 0.376 L 73.549 9.38 C 73.549 11.631 75.271 12.632 76.993 12.632 L 81.705 12.632 L 81.951 12.382 L 81.951 10.631 L 81.705 10.381 L 76.995 10.381 C 76.504 10.381 76.011 10.131 76.011 9.381 Z M 67.347 0 C 65.626 0 64.395 0.751 63.657 1.751 L 63.411 1.751 C 62.919 1.001 62.181 0 60.213 0 C 60.052 0 59.059 0.019 59.059 0.019 L 58.811 0.269 L 58.811 2.025 L 59.059 2.275 L 59.913 2.275 C 61.479 2.452 61.689 3.621 61.689 5.001 L 61.689 12.507 L 61.935 12.757 L 63.904 12.757 L 64.149 12.507 L 64.149 5.503 C 64.149 3.502 65.133 2.251 66.856 2.251 C 68.824 2.251 69.07 3.502 69.07 5.003 L 69.07 12.509 L 69.318 12.759 L 71.283 12.759 L 71.529 12.509 L 71.529 5.003 C 71.531 2.251 70.791 0 67.347 0 Z M 55.568 0.251 L 55.321 0.501 L 55.321 12.508 L 55.568 12.758 L 57.536 12.758 L 57.782 12.508 L 57.782 0.501 L 57.536 0.251 Z M 46.819 12.386 L 46.639 12.566 L 44.481 12.566 L 44.301 12.386 L 44.301 3.76 L 44.481 3.58 L 46.638 3.58 L 46.818 3.76 L 46.818 12.386 Z M 48.336 5.557 L 48.156 5.378 L 48.156 3.58 L 48.336 3.4 L 49.335 3.4 C 51.491 3.4 52.749 4.838 52.749 6.994 L 52.749 12.385 L 52.569 12.565 L 50.413 12.565 L 50.234 12.385 L 50.234 7.174 C 50.234 6.275 49.874 5.556 48.796 5.556 L 48.336 5.556 Z M 34.124 8.971 C 34.081 8.674 34.06 8.374 34.06 8.073 C 34.06 5.557 35.499 3.4 38.374 3.4 C 41.249 3.4 42.686 5.556 42.686 8.074 L 42.686 8.792 L 42.506 8.971 L 36.936 8.971 M 39.811 10.051 L 39.991 9.871 L 42.148 9.871 L 42.327 10.051 M 39.991 6.996 C 39.991 6.816 39.811 5.559 38.373 5.559 C 36.936 5.559 36.756 6.816 36.756 6.996 L 36.936 7.176 L 39.811 7.176 Z\" fill=\"rgb(67,29,147)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3lesu7\",layoutDependency:layoutDependency,layoutId:\"gZcwt63pV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.754 1.389\" overflow=\"visible\"><path d=\"M 0 1.181 L 0.155 1.132 L 0.309 1.087 L 0.617 1.002 C 0.823 0.948 1.029 0.894 1.235 0.851 C 1.644 0.758 2.056 0.674 2.469 0.599 C 3.288 0.455 4.112 0.339 4.939 0.252 C 6.579 0.081 8.227 -0.003 9.876 0 C 11.526 0 13.174 0.084 14.815 0.255 C 15.638 0.345 16.461 0.455 17.284 0.603 C 17.906 0.714 18.524 0.847 19.136 1.002 L 19.445 1.088 L 19.599 1.131 L 19.754 1.179 L 19.754 1.319 L 17.284 1.354 L 14.815 1.366 L 9.877 1.389 L 4.939 1.367 L 2.469 1.354 L 0.001 1.319 L 0.001 1.181 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wnr5i3\",layoutDependency:layoutDependency,layoutId:\"CdnaPxalF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.402 12.506\" overflow=\"visible\"><path d=\"M 2.462 0.25 L 2.216 0 L 0.248 0 L 0 0.25 L 0 9.254 C 0 11.506 1.722 12.506 3.444 12.506 L 8.156 12.506 L 8.402 12.256 L 8.402 10.506 L 8.156 10.256 L 3.446 10.256 C 2.955 10.256 2.463 10.006 2.463 9.255 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nbz3kk\",layoutDependency:layoutDependency,layoutId:\"imVkrhWd_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.718 12.759\" overflow=\"visible\"><path d=\"M 8.536 0 C 6.814 0 5.584 0.751 4.846 1.751 L 4.6 1.751 C 4.107 1.001 3.369 0 1.401 0 C 1.241 0 0.248 0.019 0.248 0.019 L 0 0.269 L 0 2.025 L 0.248 2.275 L 1.101 2.275 C 2.668 2.452 2.878 3.621 2.878 5.001 L 2.878 12.507 L 3.124 12.757 L 5.092 12.757 L 5.338 12.507 L 5.338 5.503 C 5.338 3.502 6.321 2.251 8.044 2.251 C 10.012 2.251 10.259 3.502 10.259 5.003 L 10.259 12.509 L 10.506 12.759 L 12.471 12.759 L 12.718 12.509 L 12.718 5.003 C 12.719 2.251 11.98 0 8.536 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-130hobq\",layoutDependency:layoutDependency,layoutId:\"VGLvUVzV_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.461 12.507\" overflow=\"visible\"><path d=\"M 0.246 0 L 0 0.25 L 0 12.257 L 0.246 12.507 L 2.214 12.507 L 2.461 12.257 L 2.461 0.25 L 2.214 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t0fo6o\",layoutDependency:layoutDependency,layoutId:\"gu2vftMZO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.517 8.986\" overflow=\"visible\"><path d=\"M 2.517 8.806 L 2.337 8.986 L 0.18 8.986 L 0 8.806 L 0 0.18 L 0.18 0 L 2.336 0 L 2.516 0.18 L 2.516 8.806 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g4uvrz\",layoutDependency:layoutDependency,layoutId:\"O0MWvl4KC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.594 9.165\" overflow=\"visible\"><path d=\"M 0.18 2.157 L 0 1.978 L 0 0.18 L 0.18 0 L 1.179 0 C 3.336 0 4.594 1.438 4.594 3.594 L 4.594 8.985 L 4.414 9.165 L 2.257 9.165 L 2.078 8.985 L 2.078 3.774 C 2.078 2.875 1.719 2.156 0.64 2.156 L 0.18 2.156 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f9beih\",layoutDependency:layoutDependency,layoutId:\"M5L4Yy7Ha\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.626 5.571\" overflow=\"visible\"><path d=\"M 0.064 5.571 C 0.021 5.274 0 4.974 0 4.673 C 0 2.157 1.439 0 4.314 0 C 7.189 0 8.626 2.156 8.626 4.674 L 8.626 5.392 L 8.446 5.571 L 2.876 5.571\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-76zngw\",layoutDependency:layoutDependency,layoutId:\"L054KPFsl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.516 1\" overflow=\"visible\"><path d=\"M 0 0.18 L 0.18 0 L 2.337 0 L 2.516 0.18\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18koud8\",layoutDependency:layoutDependency,layoutId:\"pR3OOwwOL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.235 1.617\" overflow=\"visible\"><path d=\"M 3.235 1.438 C 3.235 1.258 3.055 0 1.617 0 C 0.18 0 0 1.257 0 1.438 L 0.18 1.617 L 3.055 1.617 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-gxknrm\",layoutDependency:layoutDependency,layoutId:\"IAmyKGaOv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.049 12.761\" overflow=\"visible\"><path d=\"M 19.049 10.066 C 18.869 11.144 17.971 12.761 15.275 12.761 C 12.579 12.761 11.334 11.144 11.154 10.066 L 11.334 9.886 L 13.751 9.886 L 13.931 10.066 C 14.11 10.425 14.736 10.605 15.276 10.605 C 15.815 10.605 16.354 10.425 16.534 10.066 M 8.806 2.157 L 0.36 2.157 L 0.181 1.978 L 0.181 0.18 L 0.359 0 L 8.806 0 L 8.986 0.18 L 8.986 1.977 M 3.056 10.244 L 3.056 10.423 L 9.166 10.423 L 9.345 10.604 L 9.345 12.4 L 9.166 12.58 L 0.179 12.58 L 0 12.4 L 0 10.424 L 0.18 10.064 L 2.287 7.246 L 5.156 3.552 L 5.336 3.372 L 7.813 3.372 L 7.993 3.552 L 3.055 10.244 Z\" fill=\"rgb(67,29,147)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8m52as\",layoutDependency:layoutDependency,layoutId:\"YqLrJO5V_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.896 2.875\" overflow=\"visible\"><path d=\"M 7.896 0.18 C 7.716 1.259 6.817 2.875 4.121 2.875 C 1.426 2.875 0.181 1.258 0 0.18 L 0.181 0 L 2.597 0 L 2.777 0.18 C 2.956 0.539 3.582 0.719 4.122 0.719 C 4.661 0.719 5.201 0.539 5.38 0.18\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ezx6o2\",layoutDependency:layoutDependency,layoutId:\"GNqnDnAJ0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.805 2.157\" overflow=\"visible\"><path d=\"M 8.626 2.157 L 0.179 2.157 L 0 1.978 L 0 0.18 L 0.179 0 L 8.626 0 L 8.805 0.18 L 8.805 1.977\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8o0x9d\",layoutDependency:layoutDependency,layoutId:\"SEbbwFyEd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.345 9.208\" overflow=\"visible\"><path d=\"M 3.056 6.872 L 3.056 7.051 L 9.166 7.051 L 9.345 7.231 L 9.345 9.028 L 9.166 9.208 L 0.179 9.208 L 0 9.028 L 0 7.051 L 0.18 6.692 L 2.287 3.874 L 5.156 0.18 L 5.336 0 L 7.813 0 L 7.993 0.18 L 3.055 6.871 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})]})})})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QEYwP.framer-aoqboz, .framer-QEYwP .framer-aoqboz { display: block; }\",\".framer-QEYwP.framer-18u5fxy { height: 42px; overflow: hidden; position: relative; width: 1140px; }\",\".framer-QEYwP .framer-1dfrhe5-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - min(100%, 1140px) / 2); max-width: 100%; position: absolute; top: 0px; width: 1140px; }\",\".framer-QEYwP .framer-1j06ewk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 56px; }\",\".framer-QEYwP .framer-1o3i6q2 { height: 26px; position: relative; width: 55px; }\",\".framer-QEYwP .framer-hiu3u7, .framer-QEYwP .framer-ozqid6, .framer-QEYwP .framer-jmbsmr { height: 26px; left: 0px; position: absolute; top: 0px; width: 55px; }\",\".framer-QEYwP .framer-1m1uhxg { height: 6px; left: 48px; position: absolute; top: 8px; width: 5px; }\",\".framer-QEYwP .framer-kimlbd { height: 6px; left: 39px; position: absolute; top: 18px; width: 5px; }\",\".framer-QEYwP .framer-1k8hrfr { height: 8px; left: 27px; position: absolute; top: 8px; width: 6px; }\",\".framer-QEYwP .framer-1og9gd4 { height: 8px; left: 6px; position: absolute; top: 8px; width: 6px; }\",\".framer-QEYwP .framer-13a6z8o, .framer-QEYwP .framer-163jedl, .framer-QEYwP .framer-x3tz2c, .framer-QEYwP .framer-1k9ezyn, .framer-QEYwP .framer-xljpmw, .framer-QEYwP .framer-69tjfl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-x3007a { height: 17px; position: relative; width: 82px; }\",\".framer-QEYwP .framer-12q4j4y { height: 17px; left: 0px; position: absolute; top: 0px; width: 82px; }\",\".framer-QEYwP .framer-125l3zf { height: 16px; left: 1px; position: absolute; top: 1px; width: 15px; }\",\".framer-QEYwP .framer-1lwdram { height: 13px; left: 2px; position: absolute; top: 2px; width: 12px; }\",\".framer-QEYwP .framer-19ka38b { height: 16px; left: 0px; position: absolute; top: 0px; width: 15px; }\",\".framer-QEYwP .framer-tdwxmy { height: 5px; left: 7px; position: absolute; top: 7px; width: 7px; }\",\".framer-QEYwP .framer-166r17j { height: 13px; left: 26px; position: absolute; top: 3px; width: 56px; }\",\".framer-QEYwP .framer-zogls0 { height: 13px; left: 0px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-p0at48 { height: 4px; left: 2px; position: absolute; top: 7px; width: 6px; }\",\".framer-QEYwP .framer-16jbzuh { height: 4px; left: 2px; position: absolute; top: 2px; width: 5px; }\",\".framer-QEYwP .framer-nq6swh { height: 10px; left: 12px; position: absolute; top: 3px; width: 8px; }\",\".framer-QEYwP .framer-z4nmh7 { height: 10px; left: 22px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-9kdntt { height: 7px; left: 34px; position: absolute; top: 3px; width: 7px; }\",\".framer-QEYwP .framer-r6274g { height: 13px; left: 32px; position: absolute; top: 0px; width: 2px; }\",\".framer-QEYwP .framer-1h51ysj { height: 6px; left: 35px; position: absolute; top: 7px; width: 6px; }\",\".framer-QEYwP .framer-1l52la4 { height: 10px; left: 41px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-mt67dw { height: 2px; left: 51px; position: absolute; top: 3px; width: 5px; }\",\".framer-QEYwP .framer-1n9p0jv { height: 12px; left: 52px; position: absolute; top: 1px; width: 4px; }\",\".framer-QEYwP .framer-1ogx2w4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 73px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-1th25kr { height: 20px; position: relative; width: 73px; }\",\".framer-QEYwP .framer-coxys4 { height: 20px; left: 0px; position: absolute; top: 0px; width: 73px; }\",\".framer-QEYwP .framer-j87svy { height: 20px; left: 0px; position: absolute; top: 0px; width: 72px; }\",\".framer-QEYwP .framer-1u9xpg8, .framer-QEYwP .framer-13kqlfe, .framer-QEYwP .framer-1pczkfr { height: 20px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-QEYwP .framer-spi9mc { height: 20px; left: 1px; position: absolute; top: 1px; width: 19px; }\",\".framer-QEYwP .framer-1h6hbtw { height: 3px; left: 6px; position: absolute; top: 0px; width: 8px; }\",\".framer-QEYwP .framer-11zvu52 { height: 9px; left: 17px; position: absolute; top: 6px; width: 3px; }\",\".framer-QEYwP .framer-1k58chd { height: 3px; left: 6px; position: absolute; top: 17px; width: 8px; }\",\".framer-QEYwP .framer-uap6u2 { height: 9px; left: 0px; position: absolute; top: 6px; width: 3px; }\",\".framer-QEYwP .framer-1ns9fi8 { height: 5px; left: 8px; position: absolute; top: 8px; width: 5px; }\",\".framer-QEYwP .framer-4kbb5l { height: 12px; left: 24px; position: absolute; top: 3px; width: 48px; }\",\".framer-QEYwP .framer-54eyp3 { height: 9px; left: 39px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-5vjw0j { height: 9px; left: 30px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-1ysmtrt { height: 2px; left: 32px; position: absolute; top: 4px; width: 5px; }\",\".framer-QEYwP .framer-mpmbaa { height: 12px; left: 26px; position: absolute; top: 0px; width: 4px; }\",\".framer-QEYwP .framer-1niyst2 { height: 9px; left: 20px; position: absolute; top: 3px; width: 5px; }\",\".framer-QEYwP .framer-1ia32d6 { height: 9px; left: 9px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-w2cypm { height: 6px; left: 11px; position: absolute; top: 4px; width: 5px; }\",\".framer-QEYwP .framer-tstgg5 { height: 9px; left: 0px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-48bq37 { height: 18px; position: relative; width: 74px; }\",\".framer-QEYwP .framer-1tlfx6 { height: 15px; left: 0px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-14sf1rv { height: 7px; left: 9px; position: absolute; top: 10px; width: 9px; }\",\".framer-QEYwP .framer-11p2d88 { height: 18px; left: 3px; position: absolute; top: 0px; width: 71px; }\",\".framer-QEYwP .framer-a7w77s { height: 8px; left: 3px; position: absolute; top: 11px; width: 9px; }\",\".framer-QEYwP .framer-1gr3nai { height: 5px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-QEYwP .framer-1xs67vy { height: 11px; left: 21px; position: absolute; top: 4px; width: 10px; }\",\".framer-QEYwP .framer-4g9rif { height: 11px; left: 32px; position: absolute; top: 4px; width: 11px; }\",\".framer-QEYwP .framer-1bxh5vr { height: 6px; left: 35px; position: absolute; top: 6px; width: 5px; }\",\".framer-QEYwP .framer-17qagcw { height: 11px; left: 44px; position: absolute; top: 4px; width: 10px; }\",\".framer-QEYwP .framer-qsxe5b { height: 11px; left: 55px; position: absolute; top: 4px; width: 10px; }\",\".framer-QEYwP .framer-t0duk0 { height: 14px; left: 65px; position: absolute; top: 1px; width: 7px; }\",\".framer-QEYwP .framer-j3h45k { height: 27px; overflow: hidden; position: relative; text-decoration: none; width: 74px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-15a0etg { height: 27px; left: 0px; position: absolute; top: 0px; width: 74px; }\",\".framer-QEYwP .framer-6qnkth { height: 12px; left: 30px; position: absolute; top: 8px; width: 44px; }\",\".framer-QEYwP .framer-1qvln5o { height: 10px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-1ce0ooi { height: 7px; left: 2px; position: absolute; top: 2px; width: 6px; }\",\".framer-QEYwP .framer-1eu3d1w { height: 8px; left: 11px; position: absolute; top: 2px; width: 8px; }\",\".framer-QEYwP .framer-1vupouw { height: 2px; left: 12px; position: absolute; top: 4px; width: 4px; }\",\".framer-QEYwP .framer-zq4c4p { height: 8px; left: 19px; position: absolute; top: 2px; width: 8px; }\",\".framer-QEYwP .framer-z71285 { height: 2px; left: 21px; position: absolute; top: 4px; width: 4px; }\",\".framer-QEYwP .framer-17ocqev { height: 10px; left: 28px; position: absolute; top: 2px; width: 8px; }\",\".framer-QEYwP .framer-rj4izv { height: 5px; left: 30px; position: absolute; top: 4px; width: 5px; }\",\".framer-QEYwP .framer-oypmau { height: 10px; left: 37px; position: absolute; top: 0px; width: 7px; }\",\".framer-QEYwP .framer-1s7dcl, .framer-QEYwP .framer-w0sjr1 { height: 27px; left: 0px; position: absolute; top: 0px; width: 22px; }\",\".framer-QEYwP .framer-1gdszl1 { height: 5px; left: 7px; position: absolute; top: 14px; width: 7px; }\",\".framer-QEYwP .framer-hus3hi { height: 8px; left: 7px; position: absolute; top: 7px; width: 10px; }\",\".framer-QEYwP .framer-1487ao3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 81px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-1sh1962 { height: 19px; position: relative; width: 81px; }\",\".framer-QEYwP .framer-vvb7v9, .framer-QEYwP .framer-6vkaw4 { height: 19px; left: 0px; position: absolute; top: 0px; width: 81px; }\",\".framer-QEYwP .framer-1wx69pi { height: 16px; left: 22px; position: absolute; top: 3px; width: 59px; }\",\".framer-QEYwP .framer-1svqks2 { height: 13px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-QEYwP .framer-aofu8p { height: 8px; left: 3px; position: absolute; top: 3px; width: 6px; }\",\".framer-QEYwP .framer-1o9xacp { height: 9px; left: 27px; position: absolute; top: 4px; width: 3px; }\",\".framer-QEYwP .framer-v834zy { height: 3px; left: 27px; position: absolute; top: 0px; width: 3px; }\",\".framer-QEYwP .framer-178fn6v { height: 13px; left: 31px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-1el6a15 { height: 5px; left: 34px; position: absolute; top: 6px; width: 5px; }\",\".framer-QEYwP .framer-sw1z62 { height: 13px; left: 16px; position: absolute; top: 4px; width: 9px; }\",\".framer-QEYwP .framer-1kjbuoc { height: 5px; left: 19px; position: absolute; top: 6px; width: 5px; }\",\".framer-QEYwP .framer-fsnmv2 { height: 9px; left: 41px; position: absolute; top: 4px; width: 9px; }\",\".framer-QEYwP .framer-mq37sd { height: 2px; left: 43px; position: absolute; top: 6px; width: 4px; }\",\".framer-QEYwP .framer-k11636 { height: 9px; left: 51px; position: absolute; top: 4px; width: 9px; }\",\".framer-QEYwP .framer-dx3gim { height: 2px; left: 53px; position: absolute; top: 6px; width: 4px; }\",\".framer-QEYwP .framer-11cslgw { height: 9px; left: 13px; position: absolute; top: 4px; width: 3px; }\",\".framer-QEYwP .framer-14s8qgm { height: 3px; left: 13px; position: absolute; top: 0px; width: 3px; }\",\".framer-QEYwP .framer-1b5tqug { height: 12px; left: 0px; position: absolute; top: 6px; width: 7px; }\",\".framer-QEYwP .framer-17f8jlh { height: 7px; left: 0px; position: absolute; top: 0px; width: 6px; }\",\".framer-QEYwP .framer-14kbf7m { height: 7px; left: 1px; position: absolute; top: 6px; width: 6px; }\",\".framer-QEYwP .framer-9pjdpd { height: 18px; left: 1px; position: absolute; top: 0px; width: 16px; }\",\".framer-QEYwP .framer-1e4daxi { height: 19px; position: relative; width: 107px; }\",\".framer-QEYwP .framer-eot3rd { height: 19px; left: 0px; position: absolute; top: 0px; width: 107px; }\",\".framer-QEYwP .framer-1ov81zq, .framer-QEYwP .framer-1jyjbmf { height: 19px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-QEYwP .framer-1ldqfzm { height: 10px; left: 24px; position: absolute; top: 5px; width: 83px; }\",\".framer-QEYwP .framer-gn9st0 { height: 10px; left: 74px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-1laxnkp { height: 10px; left: 63px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-mn97f7 { height: 10px; left: 50px; position: absolute; top: 0px; width: 11px; }\",\".framer-QEYwP .framer-nppudx { height: 10px; left: 47px; position: absolute; top: 0px; width: 2px; }\",\".framer-QEYwP .framer-o8pk2y { height: 10px; left: 34px; position: absolute; top: 0px; width: 12px; }\",\".framer-QEYwP .framer-g0h7gh { height: 10px; left: 24px; position: absolute; top: 0px; width: 12px; }\",\".framer-QEYwP .framer-13k367o { height: 4px; left: 28px; position: absolute; top: 2px; width: 4px; }\",\".framer-QEYwP .framer-1ix0zyl { height: 10px; left: 14px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-g17ys7 { height: 4px; left: 15px; position: absolute; top: 2px; width: 7px; }\",\".framer-QEYwP .framer-tm2vh2 { height: 10px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-QEYwP .framer-1jdeglo { height: 22px; overflow: hidden; position: relative; text-decoration: none; width: 102px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-193xqwj, .framer-QEYwP .framer-n2kfol { height: 22px; left: 0px; position: absolute; top: 0px; width: 102px; }\",\".framer-QEYwP .framer-1lpuyiv { height: 22px; left: 2px; position: absolute; top: 0px; width: 100px; }\",\".framer-QEYwP .framer-1ysg6ld { height: 22px; left: 0px; position: absolute; top: 0px; width: 21px; }\",\".framer-QEYwP .framer-vqhgi4 { height: 4px; left: 11px; position: absolute; top: 2px; width: 6px; }\",\".framer-QEYwP .framer-19a5j7k { height: 9px; left: 11px; position: absolute; top: 12px; width: 8px; }\",\".framer-QEYwP .framer-1lwfkr { height: 8px; left: 11px; position: absolute; top: 6px; width: 9px; }\",\".framer-QEYwP .framer-1u98vmk { height: 12px; left: 60px; position: absolute; top: 9px; width: 9px; }\",\".framer-QEYwP .framer-1j7jyem { height: 4px; left: 62px; position: absolute; top: 11px; width: 4px; }\",\".framer-QEYwP .framer-z2p4zh { height: 8px; left: 86px; position: absolute; top: 9px; width: 14px; }\",\".framer-QEYwP .framer-16e0bdy { height: 11px; left: 32px; position: absolute; top: 6px; width: 9px; }\",\".framer-QEYwP .framer-gybyp1 { height: 4px; left: 34px; position: absolute; top: 11px; width: 4px; }\",\".framer-QEYwP .framer-185hui0 { height: 8px; left: 76px; position: absolute; top: 9px; width: 9px; }\",\".framer-QEYwP .framer-1qcywc3 { height: 4px; left: 78px; position: absolute; top: 11px; width: 4px; }\",\".framer-QEYwP .framer-10tlv8v { height: 8px; left: 51px; position: absolute; top: 9px; width: 8px; }\",\".framer-QEYwP .framer-jaskks { height: 4px; left: 53px; position: absolute; top: 11px; width: 4px; }\",\".framer-QEYwP .framer-cela3c { height: 8px; left: 42px; position: absolute; top: 9px; width: 8px; }\",\".framer-QEYwP .framer-3mcsaf { height: 2px; left: 44px; position: absolute; top: 10px; width: 3px; }\",\".framer-QEYwP .framer-qo49a7 { height: 8px; left: 70px; position: absolute; top: 8px; width: 5px; }\",\".framer-QEYwP .framer-18ike5s { height: 10px; left: 28px; position: absolute; top: 7px; width: 2px; }\",\".framer-QEYwP .framer-fviy8x { height: 14px; left: 0px; position: absolute; top: 4px; width: 11px; }\",\".framer-QEYwP .framer-1bz8zxs { height: 2px; left: 0px; position: absolute; top: 6px; width: 11px; }\",\".framer-QEYwP .framer-3htbae { height: 2px; left: 5px; position: absolute; top: 0px; width: 6px; }\",\".framer-QEYwP .framer-5zglls { height: 2px; left: 5px; position: absolute; top: 13px; width: 6px; }\",\".framer-QEYwP .framer-yk7sae { height: 24px; position: relative; width: 53px; }\",\".framer-QEYwP .framer-19p977f { height: 24px; left: 0px; position: absolute; top: 0px; width: 53px; }\",\".framer-QEYwP .framer-1lds3z9 { height: 5px; left: 19px; position: absolute; top: 18px; width: 9px; }\",\".framer-QEYwP .framer-q1hlun { height: 18px; left: 1px; position: absolute; top: 2px; width: 52px; }\",\".framer-QEYwP .framer-1t6fl4p { height: 17px; left: 35px; position: absolute; top: 0px; width: 17px; }\",\".framer-QEYwP .framer-1y7luj1 { height: 18px; left: 15px; position: absolute; top: 0px; width: 18px; }\",\".framer-QEYwP .framer-wkcx7f { height: 17px; left: 0px; position: absolute; top: 0px; width: 14px; }\",\".framer-QEYwP .framer-1l1rpmo { height: 18px; left: 22px; position: absolute; top: 2px; width: 32px; }\",\".framer-QEYwP .framer-1t9z9te { height: 3px; left: 0px; position: absolute; top: 10px; width: 2px; }\",\".framer-QEYwP .framer-l6kaud { height: 3px; left: 5px; position: absolute; top: 11px; width: 2px; }\",\".framer-QEYwP .framer-edbquw { height: 3px; left: 3px; position: absolute; top: 6px; width: 2px; }\",\".framer-QEYwP .framer-1fjcczm { height: 16px; left: 14px; position: absolute; top: 1px; width: 16px; }\",\".framer-QEYwP .framer-1aodj4h { height: 18px; left: 13px; position: absolute; top: 0px; width: 18px; }\",\".framer-QEYwP .framer-19r61wm { height: 22px; left: 0px; position: absolute; top: 2px; width: 34px; }\",\".framer-QEYwP .framer-nzcc0a { height: 22px; left: 16px; position: absolute; top: 0px; width: 19px; }\",\".framer-QEYwP .framer-1u8trp7 { height: 4px; left: 20px; position: absolute; top: 17px; width: 8px; }\",\".framer-QEYwP .framer-b1jhc { height: 17px; left: 17px; position: absolute; top: 1px; width: 17px; }\",\".framer-QEYwP .framer-v1cr09 { height: 16px; left: 1px; position: absolute; top: 1px; width: 13px; }\",\".framer-QEYwP .framer-eegxqe { height: 18px; left: 0px; position: absolute; top: 0px; width: 15px; }\",\".framer-QEYwP .framer-1wn6m2h, .framer-QEYwP .framer-js1w4d, .framer-QEYwP .framer-1gdv3gg, .framer-QEYwP .framer-l2kec5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-1hlyofe { height: 14px; position: relative; width: 66px; }\",\".framer-QEYwP .framer-1i5ibfi { height: 14px; left: 0px; position: absolute; top: 0px; width: 66px; }\",\".framer-QEYwP .framer-16ysru7 { height: 14px; left: 20px; position: absolute; top: 0px; width: 37px; }\",\".framer-QEYwP .framer-4sg13o { height: 11px; left: 0px; position: absolute; top: 3px; width: 16px; }\",\".framer-QEYwP .framer-ksvb0o { height: 11px; left: 17px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-le5x5v { height: 3px; left: 20px; position: absolute; top: 9px; width: 3px; }\",\".framer-QEYwP .framer-12epi63 { height: 14px; left: 27px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-1jl8iz5 { height: 11px; left: 56px; position: absolute; top: 3px; width: 10px; }\",\".framer-QEYwP .framer-1ph6sw4 { height: 11px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-1hi343f { height: 2px; left: 4px; position: absolute; top: 3px; width: 4px; }\",\".framer-QEYwP .framer-1f6xbni { height: 11px; left: 12px; position: absolute; top: 3px; width: 3px; }\",\".framer-QEYwP .framer-107xqoc { height: 11px; left: 0px; position: absolute; top: 3px; width: 7px; }\",\".framer-QEYwP .framer-13c1fcq { height: 11px; left: 6px; position: absolute; top: 3px; width: 5px; }\",\".framer-QEYwP .framer-f6lscd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 88px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-fojnqr { height: 26px; position: relative; width: 88px; }\",\".framer-QEYwP .framer-9xj1sj { height: 26px; left: 0px; position: absolute; top: 0px; width: 18px; }\",\".framer-QEYwP .framer-9as6wy { height: 15px; left: 22px; position: absolute; top: 6px; width: 66px; }\",\".framer-QEYwP .framer-11dgd18 { height: 12px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-QEYwP .framer-pu1bzn { height: 9px; left: 14px; position: absolute; top: 4px; width: 8px; }\",\".framer-QEYwP .framer-1r4dr8x { height: 12px; left: 23px; position: absolute; top: 0px; width: 2px; }\",\".framer-QEYwP .framer-aqzfb3 { height: 12px; left: 26px; position: absolute; top: 1px; width: 6px; }\",\".framer-QEYwP .framer-7r1ux5 { height: 8px; left: 32px; position: absolute; top: 4px; width: 2px; }\",\".framer-QEYwP .framer-1k4s6fb { height: 2px; left: 32px; position: absolute; top: 0px; width: 2px; }\",\".framer-QEYwP .framer-107n4uk { height: 6px; left: 37px; position: absolute; top: 5px; width: 5px; }\",\".framer-QEYwP .framer-1ybwwq2 { height: 12px; left: 36px; position: absolute; top: 3px; width: 9px; }\",\".framer-QEYwP .framer-qdio69 { height: 12px; left: 46px; position: absolute; top: 0px; width: 2px; }\",\".framer-QEYwP .framer-1a738b8 { height: 8px; left: 49px; position: absolute; top: 4px; width: 2px; }\",\".framer-QEYwP .framer-12qh4ed { height: 2px; left: 49px; position: absolute; top: 0px; width: 2px; }\",\".framer-QEYwP .framer-1w77lgw { height: 2px; left: 54px; position: absolute; top: 5px; width: 4px; }\",\".framer-QEYwP .framer-ibkdmb { height: 9px; left: 52px; position: absolute; top: 3px; width: 8px; }\",\".framer-QEYwP .framer-1vna9yh { height: 9px; left: 61px; position: absolute; top: 3px; width: 5px; }\",\".framer-QEYwP .framer-1ftcsk6 { height: 24px; position: relative; width: 120px; }\",\".framer-QEYwP .framer-1eotzzn { height: 24px; left: 0px; position: absolute; top: 0px; width: 120px; }\",\".framer-QEYwP .framer-wx667f { height: 15px; left: 32px; position: absolute; top: 6px; width: 87px; }\",\".framer-QEYwP .framer-n01bxq { height: 11px; left: 0px; position: absolute; top: 1px; width: 9px; }\",\".framer-QEYwP .framer-qa873e { height: 3px; left: 11px; position: absolute; top: 0px; width: 3px; }\",\".framer-QEYwP .framer-9i82mk { height: 8px; left: 11px; position: absolute; top: 4px; width: 2px; }\",\".framer-QEYwP .framer-1btmqyc { height: 12px; left: 15px; position: absolute; top: 4px; width: 9px; }\",\".framer-QEYwP .framer-1m3cldh { height: 5px; left: 17px; position: absolute; top: 5px; width: 5px; }\",\".framer-QEYwP .framer-1ifi8zp { height: 12px; left: 25px; position: absolute; top: 1px; width: 8px; }\",\".framer-QEYwP .framer-kyqo6c { height: 11px; left: 34px; position: absolute; top: 1px; width: 7px; }\",\".framer-QEYwP .framer-1rn6yh2 { height: 12px; left: 40px; position: absolute; top: 0px; width: 7px; }\",\".framer-QEYwP .framer-1s6rtvu { height: 9px; left: 46px; position: absolute; top: 4px; width: 9px; }\",\".framer-QEYwP .framer-1ov1mk4 { height: 5px; left: 48px; position: absolute; top: 5px; width: 5px; }\",\".framer-QEYwP .framer-1fx3gfr { height: 12px; left: 57px; position: absolute; top: 1px; width: 2px; }\",\".framer-QEYwP .framer-7fmwx0 { height: 12px; left: 60px; position: absolute; top: 1px; width: 2px; }\",\".framer-QEYwP .framer-hdjewk { height: 11px; left: 67px; position: absolute; top: 1px; width: 10px; }\",\".framer-QEYwP .framer-8oh21j { height: 4px; left: 70px; position: absolute; top: 4px; width: 3px; }\",\".framer-QEYwP .framer-11r4524 { height: 11px; left: 78px; position: absolute; top: 1px; width: 2px; }\",\".framer-QEYwP .framer-myjeq2 { height: 3px; left: 82px; position: absolute; top: 1px; width: 2px; }\",\".framer-QEYwP .framer-z47z5s { height: 3px; left: 85px; position: absolute; top: 1px; width: 3px; }\",\".framer-QEYwP .framer-1f2ets0 { height: 23px; left: 0px; position: absolute; top: 1px; width: 23px; }\",\".framer-QEYwP .framer-1xme70w { height: 20px; left: 2px; position: absolute; top: 3px; width: 20px; }\",\".framer-QEYwP .framer-1d4d3u5 { height: 17px; left: 3px; position: absolute; top: 4px; width: 16px; }\",\".framer-QEYwP .framer-1o6lg5r { height: 16px; left: 1px; position: absolute; top: 8px; width: 21px; }\",\".framer-QEYwP .framer-436tm2 { height: 5px; left: 13px; position: absolute; top: 11px; width: 3px; }\",\".framer-QEYwP .framer-1gx29oj { height: 5px; left: 12px; position: absolute; top: 3px; width: 5px; }\",\".framer-QEYwP .framer-ksnvtc { height: 5px; left: 15px; position: absolute; top: 4px; width: 5px; }\",\".framer-QEYwP .framer-1ld93ho { height: 5px; left: 13px; position: absolute; top: 0px; width: 5px; }\",\".framer-QEYwP .framer-1bb0u4j, .framer-QEYwP .framer-1rb7ovd { height: 17px; left: 1px; position: absolute; top: 8px; width: 17px; }\",\".framer-QEYwP .framer-rzuyxy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 70px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-155v5ql { aspect-ratio: 3.72 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 70px; }\",\".framer-QEYwP .framer-bv0o1x { height: 21px; position: relative; width: 74px; }\",\".framer-QEYwP .framer-qmf989 { height: 21px; left: 0px; position: absolute; top: 0px; width: 74px; }\",\".framer-QEYwP .framer-13jll1d, .framer-QEYwP .framer-18hw0ym { height: 21px; left: 0px; position: absolute; top: 0px; width: 21px; }\",\".framer-QEYwP .framer-1ws29dp { height: 2px; left: 5px; position: absolute; top: 17px; width: 4px; }\",\".framer-QEYwP .framer-r5gysg { height: 2px; left: 3px; position: absolute; top: 12px; width: 7px; }\",\".framer-QEYwP .framer-1m84p8o { height: 2px; left: 3px; position: absolute; top: 8px; width: 7px; }\",\".framer-QEYwP .framer-1x8ea6y { height: 2px; left: 5px; position: absolute; top: 3px; width: 4px; }\",\".framer-QEYwP .framer-p0ob9s { height: 16px; left: 12px; position: absolute; top: 3px; width: 7px; }\",\".framer-QEYwP .framer-1g8yi1j { height: 18px; left: 27px; position: absolute; top: 3px; width: 46px; }\",\".framer-QEYwP .framer-1juk5sr { height: 14px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-mjhzeq { height: 4px; left: 3px; position: absolute; top: 3px; width: 4px; }\",\".framer-QEYwP .framer-1y4ndjh { height: 14px; left: 11px; position: absolute; top: 4px; width: 11px; }\",\".framer-QEYwP .framer-1am5a1s { height: 14px; left: 22px; position: absolute; top: 0px; width: 3px; }\",\".framer-QEYwP .framer-zqgr3d { height: 10px; left: 26px; position: absolute; top: 4px; width: 10px; }\",\".framer-QEYwP .framer-ybz7uz { height: 5px; left: 28px; position: absolute; top: 7px; width: 4px; }\",\".framer-QEYwP .framer-127f1ma { height: 10px; left: 37px; position: absolute; top: 4px; width: 9px; }\",\".framer-QEYwP .framer-1av2hha { height: 20px; overflow: hidden; position: relative; text-decoration: none; width: 119px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-1n48szu, .framer-QEYwP .framer-1ab98o9 { height: 20px; left: 0px; position: absolute; top: 0px; width: 119px; }\",\".framer-QEYwP .framer-asru84 { height: 12px; left: 5px; position: absolute; top: 4px; width: 10px; }\",\".framer-QEYwP .framer-ezuihs { height: 12px; left: 3px; position: absolute; top: 1px; width: 11px; }\",\".framer-QEYwP .framer-14i1xsy { height: 17px; left: 1px; position: absolute; top: 3px; width: 17px; }\",\".framer-QEYwP .framer-1rwtlyu { height: 12px; left: 6px; position: absolute; top: 5px; width: 11px; }\",\".framer-QEYwP .framer-1sm7wt1 { height: 4px; left: 14px; position: absolute; top: 0px; width: 4px; }\",\".framer-QEYwP .framer-17vqqvl { height: 4px; left: 0px; position: absolute; top: 12px; width: 4px; }\",\".framer-QEYwP .framer-mimmie { height: 14px; left: 28px; position: absolute; top: 6px; width: 66px; }\",\".framer-QEYwP .framer-atadei { height: 10px; left: 0px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-zxx03w { height: 10px; left: 10px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-1gjucs1 { height: 10px; left: 21px; position: absolute; top: 0px; width: 6px; }\",\".framer-QEYwP .framer-1k2mqte { height: 10px; left: 27px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-1mis0g { height: 3px; left: 29px; position: absolute; top: 6px; width: 4px; }\",\".framer-QEYwP .framer-pi82wv { height: 14px; left: 38px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-nx59pp { height: 7px; left: 40px; position: absolute; top: 2px; width: 5px; }\",\".framer-QEYwP .framer-1hy7it1 { height: 10px; left: 49px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-1rzdjum { height: 3px; left: 51px; position: absolute; top: 2px; width: 5px; }\",\".framer-QEYwP .framer-1kqsh39 { height: 10px; left: 60px; position: absolute; top: 0px; width: 6px; }\",\".framer-QEYwP .framer-30x051 { height: 18px; left: 94px; position: absolute; top: 2px; width: 25px; }\",\".framer-QEYwP .framer-10iqgrk { height: 10px; left: 0px; position: absolute; top: 4px; width: 10px; }\",\".framer-QEYwP .framer-1jsflqb { height: 3px; left: 2px; position: absolute; top: 10px; width: 4px; }\",\".framer-QEYwP .framer-1483pob { height: 14px; left: 11px; position: absolute; top: 4px; width: 10px; }\",\".framer-QEYwP .framer-18x51cz { height: 7px; left: 13px; position: absolute; top: 6px; width: 5px; }\",\".framer-QEYwP .framer-1ov4j0a { height: 3px; left: 22px; position: absolute; top: 0px; width: 3px; }\",\".framer-QEYwP .framer-1xnpkkv { height: 10px; left: 22px; position: absolute; top: 4px; width: 2px; }\",\".framer-QEYwP .framer-14mj1nn { height: 18px; position: relative; width: 71px; }\",\".framer-QEYwP .framer-1e9iq6r { height: 18px; left: 0px; position: absolute; top: 0px; width: 71px; }\",\".framer-QEYwP .framer-1f313wt { height: 16px; left: 3px; position: absolute; top: 1px; width: 14px; }\",\".framer-QEYwP .framer-bmzc02, .framer-QEYwP .framer-s48emd { height: 13px; left: 0px; position: absolute; top: 0px; width: 13px; }\",\".framer-QEYwP .framer-2ryxez { height: 2px; left: 2px; position: absolute; top: 2px; width: 4px; }\",\".framer-QEYwP .framer-1c2g58b { height: 10px; left: 0px; position: absolute; top: 6px; width: 13px; }\",\".framer-QEYwP .framer-hbcgws { height: 5px; left: 8px; position: absolute; top: 11px; width: 2px; }\",\".framer-QEYwP .framer-ma9b8i { height: 10px; left: 22px; position: absolute; top: 4px; width: 49px; }\",\".framer-QEYwP .framer-1yytpt0 { height: 10px; left: 33px; position: absolute; top: 0px; width: 16px; }\",\".framer-QEYwP .framer-fi3w1r { height: 10px; left: 20px; position: absolute; top: 0px; width: 11px; }\",\".framer-QEYwP .framer-v52xrz { height: 4px; left: 24px; position: absolute; top: 3px; width: 4px; }\",\".framer-QEYwP .framer-uf59ty { height: 10px; left: 9px; position: absolute; top: 0px; width: 10px; }\",\".framer-QEYwP .framer-qrp7vz { height: 2px; left: 13px; position: absolute; top: 3px; width: 4px; }\",\".framer-QEYwP .framer-miny6i { height: 10px; left: 0px; position: absolute; top: 1px; width: 9px; }\",\".framer-QEYwP .framer-m6a20y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 64px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QEYwP .framer-570j9e { height: 24px; position: relative; width: 64px; }\",\".framer-QEYwP .framer-xze6qj { height: 24px; left: 0px; position: absolute; top: 0px; width: 64px; }\",\".framer-QEYwP .framer-q5zwfe { height: 16px; left: 2px; position: absolute; top: 6px; width: 18px; }\",\".framer-QEYwP .framer-166o7nh { height: 13px; left: 10px; position: absolute; top: 3px; width: 8px; }\",\".framer-QEYwP .framer-15wy3uo { height: 13px; left: 0px; position: absolute; top: 0px; width: 8px; }\",\".framer-QEYwP .framer-b7ekcg { height: 12px; left: 2px; position: absolute; top: 2px; width: 17px; }\",\".framer-QEYwP .framer-1w9kucz { height: 9px; left: 9px; position: absolute; top: 3px; width: 8px; }\",\".framer-QEYwP .framer-16fr6tl { height: 8px; left: 0px; position: absolute; top: 0px; width: 8px; }\",\".framer-QEYwP .framer-166u9fb { height: 23px; left: 0px; position: absolute; top: 1px; width: 20px; }\",\".framer-QEYwP .framer-1t1thlu { height: 23px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-QEYwP .framer-1siv0vp, .framer-QEYwP .framer-1offg44, .framer-QEYwP .framer-v5nhy6 { height: 17px; left: 2px; position: absolute; top: 2px; width: 8px; }\",\".framer-QEYwP .framer-k253cx { height: 20px; left: 0px; position: absolute; top: 1px; width: 11px; }\",\".framer-QEYwP .framer-1odtmcg, .framer-QEYwP .framer-1hp0zuc { height: 20px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-QEYwP .framer-154ory5 { height: 20px; left: 10px; position: absolute; top: 4px; width: 11px; }\",\".framer-QEYwP .framer-fwq7fs { height: 13px; left: 11px; position: absolute; top: 9px; width: 8px; }\",\".framer-QEYwP .framer-y98qoi { height: 13px; left: 2px; position: absolute; top: 6px; width: 8px; }\",\".framer-QEYwP .framer-1tc6wru { height: 12px; left: 3px; position: absolute; top: 2px; width: 15px; }\",\".framer-QEYwP .framer-kp2rk4 { height: 9px; left: 8px; position: absolute; top: 3px; width: 7px; }\",\".framer-QEYwP .framer-98xwig { height: 8px; left: 0px; position: absolute; top: 0px; width: 7px; }\",\".framer-QEYwP .framer-7urf23 { height: 12px; left: 29px; position: absolute; top: 5px; width: 34px; }\",\".framer-QEYwP .framer-1cf69s7 { height: 8px; left: 0px; position: absolute; top: 4px; width: 7px; }\",\".framer-QEYwP .framer-129a0bs { height: 8px; left: 11px; position: absolute; top: 4px; width: 8px; }\",\".framer-QEYwP .framer-vmjog6 { height: 12px; left: 22px; position: absolute; top: 0px; width: 1px; }\",\".framer-QEYwP .framer-3nc33r { height: 8px; left: 26px; position: absolute; top: 4px; width: 8px; }\",\".framer-QEYwP .framer-1mcspm9 { height: 35px; position: relative; width: 68px; }\",\".framer-QEYwP .framer-1683n5v { height: 35px; left: 0px; position: absolute; top: 0px; width: 68px; }\",\".framer-QEYwP .framer-1b9boy4 { height: 22px; left: 27px; position: absolute; top: 8px; width: 42px; }\",\".framer-QEYwP .framer-19fx71x { height: 17px; left: 31px; position: absolute; top: 0px; width: 11px; }\",\".framer-QEYwP .framer-1tcmcx8 { height: 15px; left: 19px; position: absolute; top: 7px; width: 11px; }\",\".framer-QEYwP .framer-1pmdkqd { height: 10px; left: 10px; position: absolute; top: 7px; width: 10px; }\",\".framer-QEYwP .framer-rsal3m { height: 10px; left: 0px; position: absolute; top: 7px; width: 8px; }\",\".framer-QEYwP .framer-16ixbly { height: 9px; left: 3px; position: absolute; top: 0px; width: 17px; }\",\".framer-QEYwP .framer-m0aim0 { height: 28px; left: 0px; position: absolute; top: 8px; width: 22px; }\",\".framer-QEYwP .framer-1n0uj6h { height: 26px; left: 1px; position: absolute; top: 9px; width: 11px; }\",\".framer-QEYwP .framer-1icnbtb { height: 26px; left: 11px; position: absolute; top: 9px; width: 11px; }\",\".framer-QEYwP .framer-9cqtpq { height: 12px; left: 11px; position: absolute; top: 23px; width: 6px; }\",\".framer-QEYwP .framer-15pk3i4 { height: 12px; left: 6px; position: absolute; top: 22px; width: 6px; }\",\".framer-QEYwP .framer-1hhajnf { height: 2px; left: 9px; position: absolute; top: 28px; width: 5px; }\",\".framer-QEYwP .framer-1ac0s4d { height: 2px; left: 10px; position: absolute; top: 27px; width: 3px; }\",\".framer-QEYwP .framer-14p0mx5 { height: 9px; left: 11px; position: absolute; top: 19px; width: 7px; }\",\".framer-QEYwP .framer-35lvs2 { height: 9px; left: 5px; position: absolute; top: 19px; width: 7px; }\",\".framer-QEYwP .framer-3n39ff { height: 19px; left: 11px; position: absolute; top: 7px; width: 7px; }\",\".framer-QEYwP .framer-12ayopa { height: 19px; left: 5px; position: absolute; top: 7px; width: 7px; }\",\".framer-QEYwP .framer-1q1jus7 { height: 29px; left: 3px; position: absolute; top: 2px; width: 16px; }\",\".framer-QEYwP .framer-1kfio2l { height: 29px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-QEYwP .framer-1lacqc7 { height: 1px; left: 6px; position: absolute; top: 26px; width: 4px; }\",\".framer-QEYwP .framer-3ep4c7 { height: 1px; left: 7px; position: absolute; top: 26px; width: 2px; }\",\".framer-QEYwP .framer-15xu4rm { height: 17px; left: 2px; position: absolute; top: 9px; width: 12px; }\",\".framer-QEYwP .framer-1hzuei6 { height: 2px; left: 13px; position: absolute; top: 18px; width: 3px; }\",\".framer-QEYwP .framer-sgxs3j { height: 1px; left: 13px; position: absolute; top: 18px; width: 2px; }\",\".framer-QEYwP .framer-8zlyv8 { height: 2px; left: 7px; position: absolute; top: 18px; width: 8px; }\",\".framer-QEYwP .framer-1qmhyib { height: 1px; left: 7px; position: absolute; top: 0px; width: 1px; }\",\".framer-QEYwP .framer-170pcjy { height: 2px; left: 0px; position: absolute; top: 0px; width: 3px; }\",\".framer-QEYwP .framer-1xa7lru { height: 1px; left: 8px; position: absolute; top: 18px; width: 2px; }\",\".framer-QEYwP .framer-1c0w9c3 { height: 1px; left: 8px; position: absolute; top: 18px; width: 1px; }\",\".framer-QEYwP .framer-1h38s18 { height: 1px; left: 13px; position: absolute; top: 16px; width: 3px; }\",\".framer-QEYwP .framer-1r5pzm7 { height: 11px; left: 5px; position: absolute; top: 6px; width: 6px; }\",\".framer-QEYwP .framer-ceayod { height: 1px; left: 3px; position: absolute; top: 10px; width: 3px; }\",\".framer-QEYwP .framer-1srwvcc { height: 7px; left: 0px; position: absolute; top: 0px; width: 2px; }\",\".framer-QEYwP .framer-kzx6sm { height: 6px; left: 16px; position: absolute; top: 6px; width: 2px; }\",\".framer-QEYwP .framer-1u6hmyt { height: 3px; left: 10px; position: absolute; top: 24px; width: 4px; }\",\".framer-QEYwP .framer-1ho0wfw { height: 20px; position: relative; width: 82px; }\",\".framer-QEYwP .framer-berd17, .framer-QEYwP .framer-w5a1so { height: 20px; left: 0px; position: absolute; top: 0px; width: 82px; }\",\".framer-QEYwP .framer-tnl3u0 { height: 4px; left: 3px; position: absolute; top: 7px; width: 15px; }\",\".framer-QEYwP .framer-116qmec { height: 13px; left: 0px; position: absolute; top: 7px; width: 82px; }\",\".framer-QEYwP .framer-3lesu7 { height: 2px; left: 0px; position: absolute; top: 11px; width: 20px; }\",\".framer-QEYwP .framer-wnr5i3 { height: 13px; left: 74px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-1nbz3kk { height: 13px; left: 59px; position: absolute; top: 0px; width: 13px; }\",\".framer-QEYwP .framer-130hobq { height: 13px; left: 56px; position: absolute; top: 1px; width: 3px; }\",\".framer-QEYwP .framer-t0fo6o { height: 9px; left: 45px; position: absolute; top: 4px; width: 3px; }\",\".framer-QEYwP .framer-g4uvrz { height: 9px; left: 48px; position: absolute; top: 4px; width: 5px; }\",\".framer-QEYwP .framer-f9beih { height: 6px; left: 34px; position: absolute; top: 4px; width: 9px; }\",\".framer-QEYwP .framer-76zngw { height: 1px; left: 40px; position: absolute; top: 10px; width: 3px; }\",\".framer-QEYwP .framer-18koud8 { height: 2px; left: 37px; position: absolute; top: 6px; width: 3px; }\",\".framer-QEYwP .framer-gxknrm { height: 13px; left: 24px; position: absolute; top: 7px; width: 19px; }\",\".framer-QEYwP .framer-8m52as { height: 3px; left: 11px; position: absolute; top: 10px; width: 8px; }\",\".framer-QEYwP .framer-ezx6o2 { height: 2px; left: 0px; position: absolute; top: 0px; width: 9px; }\",\".framer-QEYwP .framer-8o0x9d { height: 9px; left: 0px; position: absolute; top: 4px; width: 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQT5xYIr4_=withCSS(Component,css,\"framer-QEYwP\");export default FramerQT5xYIr4_;FramerQT5xYIr4_.displayName=\"2025/Logo ticker\";FramerQT5xYIr4_.defaultProps={height:42,width:1140};addFonts(FramerQT5xYIr4_,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQT5xYIr4_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"42\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1140\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QT5xYIr4_.map"],
  "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", "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", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "u", "SVG", "Link", "Image2", "css", "FramerQT5xYIr4_", "withCSS", "QT5xYIr4_default", "addFonts", "TickerFonts"]
}
