{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/CUEFU4QzOtxn2yes3xoE/buYf0TUi9PCHAAUH8wlh/AbFnGjLhJ.js", "ssg:https://framerusercontent.com/modules/Bi6ua9yukWjxi6N65kGo/Aspngp1YprneFhizYQzr/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"YGOIzqbin\",\"DhhPEFHzQ\",\"aQYDJjU6t\",\"j2VUBL2PN\",\"NcbOwv9vp\",\"pOX8UU4d6\",\"gAS0woooF\",\"upzI32jlW\",\"ZFTA8d0Mh\",\"wemJof9ZE\",\"IzgY1xfhx\",\"li9BNfWb2\"];const serializationHash=\"framer-HQuIV\";const variantClassNames={aQYDJjU6t:\"framer-v-1g722d8\",DhhPEFHzQ:\"framer-v-1yhphff\",gAS0woooF:\"framer-v-1l2h91k\",IzgY1xfhx:\"framer-v-1r5blup\",j2VUBL2PN:\"framer-v-1dyhnmu\",li9BNfWb2:\"framer-v-kqqz48\",NcbOwv9vp:\"framer-v-1nwmiul\",pOX8UU4d6:\"framer-v-33fn3a\",upzI32jlW:\"framer-v-8cbokd\",wemJof9ZE:\"framer-v-lw04n\",YGOIzqbin:\"framer-v-1rs3kz9\",ZFTA8d0Mh:\"framer-v-1thap65\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Glass Large Dark\":\"j2VUBL2PN\",\"Glass Large Light\":\"YGOIzqbin\",\"Glass Medium Dark\":\"NcbOwv9vp\",\"Glass Medium Light\":\"DhhPEFHzQ\",\"Glass Small Dark\":\"pOX8UU4d6\",\"Glass Small Light\":\"aQYDJjU6t\",\"Large Dark\":\"wemJof9ZE\",\"Large Light\":\"gAS0woooF\",\"Medium Dark\":\"IzgY1xfhx\",\"Medium Light\":\"upzI32jlW\",\"Small Dark\":\"li9BNfWb2\",\"Small Light\":\"ZFTA8d0Mh\"};const getProps=({height,id,width,zendeskMockup,...props})=>{return{...props,Tdy2602Kk:zendeskMockup??props.Tdy2602Kk??{src:\"https://framerusercontent.com/images/8iq4E3MFNbOBvgyMUX4Y8oYkL0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8iq4E3MFNbOBvgyMUX4Y8oYkL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iq4E3MFNbOBvgyMUX4Y8oYkL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iq4E3MFNbOBvgyMUX4Y8oYkL0.png 1492w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"YGOIzqbin\"};};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,Tdy2602Kk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YGOIzqbin\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rs3kz9\",className,classNames),\"data-framer-name\":\"Glass Large Light\",layoutDependency:layoutDependency,layoutId:\"YGOIzqbin\",ref:refBinding,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"inset 0px 1px 0px 0px rgba(255, 255, 255, 0.25), 0px 0.8398022765904898px 0.8398022765904898px -0.46875px rgba(0, 0, 0, 0.07416), 0px 1.9904796838090988px 1.9904796838090988px -0.9375px rgba(0, 0, 0, 0.07301), 0px 3.6308406896569063px 3.6308406896569063px -1.40625px rgba(0, 0, 0, 0.07137), 0px 6.036265357761295px 6.036265357761295px -1.875px rgba(0, 0, 0, 0.06896), 0px 9.748076360978303px 9.748076360978303px -2.34375px rgba(0, 0, 0, 0.06525), 0px 15.956633803711155px 15.956633803711155px -2.8125px rgba(0, 0, 0, 0.05904), 0px 27.476245881684008px 27.476245881684008px -3.28125px rgba(0, 0, 0, 0.04752), 0px 50px 50px -3.75px rgba(0, 0, 0, 0.025)\",WebkitBackdropFilter:\"blur(10px)\",...style},variants:{aQYDJjU6t:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},DhhPEFHzQ:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},gAS0woooF:{backdropFilter:\"none\",backgroundColor:\"var(--token-0a717a02-9eef-49e9-a603-1f08faf01e6a, rgb(245, 245, 245))\",boxShadow:\"inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2)\",WebkitBackdropFilter:\"none\"},IzgY1xfhx:{backgroundColor:\"var(--token-a59d933d-9663-457c-8413-ef46e1594abf, rgb(38, 40, 46))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"inset 0px 2px 1px 0px var(--token-c18bedff-1a42-4277-9545-22a96a55c534, rgb(53, 56, 65))\"},j2VUBL2PN:{backgroundColor:\"rgba(30, 32, 36, 0.5)\",boxShadow:\"0px 0.8398022765904898px 0.8398022765904898px -0.46875px rgba(0, 0, 0, 0.07416), 0px 1.9904796838090988px 1.9904796838090988px -0.9375px rgba(0, 0, 0, 0.07301), 0px 3.6308406896569063px 3.6308406896569063px -1.40625px rgba(0, 0, 0, 0.07137), 0px 6.036265357761295px 6.036265357761295px -1.875px rgba(0, 0, 0, 0.06896), 0px 9.748076360978303px 9.748076360978303px -2.34375px rgba(0, 0, 0, 0.06525), 0px 15.956633803711155px 15.956633803711155px -2.8125px rgba(0, 0, 0, 0.05904), 0px 27.476245881684008px 27.476245881684008px -3.28125px rgba(0, 0, 0, 0.04752), 0px 50px 50px -3.75px rgba(0, 0, 0, 0.025)\"},li9BNfWb2:{backgroundColor:\"var(--token-a59d933d-9663-457c-8413-ef46e1594abf, rgb(38, 40, 46))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"inset 0px 2px 1px 0px var(--token-c18bedff-1a42-4277-9545-22a96a55c534, rgb(53, 56, 65))\"},NcbOwv9vp:{backgroundColor:\"rgba(30, 32, 36, 0.5)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0.8398022765904898px 0.8398022765904898px -0.46875px rgba(0, 0, 0, 0.07416), 0px 1.9904796838090988px 1.9904796838090988px -0.9375px rgba(0, 0, 0, 0.07301), 0px 3.6308406896569063px 3.6308406896569063px -1.40625px rgba(0, 0, 0, 0.07137), 0px 6.036265357761295px 6.036265357761295px -1.875px rgba(0, 0, 0, 0.06896), 0px 9.748076360978303px 9.748076360978303px -2.34375px rgba(0, 0, 0, 0.06525), 0px 15.956633803711155px 15.956633803711155px -2.8125px rgba(0, 0, 0, 0.05904), 0px 27.476245881684008px 27.476245881684008px -3.28125px rgba(0, 0, 0, 0.04752), 0px 50px 50px -3.75px rgba(0, 0, 0, 0.025)\"},pOX8UU4d6:{backgroundColor:\"rgba(30, 32, 36, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.8398022765904898px 0.8398022765904898px -0.46875px rgba(0, 0, 0, 0.07416), 0px 1.9904796838090988px 1.9904796838090988px -0.9375px rgba(0, 0, 0, 0.07301), 0px 3.6308406896569063px 3.6308406896569063px -1.40625px rgba(0, 0, 0, 0.07137), 0px 6.036265357761295px 6.036265357761295px -1.875px rgba(0, 0, 0, 0.06896), 0px 9.748076360978303px 9.748076360978303px -2.34375px rgba(0, 0, 0, 0.06525), 0px 15.956633803711155px 15.956633803711155px -2.8125px rgba(0, 0, 0, 0.05904), 0px 27.476245881684008px 27.476245881684008px -3.28125px rgba(0, 0, 0, 0.04752), 0px 50px 50px -3.75px rgba(0, 0, 0, 0.025)\"},upzI32jlW:{backgroundColor:\"var(--token-0a717a02-9eef-49e9-a603-1f08faf01e6a, rgb(245, 245, 245))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2)\"},wemJof9ZE:{backdropFilter:\"none\",backgroundColor:\"var(--token-a59d933d-9663-457c-8413-ef46e1594abf, rgb(38, 40, 46))\",boxShadow:\"inset 0px 2px 1px 0px var(--token-c18bedff-1a42-4277-9545-22a96a55c534, rgb(53, 56, 65))\",WebkitBackdropFilter:\"none\"},ZFTA8d0Mh:{backgroundColor:\"var(--token-0a717a02-9eef-49e9-a603-1f08faf01e6a, rgb(245, 245, 245))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2)\"}},...addPropertyOverrides({aQYDJjU6t:{\"data-framer-name\":\"Glass Small Light\"},DhhPEFHzQ:{\"data-framer-name\":\"Glass Medium Light\"},gAS0woooF:{\"data-framer-name\":\"Large Light\"},IzgY1xfhx:{\"data-framer-name\":\"Medium Dark\"},j2VUBL2PN:{\"data-framer-name\":\"Glass Large Dark\"},li9BNfWb2:{\"data-framer-name\":\"Small Dark\"},NcbOwv9vp:{\"data-framer-name\":\"Glass Medium Dark\"},pOX8UU4d6:{\"data-framer-name\":\"Glass Small Dark\"},upzI32jlW:{\"data-framer-name\":\"Medium Light\"},wemJof9ZE:{\"data-framer-name\":\"Large Dark\"},ZFTA8d0Mh:{\"data-framer-name\":\"Small Light\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yugiv5\",\"data-framer-name\":\"Controls\",layoutDependency:layoutDependency,layoutId:\"t3ekp6P6Q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w81z3x\",layoutDependency:layoutDependency,layoutId:\"YCHJWKg8T\",style:{backgroundColor:\"var(--token-d2868008-151b-478d-acbf-9fd5ed34adf7, rgb(233, 93, 93))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11oz5pw\",layoutDependency:layoutDependency,layoutId:\"CAjEDxKHP\",style:{backgroundColor:\"var(--token-fa9697e5-9045-484a-9364-926724d9c18e, rgb(240, 175, 76))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1czc7\",layoutDependency:layoutDependency,layoutId:\"HYTar3ysz\",style:{backgroundColor:\"var(--token-81fc6814-8fe1-47d5-a3ce-c6800b1cd6d5, rgb(148, 206, 100))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(40+((componentViewport?.height||622)-50-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 20px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1tseymg\",\"data-framer-name\":\"Screen\",layoutDependency:layoutDependency,layoutId:\"pnsGQqDtK\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{aQYDJjU6t:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},gAS0woooF:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d62ffd6d-0365-4204-85b2-674429fa3b78, rgb(230, 231, 232))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},IzgY1xfhx:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},li9BNfWb2:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},pOX8UU4d6:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},upzI32jlW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d62ffd6d-0365-4204-85b2-674429fa3b78, rgb(230, 231, 232))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},wemJof9ZE:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},ZFTA8d0Mh:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d62ffd6d-0365-4204-85b2-674429fa3b78, rgb(230, 231, 232))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5}},...addPropertyOverrides({aQYDJjU6t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||603.5)-25-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}},DhhPEFHzQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(30+((componentViewport?.height||612.6)-38-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}},gAS0woooF:{\"data-border\":true},IzgY1xfhx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(30+((componentViewport?.height||612.6)-38-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}},li9BNfWb2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||603.5)-25-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}},NcbOwv9vp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(30+((componentViewport?.height||612.6)-38-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}},pOX8UU4d6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||603.5)-25-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}},upzI32jlW:{\"data-border\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(30+((componentViewport?.height||612.6)-38-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}},ZFTA8d0Mh:{\"data-border\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1040,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||603.5)-25-572)/2)),pixelHeight:2080,pixelWidth:3200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(Tdy2602Kk),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HQuIV.framer-1p4tf9n, .framer-HQuIV .framer-1p4tf9n { display: block; }\",\".framer-HQuIV.framer-1rs3kz9 { 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: 40px 10px 10px 10px; position: relative; width: 900px; }\",\".framer-HQuIV .framer-yugiv5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 15px; overflow: hidden; padding: 0px; position: absolute; top: 15px; width: min-content; z-index: 1; }\",\".framer-HQuIV .framer-1w81z3x, .framer-HQuIV .framer-11oz5pw, .framer-HQuIV .framer-1k1czc7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: hidden; position: relative; width: 10px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HQuIV .framer-1tseymg { aspect-ratio: 1.5384615384615385 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 572px); overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HQuIV.framer-1rs3kz9, .framer-HQuIV .framer-yugiv5 { gap: 0px; } .framer-HQuIV.framer-1rs3kz9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HQuIV.framer-1rs3kz9 > :first-child, .framer-HQuIV .framer-yugiv5 > :first-child { margin-left: 0px; } .framer-HQuIV.framer-1rs3kz9 > :last-child, .framer-HQuIV .framer-yugiv5 > :last-child { margin-right: 0px; } .framer-HQuIV .framer-yugiv5 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-HQuIV.framer-v-1yhphff.framer-1rs3kz9, .framer-HQuIV.framer-v-1nwmiul.framer-1rs3kz9, .framer-HQuIV.framer-v-8cbokd.framer-1rs3kz9, .framer-HQuIV.framer-v-1r5blup.framer-1rs3kz9 { padding: 30px 8px 8px 8px; }\",\".framer-HQuIV.framer-v-1yhphff .framer-yugiv5, .framer-HQuIV.framer-v-1nwmiul .framer-yugiv5, .framer-HQuIV.framer-v-8cbokd .framer-yugiv5, .framer-HQuIV.framer-v-1r5blup .framer-yugiv5 { top: 10px; }\",\".framer-HQuIV.framer-v-1yhphff .framer-1tseymg, .framer-HQuIV.framer-v-1nwmiul .framer-1tseymg, .framer-HQuIV.framer-v-8cbokd .framer-1tseymg, .framer-HQuIV.framer-v-1r5blup .framer-1tseymg { height: var(--framer-aspect-ratio-supported, 575px); }\",\".framer-HQuIV.framer-v-1g722d8.framer-1rs3kz9, .framer-HQuIV.framer-v-33fn3a.framer-1rs3kz9, .framer-HQuIV.framer-v-1thap65.framer-1rs3kz9, .framer-HQuIV.framer-v-kqqz48.framer-1rs3kz9 { padding: 20px 5px 5px 5px; }\",\".framer-HQuIV.framer-v-1g722d8 .framer-yugiv5, .framer-HQuIV.framer-v-33fn3a .framer-yugiv5, .framer-HQuIV.framer-v-1thap65 .framer-yugiv5, .framer-HQuIV.framer-v-kqqz48 .framer-yugiv5 { gap: 3px; left: 10px; top: 7px; }\",\".framer-HQuIV.framer-v-1g722d8 .framer-1w81z3x, .framer-HQuIV.framer-v-1g722d8 .framer-11oz5pw, .framer-HQuIV.framer-v-1g722d8 .framer-1k1czc7, .framer-HQuIV.framer-v-33fn3a .framer-1w81z3x, .framer-HQuIV.framer-v-33fn3a .framer-11oz5pw, .framer-HQuIV.framer-v-33fn3a .framer-1k1czc7, .framer-HQuIV.framer-v-1thap65 .framer-1w81z3x, .framer-HQuIV.framer-v-1thap65 .framer-11oz5pw, .framer-HQuIV.framer-v-1thap65 .framer-1k1czc7, .framer-HQuIV.framer-v-kqqz48 .framer-1w81z3x, .framer-HQuIV.framer-v-kqqz48 .framer-11oz5pw, .framer-HQuIV.framer-v-kqqz48 .framer-1k1czc7 { height: var(--framer-aspect-ratio-supported, 6px); width: 6px; }\",\".framer-HQuIV.framer-v-1g722d8 .framer-1tseymg, .framer-HQuIV.framer-v-33fn3a .framer-1tseymg, .framer-HQuIV.framer-v-1thap65 .framer-1tseymg, .framer-HQuIV.framer-v-kqqz48 .framer-1tseymg { height: var(--framer-aspect-ratio-supported, 579px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HQuIV.framer-v-1g722d8 .framer-yugiv5 { gap: 0px; } .framer-HQuIV.framer-v-1g722d8 .framer-yugiv5 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-HQuIV.framer-v-1g722d8 .framer-yugiv5 > :first-child { margin-left: 0px; } .framer-HQuIV.framer-v-1g722d8 .framer-yugiv5 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HQuIV.framer-v-33fn3a .framer-yugiv5 { gap: 0px; } .framer-HQuIV.framer-v-33fn3a .framer-yugiv5 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-HQuIV.framer-v-33fn3a .framer-yugiv5 > :first-child { margin-left: 0px; } .framer-HQuIV.framer-v-33fn3a .framer-yugiv5 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HQuIV.framer-v-1thap65 .framer-yugiv5 { gap: 0px; } .framer-HQuIV.framer-v-1thap65 .framer-yugiv5 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-HQuIV.framer-v-1thap65 .framer-yugiv5 > :first-child { margin-left: 0px; } .framer-HQuIV.framer-v-1thap65 .framer-yugiv5 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HQuIV.framer-v-kqqz48 .framer-yugiv5 { gap: 0px; } .framer-HQuIV.framer-v-kqqz48 .framer-yugiv5 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-HQuIV.framer-v-kqqz48 .framer-yugiv5 > :first-child { margin-left: 0px; } .framer-HQuIV.framer-v-kqqz48 .framer-yugiv5 > :last-child { margin-right: 0px; } }\",'.framer-HQuIV[data-border=\"true\"]::after, .framer-HQuIV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 622\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DhhPEFHzQ\":{\"layout\":[\"fixed\",\"auto\"]},\"aQYDJjU6t\":{\"layout\":[\"fixed\",\"auto\"]},\"j2VUBL2PN\":{\"layout\":[\"fixed\",\"auto\"]},\"NcbOwv9vp\":{\"layout\":[\"fixed\",\"auto\"]},\"pOX8UU4d6\":{\"layout\":[\"fixed\",\"auto\"]},\"gAS0woooF\":{\"layout\":[\"fixed\",\"auto\"]},\"upzI32jlW\":{\"layout\":[\"fixed\",\"auto\"]},\"ZFTA8d0Mh\":{\"layout\":[\"fixed\",\"auto\"]},\"wemJof9ZE\":{\"layout\":[\"fixed\",\"auto\"]},\"IzgY1xfhx\":{\"layout\":[\"fixed\",\"auto\"]},\"li9BNfWb2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Tdy2602Kk\":\"zendeskMockup\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAbFnGjLhJ=withCSS(Component,css,\"framer-HQuIV\");export default FramerAbFnGjLhJ;FramerAbFnGjLhJ.displayName=\"Mockup/Mockup Browser 2\";FramerAbFnGjLhJ.defaultProps={height:622,width:900};addPropertyControls(FramerAbFnGjLhJ,{variant:{options:[\"YGOIzqbin\",\"DhhPEFHzQ\",\"aQYDJjU6t\",\"j2VUBL2PN\",\"NcbOwv9vp\",\"pOX8UU4d6\",\"gAS0woooF\",\"upzI32jlW\",\"ZFTA8d0Mh\",\"wemJof9ZE\",\"IzgY1xfhx\",\"li9BNfWb2\"],optionTitles:[\"Glass Large Light\",\"Glass Medium Light\",\"Glass Small Light\",\"Glass Large Dark\",\"Glass Medium Dark\",\"Glass Small Dark\",\"Large Light\",\"Medium Light\",\"Small Light\",\"Large Dark\",\"Medium Dark\",\"Small Dark\"],title:\"Variant\",type:ControlType.Enum},Tdy2602Kk:{__defaultAssetReference:\"data:framer/asset-reference,8iq4E3MFNbOBvgyMUX4Y8oYkL0.png?originalFilename=Screenshot+2025-03-04+at+18-12-50+Ticket+I+have+some+quick+questions+for+you+%C3%83%C2%A2%C3%82%C2%80%C3%82%C2%93+Stylo+%C3%83%C2%A2%C3%82%C2%80%C3%82%C2%93+Zendesk.png&preferredSize=auto\",title:\"Zendesk Mockup\",type:ControlType.ResponsiveImage}});addFonts(FramerAbFnGjLhJ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAbFnGjLhJ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"900\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Tdy2602Kk\\\":\\\"zendeskMockup\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"622\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DhhPEFHzQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aQYDJjU6t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j2VUBL2PN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NcbOwv9vp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pOX8UU4d6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gAS0woooF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"upzI32jlW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZFTA8d0Mh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wemJof9ZE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IzgY1xfhx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"li9BNfWb2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AbFnGjLhJ.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import ButtonPrimaryButton from\"https://framerusercontent.com/modules/l9tP9NB0bvLpXyDnxIPi/1MYEDWKZIq0oaH7bUSSi/AZMcsbJkb.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js\";import MockupMockupBrowser2 from\"#framer/local/canvasComponent/AbFnGjLhJ/AbFnGjLhJ.js\";import FreeTrial from\"#framer/local/canvasComponent/JCK5_3gQW/JCK5_3gQW.js\";import TopNavigation from\"#framer/local/canvasComponent/pQWsMWkcK/pQWsMWkcK.js\";import Footer from\"#framer/local/canvasComponent/V1EH44HA_/V1EH44HA_.js\";import*as sharedStyle6 from\"#framer/local/css/CknQ4q0P7/CknQ4q0P7.js\";import*as sharedStyle3 from\"#framer/local/css/GyHpqTzQT/GyHpqTzQT.js\";import*as sharedStyle7 from\"#framer/local/css/o8HjNvuSz/o8HjNvuSz.js\";import*as sharedStyle5 from\"#framer/local/css/oQUxgJaHb/oQUxgJaHb.js\";import*as sharedStyle8 from\"#framer/local/css/rtynI7ibA/rtynI7ibA.js\";import*as sharedStyle1 from\"#framer/local/css/sCwZO61iX/sCwZO61iX.js\";import*as sharedStyle4 from\"#framer/local/css/SyMjS2tCC/SyMjS2tCC.js\";import*as sharedStyle2 from\"#framer/local/css/utJdHMlM8/utJdHMlM8.js\";import*as sharedStyle from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavigationFonts=getFonts(TopNavigation);const ButtonPrimaryButtonFonts=getFonts(ButtonPrimaryButton);const TickerFonts=getFonts(Ticker);const MockupMockupBrowser2Fonts=getFonts(MockupMockupBrowser2);const FeatherFonts=getFonts(Feather);const PhosphorFonts=getFonts(Phosphor);const FreeTrialFonts=getFonts(FreeTrial);const FooterFonts=getFonts(Footer);const breakpoints={hIKxv135W:\"(min-width: 810px) and (max-width: 1199px)\",tvSQDcCfE:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Za1gy\";const variantClassNames={hIKxv135W:\"framer-v-1s69zxh\",tvSQDcCfE:\"framer-v-u8iyf3\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"tvSQDcCfE\",Tablet:\"hIKxv135W\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"tvSQDcCfE\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, rgb(254, 249, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tvSQDcCfE:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yri3j9-container\",nodeId:\"TcOo_Zk5d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{variant:\"vRz6iFx98\"},tvSQDcCfE:{variant:\"dxtA8R9ro\"}},children:/*#__PURE__*/_jsx(TopNavigation,{height:\"100%\",id:\"TcOo_Zk5d\",layoutId:\"TcOo_Zk5d\",style:{width:\"100%\"},variant:\"eoTXJYY6N\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{\"data-framer-name\":\"Tablet\"},tvSQDcCfE:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"header\",{className:\"framer-spoh1v\",\"data-framer-name\":\"Section Hero/Hero 05\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zic3a9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3ur07\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:[\"Most AI needs time. Stylo just needs \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eb2fb6e4-4d00-4a3c-9e04-ccec52e12198, rgb(136, 86, 255))\"},children:\"you.\"})]})}),className:\"framer-19dccia\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-6c683381-dbac-43f4-87fa-7b99bb63ff28, rgb(108, 108, 114))\"},children:\"The Zendesk\\xae AI product suite, purpose-built to delight your agents and customers with every interaction.\"})}),className:\"framer-1mbh78t hidden-u8iyf3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17jmwhf\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tvSQDcCfE:{y:(componentViewport?.y||0)+0+126+40+30+0+0+92+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fv5f1m-container\",isModuleExternal:true,nodeId:\"PWHy59z1y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{bu7Tmg2ov:\"var(--token-6c601974-a856-4292-8268-acc54422312b, rgb(251, 250, 250))\",height:\"100%\",i_R718eUo:true,id:\"PWHy59z1y\",l5SUNbSHS:true,layoutId:\"PWHy59z1y\",M7gzfh2vW:\"ArrowRight\",OSSo6hGiK:false,P4BBZAHYc:\"Get it now\",T7oGFZxdq:false,uea9upS2b:true,ukQZWXtui:\"var(--token-eb2fb6e4-4d00-4a3c-9e04-ccec52e12198, rgb(136, 86, 255))\",variant:\"iF7J81mWE\",width:\"100%\",y0Af_y9dn:\"https://www.zendesk.com/marketplace/apps/support/849231/stylo-assist--chatgpt/?_gl=1*134awx6*_gcl_au*NjgyODM4NzA5LjE3Mzk1NDY1NjQ.*_ga*MTA5MTE1MzgyNS4xNzMzNDg5MjQ5*_ga_Q82X6CKRSQ*MTc0MTYxMzE1OC4zNi4xLjE3NDE2MTMxNTguNjAuMC4w\",YihVjZ532:\"var(--token-acce939b-d1bc-40fa-8605-fae4e9bce0b0, rgb(79, 59, 208))\",yRPzCeLce:\"ArrowLeft\"})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yzh73a hidden-u8iyf3\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:750,pixelHeight:1500,pixelWidth:1500,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:750,pixelHeight:1500,pixelWidth:1500,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 160px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bIDZC8PB2WKx5ssJGU0NfP4akfo.jpg 1500w\"},className:\"framer-1bpsg03\",\"data-framer-name\":\"Image\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pwjjyb\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4w5sn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6c683381-dbac-43f4-87fa-7b99bb63ff28, rgb(108, 108, 114))\"},children:\"COMPANIES SAVE TIME WITH STYLO AI IN ZENDESK\"})}),className:\"framer-138yw5d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f8rwgl-container\",isModuleExternal:true,nodeId:\"lM1ztTOHQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tvSQDcCfE:{gap:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:8,overflow:false},gap:70,height:\"100%\",hoverFactor:.8,id:\"lM1ztTOHQ\",layoutId:\"lM1ztTOHQ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d6gopo\",\"data-framer-name\":\"Prodege\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r8awkd\",\"data-framer-name\":\"prodege_color\",fill:\"black\",intrinsicHeight:112,intrinsicWidth:410,svg:'<svg data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 410.16 111.89\"><defs><linearGradient id=\"b\" x1=\"-405.97\" y1=\"452.61\" x2=\"-405.39\" y2=\"452.61\" gradientTransform=\"matrix(738.81 0 0 -738.81 299921.02 334446.56)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#9e1f63\"/><stop offset=\"1\" stop-color=\"#262262\"/></linearGradient><clipPath id=\"a\"><path data-name=\"&lt;Compound Clipping Path&gt;\" d=\"M50.45 92.41a4.81 4.81 0 0 0 0 9.63H269.9a4.81 4.81 0 1 0 0-9.63zm184.3-53.51a24.11 24.11 0 1 0 39.58 25.61 5.75 5.75 0 1 0-10.76-4.08 12.38 12.38 0 0 1-2.86 4.43A12.64 12.64 0 0 1 255.4 68l-.41.11-.41.1h-.1a13.39 13.39 0 0 1-1.66.24h-2.06l-.55-.05h-.25l-.72-.13-.27-.07-.46-.1-.17-.05a12.6 12.6 0 0 1-8.41-7.85 12.32 12.32 0 0 1-.63-2.62 13.62 13.62 0 0 1-.11-1.66 12.61 12.61 0 0 1 12.61-12.58 12.93 12.93 0 0 1 4 .63L247 53a5.75 5.75 0 1 0 8.13 8.13L268.9 47a5.75 5.75 0 0 0-.06-8.08 24.12 24.12 0 0 0-34.09 0m109.67 0A24.11 24.11 0 1 0 384 64.51a5.75 5.75 0 1 0-10.75-4.08 12.64 12.64 0 0 1-8.19 7.6l-.41.11-.41.1h-.1a13.36 13.36 0 0 1-1.66.24h-2.06l-.55-.05h-.25l-.72-.13-.27-.07-.46-.1-.17-.05a12.6 12.6 0 0 1-8.41-7.85 11.85 11.85 0 0 1-.63-2.62 12.18 12.18 0 0 1-.11-1.66 12.61 12.61 0 0 1 12.61-12.61 12.93 12.93 0 0 1 4 .63l-8.79 9a5.75 5.75 0 0 0 8.13 8.13L378.58 47a5.75 5.75 0 0 0-.05-8.08 24.13 24.13 0 0 0-34.1 0m-317.14 17v50.19a5.75 5.75 0 1 0 11.5 0V55.75a12.61 12.61 0 1 1 12.61 12.8h-.52A5.75 5.75 0 0 0 45.14 74v.6a5.74 5.74 0 0 0 5.73 5.4h.52a24.11 24.11 0 1 0-24.1-24.06m99.25 0a12.61 12.61 0 1 1 12.61 12.61 12.62 12.62 0 0 1-12.61-12.61m-11.5 0a24.11 24.11 0 1 0 24.11-24.11A24.13 24.13 0 0 0 115 55.94m203.8-20.32a24.11 24.11 0 1 0-13 44.43h.81a5.75 5.75 0 0 0-.3-11.49h-.51a12.61 12.61 0 1 1 12.6-12.8V88a12.6 12.6 0 0 1-22 8.17 5.75 5.75 0 0 0-8.5 7.73c.06.08.13.14.2.22A24.1 24.1 0 0 0 330 88V37.58a5.75 5.75 0 0 0-11.16-2M83.32 37.19V74.3a5.75 5.75 0 1 0 11.5 0V55.94a12.62 12.62 0 0 1 12.61-12.61 5.75 5.75 0 1 0 0-11.5 23.92 23.92 0 0 0-12.85 3.72 5.75 5.75 0 0 0-11.26 1.64M4.82 9.86A4.81 4.81 0 0 0 0 14.68v82.55A4.81 4.81 0 0 0 4.82 102h10.7a4.81 4.81 0 1 0 0-9.63H9.63V19.49h186.66a4.81 4.81 0 0 0 0-9.63zm227.18 0a4.81 4.81 0 1 0 0 9.63h168.53v72.92h-58.36a4.81 4.81 0 0 0 0 9.63h63.17a4.81 4.81 0 0 0 4.82-4.81V14.68a4.81 4.81 0 0 0-4.82-4.82zm-24.09-4.11v50.2a12.6 12.6 0 1 1-12.61-12.61h.51a5.75 5.75 0 0 0 0-11.5h-.51a24.11 24.11 0 1 0 24.11 24.11V5.75a5.75 5.75 0 0 0-11.5 0\" style=\"fill:none\"/></clipPath></defs><g data-name=\"&lt;Clip Group&gt;\" style=\"clip-path:url(#a)\"><path data-name=\"&lt;Path&gt;\" d=\"M0 0h410.16v111.89H0z\" style=\"fill:url(#b)\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvs405\",\"data-framer-name\":\"Security Scorecard\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tal9h9\",\"data-framer-name\":\"security_scorecard\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 24\"><g transform=\"translate(0.029 0)\" id=\"ss9592470252_1\"><path d=\"M 0 0.029 L 24.123 0.029 L 24.123 24.029 L 0 24.029 Z\" fill=\"transparent\"></path><path d=\"M 16.435 2.498 L 12.048 4.996 L 7.659 7.494 L 7.659 2.499 L 12.048 0 Z M 22.579 5.995 L 22.582 10.976 L 13.816 5.987 L 18.191 3.497 L 22.578 5.995 Z M 18.192 15.495 L 18.19 20.488 L 22.586 17.989 L 22.583 12.976 L 18.191 10.475 L 18.191 15.495 Z M 7.656 21.484 L 12.048 23.979 L 16.435 21.486 L 16.435 16.493 Z M 7.658 9.491 L 7.658 14.489 L 12.048 16.986 L 16.435 14.495 L 16.435 9.492 L 12.048 6.995 L 7.659 9.492 Z M 1.508 17.989 L 1.511 12.988 L 10.295 17.986 L 5.9 20.485 Z M 5.903 3.497 L 1.515 5.996 L 1.512 10.991 L 5.903 13.49 Z\" fill=\"rgb(102,65,243)\"></path></g><path d=\"M 30.182 6.993 L 32.392 6.993 C 32.407 8.078 33.232 8.76 34.686 8.76 C 35.889 8.76 36.602 8.287 36.602 7.494 C 36.602 6.547 35.582 6.353 34.393 6.172 C 32.644 5.921 30.28 5.615 30.28 3.222 C 30.28 1.316 31.861 0.077 34.406 0.077 C 36.98 0.077 38.63 1.441 38.63 3.514 L 36.49 3.514 C 36.505 2.443 35.721 1.831 34.462 1.831 C 33.288 1.831 32.602 2.318 32.602 3.055 C 32.602 4.015 33.721 4.182 34.98 4.363 C 36.728 4.627 38.924 5.003 38.924 7.355 C 38.924 9.275 37.26 10.514 34.616 10.514 C 31.917 10.514 30.197 9.108 30.183 6.993 Z M 45.148 6.005 C 45.02 5.1 44.321 4.433 43.356 4.433 C 42.42 4.433 41.762 5.059 41.594 6.005 L 45.146 6.005 Z M 39.469 6.631 C 39.469 4.405 41.105 2.902 43.413 2.902 C 45.693 2.902 47.259 4.419 47.259 6.659 C 47.259 6.839 47.259 7.132 47.231 7.285 L 41.609 7.285 C 41.777 8.287 42.491 8.941 43.511 8.941 C 44.308 8.941 44.923 8.551 45.232 7.967 L 46.993 8.412 C 46.546 9.692 45.161 10.471 43.427 10.471 C 41.105 10.471 39.469 8.927 39.469 6.631 Z M 47.762 6.687 C 47.762 4.419 49.343 2.902 51.651 2.902 C 53.595 2.902 55.078 3.988 55.315 5.671 L 53.385 5.921 C 53.203 5.143 52.476 4.6 51.678 4.6 C 50.63 4.6 49.832 5.462 49.832 6.687 C 49.832 7.912 50.616 8.774 51.664 8.774 C 52.49 8.774 53.189 8.231 53.385 7.466 L 55.329 7.702 C 55.063 9.386 53.567 10.471 51.651 10.471 C 49.371 10.471 47.762 8.941 47.762 6.687 Z M 62.979 10.249 L 60.909 10.249 L 60.909 9.247 L 60.769 9.247 C 60.238 10.055 59.553 10.458 58.685 10.458 C 57.063 10.458 55.987 9.206 55.987 7.494 L 55.987 3.125 L 58.056 3.125 L 58.056 7.202 C 58.056 8.079 58.56 8.691 59.399 8.691 C 60.224 8.691 60.909 8.036 60.909 7.133 L 60.909 3.125 L 62.979 3.125 L 62.979 10.25 Z M 64.069 3.124 L 66.112 3.124 L 66.112 4.099 L 66.266 4.099 C 66.588 3.42 67.274 2.987 68.029 2.986 C 68.323 2.986 68.617 3.055 68.84 3.166 L 68.84 5.018 C 68.469 4.855 68.07 4.765 67.665 4.753 C 66.755 4.753 66.14 5.504 66.14 6.604 L 66.14 10.249 L 64.069 10.249 Z M 69.51 3.124 L 71.58 3.124 L 71.58 10.249 L 69.51 10.249 Z M 69.3 1.21 C 69.3 0.514 69.817 0 70.545 0 C 71.272 0 71.79 0.515 71.79 1.211 C 71.79 1.92 71.272 2.421 70.546 2.421 C 69.817 2.421 69.3 1.92 69.3 1.21 Z M 73.272 7.953 L 73.272 4.627 L 72.265 4.627 L 72.265 3.125 L 73.328 3.125 L 73.734 0.871 L 75.356 0.871 L 75.342 3.125 L 76.978 3.125 L 76.978 4.627 L 75.342 4.627 L 75.342 7.87 C 75.342 8.468 75.706 8.872 76.293 8.872 C 76.489 8.872 76.797 8.83 77.035 8.774 L 77.035 10.249 C 76.628 10.388 76.041 10.471 75.636 10.471 C 74.196 10.471 73.272 9.456 73.272 7.953 Z M 78.125 13.213 L 78.138 11.557 C 78.447 11.682 78.88 11.766 79.201 11.766 C 80.11 11.766 80.447 11.001 80.726 10.318 L 77.355 3.124 L 79.579 3.124 L 81.495 7.675 L 81.636 7.675 L 83.188 3.124 L 85.341 3.124 L 82.573 10.5 C 81.901 12.309 81.146 13.464 79.607 13.464 C 79.146 13.464 78.516 13.367 78.125 13.213 Z M 30.182 20.479 L 32.392 20.479 C 32.407 21.565 33.232 22.246 34.686 22.246 C 35.889 22.246 36.602 21.774 36.602 20.98 C 36.602 20.034 35.582 19.84 34.393 19.659 C 32.644 19.408 30.28 19.102 30.28 16.708 C 30.28 14.803 31.861 13.564 34.406 13.564 C 36.98 13.564 38.63 14.928 38.63 17.001 L 36.49 17.001 C 36.505 15.929 35.721 15.317 34.462 15.317 C 33.288 15.317 32.602 15.805 32.602 16.542 C 32.602 17.502 33.721 17.668 34.98 17.85 C 36.728 18.114 38.924 18.49 38.924 20.842 C 38.924 22.762 37.26 24 34.616 24 C 31.917 24 30.197 22.595 30.183 20.479 Z M 39.469 20.173 C 39.469 17.905 41.049 16.389 43.357 16.389 C 45.302 16.389 46.784 17.474 47.022 19.158 L 45.092 19.408 C 44.91 18.628 44.182 18.086 43.385 18.086 C 42.336 18.086 41.538 18.949 41.538 20.173 C 41.538 21.398 42.322 22.261 43.371 22.261 C 44.196 22.261 44.896 21.718 45.091 20.953 L 47.035 21.189 C 46.77 22.873 45.274 23.958 43.357 23.958 C 41.077 23.958 39.469 22.428 39.469 20.173 Z M 53.385 20.173 C 53.385 18.991 52.601 18.156 51.497 18.156 C 50.378 18.156 49.595 18.991 49.595 20.173 C 49.595 21.356 50.378 22.205 51.497 22.205 C 52.602 22.205 53.385 21.356 53.385 20.173 Z M 47.525 20.173 C 47.525 17.878 49.105 16.389 51.497 16.389 C 53.874 16.389 55.469 17.878 55.469 20.173 C 55.469 22.483 53.874 23.958 51.496 23.958 C 49.105 23.958 47.525 22.469 47.525 20.173 Z M 56.223 16.611 L 58.266 16.611 L 58.266 17.586 L 58.419 17.586 C 58.741 16.907 59.427 16.473 60.182 16.472 C 60.476 16.472 60.77 16.542 60.993 16.653 L 60.993 18.504 C 60.622 18.342 60.223 18.252 59.818 18.239 C 58.909 18.239 58.293 18.991 58.293 20.09 L 58.293 23.735 L 56.223 23.735 L 56.223 16.613 Z M 66.783 19.492 C 66.657 18.587 65.958 17.919 64.993 17.919 C 64.056 17.919 63.398 18.545 63.231 19.492 Z M 61.105 20.118 C 61.105 17.891 62.741 16.389 65.049 16.389 C 67.329 16.389 68.895 17.905 68.895 20.146 C 68.895 20.326 68.895 20.618 68.867 20.772 L 63.245 20.772 C 63.412 21.774 64.126 22.428 65.147 22.428 C 65.944 22.428 66.559 22.038 66.867 21.453 L 68.629 21.899 C 68.182 23.179 66.798 23.958 65.063 23.958 C 62.741 23.958 61.105 22.414 61.105 20.118 Z M 69.398 20.173 C 69.398 17.905 70.978 16.389 73.287 16.389 C 75.231 16.389 76.713 17.474 76.951 19.158 L 75.021 19.409 C 74.839 18.628 74.111 18.086 73.315 18.086 C 72.265 18.086 71.468 18.949 71.468 20.174 C 71.468 21.398 72.252 22.261 73.3 22.261 C 74.126 22.261 74.825 21.718 75.021 20.953 L 76.965 21.189 C 76.699 22.873 75.202 23.958 73.286 23.958 C 71.006 23.958 69.398 22.428 69.398 20.173 Z M 82.181 21.008 L 82.181 20.507 L 80.713 20.689 C 79.692 20.813 79.3 21.217 79.3 21.704 C 79.3 22.233 79.72 22.567 80.433 22.567 C 81.468 22.567 82.181 21.899 82.181 21.008 Z M 77.272 21.871 C 77.272 20.536 78.405 19.714 80.657 19.436 L 82.181 19.255 L 82.181 18.963 C 82.181 18.28 81.706 17.822 80.88 17.822 C 80.126 17.822 79.608 18.239 79.622 18.949 L 77.594 18.949 C 77.594 17.39 78.895 16.389 80.909 16.389 C 82.951 16.389 84.251 17.418 84.251 19.033 L 84.251 23.735 L 82.181 23.735 L 82.181 22.831 L 82.042 22.831 C 81.594 23.541 80.769 23.917 79.748 23.917 C 78.279 23.917 77.272 23.152 77.272 21.871 Z M 85.23 16.611 L 87.272 16.611 L 87.272 17.586 L 87.426 17.586 C 87.748 16.907 88.434 16.474 89.188 16.472 C 89.482 16.472 89.776 16.542 89.999 16.653 L 89.999 18.504 C 89.628 18.342 89.229 18.252 88.824 18.239 C 87.915 18.239 87.3 18.991 87.3 20.09 L 87.3 23.735 L 85.23 23.735 L 85.23 16.613 Z M 95.971 20.173 C 95.971 19.033 95.188 18.156 94.083 18.156 C 92.978 18.156 92.181 19.033 92.181 20.173 C 92.181 21.328 92.992 22.205 94.083 22.205 C 95.188 22.205 95.971 21.314 95.971 20.173 Z M 90.111 20.173 C 90.111 17.919 91.537 16.389 93.481 16.389 C 94.474 16.389 95.258 16.792 95.761 17.502 L 95.901 17.502 L 95.901 13.41 L 97.971 13.41 L 97.971 23.735 L 95.901 23.735 L 95.901 22.831 L 95.761 22.831 C 95.258 23.554 94.502 23.957 93.496 23.957 C 91.524 23.957 90.111 22.441 90.111 20.173 Z\" fill=\"rgb(42,42,42)\"></path></svg>',svgContentId:9592470252,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sx7nf4\",\"data-framer-name\":\"ShipHero\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3bz377\",\"data-framer-name\":\"shiphero\",fill:\"black\",intrinsicHeight:389,intrinsicWidth:1330,svg:'<svg width=\"1330\" height=\"389\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M485.839 178.091v72h17v-76.726l4.867-4.553c7.76-7.259 14.077-9.996 24.265-10.515 12.336-.628 18.703 1.941 22.638 9.132 1.532 2.801 1.787 7.729 2.23 43.162l.5 40 8.3.291 8.3.291-.3-42.791c-.296-42.219-.331-42.858-2.599-47.791-4.807-10.452-13.745-16.098-27.2-17.181-12.08-.973-27.427 4.424-36.585 12.865l-4.416 4.071v-54.255h-17v72Zm297 0v72h34v-68.898l3.25-2.433c6.344-4.749 9.964-6.038 16.849-5.998 7.508.043 11.634 1.913 14.345 6.503 1.518 2.571 1.734 6.763 1.885 36.615l.171 33.711h33l.266-40c.251-37.682.15-40.386-1.751-46.66-2.595-8.563-8.182-14.589-16.597-17.898-4.76-1.872-7.875-2.335-15.918-2.366-12.317-.048-20.667 2.501-29.501 9.004l-5.999 4.416v-49.996h-34v72Zm470.001-67.526v4.526h9.94l.28 14.25.28 14.25 4.75.305 4.75.305v-29.005l5.25-.303 5.25-.302v-8l-15.25-.276-15.25-.276v4.526Zm35 14.526v19h10l.05-12.25.05-12.25 2.94 8c6.34 17.258 6.03 16.632 8.24 16.306 1.65-.244 2.94-2.643 6.34-11.806l4.26-11.5.31 11.5.31 11.5 4.75.305 4.75.305V106l-6.68.295-6.68.296-3.51 9.69c-1.93 5.33-3.78 9.527-4.1 9.328-.33-.2-2.12-4.673-4-9.94l-3.42-9.578h-13.61v19Zm-681.601-12.6c-3.851 3.851-4.412 7.742-1.834 12.728 1.86 3.597 7.467 6.243 11.397 5.38 1.516-.333 4.057-1.963 5.646-3.622 2.316-2.417 2.891-3.916 2.891-7.534 0-3.837-.491-4.955-3.266-7.434-4.782-4.273-10.257-4.095-14.834.482Zm-202.17 32.15c-6.879 1.852-10.464 3.763-15.362 8.188-5.336 4.821-8.028 10.388-8.626 17.838-.836 10.412 2.932 18.041 11.635 23.561 4.911 3.115 17.594 7.467 30.45 10.449 9.448 2.192 17.26 5.954 19.99 9.626 1.305 1.755 2.016 4.263 2.016 7.112 0 19.695-34.662 23.667-54.929 6.295l-4.096-3.512-4.074 5.903-4.073 5.903 3.795 3.428c5.959 5.384 12.077 8.511 21.133 10.801 10.67 2.698 27.064 2.224 36.316-1.051 13.761-4.871 21.565-14.985 21.585-27.975.013-8.588-1.587-13.377-6.235-18.657-5.231-5.942-13.391-9.661-30.661-13.97-17.522-4.373-21.429-5.909-24.598-9.676-1.869-2.221-2.496-4.121-2.496-7.561 0-4.122.451-5.027 4.385-8.796 5.416-5.19 11.741-6.966 22.006-6.178 9.264.711 17.277 3.797 23.05 8.879 2.555 2.249 4.785 3.921 4.954 3.716.17-.205 1.939-2.825 3.931-5.822l3.623-5.448-3.225-2.803c-4.388-3.816-16.072-9.368-22.523-10.703-7.243-1.499-21.581-1.267-27.971.453Zm288.532.337c-7.001 2.305-14.676 7.112-18.734 11.734l-3.028 3.449v-15.07h-17.013l.256 72.25.257 72.25 8.25.29 8.25.291v-54.986l5.009 5.009c14.157 14.157 38.82 16.366 55.394 4.963 14.035-9.656 21.01-25.448 21.01-47.567 0-25.07-8.575-41.528-26.164-50.221-7.027-3.473-8.287-3.76-17.658-4.01-7.759-.208-11.417.166-15.829 1.618Zm252.02-.334c-22.686 5.5-38.922 25.358-40.497 49.531-1.794 27.525 13.982 49.409 40.715 56.48 17.618 4.66 45.322-.097 57.381-9.854l2.88-2.331-6.809-9.94c-3.746-5.466-6.85-10.021-6.898-10.122-.048-.101-3.426 1.474-7.507 3.5-7.203 3.575-7.745 3.683-18.484 3.683-10.351 0-11.374-.183-15.891-2.838-4.594-2.7-10.672-10.308-10.672-13.358 0-1.049 7.246-1.304 37-1.304h37.001l-.02-8.75c-.04-27.347-15.068-48.398-39.112-54.797-6.702-1.784-21.527-1.733-29.087.1Zm138.439.418c-6.35 2.286-11.44 5.336-16.47 9.878l-3.75 3.384v-13.281l-16.75.274-16.75.274v105h33l.26-33.688.26-33.688 2.57-2.021c4.97-3.906 13.34-6.283 22.16-6.293l8.25-.01v-31.8l-3.75.036c-2.06.02-6.13.891-9.03 1.935Zm61.38-.377c-18.92 4.579-33.5 18.676-39.2 37.906-2.34 7.881-2.32 21.944.03 30 5.61 19.24 19.99 33.109 39.57 38.147 3.93 1.012 10.25 1.658 16 1.636 17.21-.067 30.07-5.129 41.07-16.168 13.65-13.698 18.88-33.269 13.99-52.359-2.78-10.869-6.41-17.314-14.11-25.008-7.26-7.268-14.76-11.461-25.41-14.209-7.43-1.919-23.9-1.89-31.94.055Zm-538.601 52.906v52.5h17v-105h-17v52.5Zm107.252-38.073c12.238 4.367 20.378 17.497 21.435 34.573 1.158 18.707-6.158 34.246-19.026 40.414-6.793 3.255-13.094 4.052-20.292 2.565-7.737-1.599-14.347-5.034-19.869-10.324l-4.5-4.312v-49.951l3.25-3.037c8.772-8.199 16.178-11.26 27.25-11.264 4.4-.002 9.688.599 11.752 1.336Zm257.584 11.003c4.113 2.148 7.936 6.671 9.581 11.334l1.494 4.236h-21.455c-14.924 0-21.456-.335-21.456-1.099 0-4.956 7.682-13.368 14.115-15.455 5.018-1.629 13.637-1.15 17.721.984Zm199.655 4.284c10.41 5.256 14.98 18.291 11.08 31.685-4.58 15.759-23.33 21.772-35.26 11.304-10.94-9.606-11.19-30.045-.48-40.096 5.69-5.345 17.13-6.688 24.66-2.893Z\" fill=\"#242E3A\"/><path d=\"m18.5 113.5 142-78.5L308 108l-3.5 168L165 355.5 22.5 276l-4-162.5Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M86.96 43.832C47.058 67.849 11.168 89.907 7.205 92.848L0 98.197l.255 95.626.255 95.626 67 40.783c36.85 22.431 72.941 44.605 80.201 49.276 20.209 13 13.842 14.779 72.588-20.28 26.516-15.825 62.701-37.313 80.41-47.75l32.2-18.978.05-98.616.051-98.616-79.984-47.634L173.041 0l-6.765.082-6.766.081-72.55 43.669Zm73.05 9.998c-7.905 2.621-47.043 24.709-89.909 50.742-24.505 14.882-32.42 26.812-27.566 41.547 1.374 4.172 3.267 6.842 8.421 11.881 5.408 5.287 11.68 9.414 33.602 22.107l67.952 39.354c40.43 23.416 54.596 32.843 52.5 34.939-.566.566-9.662 6.283-20.215 12.705-17.27 10.511-19.392 11.549-21.236 10.388C158.715 274.446 42.959 208 42.494 208c-.283 0-.395 13.1-.249 29.111l.265 29.111 35.5 20.674c36.006 20.969 69.103 39.671 78.87 44.567 9.24 4.632 13.221 3.372 44.13-13.968 23.369-13.11 65.961-38.611 73.788-44.178 12.45-8.855 18.599-20.366 16.207-30.339-1.591-6.63-6.036-13.055-12.678-18.324-3.031-2.405-16.38-10.598-29.664-18.207-13.284-7.609-32.928-19.003-43.653-25.319a21768.648 21768.648 0 0 0-42.464-24.921c-24.734-14.474-36.323-22.884-34.245-24.854 1.975-1.873 38.121-23.651 39.209-23.623.55.014 14.275 7.779 30.5 17.257 43.598 25.467 89.436 51.859 91.335 52.588 1.53.587 1.665-1.716 1.665-28.343V120.25l-38.75-22.525c-55.056-32.003-78.579-44.844-83.016-45.319-2.054-.22-6.209.421-9.234 1.424Z\" fill=\"#F05353\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nsyixg\",\"data-framer-name\":\"hotjar\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-177rnr5\",\"data-framer-name\":\"hotjar_ltd_logo_vector_2023\",fill:\"black\",intrinsicHeight:652,intrinsicWidth:652,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 652 652\" style=\"enable-background:new 0 0 652 652\" xml:space=\"preserve\"><path d=\"M183.4 366V248.7h18.2V295c5.7-8.5 14.4-12.8 25.8-12.8 9.8 0 17.4 2.9 22.7 8.7 5.3 5.8 8 13.9 8 24.2v51H240v-48.4c0-13.4-6-20.1-17.9-20.1-6 0-10.9 1.8-14.7 5.4-3.8 3.6-5.7 8.7-5.7 15.2V366h-18.3zm161-10.1c-8.1 8.1-18.3 12.2-30.6 12.2s-22.5-4.1-30.6-12.2C275 347.8 271 337.5 271 325s4.1-22.8 12.2-30.8c8.2-8 18.4-12.1 30.6-12.1 12.3 0 22.5 4 30.6 12.1 8.1 8 12.2 18.3 12.2 30.8-.1 12.5-4.1 22.8-12.2 30.9zm-47.9-10.3c4.3 5.1 10.1 7.6 17.3 7.6 7.2 0 13-2.5 17.3-7.6 4.3-5.1 6.5-11.9 6.5-20.6 0-8.6-2.2-15.4-6.6-20.4-4.4-5.1-10.1-7.6-17.2-7.6-7.2 0-13 2.5-17.3 7.5-4.3 5-6.5 11.8-6.5 20.5s2.2 15.5 6.5 20.6zM398.7 368c-16.8 0-25.2-9-25.2-27v-41.5h-12.7v-15.4H374l4.2-24.1H392v24.1h32.6v15.4H392v41c0 7.5 2.8 11.3 8.3 11.3 5.2 0 9.8-4.7 14-14.2l14.2 7.3c-7 15.4-16.9 23.1-29.8 23.1zm35.6 35.5c-8.1 0-14.8-2.3-20.1-6.8l6.8-14.3c3.3 3.8 6.8 5.7 10.6 5.7 5.1 0 7.6-3.3 7.6-9.8v-94.2h18.2v94.5c0 8.8-2.2 15.1-6.5 19-4.3 3.9-9.8 5.9-16.6 5.9zm14-133.2c-3 .1-5.9-1-8.1-3-1.1-1-1.9-2.2-2.4-3.5-.6-1.3-.8-2.8-.8-4.2 0-1.5.2-2.9.8-4.3.6-1.4 1.4-2.6 2.4-3.6 2.2-2 5.1-3.1 8.1-3.1s5.9 1.1 8.1 3.1c1.1 1 1.9 2.2 2.5 3.6.6 1.4.8 2.8.8 4.3 0 1.4-.3 2.9-.8 4.2-.6 1.3-1.4 2.5-2.5 3.5s-2.3 1.8-3.7 2.4c-1.4.4-2.9.6-4.4.6zm54.4 97.7c-9.3 0-16.9-2.3-22.7-7-5.8-4.7-8.7-10.9-8.7-18.8 0-7.2 3-13.3 9-18.3s13.6-7.5 22.7-7.5c9.3 0 17.2 3 23.6 8.9v-10c0-5.9-1.5-10.4-4.5-13.6-3-3.2-7.2-4.8-12.7-4.8-11.1 0-18.1 5.7-20.8 17l-16.7-3.5c2.2-8.8 6.7-15.7 13.3-20.8 6.6-5.1 14.9-7.6 24.8-7.6 10.8 0 19.3 2.8 25.6 8.5 6.2 5.7 9.4 14 9.4 24.9V366h-17.7v-10.3c-5.9 8.2-14.1 12.3-24.6 12.3zm3.4-13.5c8.1 0 15-4.1 20.6-12.2v-2.5c-5.6-6.8-12.5-10.1-20.6-10.1-4.7 0-8.6 1.2-11.5 3.5-1.4 1-2.5 2.4-3.3 3.9-.8 1.5-1.1 3.2-1.1 5 0 1.7.3 3.5 1.1 5 .7 1.6 1.9 2.9 3.2 4 2.9 2.3 6.7 3.4 11.6 3.4zm56.7 11.5v-81.9h17.7v14.2c4.5-10.4 12.3-15.5 23.3-15.5 6.5 0 11.9 2.1 16.2 6.4 4.3 4.3 6.4 10 6.4 17.2 0 4.3-.8 8.6-2.2 12.7l-16.7-1.7c.3-2.2.6-4.5.7-6.8 0-8.4-3.5-12.7-10.5-12.7-4.7 0-8.7 2.5-11.9 7.5-3.2 5-4.8 11.6-4.8 19.8V366h-18.2z\" style=\"fill:#323232\"/><path d=\"M69.6 296.7c13.6-7.5 32.2-17.9 32.2-48H79.3c0 16.8-8.2 21.4-20.6 28.3-13.6 7.6-32.2 17.9-32.2 48H49c0-16.9 8.2-21.4 20.6-28.3zm39-7c0 16.8-8.2 21.4-20.6 28.3-13.6 7.5-32.2 17.9-32.2 48h22.5c0-16.8 8.2-21.4 20.6-28.3 13.6-7.5 32.2-17.9 32.2-48h-22.5z\" style=\"fill:#ff3c00\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uwp64y\",\"data-framer-name\":\"Uniball\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7eh801\",\"data-framer-name\":\"uniball\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:119,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 119 18\" xml:space=\"preserve\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421\"><path d=\"M524.256 449.304c1.219 0 2.208-.881 2.208-1.963 0-1.08-.989-1.961-2.208-1.961-1.219 0-2.21.881-2.21 1.961 0 1.082.991 1.963 2.21 1.963Zm2.035-7.14v1.198c-.821-.562-2.484-1.407-5.114-1.407-2.244 0-6.271.852-6.271 5.009 0 4.346 3.532 5.182 6.271 5.182 2.323 0 4.265-.54 5.114-1.385v.967h7.087v-9.564h-7.087Zm-87.293 6.439v-6.42h6.963v6.113c0 .696.962 1.567 2.325 1.567 1.227 0 2.326-.727 2.326-1.567v-6.113h6.962v6.42c0 1.69-2.822 3.432-9.288 3.432-6.468 0-9.288-1.742-9.288-3.432Zm64.841 2.052a3.723 3.723 0 1 0 0-7.447 3.724 3.724 0 1 0 0 7.447Zm-2.013 1.047h-6.958l-.007-15.408h6.965v5.868h6.972c2.628 0 4.756 2.104 4.756 4.732s-2.128 4.808-4.756 4.808h-6.972Zm-8.496-6.356h-4.62l.004 2.36h4.616v-2.36Zm-5.95-9.057h-6.967l.012 3.518h6.955v-3.518Zm63.732.005h-6.965l.01 15.408h6.955v-15.408Zm-9.103 0h-6.967l.009 15.408h6.958v-15.408Zm-54.629 5.87h-6.967l.012 9.538h6.955v-9.538Zm-14.842-.185c-2.892 0-4.538.655-5.968 1.906v-1.721h-6.963l.007 9.538h6.965v-4.304c0-1.228 1.099-1.848 2.326-1.848 1.363 0 2.325.684 2.325 1.848v4.304h6.963v-5.6c0-2.863-1.603-4.123-5.655-4.123Zm80.237 8.247c0-.826.523-1.349 1.272-1.349.742 0 1.267.595 1.267 1.349 0 .746-.525 1.267-1.267 1.267-.749 0-1.272-.521-1.272-1.267Zm1.272 1.562c.891 0 1.639-.67 1.639-1.562 0-.972-.748-1.647-1.639-1.647-.821 0-1.567.675-1.567 1.647 0 .892.746 1.562 1.567 1.562Zm-.302-1.493h.302l.447.823h.374l-.528-.823c.228 0 .449-.149.449-.523 0-.372-.221-.518-.667-.518h-.672v1.864h.295v-.823Zm0-.223v-.523h.377c.148 0 .372 0 .372.223 0 .3-.224.3-.447.3\" style=\"fill:#e7002e;fill-opacity:1\" transform=\"translate(-438 -435)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yd00w3\",\"data-framer-name\":\"Missmary\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8p45y8\",\"data-framer-name\":\"Missmary logo\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:78,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 77.63 40.03\"><path d=\"M65.81 16.81c-.45 0-1.19.77-1.41 1.59a1.19 1.19 0 0 0-.06.37 1.11 1.11 0 0 0 .08.37 1 1 0 0 0 .21.31.7.7 0 0 0 .29.19 3 3 0 0 0 .87.26 7 7 0 0 0 .34-2.84c-.17-.21-.27-.25-.32-.25z\" fill=\"none\"/><path d=\"M20.56 29.34h-.1a.65.65 0 0 0-.16.09.58.58 0 0 0-.11.15c-.35.56-.69.86-.9.77s-.3-.14-.16-.87a28.67 28.67 0 0 1 1.68-5.29.78.78 0 0 0 .08-.4.74.74 0 0 0-.08-.39.9.9 0 0 0-.88-.31 1 1 0 0 0-.53.21 1.09 1.09 0 0 0-.36.48c-1 2.73-1.89 5.51-1.21 6.77a1.38 1.38 0 0 0 .39.47 1.32 1.32 0 0 0 .54.24h.2a1.55 1.55 0 0 0 1-.44 2.28 2.28 0 0 0 .68-1c.05-.1.15-.34 0-.49z\"/><path d=\"M26.5 22.71a1.9 1.9 0 0 1 .7-.46 1.42 1.42 0 0 1 1.07 0 .85.85 0 0 1 .43.53 1.53 1.53 0 0 1-.6 1.14.38.38 0 0 0-.13.51.23.23 0 0 0 .07.07.16.16 0 0 0 .09 0 .41.41 0 0 0 .16 0 .34.34 0 0 0 .14-.09c.88-.78 1.19-1.47.92-2.12a2.67 2.67 0 0 0-2.85-1.63 2.9 2.9 0 0 0-1.27.53 3.19 3.19 0 0 0-.94 1.08 3.91 3.91 0 0 0 0 3.32 22.19 22.19 0 0 0 1.06 2.26 5.9 5.9 0 0 1 .73 1.73 1 1 0 0 1 0 .35.83.83 0 0 1-.13.32c-.21.25-.68.36-1.4.32a4.63 4.63 0 0 1-2.83-1.81 1.44 1.44 0 0 1-.32-1c0-.12.07-.17.09-.17.2 0 .5.19.66.61.09.24.25.35.4.29s.23-.16.12-.5c-.21-.63-.69-1.28-1.23-1.25-.18 0-.6.11-.77.79a2.24 2.24 0 0 0 .44 1.75 5.33 5.33 0 0 0 4.1 2.22 2 2 0 0 0 1.6-.65A2.5 2.5 0 0 0 27.3 29a8.4 8.4 0 0 0-.68-2.26c-.49-1.2-1-2.45-.6-3.34a2.39 2.39 0 0 1 .48-.69z\"/><path d=\"M31.58 21.55a3 3 0 0 0-1.53 1.73 3.09 3.09 0 0 0-.08 2.14 8.23 8.23 0 0 0 1.62 2.45c.69.81 1.33 1.58 1.29 2.31 0 .42-.19.91-1.28 1a1.36 1.36 0 0 1-.27 0 3.4 3.4 0 0 1-2.71-2.49.41.41 0 0 1 0-.11.36.36 0 0 1 0-.09c.11-.06.35.05.58.39s.36.22.45.15a.19.19 0 0 0 .07-.08.29.29 0 0 0 0-.1.51.51 0 0 0-.11-.34c-.52-.72-1-1-1.36-.77a1.09 1.09 0 0 0-.4.49 1.24 1.24 0 0 0-.05.66 4.24 4.24 0 0 0 3.32 3.13 3.39 3.39 0 0 0 .69-.02 2.29 2.29 0 0 0 2-1 2.58 2.58 0 0 0-.1-2.62c-.28-.52-.59-1-.9-1.49a6.64 6.64 0 0 1-1-2.2 1.71 1.71 0 0 1 .06-.84 1.57 1.57 0 0 1 .44-.68 2 2 0 0 1 1.69-.48.19.19 0 0 1 .11.07.33.33 0 0 1 .05.12 1.9 1.9 0 0 1-.05.67 1.53 1.53 0 0 1-.28.59.57.57 0 0 0-.14.37.3.3 0 0 0 0 .1.27.27 0 0 0 .07.08.34.34 0 0 0 .24 0 .29.29 0 0 0 .19-.15 2.07 2.07 0 0 0 .44-2.42 2.58 2.58 0 0 0-3.05-.57zM20.86 18.4a1.52 1.52 0 0 0 .51.32 2 2 0 0 0 .69.13 2.08 2.08 0 0 0 2-2.55 1.75 1.75 0 0 0-2.45-.89 2 2 0 0 0-1.09 1.14 1.62 1.62 0 0 0-.13.66 1.65 1.65 0 0 0 .13.66 1.72 1.72 0 0 0 .34.53zm34.79 11.14a.23.23 0 0 0-.11 0 .19.19 0 0 0-.1 0 .44.44 0 0 0-.12.15.41.41 0 0 0 0 .19c-.36 1.86-1.43 3.9-2.4 4.55a.85.85 0 0 1-.3.15.74.74 0 0 1-.33 0c-.32-.1-.56-.62-.59-1.28-.23-3.79 3.4-14.67 3.74-15.56a1.74 1.74 0 0 0-.63-2.06c-.32-.16-.81-.09-1.11.65a97.89 97.89 0 0 1-6.25 12.6c-.55.88-1 1.16-1.1 1.11s-.26-.46.06-1.8c1-4.29 4.48-11.94 6.1-15.08a2.06 2.06 0 0 0 0-1.85.91.91 0 0 0-.3-.37.83.83 0 0 0-.43-.15c-.37 0-.59.29-.83.79-2 4.19-5.94 11.76-9.76 16.67 4.38-10.9 7.14-19.09 8.4-23.06l.22-.39a6.61 6.61 0 0 0 .52-3.13A2.08 2.08 0 0 0 49.09.08c-.74-.26-1.67.09-2.73 1-1.71 1.54-4.63 6.26-6 8.53l-.43.7c-.2.32 0 .48 0 .53a.13.13 0 0 0 .09 0 .16.16 0 0 0 .1 0l.15-.08a.42.42 0 0 0 .11-.15c.84-1.4 4.58-7.2 6.5-8.92.53-.47 1.27-1 1.66-.89a.17.17 0 0 1 .1 0 .19.19 0 0 1 .08.07c.15.22-.14 1.19-.35 1.89-1.45 4.88-8.68 25.17-9.38 27a.94.94 0 0 0-.07.55.78.78 0 0 0 .28.46.73.73 0 0 0 .55.13.8.8 0 0 0 .51-.29 56.59 56.59 0 0 0 6.75-9.77 41.77 41.77 0 0 0-1.62 6.21c-.33 2.16-.11 3.29.71 3.65.59.25 1.33-.25 2-1.38a63.59 63.59 0 0 0 3.31-6.08 41.3 41.3 0 0 0-1 6.93c-.15 3.92.87 4.87 1.49 5.09a1.4 1.4 0 0 0 .4.07 1.52 1.52 0 0 0 .8-.26c1.22-.79 2.29-3.25 2.67-5.16a.42.42 0 0 0 0-.27.36.36 0 0 0-.12-.1zm-38.04 1.71-.08-.05c-.1 0-.28 0-.38.32-.65 2.12-1.85 3.05-2.64 2.86-.61-.15-.91-1.05-.78-2.35.53-5.42 3.94-13.1 4.09-13.42a2.15 2.15 0 0 0-.65-2.42c-.13-.07-.79-.41-1.3.55-.19.35-.59 1.22-1.14 2.41C13.2 22.46 10.67 28 9.19 30c-.39.53-.66.65-.78.58a1.4 1.4 0 0 1-.26-1.22c1.16-6.72 4.37-13.75 5.66-16.46.6-1.22.26-2.15-.34-2.53-.4-.26-1-.19-1.38.52-.66 1.16-2.29 4.67-4 8.37-1.89 4.06-3.85 8.25-4.53 9.38-.75 1.36-1.2 1.43-1.28 1.43a2.22 2.22 0 0 1 .16-1.37c.83-2.43 2.6-6.91 4.32-11.26s3.26-8.28 3.87-10.14c.83-2.54.77-4.54-.17-5.22-.43-.31-1.38-.58-3 1.13C5.74 5.11 1.72 12 .07 15.19c-.11.22-.09.43 0 .52H.3a.45.45 0 0 0 .25-.24C2.4 12 6.43 5.54 8.02 3.82 8.75 3 9.38 2.69 9.7 2.71a.24.24 0 0 1 .13 0s.12.16-.13.81C4.89 16.47 2.51 23.23 1.81 26.15c-.41 1.59-.76 3.66-.08 4.46a.77.77 0 0 0 .27.24.61.61 0 0 0 .35.07c.54 0 1.18-.62 1.88-1.79s2.63-5.38 4.58-9.48l.13-.27c0-.1.09-.2.13-.28C6.5 27 7.15 29.31 7.48 30.47v.1a1.31 1.31 0 0 0 .58.74c.36.19.94.19 1.69-.81a58.62 58.62 0 0 0 4-7.45c-.89 3-1.8 7.15-1.5 9.34.23 1.69.92 2.64 2.06 2.82a1.12 1.12 0 0 0 .32 0c1 0 2.25-1 3-3.56a.43.43 0 0 0 0-.36.16.16 0 0 0-.02-.04z\"/><path d=\"M77.08 21.35a.65.65 0 0 0-1 .22c-1.13 2-2.25 3.73-2.93 4.69v-.2a37.87 37.87 0 0 1-.13-4.39.73.73 0 0 0-.19-.55 1.3 1.3 0 0 0-1-.22 1.12 1.12 0 0 0-.9.36 1 1 0 0 0-.11.29.85.85 0 0 0 0 .32c.47 2-.83 5.8-2.19 7.28-.38.41-.85.58-1.11.38s-.32-.84-.06-1.66c.46-1.43 1.24-3.45 2.38-6.21.34-.84.4-1.32.19-1.65s-.74-.36-1.19-.3h-.29a15.24 15.24 0 0 1-1.95.2 7.13 7.13 0 0 0 .25-3.23 1.13 1.13 0 0 0-.42-.56 1 1 0 0 0-.63-.17c-1 .07-1.88 1.34-2.16 2.24a4.09 4.09 0 0 0 0 2.91 2.77 2.77 0 0 0 1.44 1.51l-.2.62c-.6 1.94-1.35 4.36-2.37 5-.28.17-.52.21-.66.11a.62.62 0 0 1-.15-.2.63.63 0 0 1 0-.27 38.5 38.5 0 0 1 .69-4.51h-.11.11v-.08a1.15 1.15 0 0 0-.8-1 .67.67 0 0 0-.28 0 .85.85 0 0 0-.26.11.7.7 0 0 0-.2.22 1 1 0 0 0-.11.29c-.42 1.62-1.76 5-2.48 5.49-.23.14-.38.13-.53-.05-.52-.61-.58-2.81-.14-4.61.5-2 1.46-3.22 2-3.32a.32.32 0 0 1 .17 0 .29.29 0 0 1 .14.13c.54 1.57-.35 3.72-1 4.08a.42.42 0 0 0-.24.46.35.35 0 0 0 .06.09.16.16 0 0 0 .08.06.32.32 0 0 0 .17 0 .47.47 0 0 0 .15-.06c1.1-.61 2.19-3.13 1.46-5.07a1.78 1.78 0 0 0-.47-.74 1.48 1.48 0 0 0-.74-.39 2.6 2.6 0 0 0-2.56 1.17 8.69 8.69 0 0 0-1.93 7.1 2.78 2.78 0 0 0 1.37 2 2.26 2.26 0 0 0 2.19-.17 5.24 5.24 0 0 0 1.45-2.17 3.12 3.12 0 0 0 .8 2.09 1.7 1.7 0 0 0 2 0c1.27-.77 2.05-3.25 2.73-5.44l.2-.64a5.47 5.47 0 0 0 1.85 0c-.37 1.29-.77 2.75-1.06 4.09-.49 2.28.18 3 .63 3.28a1.6 1.6 0 0 0 2-.53 11.68 11.68 0 0 0 2.24-4.86c.11.72.23 1.56.37 2.54a.89.89 0 0 0 .12.39.73.73 0 0 0 .28.27.65.65 0 0 0 .76-.09 34.14 34.14 0 0 0 3.6-5.38c-1.91 6.59-5.21 16.84-5.24 16.92-.08.23 0 .44.13.5h.09a.19.19 0 0 0 .1 0 .34.34 0 0 0 .12-.12.4.4 0 0 0 .08-.16s.11-.32.28-.83c3.62-10.61 5.52-16.17 5.63-16.54a.83.83 0 0 0-.52-1.04zM65.71 19.9a3 3 0 0 1-.87-.26.7.7 0 0 1-.29-.19 1 1 0 0 1-.21-.31 1.11 1.11 0 0 1-.08-.37 1.19 1.19 0 0 1 .06-.37c.22-.82 1-1.56 1.41-1.59.1 0 .2 0 .29.25a7 7 0 0 1-.31 2.84z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-upw0oj\",\"data-framer-name\":\"Tremendous\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1edtb7m\",\"data-framer-name\":\"tremendous\",fill:\"black\",intrinsicHeight:37,intrinsicWidth:375,svg:'<svg width=\"375\" height=\"37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.891.965H0v7.504h13.259v27.338h8.374V8.469H34.89V.965Zm36.335 34.842L63.55 25.301c3.703-1.983 6.226-5.575 6.226-10.614C69.776 7.076 64.408.965 57.27.965H40.307v34.842h8.535v-8.684h6.119l5.744 8.684h10.52ZM48.842 9.541h7.139a5.15 5.15 0 0 1 5.153 5.146c0 2.895-2.362 4.771-5.207 4.771h-7.085V9.541Zm54.629-1.071V.964H77.223v34.842h26.248v-7.45H85.596v-6.219h14.118v-7.45H85.596V8.468h17.875ZM137.813.965 127.775 20.69l-9.876-19.565v-.16h-8.428v34.842h8.428V18.171l8.051 17.636h3.65l8.213-17.796v17.796h8.374V.965h-8.374Zm41.959 7.505V.964h-26.249v34.842h26.249v-7.45h-17.875v-6.219h14.117v-7.45h-14.117V8.468h17.875Zm32.12-7.505v21.71L194.5.964h-8.373v34.842h8.373V14.955l17.392 20.852h8.374V.965h-8.374Zm31.997 0h-16.534v34.842h16.534c9.662 0 17.445-7.826 17.445-17.475 0-9.595-6.764-17.367-17.445-17.367Zm.806 26.48h-8.966V9.327h8.966c4.401 0 8.265 3.806 8.265 9.005 0 5.2-3.92 8.952-8.265 9.113ZM283.164.054c-10.198 0-18.412 8.255-18.412 18.386 0 10.13 8.214 18.332 18.412 18.332 10.145 0 18.359-8.201 18.359-18.332S293.309.054 283.164.054Zm0 28.678c-5.743 0-10.361-4.61-10.361-10.292 0-5.682 4.618-10.346 10.361-10.346 5.689 0 10.307 4.664 10.307 10.346s-4.618 10.292-10.307 10.292ZM332.175.965v17.1c0 5.467-3.863 10.023-9.176 10.023-5.37 0-9.233-4.556-9.233-10.024V.964h-8.537v17.1c0 11.204 7.838 18.654 17.77 18.654 9.875 0 17.713-7.45 17.713-18.654V.964h-8.537Zm27.115 35.753c8.318 0 15.405-5.038 15.405-11.042 0-9.22-9.18-10.4-14.064-11.31-1.933-.322-7.353-.322-7.353-3.163 0-2.358 2.522-4.235 5.583-4.235 4.561 0 6.009 1.823 6.009 2.68h8.644c0-4.663-4.831-9.648-14.653-9.648-8.052 0-14.656 5.039-14.656 11.203 0 6.593 6.924 8.416 11.003 9.22 2.309.482 10.414.804 10.414 5.253 0 2.144-3.005 4.128-6.332 4.128-6.175 0-6.551-4.718-6.551-4.771h-9.07c0 4.717 4.938 11.685 15.621 11.685Z\" fill=\"#006FF7\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1232cal\",\"data-framer-name\":\"TickPick\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7kix03\",\"data-framer-name\":\"TickPick_logo\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 96 20\"><g transform=\"translate(0 0)\" id=\"ss9094432696_1\"><g transform=\"translate(0 0)\" id=\"ss9094432696_2\"><g transform=\"translate(0 0)\" id=\"ss9094432696_3\"><path d=\"M 0 0 L 96.017 0 L 96.017 20.331 L 0 20.331 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss9094432696_5\"><path d=\"M 0 0 L 96.017 0 L 96.017 20.331 L 0 20.331 Z\" fill=\"transparent\"></path><path d=\"M 11.904 7.414 L 17.333 7.414 C 17.426 7.407 17.515 7.454 17.562 7.535 C 18.299 8.636 18.814 9.871 19.077 11.17 C 19.234 11.91 19.318 12.664 19.328 13.42 C 19.361 15.677 18.857 17.786 17.614 19.692 C 17.489 19.882 17.344 20.061 17.213 20.245 C 17.174 20.302 17.107 20.334 17.038 20.327 L 13.75 20.327 C 13.653 20.327 13.622 20.303 13.633 20.205 C 13.694 19.634 13.231 19.239 12.7 19.192 C 12.128 19.127 11.563 19.363 11.206 19.814 C 11.105 19.93 11.032 20.068 10.993 20.217 C 10.97 20.315 10.923 20.326 10.839 20.326 L 5.256 20.326 C 5.348 20.201 5.431 20.097 5.508 19.991 C 6.347 18.847 6.874 17.566 7.177 16.187 C 7.384 15.203 7.475 14.199 7.446 13.194 C 7.446 13.046 7.408 12.998 7.25 12.999 C 5.658 13.006 4.066 12.999 2.475 12.999 C 2.413 12.999 2.345 13.023 2.29 12.972 C 2.272 12.927 2.264 12.887 2.332 12.88 C 2.402 12.918 2.482 12.935 2.561 12.93 L 7.201 12.93 C 7.385 12.93 7.385 12.93 7.371 12.746 C 7.285 11.504 6.991 10.285 6.503 9.14 C 6.256 8.576 5.959 8.036 5.614 7.526 C 5.563 7.422 5.614 7.38 5.711 7.37 C 5.765 7.367 5.82 7.367 5.874 7.37 L 11.634 7.37 C 11.726 7.37 11.824 7.35 11.904 7.418\" fill=\"rgb(0,99,188)\"></path><path d=\"M 11.904 7.414 L 5.81 7.414 C 5.779 7.416 5.748 7.416 5.718 7.414 C 5.601 7.398 5.602 7.449 5.653 7.527 C 5.377 7.669 5.181 7.916 4.975 8.138 C 4.505 8.643 4.081 9.187 3.707 9.766 C 3.119 10.669 2.679 11.66 2.403 12.702 C 2.385 12.768 2.384 12.842 2.32 12.887 L 2.289 12.979 C 2.209 13.034 2.17 12.979 2.123 12.923 C 1.453 12.058 0.938 11.083 0.6 10.043 C 0.321 9.213 0.14 8.353 0.061 7.481 C -0.148 5.226 0.174 3.065 1.198 1.026 C 1.36 0.709 1.539 0.401 1.735 0.104 C 1.767 0.037 1.836 -0.004 1.911 0 C 3.241 0.005 4.569 0.005 5.896 0 C 5.963 0 6.027 -0.011 6.01 0.092 C 5.918 0.645 6.32 1.04 6.807 1.149 C 7.487 1.31 8.326 0.922 8.583 0.27 C 8.68 0.026 8.798 0 9.017 0 C 10.509 0.008 12.002 0 13.494 0 L 13.658 0 C 13.68 0.057 13.634 0.084 13.613 0.117 C 12.872 1.261 12.362 2.539 12.111 3.879 C 11.919 4.892 11.843 5.924 11.885 6.954 C 11.885 7.107 11.897 7.261 11.902 7.415\" fill=\"rgb(46,143,254)\"></path><path d=\"M 2.32 12.887 C 2.565 11.85 2.978 10.861 3.543 9.958 C 4.073 9.102 4.709 8.317 5.436 7.621 C 5.49 7.556 5.573 7.522 5.658 7.529 C 6.027 8.056 6.336 8.622 6.579 9.217 C 6.934 10.06 7.182 10.944 7.316 11.849 C 7.369 12.195 7.395 12.544 7.436 12.892 C 7.443 12.958 7.416 12.984 7.353 12.984 L 2.477 12.984 C 2.407 12.984 2.319 13.01 2.32 12.892\" fill=\"rgb(0,42,104)\"></path><path d=\"M 96.017 7.062 C 95.947 7.135 95.838 7.073 95.766 7.139 C 95.647 7.292 95.582 7.477 95.495 7.644 C 95.466 7.698 95.453 7.778 95.379 7.776 C 95.305 7.774 95.287 7.697 95.262 7.643 C 95.191 7.516 95.14 7.381 95.078 7.249 C 95.061 7.2 95.029 7.157 94.986 7.128 C 94.904 7.083 94.819 7.119 94.817 7.21 C 94.809 7.588 94.811 7.967 94.817 8.346 C 94.817 8.394 94.831 8.443 94.894 8.438 C 94.956 8.432 94.974 8.381 94.975 8.328 C 94.98 8.125 94.975 7.923 94.975 7.721 C 94.975 7.653 94.952 7.549 95.035 7.537 C 95.104 7.525 95.117 7.629 95.146 7.687 C 95.185 7.766 95.219 7.848 95.265 7.923 C 95.333 8.034 95.424 8.037 95.496 7.929 C 95.554 7.831 95.605 7.729 95.651 7.624 C 95.674 7.579 95.697 7.515 95.759 7.532 C 95.82 7.549 95.806 7.608 95.807 7.654 C 95.807 7.855 95.814 8.058 95.807 8.26 C 95.802 8.387 95.842 8.458 95.972 8.465 C 95.987 8.474 96.002 8.483 96.015 8.494\" fill=\"rgb(254,254,254)\"></path><path d=\"M 95.724 7.088 C 95.816 7.032 95.916 7.077 96.012 7.062 L 96.012 8.497 L 95.979 8.497 C 95.937 8.436 95.921 8.362 95.933 8.29 C 95.933 8.021 95.924 7.752 95.933 7.483 C 95.94 7.299 95.933 7.145 95.722 7.093\" fill=\"rgb(64,64,64)\"></path><path d=\"M 57.314 16.703 L 57.161 16.703 C 56.127 16.703 55.092 16.707 54.059 16.716 C 53.951 16.727 53.848 16.672 53.798 16.576 C 53.051 15.369 52.3 14.163 51.545 12.959 C 51.514 12.909 51.481 12.858 51.424 12.774 L 51.424 16.551 C 51.424 16.681 51.392 16.71 51.263 16.71 C 50.375 16.704 49.486 16.705 48.598 16.71 C 48.485 16.71 48.439 16.695 48.439 16.563 C 48.444 12.166 48.444 7.769 48.439 3.372 C 48.439 3.238 48.481 3.212 48.606 3.213 C 49.494 3.218 50.383 3.218 51.272 3.213 C 51.393 3.213 51.424 3.242 51.424 3.365 C 51.42 5.638 51.42 7.909 51.424 10.178 L 51.424 10.39 C 51.598 10.156 51.75 9.952 51.901 9.745 C 52.541 8.875 53.18 8.006 53.82 7.136 C 53.863 7.067 53.941 7.028 54.023 7.035 L 57.297 7.035 C 57.297 7.109 57.243 7.142 57.205 7.184 C 56.075 8.596 54.944 10.006 53.813 11.413 C 53.78 11.441 53.761 11.48 53.759 11.522 C 53.757 11.564 53.773 11.605 53.802 11.635 C 54.937 13.267 56.068 14.901 57.196 16.536 L 57.31 16.703 M 86.037 10.387 L 87.76 8.048 C 87.987 7.739 88.22 7.43 88.443 7.12 C 88.469 7.063 88.526 7.028 88.589 7.028 L 91.939 7.028 L 91.343 7.773 C 90.372 8.985 89.4 10.195 88.427 11.405 C 88.394 11.435 88.376 11.478 88.376 11.522 C 88.376 11.567 88.394 11.609 88.427 11.639 C 89.574 13.292 90.72 14.947 91.863 16.603 C 91.878 16.623 91.89 16.646 91.908 16.675 C 91.856 16.698 91.799 16.705 91.743 16.694 L 89.342 16.694 C 89.109 16.694 88.875 16.694 88.642 16.707 C 88.549 16.718 88.459 16.668 88.42 16.583 C 87.665 15.367 86.908 14.153 86.15 12.94 L 86.037 12.764 L 86.037 16.526 C 86.037 16.675 85.992 16.698 85.858 16.697 C 84.969 16.692 84.08 16.692 83.192 16.697 C 83.087 16.697 83.053 16.676 83.053 16.563 L 83.053 3.343 C 83.053 3.22 83.092 3.199 83.203 3.2 C 84.097 3.204 84.99 3.204 85.884 3.2 C 86.005 3.2 86.036 3.23 86.036 3.351 C 86.032 5.624 86.032 7.896 86.036 10.169 Z M 28.254 3.232 L 33.597 3.232 C 33.741 3.232 33.791 3.257 33.789 3.417 C 33.78 4.186 33.781 4.955 33.789 5.72 C 33.789 5.845 33.767 5.884 33.632 5.883 C 32.406 5.877 31.18 5.883 29.953 5.876 C 29.824 5.876 29.791 5.905 29.791 6.037 C 29.795 9.534 29.797 13.031 29.798 16.529 C 29.798 16.662 29.775 16.713 29.625 16.713 C 28.7 16.705 27.775 16.705 26.85 16.713 C 26.723 16.713 26.688 16.688 26.688 16.555 C 26.693 13.054 26.695 9.552 26.696 6.047 C 26.696 5.91 26.663 5.88 26.527 5.88 C 25.301 5.887 24.075 5.88 22.848 5.887 C 22.725 5.887 22.696 5.855 22.697 5.735 C 22.703 4.955 22.703 4.176 22.697 3.396 C 22.697 3.267 22.727 3.235 22.858 3.235 C 24.656 3.241 26.451 3.235 28.252 3.235 M 43.894 16.963 C 42.911 16.963 42.026 16.814 41.211 16.378 C 40.063 15.766 39.304 14.827 38.968 13.569 C 38.633 12.312 38.655 11.074 39.127 9.868 C 39.752 8.265 40.949 7.288 42.618 6.913 C 43.893 6.626 45.157 6.74 46.39 7.159 C 46.851 7.315 47.257 7.575 47.68 7.804 C 47.739 7.837 47.73 7.865 47.701 7.91 C 47.242 8.62 46.785 9.331 46.33 10.043 C 46.279 10.123 46.238 10.097 46.187 10.055 C 45.915 9.839 45.62 9.654 45.308 9.503 C 44.018 8.937 42.351 9.483 41.948 11.2 C 41.793 11.814 41.833 12.461 42.06 13.052 C 42.423 13.981 43.249 14.475 44.244 14.419 C 44.909 14.382 45.49 14.137 46.054 13.818 C 46.207 13.731 46.361 13.644 46.515 13.554 C 46.569 13.52 46.598 13.518 46.629 13.586 C 46.98 14.348 47.334 15.108 47.691 15.867 C 47.722 15.932 47.705 15.953 47.647 15.98 C 46.735 16.412 45.805 16.795 44.791 16.906 C 44.471 16.941 44.151 16.961 43.897 16.963 M 78.486 6.767 C 79.728 6.763 80.944 7.12 81.987 7.795 C 82.052 7.836 82.069 7.857 82.022 7.93 C 81.567 8.63 81.116 9.332 80.669 10.036 C 80.62 10.112 80.587 10.115 80.517 10.061 C 80.298 9.894 80.069 9.74 79.832 9.6 C 78.716 8.942 76.829 9.246 76.31 11.074 C 76.106 11.752 76.147 12.481 76.425 13.132 C 76.803 14.012 77.61 14.464 78.571 14.416 C 79.322 14.379 79.953 14.059 80.585 13.704 C 80.694 13.641 80.815 13.506 80.915 13.542 C 80.998 13.572 81.031 13.747 81.083 13.86 C 81.39 14.516 81.697 15.172 82.004 15.828 C 82.032 15.887 82.071 15.934 81.968 15.981 C 81.236 16.312 80.509 16.652 79.711 16.802 C 78.441 17.043 77.178 17.065 75.963 16.564 C 74.461 15.946 73.547 14.814 73.222 13.226 C 72.98 12.048 73.032 10.876 73.503 9.758 C 74.148 8.213 75.332 7.283 76.956 6.902 C 77.458 6.793 77.971 6.746 78.484 6.761 M 72.072 11.885 C 72.072 13.439 72.072 14.992 72.076 16.545 C 72.076 16.688 72.036 16.711 71.905 16.71 C 71.016 16.705 70.128 16.705 69.24 16.71 C 69.121 16.71 69.097 16.68 69.097 16.565 L 69.097 7.198 C 69.097 7.067 69.131 7.036 69.26 7.037 C 70.148 7.043 71.037 7.043 71.925 7.037 C 72.053 7.037 72.076 7.076 72.076 7.193 C 72.072 8.757 72.072 10.321 72.076 11.885 M 37.904 11.885 L 37.904 16.53 C 37.904 16.663 37.883 16.715 37.732 16.715 C 36.839 16.705 35.945 16.708 35.051 16.715 C 34.941 16.715 34.916 16.686 34.916 16.578 C 34.919 13.45 34.919 10.321 34.916 7.194 C 34.916 7.07 34.95 7.041 35.07 7.042 C 35.964 7.047 36.858 7.047 37.751 7.042 C 37.877 7.042 37.904 7.078 37.904 7.198 C 37.901 8.762 37.901 10.326 37.904 11.89 M 36.464 3.242 L 37.773 3.242 C 37.87 3.242 37.891 3.269 37.891 3.363 C 37.888 4.147 37.888 4.931 37.891 5.714 C 37.891 5.806 37.867 5.835 37.772 5.835 C 36.9 5.83 36.028 5.83 35.155 5.835 C 35.057 5.835 35.022 5.814 35.022 5.707 C 35.027 4.929 35.027 4.15 35.022 3.37 C 35.022 3.263 35.058 3.242 35.156 3.243 L 36.464 3.243 M 70.648 3.242 L 71.937 3.242 C 72.037 3.242 72.067 3.265 72.066 3.369 C 72.062 4.147 72.062 4.926 72.066 5.704 C 72.066 5.796 72.048 5.836 71.942 5.835 C 71.075 5.83 70.208 5.83 69.341 5.835 C 69.239 5.835 69.196 5.817 69.197 5.701 C 69.203 4.929 69.203 4.155 69.197 3.381 C 69.197 3.271 69.228 3.241 69.337 3.243 C 69.772 3.249 70.208 3.243 70.644 3.243 M 95.728 7.088 C 95.985 7.102 95.985 7.102 95.985 7.36 L 95.985 8.492 C 95.959 8.492 95.934 8.494 95.908 8.498 C 95.799 8.515 95.755 8.486 95.76 8.36 C 95.772 8.091 95.765 7.821 95.74 7.553 C 95.673 7.687 95.604 7.819 95.54 7.953 C 95.52 8.023 95.454 8.07 95.381 8.065 C 95.289 8.065 95.259 8.02 95.228 7.948 C 95.17 7.812 95.099 7.682 95.015 7.56 L 95.015 8.369 C 95.015 8.466 94.995 8.502 94.889 8.501 C 94.783 8.5 94.759 8.475 94.761 8.372 C 94.767 7.988 94.761 7.604 94.761 7.22 C 94.761 7.169 94.712 7.074 94.813 7.072 C 94.915 7.07 95.019 7.015 95.079 7.157 C 95.171 7.366 95.27 7.569 95.373 7.784 L 95.723 7.088\" fill=\"rgb(0,0,0)\"></path><path d=\"M 93.74 7.899 L 93.74 7.4 C 93.74 7.321 93.722 7.286 93.638 7.295 C 93.587 7.302 93.534 7.295 93.483 7.295 C 93.391 7.304 93.343 7.287 93.344 7.173 C 93.345 7.058 93.403 7.064 93.481 7.065 C 93.746 7.065 94.01 7.07 94.275 7.065 C 94.367 7.065 94.398 7.09 94.397 7.186 C 94.396 7.281 94.371 7.298 94.283 7.299 C 93.992 7.299 93.993 7.305 93.993 7.59 C 93.993 7.86 93.987 8.13 93.993 8.4 C 93.993 8.525 93.921 8.492 93.854 8.498 C 93.788 8.503 93.728 8.498 93.734 8.396 C 93.744 8.231 93.734 8.065 93.734 7.899\" fill=\"rgb(1,1,1)\"></path><path d=\"M 58.346 9.967 L 58.346 3.405 C 58.346 3.261 58.383 3.229 58.523 3.229 C 60.15 3.234 61.776 3.222 63.406 3.236 C 64.185 3.242 64.972 3.272 65.695 3.604 C 66.596 4.015 67.365 4.597 67.787 5.533 C 68.08 6.184 68.139 6.882 68.129 7.587 C 68.116 8.397 67.96 9.175 67.567 9.891 C 66.942 11.03 65.965 11.713 64.731 12.054 C 63.729 12.33 62.704 12.375 61.673 12.313 C 61.456 12.3 61.456 12.296 61.456 12.511 L 61.456 16.549 C 61.456 16.678 61.426 16.711 61.295 16.71 C 60.361 16.704 59.425 16.704 58.489 16.71 C 58.37 16.71 58.346 16.679 58.347 16.565 C 58.351 14.367 58.351 12.169 58.347 9.971 M 61.453 9.501 C 61.453 9.593 61.476 9.631 61.567 9.632 C 61.802 9.632 62.036 9.623 62.271 9.632 C 62.722 9.65 63.173 9.606 63.612 9.503 C 64.182 9.357 64.631 9.069 64.825 8.479 C 64.942 8.101 64.977 7.702 64.926 7.31 C 64.905 6.995 64.787 6.694 64.588 6.449 C 64.281 6.088 63.865 5.961 63.417 5.913 C 62.796 5.846 62.172 5.895 61.549 5.878 C 61.435 5.878 61.457 5.942 61.457 6.007 L 61.457 9.508\" fill=\"rgb(0,0,0)\"></path></g></g></g></g></svg>',svgContentId:9094432696,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12r5bfu\",\"data-framer-name\":\"Pattern\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r8j7a2\",\"data-framer-name\":\"Pattern-logo\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.537 7.73a.38.38 0 0 0 .38-.379v-2.49a.388.388 0 0 0-.38-.386h-4.042V.387A.385.385 0 0 0 72.106 0h-2.63a.383.383 0 0 0-.38.387v15.126c0 3.21 1.553 4.757 4.81 4.757h2.638c.21 0 .381-.171.381-.387v-2.371a.379.379 0 0 0-.388-.379h-2.025c-1.547 0-2.025-.401-2.025-1.888V7.73h4.05Zm-9.55 12.02a.383.383 0 0 1-.388.378h-2.63a.382.382 0 0 1-.381-.379v-1.873c-1.196 1.658-3.056 2.661-5.507 2.661-4.28 0-7.837-3.597-7.837-8.235 0-4.639 3.556-8.236 7.837-8.236 2.459 0 4.311 1.003 5.507 2.631V4.854c0-.208.172-.387.381-.387h2.63a.39.39 0 0 1 .388.387v14.895Zm-3.399-7.448c0-2.914-2.137-5.01-4.976-5.01-2.84 0-4.976 2.096-4.976 5.01 0 2.913 2.137 5.01 4.976 5.01 2.84 0 4.976-2.097 4.976-5.01Zm-14.6.003c-.001 4.666-3.557 8.232-7.837 8.232-2.458 0-4.31-1.004-5.506-2.631v7.707a.383.383 0 0 1-.381.387h-2.63a.383.383 0 0 1-.381-.387V4.861c0-.208.172-.387.38-.387h2.63c.21 0 .382.171.382.387v1.873C36.84 5.076 38.7 4.073 41.15 4.073c4.28 0 7.836 3.595 7.838 8.232Zm-3.399.004c0-2.914-2.137-5.01-4.976-5.01s-4.976 2.096-4.976 5.01c0 2.913 2.137 5.01 4.976 5.01 2.84 0 4.976-2.097 4.976-5.01Zm53.383 3.442c-.791.966-2.129 1.687-3.87 1.687-2.518 0-4.498-1.249-5.035-3.694h12.522c.067-.439.127-.944.127-1.412 0-4.512-2.959-8.266-7.898-8.266-4.938 0-8.308 3.538-8.308 8.236 0 4.697 3.37 8.236 8.562 8.236 2.922 0 5.186-1.145 6.65-3.07a.378.378 0 0 0-.12-.55l-2.144-1.25a.38.38 0 0 0-.486.083Zm-4.184-8.615c2.04 0 4.028 1.16 4.498 3.85h-9.25c.471-2.349 2.205-3.85 4.752-3.85Zm35.216 3.381v9.232a.39.39 0 0 1-.389.386h-2.63a.39.39 0 0 1-.388-.386v-8.882c0-2.379-1.382-3.635-3.527-3.635-2.144 0-3.997 1.315-3.997 4.512v8.005a.388.388 0 0 1-.381.386h-2.63a.383.383 0 0 1-.381-.386V4.86c0-.208.172-.387.381-.387h2.63c.209 0 .381.171.381.387v1.62c1.039-1.628 2.735-2.408 4.879-2.408 3.526 0 6.044 2.378 6.044 6.452l.008-.008Zm-22.46-3.412c.948-2.133 2.869-2.913 4.849-2.913v-.008h1.188c.209 0 .381.179.381.387V7.47a.383.383 0 0 1-.381.386h-1.188c-2.294 0-4.849.877-4.849 4.386v7.507c0 .208-.18.379-.389.379h-2.63a.382.382 0 0 1-.381-.38V4.862c0-.216.172-.387.381-.387h2.63a.39.39 0 0 1 .389.387v2.244Zm-21.392.246a.39.39 0 0 1-.389.38h-4.05v7.514c0 1.487.479 1.888 2.025 1.888h2.025a.379.379 0 0 1 .389.379v2.371a.383.383 0 0 1-.381.387h-2.638c-3.257 0-4.811-1.546-4.811-4.757V.387c0-.216.171-.387.38-.387h2.63c.217 0 .389.171.389.387v4.088h4.042a.39.39 0 0 1 .389.386v2.49ZM.19 15.624 15.702.194a.66.66 0 0 1 .927 0l3.818 3.797a.653.653 0 0 1 0 .922L4.935 20.343a.66.66 0 0 1-.927 0L.191 16.547a.653.653 0 0 1 0-.922Zm12.777 0 9.123-9.076a.66.66 0 0 1 .926 0l3.818 3.799a.653.653 0 0 1 0 .921l-9.123 9.076a.66.66 0 0 1-.926 0l-3.818-3.798a.653.653 0 0 1 0-.922Z\" fill=\"#090A0F\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-86pgqg\",\"data-framer-name\":\"Whoppah\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2835lc\",\"data-framer-name\":\"whoppah\",fill:\"black\",intrinsicHeight:721,intrinsicWidth:2696,svg:'<svg width=\"2696\" height=\"721\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2491.02 304.538c-38.99 0-70.42 13.876-94.1 38.011V197.325h-97.16v419.161h97.11V475.913c0-58.556 24.88-84.499 62.38-84.499 31.59 0 52.83 24.134 52.83 59.744v165.38h96.52V430.639c.18-76.023-47.18-126.101-117.58-126.101Zm156.99-102.774c-22.14 0-40.26 16.906-40.26 40.453 0 23.348 18.12 40.254 40.26 40.254 22.13 0 40.25-16.906 40.25-40.254 0-23.547-18.12-40.453-40.25-40.453Zm0 72.857c-17.52 0-32-13.887-32-32.404 0-18.919 14.48-32.806 32-32.806 17.71 0 32.2 13.887 32.2 32.806 0 18.517-14.49 32.404-32.2 32.404Zm17.51-39.851c0-7.447-6.03-12.276-15.09-12.276h-17.12v37.032h8.06v-11.875h6.03l10.47 11.875h9.66l-11.48-12.679c5.85-1.812 9.47-6.24 9.47-12.077Zm-24.15 5.637v-10.668h9.06c4.21 0 7.03 2.012 7.03 5.233 0 3.22-2.82 5.435-7.03 5.435h-9.06Zm-884.29 66.543c-39.47 0-71.02 12.067-94.71 33.18v-24.136h-97.11v390.194h97.11V594.764c23.69 21.138 55.24 33.205 94.71 33.205 80.73 0 148.71-64.602 148.71-160.523 0-95.325-67.98-160.496-148.71-160.496ZM1737 545.899c-39.45 0-74.67-31.371-74.67-78.453 0-46.512 35.22-78.426 74.67-78.426 42.47 0 73.43 31.966 73.43 78.426.06 47.082-30.89 78.453-73.43 78.453Zm-1403.042-68.12-57.682-163.52h-68.572l-57.68 162.925-49.779-162.925H4.952l97.737 303.525h84.376l55.238-164.14 54.613 164.14h84.375l97.738-303.525h-95.294l-49.777 163.52Zm362.828-173.241c-38.835 0-70.418 13.876-94.071 38.011V197.325h-97.139v419.161h97.139V475.913c0-58.556 24.876-84.499 62.385-84.499 31.556 0 52.82 24.134 52.82 59.744v165.38h96.515V430.639c.13-76.023-47.23-126.101-117.649-126.101Zm310.054 2.412c-92.278 0-168.753 63.981-168.753 159.308 0 95.946 76.475 159.902 168.753 159.902 90.43 0 166.93-63.956 166.93-159.902 0-95.327-76.5-159.308-166.93-159.308Zm0 237.734c-39.458 0-75.382-30.776-75.382-78.452 0-47.057 35.82-78.426 75.382-78.426 37.64 0 73.46 31.369 73.46 78.426 0 47.728-35.82 78.477-73.46 78.477v-.025Zm384.83-237.734c-39.45 0-71.01 12.067-94.69 33.18v-24.136h-97.11v390.194h97.11V594.764c23.68 21.138 55.24 33.205 94.69 33.205 80.74 0 148.72-64.602 148.72-160.523 0-95.325-67.98-160.496-148.72-160.496Zm-19.96 238.949c-39.46 0-74.65-31.371-74.65-78.453 0-46.512 35.19-78.426 74.65-78.426 42.5 0 73.46 31.966 73.46 78.426-.08 47.082-31.04 78.453-73.46 78.453ZM2174.1 340.13c-23.69-21.113-55.24-33.18-94.71-33.18-80.73 0-148.71 65.171-148.71 160.496 0 95.947 67.98 160.523 148.71 160.523 39.47 0 71.02-12.067 94.71-33.205v24.135h97.11V315.994h-97.11v24.136Zm-74.66 205.769c-42.51 0-73.46-31.371-73.46-78.453 0-46.512 30.95-78.426 73.46-78.426 39.44 0 74.66 31.966 74.66 78.426 0 47.082-35.22 78.453-74.66 78.453Zm-732.4-359.303c4.62.01 9.08-1.732 12.46-4.871 3.38-3.14 5.43-7.44 5.73-12.028l9.15-138.171c.23-1.384.35-2.784.37-4.186v-1.19a27.276 27.276 0 0 0-8.46-18.56A27.587 27.587 0 0 0 1367.27 0c-7.09 0-13.9 2.72-19.02 7.592a27.276 27.276 0 0 0-8.46 18.559h-.33l9.38 143.546a18.08 18.08 0 0 0 5.74 12.028 18.244 18.244 0 0 0 12.46 4.871Zm95.98 21.423 104.76-91.268c1.15-.77 2.25-1.634 3.25-2.584l.44-.491.39-.336a27.267 27.267 0 0 0 7.41-19.116 27.286 27.286 0 0 0-8.04-18.86 27.588 27.588 0 0 0-18.98-7.996 27.575 27.575 0 0 0-19.23 7.366l-.23-.233-95.42 107.989a18.02 18.02 0 0 0 .86 24.65 18.232 18.232 0 0 0 12.22 5.293c4.6.163 9.1-1.414 12.57-4.414Zm-168.43-.829a18.045 18.045 0 0 0 5.31-12.194 17.996 17.996 0 0 0-4.51-12.509l-95.34-108.17-.26.233a27.574 27.574 0 0 0-19.23-7.366 27.546 27.546 0 0 0-18.97 7.996 27.253 27.253 0 0 0-8.05 18.86 27.221 27.221 0 0 0 7.41 19.116l.39.336c.16.155.29.336.47.491 1.01.944 2.08 1.808 3.22 2.584l104.76 91.269a18.258 18.258 0 0 0 12.53 4.53c4.6-.121 8.98-1.97 12.27-5.176Z\" fill=\"#395738\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:21.5,intrinsicWidth:95.5,pixelHeight:43,pixelWidth:191,src:\"https://framerusercontent.com/images/0ITH5Vx9bRIsrLfLjxA3zrsic4.svg\"},className:\"framer-1s3kztg\",\"data-framer-name\":\"kobalt\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eo0qwn\",\"data-framer-name\":\"Aternos\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1js3q2p\",\"data-framer-name\":\"aternos\",fill:\"black\",intrinsicHeight:225,intrinsicWidth:1058,svg:'<svg shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" image-rendering=\"optimizeQuality\" fill-rule=\"evenodd\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 2800.498 594.918\" width=\"1058.456\" height=\"224.851\"><path fill=\"#2b87d3\" d=\"m336.179 111.801-.682.138-.556.375-.375.556-.137.681v70.797l.137.68.375.557.556.375.682.138h71.965l.475.475v71.546l.137.682.375.556.556.375.682.137h70.585l.682-.137.556-.375.375-.556.137-.682V113.551l-.137-.681-.375-.556-.556-.375-.682-.138Zm-222.918.017-.681.137-.557.375-.375.556-.137.682v144.596l.137.681.375.557.557.375.681.137h71.154l.682-.137.556-.375.375-.557.137-.681v-71.943l.475-.475h71.26l.68-.138.557-.375.375-.556.137-.681v-70.428l-.137-.682-.375-.556-.556-.375-.682-.137Zm1588.39 88.63 16.922.102 16.899.505 6.12.496 5.39.903 4.726 1.377 2.076.873 1.894 1.008 1.702 1.145 1.508 1.29 1.36 1.503 1.067 1.529.914 1.756.713 1.927.508 2.104.3 2.29.584 11.568-.035 11.532-.52 11.547-.87 11.47-.532 2.672-.943 2.24-1.414 2.112-1.79 1.854-2.151 1.626-2.425 1.342-2.478 1.014-2.77.794-5.14 1.113-5.262.93-5.288.65-5.238.289-32.651.21-32.63-.072-.485-.462-.223-4.6-.007-75.555.445-.492 6.041-.46 33.684-.13ZM889.61 208.86l.53.356 36.822 109.334-.374.521h-74.546l-.374-.52 36.88-109.285.482-.369.58-.037Zm-664.794 14.198-.681.138-.557.375-.375.556-.137.681V369.61l.137.68.375.557.557.375.68.138h144.54l.681-.138.557-.375.375-.556.137-.681V224.808l-.137-.681-.375-.556-.557-.375-.68-.138Zm2149.172-27.868 10.615.387 10.472 1.08 10.418 1.794 5.175 1.17 8.937 2.529 3.385 1.267 2.956 1.336 2.735 1.497 2.486 1.666 2.107 1.727 1.93 1.964 1.631 2.072 1.36 2.17 1.176 2.398.982 2.631.757 2.717.606 3.058.408 3.078.399 7.058.377 31.133.114 31.205-.125 31.198-.341 31.258-.375 6.693-.441 3.182-.591 2.803-.81 2.72-1.033 2.54-1.273 2.365-1.533 2.194-1.813 2.03-2.115 1.868-2.437 1.712-2.782 1.56-3.145 1.409-3.624 1.293-3.922 1.108-4.35.971-10.755 1.868-10.775 1.327-10.776.747-10.774.13-10.765-.522-10.742-1.213-10.684-1.932-10.602-2.68-5.583-1.988-4.66-2.426-2.07-1.416-1.881-1.545-1.691-1.674-1.505-1.806-1.352-1.993-1.108-2.021-.96-2.213-.782-2.354-1.038-5.136-.349-5.819V237.878l.366-7.824.471-3.523.647-3.167.874-3.035 1.094-2.81 1.323-2.594 1.562-2.384 1.81-2.183 2.123-2.034 2.285-1.764 2.62-1.63 2.912-1.46 3.314-1.335 3.516-1.133 3.836-.985 10.442-2.107 10.474-1.525 10.492-.916 10.375-.279Zm-1061.342-46.603-.682.137-.556.375-.375.556-.137.682V443.67l.137.681.375.557.556.375.682.137h226.444l.68-.137.557-.375.375-.557.138-.68v-47.066l-.138-.681-.375-.556-.556-.375-.681-.138h-156.008l-.475-.475v-74.61l.475-.475h136.35l.681-.137.557-.375.375-.556.137-.682v-48.832l-.137-.681-.375-.556-.557-.375-.68-.138h-136.407l-.475-.475v-65.724l.475-.475h151.328l.681-.137.557-.375.375-.556.137-.682v-48.201l-.137-.682-.375-.556-.557-.375-.68-.137Zm-384.662-.329-37.127.21-37.07-.128-2.52.209-1.116.303-1.263.697-1.307 1.402-1.376 2.817-85.345 230.295-21.648 59.352-.09.827.3.776.626.549.809.197h67.148l1.023-.33.637-.866 11.228-33.65 12.043-36.831.902-1.852 1.037-1.49 1.215-1.159 1.313-.8 1.822-.638 2.01-.325 2.484-.077 21.269.238 68.891-.006 3.53.187 2.71.526 1.945.975 1.445 1.501 1.378 2.477 1.353 3.455 22.806 67.53.638.863 1.02.329h69.068l.807-.197.625-.548.303-.774-.09-.826-103.7-288.279-.76-1.86-.816-1.48-.947-1.215-1.088-.939-1.242-.681-1.411-.452-1.627-.249-1.842-.063Zm89.31.727-.681.137-.556.375-.375.556-.138.682v48.426l.138.68.375.557.556.375.681.138h89.36l.475.474v242.71l.138.681.375.556.556.375.681.138h68.05l.682-.138.556-.375.375-.556.138-.681V200.722l.475-.475h87.693l.681-.138.556-.375.375-.556.138-.681v-47.762l-.138-.682-.375-.556-.556-.375-.681-.137Zm645.079-.79-70.468.206-.681.138-.557.375-.375.556-.137.681v293.574l.137.682.375.556.557.375.68.137h67.752l.681-.137.556-.375.375-.556.138-.681v-113.15l.472-.476 13.085-.12 6.826.051 6.619.302 2.323.481 2.385 1.053 2.127 1.465 1.631 1.759 35.484 52.544 35.021 52.713 2.225 2.761 1.403 1.159 1.292.745 1.38.53 1.615.337 3.134.218 72.337-.08.908-.254.644-.688.194-.924-.314-.89-82.724-117.615.21-.607 22.48-6.932 7.473-2.81 4.312-1.924 4.05-2.082 3.801-2.255 3.65-2.508 3.328-2.666 3.016-2.821 2.736-3.015 2.45-3.21 2.158-3.411 1.793-3.476 1.564-3.82 1.29-4.18.921-4.258.596-4.476.262-4.58-.466-17.839-.067-12.798.374-25.553-.088-5.104-.464-4.976-.774-4.422-1.125-4.291-1.506-4.175-1.692-3.63-2.045-3.527-2.419-3.405-2.494-2.926-2.84-2.818-3.177-2.673-3.145-2.267-3.505-2.172-3.697-1.967-3.876-1.772-4.024-1.576-8.776-2.829-8.88-2.23-8.953-1.703-9.005-1.253-9.049-.88-9.062-.585-18.153-.598-32.141-.408-32.141-.043Zm294.215-.074-59.936.276-.68.139-.556.376-.374.557-.137.681v293.722l.138.681.375.557.556.375.681.137h60.146l.681-.137.557-.375.375-.557.137-.681V241.7l.298-.098 7.933 10.837 130.914 187.98 2.342 2.768 2.229 1.62 1.611.696 1.547.386 3.337.258 28.932-.185 34.246.055.681-.138.555-.375.374-.556.137-.68V150.583l-.137-.682-.375-.556-.556-.375-.682-.137h-59.621l-.682.137-.556.375-.375.556-.137.682V349.18l-.426.189-2.734-2.67-66.21-93.454-65.92-93.66-2.191-2.897-2.253-2.467-2.363-2.039-2.773-1.751-2.773-1.176-2.779-.72-3.556-.414Zm730.635-3.336-9.992.186-9.993.413-9.979.668-9.951.95-9.917 1.262-9.878 1.6-9.684 1.966-9.585 2.523-4.726 1.528-4.624 1.724-4.529 1.948-4.57 2.277-5.93 3.545-5.347 3.935-5.007 4.534-4.427 4.983-1.99 2.673-1.83 2.787-1.66 2.898-1.482 3.008-1.298 3.117-1.106 3.221-.904 3.324-.699 3.438-.905 6.438-.585 6.495-.308 6.542-.077 6.557.372 13.169.783 13.085.364 3.864.568 3.76.763 3.623.951 3.488 1.135 3.356 1.312 3.226 1.48 3.09 3.443 5.8 2.058 2.844 4.216 4.904 4.842 4.558 5.437 4.172 5.714 3.598 5.95 3.095 6.332 2.713 6.634 2.31 6.834 1.9 6.977 1.502 7.07 1.118 7.123.748 14.119.687 28.292.065 14.122.238 5.003.265 4.863.523 4.84.968 4.648 1.568 2.86 1.434 2.539 1.724 2.28 2.063 1.85 2.19 1.593 2.496 1.275 2.717.956 2.923.643 3.159.665 5.29.45 5.331.387 10.659-.26 6.24-.387 2.83-.567 2.645-.75 2.462-.938 2.286-1.132 2.12-1.33 1.962-1.535 1.815-1.745 1.675-1.962 1.545-2.185 1.423-2.507 1.355-2.558 1.156-6.033 2.116-5.212 1.399-5.144 1.103-5.148.85-5.153.619-5.153.406-5.178.217-10.346-.054-10.314-.564-10.323-.907-20.67-2.172-14.742-1.73-42.644-6.304-.942.102-.54.343-.382.514-.177.79v51.346l.117.63.323.53.488.385.61.193 26.749 3.269 13.766 1.53 13.75 1.106 16.864.82 16.872.498 16.877.227 16.85.01 7.242-.164 7.236-.428 7.206-.695 7.169-.965 7.133-1.237 7.089-1.513 7.047-1.792 6.995-2.072 4.914-1.664 4.755-1.826 4.59-2.001 4.414-2.187 4.226-2.383 4.028-2.59 3.818-2.807 3.69-3.119 3.4-3.328 3.115-3.537 2.858-3.798 2.588-4.065 2.308-4.345 1.966-4.506 1.763-5.057 1.365-5.078 1.67-8.234 1.22-8.253.784-8.271.367-8.29-.036-8.295-.425-8.297-.799-8.286-1.152-8.244-1.127-5.67-1.579-5.608-1.982-5.27-2.443-5.052-2.925-4.806-3.423-4.534-3.947-4.246-4.365-3.834-3.222-2.415-3.316-2.196-3.385-1.978-3.45-1.771-3.508-1.576-3.534-1.383-7.436-2.333-7.258-1.667-7.575-1.233-7.668-.85-7.7-.567-13.178-.438-26.476.167-13.24-.092-5.29-.321-5.26-.658-5.228-.939-5.193-1.174-2.561-.745-2.618-1.023-2.348-1.207-2.13-1.452-1.887-1.737-1.538-2.015-1.118-2.304-.655-2.707-1.13-9.954-.379-5.469-.097-5.487.302-5.493.823-5.249.642-2.469.817-2.35 1.04-2.26 1.216-2.029 2.41-2.887 2.95-2.422 3.268-1.904 3.6-1.496 3.82-1.132 4.048-.844 7.95-.971 7.762-.535 7.768-.326 15.498-.095 15.45.53 15.427 1.01 15.418 1.351 44.636 4.513.805-.107.546-.336.426-.588.15-.71v-50.292l-.104-.597-.737-.899-2.512-.603-8.011-.885-25.13-1.645-40.698-1.762-20.024-.196Zm-294.814.221-14.36.003-35.78.464-6.896.489-6.839.834-6.779 1.14-6.722 1.407-6.663 1.63-13.184 3.782-7.5 2.573-7.103 2.97-6.72 3.383-6.239 3.75-5.785 4.135-5.434 4.62-4.735 4.793-4.356 5.275-3.855 5.65-3.342 6.027-2.869 6.539-2.259 6.764-1.706 7.123-1.143 7.481-.566 7.839.016 8.093.327 14.541-.336 77.58.013 17.077.223 17.044.207 4.507.43 4.427.658 4.323.884 4.211 1.113 4.093 1.346 3.981 1.577 3.859 1.812 3.733 2.05 3.608 2.287 3.476 2.528 3.341 2.768 3.203 3.013 3.061 3.259 2.918 3.503 2.766 3.752 2.614 5.097 3.15 5.175 2.85 5.264 2.575 5.34 2.312 5.414 2.068 5.48 1.838 5.54 1.624 5.573 1.42 11.307 2.32 11.486 1.728 11.588 1.254 11.621.91 6.354.307 6.365.096 12.784-.286 25.568-1.37 7.94-.596 7.903-.987 7.82-1.356 7.744-1.703 7.675-2.028 7.604-2.33 7.547-2.612 7.472-2.863 5.511-2.38 5.24-2.615 4.946-2.848 4.645-3.082 4.373-3.353 4.105-3.647 3.682-3.809 3.339-4.04 2.997-4.287 2.637-4.52 2.275-4.76 1.858-4.868 1.567-5.373 1.136-5.487.727-5.598.345-5.955.436-36.198-.19-36.17-.64-36.169-.916-36.115-.25-4.223-.522-4.155-.783-4.036-1.038-3.915-1.285-3.796-1.52-3.67-1.752-3.556-1.972-3.434-2.186-3.315-2.389-3.194-2.586-3.077-2.773-2.957-2.952-2.839-3.094-2.7-6.712-5.085-4.226-2.784-4.276-2.546-4.355-2.34-4.421-2.14-9.017-3.716-9.234-3.036-9.457-2.444-9.598-1.91-9.707-1.455-9.767-1.073-7.175-.516-7.282-.262ZM113.429 334.522l-.681.138-.556.375-.375.556-.138.681v144.776l.138.681.375.557.556.375.681.137H257.91l.682-.137.556-.375.375-.557.137-.681v-71.14l-.137-.682-.375-.556-.556-.375-.682-.138h-71.784l-.475-.474v-71.41l-.137-.682-.375-.556-.556-.375-.682-.138Zm296.535.022-.681.137-.556.375-.375.556-.138.682v71.956l-.475.475h-71.573l-.68.137-.557.375-.375.557-.138.68v70.595l.138.682.375.556.556.375.681.137h144.586l.682-.137.556-.375.375-.556.137-.682V336.294l-.137-.682-.375-.556-.556-.375-.682-.137ZM518.717 74.906l.475.475v443.526l-.475.474H75.197l-.475-.474V75.38l.474-.475ZM1.5-.25l-.681.137-.557.375-.375.557-.137.681v591.418l.137.682.375.556.557.375.681.137h591.294l.682-.137.556-.375.375-.556.137-.682V1.5l-.137-.681-.375-.557-.556-.375-.682-.137Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jcdiks\",\"data-framer-name\":\"Destructive\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1exf91h\",\"data-framer-name\":\"destructive\",fill:\"black\",intrinsicHeight:86,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"86\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.5 1.811C92.916 5.294 90 11.021 90 22.44c0 5.506.523 8.584 1.917 11.282 2.223 4.3 8.582 10.584 15.218 15.037 7.674 5.15 9.865 8.44 9.865 14.814 0 6.737-1.043 8.83-5.108 10.246-6.163 2.148-10.849-2.433-10.877-10.637L101 58.93H90v5.934c0 7.038 1.177 10.562 4.814 14.404 4.067 4.3 8.08 5.983 14.27 5.99 7.556.007 13.528-3.297 16.88-9.341 2.063-3.719 2.493-5.86 2.513-12.488.032-11.014-2.113-14.57-14.276-23.672-10.559-7.902-13.192-11.419-13.197-17.628-.009-9.933 7.502-14.785 13.541-8.744 1.958 1.957 2.455 3.476 2.455 7.5v5.044h6c5.978 0 6-.01 6-2.95 0-5.69-2.203-13.137-4.798-16.22C118.795.332 108.43-1.83 100.5 1.81Zm193.583.765c-4.455 2.22-5.693 3.47-7.687 7.75-2.313 4.97-2.377 5.808-2.381 31.605-.002 15.73.43 28.062 1.064 30.344 3.642 13.117 22.2 17.602 32.061 7.747 4.017-4.014 5.846-9.118 5.854-16.342l.006-4.75h-10.742l-.665 5.878c-.78 6.9-2.807 9.27-8.052 9.418-2.471.07-4.281-.59-5.814-2.123-2.154-2.151-2.238-2.983-2.55-25.448-.359-25.838.081-30.983 2.895-33.797 2.091-2.09 6.924-2.536 9.95-.915 1.997 1.069 3.963 6.63 3.972 11.237.006 2.674.163 2.75 5.622 2.75h5.617l-.399-6.27c-.567-8.902-3.256-13.562-9.795-16.979-6.783-3.543-12-3.572-18.956-.105ZM0 42.431v41.5l12.25-.022c16.511-.03 21.451-2.23 25.212-11.233 1.254-3.002 1.534-8.538 1.516-29.964-.024-29.252-.469-31.652-6.867-37.035C27.679 1.948 23.149.942 10.75.937L0 .93v41.5ZM50.667 1.596C50.3 1.963 50 20.638 50 43.097V83.93h33v-11H62v-25h20v-11H61.938l.281-12.25.281-12.25h20.503l-.002-5.75L83 .93H67.167c-8.709 0-16.134.3-16.5.667ZM133 6.384v5.455l6.75.295 6.75.296.263 35.75.262 35.75h10.95l.262-35.75.263-35.75 6.75-.296 6.75-.295V.93h-39v5.454Zm47.75-4.879c-.412.417-.75 19.133-.75 41.592V83.93h12V49.816l4.191.307 4.191.308 2.242 8.5 4.419 16.75 2.176 8.25h6.007c5.746 0 5.98-.099 5.388-2.25-.34-1.237-2.52-9.537-4.844-18.444l-4.225-16.194 2.18-2.32c4.017-4.276 5.578-9.66 5.609-19.351.038-11.736-2.313-17.169-9.18-21.206-4.246-2.496-5.707-2.766-16.654-3.078-6.6-.188-12.338 0-12.75.417Zm51.256 33.175c.003 21.538.405 35.19 1.109 37.727 1.616 5.82 7.264 11.017 13.385 12.312 5.156 1.092 11.37.439 15.142-1.59 3.32-1.787 7.175-6.878 8.314-10.98.616-2.218 1.035-17.339 1.038-37.468L271 .93h-10.902l-.299 34.474c-.296 34.123-.322 34.495-2.527 36.7-2.649 2.646-8.519 3.007-10.86.666-2.845-2.844-3.364-9.066-3.388-40.59L243 .93h-11l.006 33.75ZM330 6.385v5.455l6.75.295 6.75.296.263 35.75.262 35.75H355.5v-71.5l6.75-.296 6.75-.295V.93h-39v5.454Zm48 36.047v41.5h11v-83h-11v41.5Zm19.951-40.25c-.027.687 2.785 19.361 6.25 41.498l6.299 40.248 8.705.001 8.704.002.579-3.25C429.63 74.276 441 2.537 441 1.742c0-.447-2.439-.812-5.421-.812-5.113 0-5.451.156-5.968 2.75-.302 1.512-2.626 16.925-5.165 34.25s-4.781 31.667-4.982 31.869c-.202.201-.602-.699-.889-2C417.902 64.74 409 3.68 409 2.115c0-1.687-10.983-1.624-11.049.064ZM449 42.43v41.5h33V72.998l-10.75-.284-10.75-.285v-24l9.75-.285 9.75-.287V37.004l-9.75-.286-9.75-.286-.292-10c-.449-15.334-1.099-14.5 11.311-14.5H482v-11h-33v41.5Zm-437-.124V72.93h5.389c3.816 0 6.078-.558 7.75-1.912l2.361-1.91V43.046c0-25.482-.049-26.108-2.191-28.25-1.56-1.561-3.789-2.323-7.75-2.652L12 11.681v30.625Zm180.667-29.71c-.367.367-.667 6.441-.667 13.5V38.93h5.389c7.922 0 9.886-1.95 10.42-10.346.653-10.247-.284-13.538-4.336-15.23-3.55-1.484-9.653-1.912-10.806-.758Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bt8non\",\"data-framer-name\":\"Crowd Cow\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ut3z6r\",\"data-framer-name\":\"crowd_cow\",fill:\"black\",intrinsicHeight:133,intrinsicWidth:698,svg:'<svg width=\"698\" height=\"133\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M174.885 41.793c-11.727 4.16-18.634 14.905-17.382 27.045 1.454 14.109 12.029 23.147 27.085 23.147 7.468 0 11.749-1.166 16.629-4.528 5.375-3.702 5.434-4.835.469-8.88l-4.35-3.543-3.845 2.61c-3.283 2.228-4.636 2.547-9.253 2.177-4.675-.376-5.857-.923-8.737-4.047-2.899-3.146-3.328-4.29-3.315-8.839.018-6.408 1.465-9.423 5.991-12.481 4.315-2.916 11.131-2.617 15.809.694 3.506 2.482 4.907 2.095 9.394-2.594l2.75-2.874-2.75-2.613c-6.51-6.184-19.269-8.545-28.495-5.274Zm113.114-.499c-6.873 2.079-13.048 7.276-16.588 13.963-2.701 5.1-2.546 17.026.291 22.347 3.012 5.653 6.997 9.337 13.16 12.166 4.67 2.143 6.383 2.4 13.572 2.024 6.616-.345 9.12-.949 12.775-3.078 8.917-5.196 13.004-12.307 13.025-22.67.031-15.275-11.371-25.823-27.669-25.594-3.335.047-7.19.426-8.566.842Zm230.559.384c-12.543 4.663-18.652 14.063-17.601 27.084 1.149 14.23 11.664 23.223 27.153 23.223 7.961 0 14.393-2.214 18.413-6.337l3.197-3.28-4.517-3.678-4.518-3.68-3.747 2.532c-4.508 3.045-11.514 3.43-15.294.84-7.877-5.398-8.787-16.137-1.92-22.677 2.67-2.543 3.828-2.93 8.754-2.93 4.353 0 6.439.542 8.955 2.325l3.279 2.326 4.523-3.684 4.522-3.684-2.309-2.46c-4.097-4.364-9.692-6.54-17.788-6.915-4.684-.218-8.842.154-11.102.995Zm54.921.06c-11.969 4.251-17.856 12.651-17.856 25.477 0 14.37 11.528 24.77 27.461 24.77 11.724 0 20.225-4.816 24.874-14.091 7.29-14.542-.54-32.176-16.21-36.502-4.998-1.38-13.884-1.212-18.269.346Zm-357.39.118c-.01.273-.029 11.329-.041 24.568l-.022 24.072 7.031.291 7.031.292V77.968l3.717.308c3.301.273 4.203 1.002 8.062 6.512l4.346 6.204h7.415c4.079 0 7.416-.255 7.416-.567 0-.311-2.022-3.383-4.494-6.826-2.471-3.443-4.493-6.595-4.493-7.006 0-.41 1.548-2.45 3.441-4.533 9.392-10.334 5.052-26.001-8.216-29.664-3.683-1.017-31.157-1.493-31.193-.54Zm113.868.248c.007.41 3.507 11.465 7.777 24.568l7.765 23.824h15.761l4.537-13.65c2.496-7.507 4.837-13.648 5.205-13.648.366 0 .97 1.228 1.341 2.73.369 1.502 2.257 7.755 4.195 13.897l3.522 11.167h7.828c7.255 0 7.877-.164 8.494-2.234.366-1.227 3.767-11.846 7.557-23.595 3.79-11.75 6.891-21.932 6.891-22.628 0-.928-1.762-1.187-6.6-.973l-6.599.294-5.028 15.386c-4.17 12.762-5.163 14.963-5.821 12.904a4466.91 4466.91 0 0 1-4.907-15.678l-4.112-13.197-6.683.293-6.684.292-4.841 14.743c-2.663 8.108-5.186 14.361-5.605 13.897-.42-.466-2.463-6.43-4.541-13.254-5.179-17.015-4.286-15.882-12.509-15.882-3.825 0-6.949.334-6.943.744Zm89.86 23.988v24.9h15.3c17.052 0 21.797-1.02 27.854-5.983 5.346-4.38 8.075-10.734 8.031-18.704-.058-10.699-3.783-17.145-12.552-21.723-4.937-2.577-5.966-2.72-21.907-3.047l-16.726-.343v24.9Zm196.719-23.707c0 .611 3.465 11.798 7.7 24.859l7.699 23.748h15.416l4.773-14.35c2.626-7.893 4.947-14.179 5.159-13.968.211.21 2.288 6.555 4.616 14.101l4.233 13.72 7.92.286 7.92.283 7.724-24.195c4.248-13.308 7.724-24.512 7.724-24.898 0-.386-3.013-.57-6.696-.409l-6.696.294-4.971 15.183c-2.735 8.352-5.26 14.605-5.611 13.898-.353-.708-2.592-7.652-4.977-15.432l-4.338-14.145h-13.334l-4.836 14.89c-2.66 8.189-5.089 14.884-5.397 14.877-.309-.006-2.598-6.594-5.086-14.641l-4.525-14.63-7.208-.292c-4.831-.195-7.209.076-7.209.821ZM244.031 54.727c1.236 1.112 2.034 3.07 2.034 4.997 0 4.64-2.905 6.743-10.023 7.255l-5.954.428V52.04l5.954.427c3.907.281 6.654 1.057 7.989 2.259Zm59.762-.437c1.818 1.102 3.952 3.542 4.743 5.424 4.326 10.29-1.806 20.346-12.41 20.355-3.759.003-4.913-.544-8.354-3.966-3.965-3.94-3.991-4.015-3.582-10.39.326-5.095.917-6.963 2.862-9.044 4.499-4.813 11.163-5.76 16.741-2.38Zm146.849.552c5.637 3.31 7.604 10.85 4.658 17.859-1.958 4.658-8.418 7.596-15.772 7.175l-5.232-.3-.281-12.353c-.156-6.794-.034-12.996.269-13.783.772-2 12.238-1.018 16.358 1.402Zm139.463-.56c3.335 2.05 6.478 7.989 6.437 12.162-.012 1.218-.875 4.083-1.918 6.367-4.494 9.839-18.586 9.839-23.081 0-2.434-5.33-2.415-8.011.095-13.165 3.406-6.994 11.829-9.44 18.467-5.363Z\" fill=\"#000\"/><path d=\"M17.59 20.959C27.254 10.687 38.54 4.3 52.705 1.085c3.879-.88 9.79-1.253 16.112-1.014 20.63.777 38.919 10.284 50.981 26.504 3.498 4.704 9.433 15.844 9.433 17.707 0 .633-2.693 1.048-6.805 1.048h-6.806l-1.771-3.722c-7.598-15.963-25.691-27.653-44.532-28.775-23.73-1.412-46.053 13.46-53.996 35.971-2.944 8.34-3.61 21.093-1.531 29.284 8.46 33.334 43.34 50.698 74.448 37.062 2.992-1.311 6.928-3.512 8.744-4.889 1.816-1.378 3.706-2.256 4.2-1.952.494.303 2.103 2.596 3.576 5.093 2.598 4.408 2.624 4.6.864 6.534-2.828 3.107-17.36 9.669-24.95 11.267-14.991 3.158-30.323 1.219-44.308-5.602-10.425-5.085-22.669-16.658-28.216-26.668C2.009 87.853-.065 79.387.002 65.68c.05-10.318.426-12.973 2.806-19.852 3.661-10.583 7.647-17.286 14.781-24.868Z\" fill=\"#E97024\"/><path d=\"M27.57 34.306c5.863-7.28 19.157-15.423 27.808-17.035 5.315-.99 18.694-.635 23.426.621 11.282 2.996 22.389 10.696 28.456 19.728 2.199 3.273 3.998 6.347 3.998 6.83 0 .983-20.818.997-25.407.019-1.995-.426-4.284-2.378-7.126-6.075-4.243-5.52-9.623-8.87-14.33-8.92-2.228-.024-2.08.27 1.824 3.591 3.17 2.697 3.913 3.829 2.926 4.451-2.701 1.703-8.816.894-12.733-1.684-4.45-2.928-12.764-5.674-13.516-4.465-.278.45 1.286 1.997 3.478 3.438 3.947 2.596 9.971 9.809 9.952 11.915-.005.6-1.578 3.053-3.495 5.45-2.36 2.953-3.485 5.396-3.485 7.572 0 4.226-2.113 9.143-8.162 18.994-4.855 7.906-4.935 8.161-3.441 11.033 1.767 3.398 7.307 6.34 11.913 6.326 9.095-.028 21.753-1.391 26.326-2.837 4.292-1.357 5.84-1.432 9.153-.445 4.146 1.234 13.46 9.581 12.852 11.516-.663 2.108-10.045 7.535-16.391 9.484-14.299 4.39-31.386 1.916-43.474-6.295-13.166-8.944-20.602-22.094-21.485-37.992-.76-13.67 2.793-25.113 10.933-35.22Z\" fill=\"#E97024\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a3mbes\",\"data-framer-name\":\"Locaboo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ksrwfu\",\"data-framer-name\":\"locaboo\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.944 15.194h-8.29V.427H0v19.325h17.18a11.48 11.48 0 0 1-2.104-1.637 11.135 11.135 0 0 1-2.132-2.921m14.072-1.248c-1.025 1.074-2.25 1.596-3.743 1.596-1.494 0-2.719-.522-3.743-1.596-1.033-1.082-1.536-2.361-1.536-3.91s.503-2.828 1.536-3.91c1.025-1.074 2.25-1.597 3.743-1.597 1.493 0 2.718.523 3.743 1.596 1.033 1.083 1.536 2.362 1.536 3.911s-.503 2.828-1.536 3.91Zm17.782-8.879c.637.276 1.341.785 2.09 1.513l.636.618 2.989-3.307-.528-.588C48.017 1.111 45.533 0 42.6 0c-2.913 0-5.365.963-7.288 2.864-1.187 1.174-2.013 2.54-2.474 4.081-.46-1.515-1.278-2.862-2.451-4.022C28.47 1.03 26.079.072 23.273.072s-5.2.959-7.113 2.85c-1.92 1.898-2.894 4.291-2.894 7.114 0 2.822.974 5.215 2.894 7.113C18.073 19.041 20.467 20 23.273 20s5.198-.96 7.114-2.85c1.173-1.162 1.992-2.508 2.452-4.024a9.312 9.312 0 0 0 2.423 4.014c1.89 1.867 4.292 2.814 7.14 2.814 2.867 0 5.336-1.138 7.336-3.381l.541-.607-3.041-3.16-.616.585c-.726.689-1.42 1.19-2.062 1.494-.61.288-1.366.434-2.246.434-1.4 0-2.579-.505-3.605-1.543-1.026-1.039-1.525-2.302-1.525-3.862 0-1.551.498-2.785 1.522-3.771 1.037-.999 2.29-1.484 3.831-1.484.873 0 1.634.137 2.26.408Zm17.962 5.825h-7.053V8.643c0-1.379.313-2.425.931-3.111.606-.672 1.45-.999 2.584-.999 1.127 0 1.973.34 2.587 1.04.632.722.952 1.797.952 3.196v2.123ZM59.259 0c-2.54 0-4.567.765-6.022 2.276-1.448 1.503-2.182 3.687-2.182 6.493v10.983h4.653V15.4h7.054v4.352h4.677V8.618c0-2.74-.73-4.882-2.172-6.37C63.82.756 61.8 0 59.258 0ZM79.5 14.876c-.428.257-1.131.393-2.034.393h-3.738v-3.064h3.365c2.843 0 2.843 1.068 2.843 1.47 0 .938-.328 1.135-.436 1.2ZM73.728 4.91h2.893c1.108 0 1.639.213 1.888.392.1.073.408.294.408 1.102 0 .427 0 1.317-2.32 1.317h-2.87v-2.81Zm8.497 4.67c.976-.839 1.47-2.06 1.47-3.63 0-1.354-.475-2.582-1.401-3.637C81.777 1.71 81.01 1.233 80.01.9c-.937-.313-2.052-.472-3.315-.472h-7.621v19.325h8.466c2.611 0 4.515-.646 5.663-1.926.97-1.098 1.462-2.385 1.462-3.824 0-1.318-.394-2.444-1.167-3.35a5.085 5.085 0 0 0-1.273-1.07Zm35.511 4.294c-1.025 1.074-2.248 1.596-3.743 1.596-1.495 0-2.719-.522-3.744-1.596-1.033-1.082-1.535-2.361-1.535-3.91s.502-2.828 1.535-3.91c1.025-1.074 2.25-1.597 3.744-1.597 1.494 0 2.717.523 3.743 1.597 1.033 1.082 1.536 2.361 1.536 3.91s-.503 2.828-1.536 3.91Zm-19.226 0c-1.024 1.074-2.25 1.596-3.743 1.596-1.494 0-2.72-.522-3.744-1.596-1.033-1.082-1.535-2.361-1.535-3.91s.502-2.828 1.535-3.91c1.026-1.074 2.25-1.597 3.744-1.597 1.493 0 2.718.523 3.743 1.597 1.033 1.082 1.536 2.361 1.536 3.91s-.503 2.828-1.536 3.91Zm22.596-11.023C119.19.959 116.798 0 113.993 0c-2.806 0-5.199.96-7.114 2.85-1.214 1.202-2.049 2.601-2.5 4.182-.449-1.58-1.284-2.98-2.5-4.181C99.967.959 97.573 0 94.768 0c-2.806 0-5.2.96-7.113 2.85-1.92 1.898-2.894 4.291-2.894 7.114 0 2.822.973 5.216 2.894 7.113 1.913 1.892 4.307 2.851 7.113 2.851 2.805 0 5.199-.96 7.113-2.85 1.215-1.202 2.05-2.601 2.5-4.182.45 1.58 1.285 2.98 2.5 4.181 1.914 1.892 4.307 2.851 7.113 2.851 2.805 0 5.198-.96 7.113-2.85 1.92-1.898 2.894-4.292 2.894-7.114s-.974-5.216-2.894-7.113Zm6.426 1.877c1.248 0 2.268-.96 2.268-2.364S128.78 0 127.532 0c-1.236 0-2.256.96-2.256 2.364s1.02 2.364 2.256 2.364Zm0-.444c-1.008 0-1.776-.78-1.776-1.92 0-1.128.768-1.932 1.776-1.932s1.788.804 1.788 1.932c0 1.14-.78 1.92-1.788 1.92Zm-.372-.732v-.84h.492l.42.84h.552l-.552-.996a.708.708 0 0 0 .444-.66c0-.576-.432-.78-.936-.78h-.912v2.436h.492Zm.312-1.224h-.312v-.804h.336c.36 0 .492.156.492.396 0 .264-.192.408-.516.408Z\" fill=\"#154734\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t1qc52\",\"data-framer-name\":\"Typology\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t3va58\",\"data-framer-name\":\"Typology\",fill:\"black\",intrinsicHeight:314,intrinsicWidth:863,svg:'<svg width=\"863\" height=\"314\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M.295 1.329c-.28.731-.379 5.344-.218 10.25L.368 20.5l20.75.27 20.75.271V144h24V21h42V0h-53.53C10.733 0 .71.247.294 1.329Zm454.045-.112c-.269.706-.373 33.008-.231 71.783l.259 70.5h23V.5L466.099.217c-8.458-.212-11.391.037-11.759 1Zm239.171 42.338c-2.122.778-5.351 2.338-7.176 3.466l-3.318 2.05-6.263-2.109c-17.886-6.026-36.303-1.946-47.748 10.578-4.995 5.464-7.446 10.842-8.726 19.14-1.211 7.847 2.974 19.622 8.961 25.214l2.563 2.395-4.246 2.693c-10.701 6.786-12.357 19.351-3.694 28.014l3.635 3.635-4.457 3.878c-6.103 5.309-8.501 11.017-7.991 19.023.868 13.636 11.802 21.659 33.444 24.543 14.489 1.93 32.239-.088 43.601-4.959 5.867-2.514 13.294-9.258 15.967-14.499 1.115-2.185 2.252-6.48 2.527-9.545 1.487-16.557-8.403-25.31-32.222-28.518-2.2-.296-9.85-1.012-17-1.591-19.828-1.605-23.485-3.191-21.901-9.5 1.235-4.923 4.343-5.905 14.211-4.49 25.456 3.649 46.699-9.208 49.711-30.086.807-5.598-1.615-16.08-4.691-20.294-2.073-2.84-2.078-2.939-.226-4.316 1.735-1.289 7.458-1.393 11.265-.204.949.296 1.945-1.569 3.246-6.073 1.033-3.575 1.879-6.816 1.881-7.203.007-1.206-7.263-2.789-12.496-2.721-2.75.036-6.736.701-8.857 1.479ZM258.868 45.54c-6.422 1.795-11.987 5.247-16.658 10.332l-3.332 3.628-.005-6.25-.005-6.25h-23.014l.257 68.75.257 68.75h23l.5-25.817.5-25.818 3 3.138c8.876 9.283 24.269 12.474 38.687 8.021 16.889-5.217 26.979-18.039 30.474-38.725 4.448-26.325-7.123-50.554-27.942-58.509-6.959-2.659-18.647-3.227-25.719-1.25Zm108 .274c-16.771 4.384-28.036 16.191-32.59 34.16-1.242 4.901-1.519 9.276-1.142 18 .609 14.08 3.011 21.654 9.613 30.321 8.948 11.748 20.746 17.135 37.619 17.179 15.611.041 25.889-3.733 35.009-12.853 18.459-18.459 18.459-56.783 0-75.242-11.666-11.667-30.731-16.212-48.509-11.565Zm170-.21c-8.402 2.249-13.599 5.13-20.083 11.133-15.23 14.101-19.409 42.219-9.493 63.879 3.27 7.142 12.157 16.365 18.996 19.714 14.617 7.157 32.635 7.355 47.178.519 6.211-2.92 15.382-11.553 18.611-17.52 4.641-8.574 6.218-15.757 6.218-28.329 0-17.325-3.372-26.897-13.047-37.041-11.304-11.85-31.243-16.942-48.38-12.355Zm-436 1.586c0 .654 8.343 22.518 18.54 48.586 13.094 33.474 18.344 48.032 17.874 49.56-.367 1.19-3.76 9.932-7.54 19.426-3.781 9.494-6.874 17.721-6.874 18.283 0 .65 4.04.918 11.126.738l11.127-.283 25.368-67c13.952-36.85 25.626-67.787 25.941-68.75.522-1.595-.394-1.75-10.317-1.75h-10.889l-8.728 23.931c-4.8 13.163-10.338 28.8-12.306 34.75-1.969 5.951-3.887 11.162-4.264 11.582-.376.42-1.497-1.83-2.49-5-.993-3.17-6.494-18.588-12.224-34.263-5.73-15.675-10.613-29.062-10.85-29.75-.598-1.735-23.494-1.793-23.494-.06Zm628-.599c0 .325 8.399 22.037 18.663 48.25 10.265 26.212 18.658 48.109 18.651 48.659-.008.55-3.214 9.132-7.126 19.07a8239.197 8239.197 0 0 0-7.757 19.75c-.581 1.513.488 1.68 10.719 1.68h11.364l25.302-66.869c13.917-36.778 25.558-67.844 25.869-69.035.559-2.136.413-2.162-10.266-1.881l-10.833.285-9.287 25.5c-5.108 14.025-10.735 29.887-12.506 35.25-1.77 5.363-3.501 9.75-3.847 9.75-.346 0-1.193-1.912-1.882-4.25-1.274-4.324-21.325-60.39-23.067-64.5-.911-2.148-1.477-2.25-12.476-2.25-6.336 0-11.521.266-11.521.591Zm-56.883 15.595c8.1 4.553 11.327 17.592 6.633 26.808-3.268 6.417-9.066 9.276-17.859 8.808-11.828-.629-17.303-6.611-17.225-18.819.057-8.989 3.647-15.193 10.335-17.86 4.66-1.858 13.881-1.317 18.116 1.063Zm-283.84.874c14.213 3.947 21.449 26.663 15.198 47.711-1.788 6.023-7.603 12.928-12.919 15.343-8.313 3.776-19.742 1.673-25.752-4.738-6.247-6.663-9.21-19.807-7.59-33.672 2.236-19.136 14.853-29.146 31.063-24.644Zm172.356 1.35c6.152 2.864 10.413 8.501 12.905 17.072 2.342 8.055 1.684 25.051-1.221 31.569-4.806 10.782-12.355 15.498-23.655 14.778-7.703-.49-12.303-3.179-16.715-9.77-4.236-6.328-5.356-11.119-5.389-23.059-.034-12.475 1.736-18.647 7.17-24.995 6.905-8.067 17.061-10.179 26.905-5.595Zm-285.701.556c5.03 2.566 10.568 9.117 12.5 14.788 3.964 11.633 2.81 26.833-2.736 36.065-10.104 16.817-33.051 15.57-42.186-2.291-2.879-5.631-3.009-6.433-2.991-18.457.015-10.566.349-13.291 2.088-17.082 2.568-5.599 7.593-10.721 12.871-13.118 5.556-2.524 15.411-2.479 20.454.095Zm564.568 52.895c-5.129 3.168-6.809 5.808-7.258 11.404-.344 4.284.008 5.871 1.939 8.735 4.544 6.743 12.52 8.68 20.612 5.008 7.844-3.56 10.396-14.684 4.956-21.6-4.193-5.33-14.453-7.128-20.249-3.547Zm-174 28.174c20.464 1.66 24.061 3.334 23.858 11.099-.223 8.508-8.239 12.904-24.867 13.638-13.138.58-21.079-1.206-25.639-5.766-2.394-2.394-2.852-3.675-2.852-7.979 0-5.47 1.895-10.254 4.75-11.994.962-.586 4-.838 6.75-.559 2.75.278 10.85.981 18 1.561ZM267.377 249.117c-.296.771-.419 15.348-.274 32.393l.265 30.99 5.25.302 5.25.303V288h8.818c4.855 0 11.048-.662 13.778-1.473 11.175-3.318 16.584-16.005 11.523-27.027-3.987-8.683-8.866-10.588-28.846-11.268-12.49-.425-15.323-.266-15.764.885Zm90.958.133c-4.601 12.224-22.467 62.276-22.467 62.942 0 .502 2.337.777 5.193.61l5.194-.302 2.519-7.778 2.519-7.779 12.422.279 12.422.278 2.616 7.5 2.615 7.5 5.25.302c4.007.231 5.25-.033 5.25-1.115 0-1.411-21.278-60.71-22.485-62.663-.923-1.493-10.475-1.298-11.048.226Zm65.533 31.157v32.698l5.25-.303 5.25-.302.279-13.25.279-13.25h9.745l7.461 13.25 7.461 13.25 6.137.298c3.376.163 6.138.088 6.138-.167 0-.256-3.466-6.43-7.702-13.719-7.092-12.205-7.556-13.34-5.866-14.333 3.768-2.214 7.682-5.9 8.97-8.448 5.303-10.486.682-22.495-9.994-25.971-2.149-.699-10.545-1.537-18.658-1.861l-14.75-.59v32.698Zm80.454-31.147c-.266.693-.364 15.205-.219 32.25l.265 30.99 5.25.302 5.25.303V248h-5.031c-3.124 0-5.215.478-5.515 1.26Zm58.065.338c-7.383 2.702-12.567 9.969-12.497 17.518.039 4.204 3.592 10.482 7.192 12.707 1.897 1.173 6.338 2.813 9.868 3.646 3.53.832 8.443 1.995 10.918 2.584 8.175 1.946 11.012 7.155 7.547 13.856-1.968 3.806-6.347 5.438-13.094 4.879-6.6-.548-10.491-3.086-12.084-7.882-.692-2.082-1.76-3.374-2.75-3.323-.891.046-3.194.159-5.119.25-3.047.145-3.5.499-3.5 2.733 0 8.764 12.113 17.434 24.356 17.434 16.216 0 27.004-10.092 24.636-23.044-1.546-8.457-7.416-12.59-21.914-15.432-9.651-1.892-12.723-3.459-14.153-7.22-1.222-3.216.288-8.331 2.95-9.994 5.701-3.56 15.647-2.195 19.075 2.619 1.127 1.584 2.05 3.598 2.05 4.475 0 1.896.718 1.948 6.557.477 5.031-1.267 5.494-2.645 2.524-7.515-2.31-3.789-7.366-7.683-11.98-9.228-4.651-1.557-15.748-1.309-20.582.46ZM299.874 260.56c2.67 2.672 3.604 8.553 1.981 12.471-1.884 4.55-5.555 5.969-15.437 5.969h-8.55v-21.187l9.974.343c8.46.292 10.287.657 12.032 2.404Zm155.471-.31c1.792 1.558 2.624 3.326 2.706 5.75.287 8.591-3.027 11-15.133 11h-8.05v-19h8.944c7.842 0 9.263.277 11.533 2.25Zm-87.019 14.25c2.04 6.05 3.933 11.563 4.208 12.25.379.945-1.716 1.25-8.583 1.25-4.996 0-9.083-.337-9.083-.749 0-2.414 8.358-25.28 8.988-24.589.419.461 2.431 5.788 4.47 11.838Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b4x6p4\",\"data-framer-name\":\"Guided Spain\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11hmssb\",\"data-framer-name\":\"guided_spain\",fill:\"black\",intrinsicHeight:350,intrinsicWidth:1100,svg:'<svg width=\"1100\" height=\"350\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.75 27.08c-.963.56-2.437 2.347-3.276 3.97-1.367 2.644-1.367 3.256 0 5.9.839 1.623 1.526 3.423 1.526 4 0 .664-3.7 1.05-10.05 1.05-6.974 0-10.936.459-12.948 1.499-4.311 2.229-8.179 7.884-8.725 12.757-.452 4.03-.314 4.305 2.743 5.452 3.134 1.176 3.202 1.329 2.546 5.697-.645 4.306-.543 4.556 2.517 6.138l3.19 1.649-.726 8.154c-1.196 13.444-1.174 14.079.481 14.41.841.168 3.96-1.51 6.931-3.725 7.053-5.262 8.456-5.192 10.052.507 2.151 7.683 8.074 10.609 12.692 6.271 2.322-2.181 2.356-2.183 7.387-.374l5.054 1.818 3.371-3.268c4.158-4.03 11.847-5.288 15.936-2.61 2.179 1.428 2.458 2.27 2.267 6.84l-.218 5.211 5.296 1.929c3.515 1.28 5.196 2.423 5 3.4-.163.809-3.74 3.557-7.949 6.108-14.158 8.579-14.845 9.875-11.251 21.25 2.281 7.223 2.431 8.605 1.4 12.906-.636 2.648-2.02 5.598-3.076 6.553-2.343 2.121-2.443 4.7-.308 7.959 1.158 1.767 1.419 3.518.926 6.215-1.083 5.924-3.057 8.254-6.996 8.254-5.938 0-8.542 1.541-8.542 5.056 0 2.697.529 3.313 4.026 4.687 3.53 1.386 4.168 2.142 5.171 6.127.7 2.777 2.626 6.152 4.949 8.673l3.804 4.127-4.915 5.1c-4.898 5.082-7.884 11.574-6.72 14.61.323.841 2.431 2.47 4.685 3.62 2.254 1.15 4.362 2.78 4.686 3.623.972 2.534-3.034 6.745-7.702 8.097-11.351 3.286-16.915 17.713-11.163 28.945 2.486 4.854 4.109 5.539 18.528 7.815 10.657 1.683 12.175 2.232 15.098 5.461 1.849 2.043 1.858 2.31.233 6.843-2.139 5.97-2.097 8.702.217 13.797 3.729 8.209 13.087 14.419 21.73 14.419 3.583 0 6.303-2.831 10.223-10.64 2.288-4.558 5.755-6.36 12.238-6.36 2.984 0 4.772-.85 8.404-3.993 2.538-2.196 5.377-4.394 6.311-4.884 4.348-2.282 25.774-3.517 38.186-2.201 9.064.961 9.729.896 14.871-1.458 6.393-2.927 7.088-2.975 10.955-.755 3.934 2.257 5.21 1.173 10.18-8.653 5.512-10.897 9.989-15.639 18.418-19.508 3.898-1.789 7.873-4.14 8.833-5.225.961-1.085 2.463-5.089 3.338-8.898.875-3.809 2.291-8.95 3.147-11.425 1.814-5.241 8.957-12.679 13.016-13.553 8.464-1.821 16.363-7.453 21.284-15.177l2.695-4.23.598 5.049c1.158 9.772 6.789 14.915 16.327 14.907 6.679-.005 10.932-2.734 12.325-7.907.909-3.374.808-4.318-.64-6.01-1.285-1.5-2.049-1.732-3.027-.92-.946.785-1.309.775-1.309-.037 0-1.425-3.258-1.464-4.667-.055-.757.757-1.243.611-1.669-.5-.404-1.054-.03-1.567 1.145-1.567 4.526 0 9.813-7.674 8.605-12.488-.915-3.644-3.232-4.561-7.67-3.035L317 195.764v-33.247c0-32.132-.07-33.336-2.075-35.885-2.329-2.961-2.798-2.605 6.879-5.221 4.392-1.188 7.121-2.617 9-4.712 7.379-8.229 6.872-7.918 10.133-6.231 3.82 1.975 10.005 1.961 12.846-.029 3.503-2.453 5.51-7.219 4.913-11.667-.471-3.516-.162-4.235 3.122-7.244l3.645-3.34-1.746-4.853c-1.224-3.404-1.555-6.24-1.109-9.494.562-4.101.381-4.776-1.561-5.816-2.996-1.603-9.513-.428-14.933 2.693-3.801 2.189-5.125 2.439-9.93 1.874-3.05-.36-7.08-1.6-8.956-2.76-3.146-1.944-3.82-2.01-8.702-.838-2.91.698-5.794.958-6.409.579-.614-.38-1.117-2.222-1.117-4.093 0-2.203-.765-4.115-2.169-5.423-3.179-2.962-9.923-5.244-14.41-4.878-3.82.313-3.921.42-3.921 4.133 0 2.688-.554 4.125-1.88 4.872-2.343 1.322-11.017.384-16.105-1.742-2.8-1.17-5.367-1.403-9.997-.907l-6.23.667-2.226-3.601c-1.224-1.981-2.976-3.66-3.894-3.731-.917-.071-4.593-.184-8.168-.25l-6.5-.12-1.894-4.188c-2.648-5.86-5.345-6.754-17.77-5.898-9.699.668-10.218.599-13.934-1.86-5.217-3.453-13.316-3.472-23.497-.054-8.159 2.739-15.908 3.153-27.905 1.49-5.447-.755-9.712-2.351-19.223-7.196-15.682-7.987-20.657-8.527-35.65-3.864-12.955 4.028-16.339 3.982-22.375-.307-2.613-1.857-6.192-4.107-7.952-5-3.562-1.806-11.85-2.116-14.55-.543Zm385.668 56.807-3.082 1.879 1.292 7.367c.72 4.103 1.31 15.299 1.332 25.267l.04 17.9-2.91-4.017c-4.401-6.076-10.638-8.709-21.59-9.117-10.366-.385-17.525 1.696-24.782 7.202-7.763 5.89-14.785 19.098-16.334 30.722-.557 4.176-.827 4.548-2.998 4.133-2.665-.509-2.957-1.252-1.186-3.023 1.671-1.671.682-1.507-4.617.764L357 164.929v-36.083l-2.923-2.923c-3.589-3.589-9.805-3.996-14.771-.968-3.031 1.848-3.137 2.117-2.082 5.246.711 2.107 1.323 19.143 1.694 47.137l.582 43.838 2.806 2.412c3.68 3.164 11.215 3.363 14.985.398 2.295-1.805 2.455-2.351 1.538-5.25-.563-1.78-1.264-10.594-1.559-19.588l-.535-16.352 4.115 2.723c2.473 1.637 4.909 2.516 6.106 2.203 1.652-.432 2.095.1 2.599 3.129 2.083 12.498 7.441 24.352 13.125 29.037 5.706 4.703 11.91 6.37 22.122 5.944 13.46-.562 22.174-5.523 29.296-16.678l2.775-4.346.628 3.846c1.099 6.743 3.554 12.215 6.648 14.818 3.788 3.187 6.633 3.899 13.096 3.278 4.162-.399 5.669-1.09 7.946-3.637 2.92-3.269 3.547-6.865 1.774-10.179-.976-1.824-1.178-1.84-3.541-.292-1.981 1.298-3.01 1.412-4.914.544-4.625-2.107-4.828-5.298-4.154-65.186.418-37.142.282-56.74-.412-59.248-1.772-6.404-10.864-8.928-17.526-4.865Zm186 0-3.082 1.879 1.292 7.367c.72 4.103 1.31 15.299 1.332 25.267l.04 17.9-2.91-4.017c-1.686-2.327-4.947-5.02-7.75-6.4-4.17-2.053-6.298-2.383-15.361-2.383-9.873 0-10.932.202-17.197 3.287-15.111 7.439-22.512 22.482-23.475 47.713-.581 15.244.878 23.904 5.845 34.678 5.81 12.605 14.169 17.3 29.65 16.654 13.46-.562 22.174-5.523 29.296-16.678l2.775-4.346.628 3.846c1.099 6.743 3.554 12.215 6.648 14.818 3.788 3.187 6.633 3.899 13.096 3.278 4.162-.399 5.669-1.09 7.946-3.637 2.92-3.269 3.547-6.865 1.774-10.179-.976-1.824-1.178-1.84-3.541-.292-1.981 1.298-3.01 1.412-4.914.544-4.625-2.107-4.828-5.298-4.154-65.186.418-37.142.282-56.74-.412-59.248-1.772-6.404-10.864-8.928-17.526-4.865ZM686.5 90.44c-12.135 3.445-18.74 7.935-23 15.636-2.744 4.96-3 6.234-2.995 14.923.004 8.342.328 10.114 2.657 14.534 2.755 5.228 9.834 12.74 15.872 16.843 1.921 1.306 9.504 5.815 16.851 10.02 26.961 15.432 32.148 20.914 32.093 33.918-.058 13.723-9.972 21.685-27.001 21.685-12.361 0-21.899-4.598-26.765-12.901-2.167-3.697-2.666-5.81-2.687-11.359-.023-6.229-.219-6.866-2.282-7.388-1.241-.315-3.756-.291-5.59.053-10.24 1.921-11.619 16.671-2.525 27.003 7.736 8.789 19.112 12.562 37.872 12.562 22.323 0 36.41-6.12 43.323-18.822 5.385-9.895 5.564-21.475.495-32.083-3.513-7.353-12.978-15.769-25.858-22.993-35.025-19.644-39.16-23.577-39.16-37.249 0-11.13 6.787-16.786 21.129-17.61 16.501-.945 26.168 5.687 27.673 18.988l.682 6.023 5.524-.458c7.07-.586 9.192-2.893 9.192-9.991 0-9.259-6.134-16.003-18.5-20.34-6.805-2.386-29.91-3.007-37-.994Zm268.381.062c-1.44.783-3.394 3.058-4.343 5.057-3.77 7.946 1.575 16.44 10.345 16.44 5.291 0 8.434-1.778 10.623-6.011 2.745-5.309 1.122-12.035-3.723-15.428-2.755-1.93-9.402-1.96-12.902-.058ZM503.5 123.68c-11.139 2.496-21.193 9.049-26.45 17.242-5.893 9.184-8.22 17.166-8.798 30.188-1.287 28.994 9.448 46.805 32.195 53.418 9.231 2.683 26.106 1.747 34.053-1.89 6.821-3.122 11.864-7.534 14.446-12.638 2.755-5.446 3.189-8.446 1.533-10.588-1.428-1.847-1.556-1.809-3.725 1.088-5.594 7.472-11.609 10.944-21.807 12.586-19.691 3.171-33.729-7.887-36.497-28.749l-.655-4.941 16.352.047c17.937.052 23.798-.927 32.853-5.49 10.51-5.297 15-12.317 15-23.453 0-3.665-.685-8.206-1.551-10.282-3.094-7.419-10.586-13.091-20.949-15.859-4.666-1.246-21.505-1.686-26-.679Zm249 .265c-4.876 1.996-7.217 7.351-5.495 12.571 1.283 3.886 1.66 4.052 4.436 1.952 2.536-1.918 3.17-1.857 5.559.532 1.955 1.955 2 3.333 2 61.05 0 66.346-.26 63.893 7.006 66.07 3.047.913 4.883.923 7.744.042 6.56-2.021 6.643-2.165 5.35-9.299-.634-3.5-1.407-14.913-1.718-25.363l-.565-19 2.055 3.215c4.589 7.178 14.379 10.786 27.4 10.1 14.591-.77 25.209-7.85 31.676-21.12 4.92-10.098 6.405-17.587 6.483-32.695.082-15.949-1.305-23.244-6.326-33.288-5.621-11.245-13.503-15.695-27.817-15.706-13.363-.011-23.41 5.965-30.654 18.231l-3.388 5.738-.439-5.292c-.569-6.859-4.233-14.362-8.194-16.777-3.263-1.99-11.344-2.503-15.113-.961Zm125-.338c-17.303 4.203-24.518 11.011-24.484 23.103.031 10.747 6.449 17.74 16.148 17.594 2.768-.042 5.952-.805 7.45-1.787l2.616-1.714-2.977-2.719c-5.424-4.954-6.721-14.668-2.765-20.706 3.559-5.432 16.071-8.097 24.613-5.242 3.911 1.307 8.503 5.238 10.354 8.864 1.909 3.739 3.415 11.572 3.865 20.107l.401 7.607-10.111.614c-24.976 1.516-45.874 11.172-51.966 24.009-5.874 12.38-1.479 26.102 10.052 31.381 4.716 2.16 6.525 2.432 14.107 2.125 7.237-.294 9.818-.883 15.377-3.512 7.644-3.616 14.614-9.632 19.42-16.761 3.63-5.385 3.911-5.195 4.776 3.244 1.146 11.177 7.338 17.186 17.711 17.186 9.94 0 16.307-6.403 14.006-14.084l-1.144-3.818-3.347 1.974c-3.778 2.23-7.698 1.482-9.152-1.745-.453-1.005-1.12-14.877-1.483-30.827-.363-15.95-1.119-30.363-1.68-32.028-3.358-9.968-10.593-17.938-19.092-21.029-4.617-1.679-27.948-2.989-32.695-1.836Zm75.806 1.348c-3.031 1.848-3.137 2.117-2.082 5.246.711 2.107 1.323 19.143 1.694 47.137l.582 43.838 2.806 2.412c3.68 3.164 11.215 3.363 14.985.398 2.322-1.827 2.459-2.317 1.467-5.25-.688-2.033-1.311-19.528-1.676-47.074l-.582-43.838-2.806-2.412c-3.529-3.034-9.833-3.234-14.388-.457Zm30.694-.682c-1.375.683-3.346 2.971-4.379 5.083-1.61 3.289-1.712 4.399-.71 7.742.643 2.146 1.376 3.902 1.629 3.902.253 0 1.36-.9 2.46-2 1.1-1.1 2.45-2 3-2 .55 0 1.9.9 3 2 1.931 1.931 2 3.336 2.004 40.75.003 36.758.105 38.916 1.969 41.973 2.259 3.705 5.262 4.736 11.687 4.012 6.78-.764 7.74-2.19 6.34-9.348-1.81-9.178-.85-54.424 1.28-60.887 4.55-13.765 12.93-21.731 22.96-21.826 8.75-.083 13.83 3.916 16.93 13.326.73 2.217 1.37 16.458 1.74 38.838l.59 35.339 2.81 2.411c3.33 2.866 10.12 3.274 14.74.886 3.25-1.679 3.36-2.152 1.9-7.974-.55-2.2-1.23-17.675-1.5-34.39-.28-16.714-.95-32.369-1.49-34.788-2.24-10.004-7.62-17.545-15.41-21.587-6.16-3.203-20.2-3.62-27.63-.822-7.02 2.646-13.19 7.884-16.86 14.309l-2.85 4.985-.7-4.353c-1.14-6.987-4.05-12.601-7.692-14.824-3.817-2.327-11.885-2.713-15.818-.757Zm-477.54 7.741c-10.18 3.13-18.46 18.364-18.46 33.963v4.879l5.571.696c8.402 1.05 21.909-1.002 28.427-4.317 7.612-3.873 10.437-8.998 10.442-18.949.005-7.787-1.29-10.592-6.784-14.693-3.081-2.3-13.944-3.194-19.196-1.579Zm-211.096 3.25c-1.153 1.467-2.402 4.571-2.774 6.9-.9 5.627-5.498 15.059-10.645 21.836-5.217 6.868-8.425 13.911-11.398 25.023l-2.317 8.658 3.274 1.184c2.611.944 4.035 2.648 7.031 8.41 2.066 3.974 3.923 7.419 4.126 7.657.843.985 7.705-6.798 10.079-11.432 4.865-9.498 5.483-13.51 5.931-38.5.232-12.925.055-25.503-.394-27.951l-.816-4.451-2.097 2.666Zm115.136-1.609-4.232.898c-3.483.743-9.155 6.29-11.832 11.574-3.123 6.161-3.067 6.873.541 6.873 3.333 0 5.6 2.634 6.609 7.68 1.293 6.464-3.162 9.142-9.636 5.794l-2.95-1.525.015 13.275c.029 26.514 5.07 36.099 18.985 36.099 6.633 0 10.389-1.797 15.44-7.388 8.32-9.209 11.992-21.865 12.022-41.435.019-12.509-.223-14.533-2.274-19-3.156-6.874-6.724-10.285-12.579-12.024-4.999-1.484-6.425-1.6-10.109-.821Zm186 0-4.232.898c-3.518.75-9.165 6.31-11.909 11.726-3.791 7.48-5.324 16.611-5.327 31.721-.005 26.734 5.003 36.323 18.968 36.323 6.633 0 10.389-1.797 15.44-7.388 8.32-9.209 11.992-21.865 12.022-41.435.019-12.509-.223-14.533-2.274-19-3.156-6.874-6.724-10.285-12.579-12.024-4.999-1.484-6.425-1.6-10.109-.821Zm204.858.277c-8.636 2.12-15.681 10.405-20.115 23.656-2.426 7.248-2.652 9.297-2.695 24.412-.045 15.298.126 16.884 2.335 21.773 2.998 6.633 6.673 9.752 13.122 11.135 14.11 3.026 24.663-5.279 29.108-22.908 2.178-8.637 1.892-36.864-.451-44.455-2.11-6.84-7.936-13.536-11.794-13.559-1.303-.007-3.268-.196-4.368-.419-1.1-.223-3.414-.059-5.142.365ZM905.5 176.677c-15.151 1.291-26.819 5.489-32.144 11.564-8.081 9.22-6.533 22.293 3.018 25.492 11.877 3.979 29.365-9.583 34.776-26.968 2.384-7.659 2.414-10.819.1-10.597-.962.093-3.55.322-5.75.509Z\" fill=\"#FEC200\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M437.136 84c-3.006 1.885-3.294 2.45-2.705 5.305 1.279 6.205 2.502 23.345 2.535 35.536l.034 12.341-5.25-5.503c-5.877-6.16-12.036-8.679-21.221-8.679-19.828 0-33.793 12.343-39.149 34.6-2.344 9.744-2.378 31.708-.061 40.4 5.106 19.16 15.109 28 31.681 28 13.746 0 26.423-7.432 31.757-18.616.887-1.861 1.917-3.384 2.288-3.384.371 0 .933 2.496 1.248 5.547 1.429 13.852 12.6 21.251 23.706 15.701 4.755-2.376 6.505-6.192 4.97-10.842-1.079-3.271-1.297-3.419-2.897-1.971-1.833 1.659-4.845 2.02-6.672.8-3.248-2.169-3.4-5.084-3.4-65.113v-60.01l-2.283-2.655c-3.187-3.705-9.922-4.378-14.581-1.457Zm186 0c-3.006 1.885-3.294 2.45-2.705 5.305 1.279 6.205 2.502 23.345 2.535 35.536l.034 12.341-5.25-5.503c-5.877-6.16-12.036-8.679-21.221-8.679-19.822 0-33.738 12.293-39.168 34.6-2.354 9.671-2.375 31.624-.04 40.4 5.098 19.154 15.106 28 31.679 28 13.746 0 26.423-7.432 31.757-18.616.887-1.861 1.917-3.384 2.288-3.384.371 0 .933 2.496 1.248 5.547 1.429 13.852 12.6 21.251 23.706 15.701 4.755-2.376 6.505-6.192 4.97-10.842-1.079-3.271-1.297-3.419-2.897-1.971-1.833 1.659-4.845 2.02-6.672.8-3.248-2.169-3.4-5.084-3.4-65.113v-60.01l-2.283-2.655c-3.187-3.705-9.922-4.378-14.581-1.457ZM166 90.497c-14.86 3.377-27.041 12.972-33.67 26.523-11.202 22.896-10.734 61.221 1.018 83.44 10.368 19.605 33.549 29.235 57.932 24.069 21.067-4.464 34.027-21.984 34.052-46.029.005-4.95-.517-10.845-1.159-13.099-3.216-11.279-12.582-17.677-22.579-15.422-4.458 1.005-9.005 4.919-6.702 5.769 3.445 1.271 9.057 7.653 10.529 11.976 2.012 5.904 2.073 21.832.111 29.204-3.564 13.389-9.355 19.356-20.598 21.219-7.791 1.291-16.497-.506-22.862-4.718-8.615-5.701-14.893-19.207-17.108-36.808-1.588-12.614-.791-37.58 1.52-47.621 3.306-14.361 10.388-25.339 18.978-29.415 9.644-4.576 21.904-4 29.33 1.379 4.165 3.017 9.208 11.658 9.208 15.778 0 2.161.3 2.298 3.75 1.712 7.724-1.312 12.238-6.932 10.295-12.817-1.952-5.915-8.709-10.659-20.045-14.073-7.83-2.358-23.951-2.896-32-1.067Zm175.314.397c-4.039 2.534-5.314 4.94-5.314 10.024 0 5.837 4.007 10.103 10.139 10.794 4.012.452 4.964.163 7.737-2.348 3.695-3.347 5.125-7.628 3.982-11.919-1.876-7.042-10.389-10.413-16.544-6.55Zm347.28-.32c-18.972 4.26-27.857 13.981-27.857 30.476 0 16.691 7.922 25.747 36.263 41.455 18.354 10.173 25.497 15.754 29.103 22.742 4.01 7.767 3.316 17.811-1.687 24.425-5.198 6.873-18.427 10.502-30.379 8.335-14.914-2.705-23.177-11.65-23.305-25.231l-.055-5.776h-4.702c-3.79 0-5.233.531-7.436 2.734-2.555 2.555-2.71 3.199-2.374 9.853.429 8.503 3.388 13.604 10.702 18.448 8.091 5.36 16.773 7.359 32.133 7.402 18.432.051 28.17-2.944 37.486-11.531 6.495-5.987 8.98-12.449 8.999-23.406.018-10.851-1.953-15.651-9.995-24.337-5.133-5.545-12.721-10.495-34.872-22.749-11.173-6.181-21.024-15.326-22.529-20.914-4.005-14.865 3.183-24.409 19.682-26.134 7.213-.754 17.268 1.664 22.031 5.297 4.194 3.199 7.147 9.419 7.176 15.118.025 4.925 1.218 5.78 6.641 4.763 5.146-.966 8.386-4.551 8.359-9.249-.054-9.337-6.805-16.617-18.865-20.342-8.992-2.777-25.38-3.432-34.519-1.38Zm266.631.374c-7.795 4.887-6.796 16.502 1.724 20.031 10.76 4.457 20.126-9.268 12.301-18.025-3.658-4.094-9.387-4.913-14.025-2.006Zm-716.557 34.108c-2.847 1.542-3.661 2.508-3.17 3.76 1.837 4.678 2.493 15.159 2.514 40.184.024 29.107.876 36.94 4.87 44.768 2.329 4.566 7.052 8.866 12.118 11.032 4.498 1.923 19.011 2.133 25.099.362 6.353-1.848 13.816-7.755 17.448-13.812l3.046-5.081 1.152 6.057c1.993 10.488 7.466 15.102 17.07 14.392 6.734-.498 10.585-3.842 10.585-9.191 0-4.22-1.776-6.551-3.6-4.727-.66.66-2.18 1.2-3.378 1.2-4.814 0-4.889-.615-5.422-44.235l-.5-40.932-3.266-2.916c-3.914-3.496-8.267-3.804-12.997-.92-3.116 1.9-3.228 2.181-2.5 6.246.42 2.341.763 16.407.763 31.257 0 22.688-.274 27.878-1.713 32.5-2.499 8.02-7.667 15.987-12.623 19.461-3.724 2.61-5.232 3.039-10.677 3.039-7.677 0-10.915-1.968-14.286-8.684-3.268-6.509-4.163-17.502-4.183-51.392L255 128.349l-2.402-2.257c-3.393-3.187-9.165-3.617-13.93-1.036Zm101.493-.365c-3.022 1.489-3.272 1.937-2.63 4.727.389 1.695.996 22.657 1.349 46.582.352 23.925 1.028 44.304 1.502 45.287 1.103 2.291 5.78 4.713 9.1 4.713 1.42 0 4.195-.674 6.167-1.498 3.24-1.354 3.513-1.763 2.833-4.25-.413-1.514-1.028-22.552-1.367-46.752-.468-33.524-.927-44.547-1.926-46.298-2.435-4.268-9.176-5.395-15.028-2.511Zm160.839.062c-15.568 4.217-25.39 14.415-30.615 31.79-2.499 8.308-2.499 28.606 0 36.914 5.318 17.685 16.315 28.054 33.55 31.634 6.957 1.446 20.911.649 27.565-1.573 11.196-3.739 18.826-11.904 18.937-20.264.076-5.753-1.369-6.143-4.645-1.254-5.458 8.145-17.244 12.753-29.905 11.693-16.51-1.382-26.061-12.234-28.103-31.929l-.284-2.737 19-.348c21.258-.391 27.593-1.822 35.826-8.093 6.706-5.108 9.174-10.533 9.174-20.164 0-7.25-.311-8.584-3.036-13-3.165-5.132-10.545-10.429-17.45-12.525-6.579-1.998-22.882-2.076-30.014-.144Zm253.284-1.052c-1.219.236-3.403 1.84-4.855 3.565-2.165 2.573-2.545 3.833-2.118 7.018.616 4.587 1.3 5.505 2.906 3.899 1.721-1.721 6.318-1.448 7.911.47 1.117 1.346 1.465 12.965 1.872 62.589l.5 60.936 2.361 1.911c2.879 2.331 10 2.552 14.089.437 2.695-1.394 2.797-1.681 1.864-5.25-.543-2.077-1.204-13.676-1.47-25.776l-.482-22 1.926 3c4.905 7.642 12.413 10.954 24.712 10.903 11.886-.05 18.939-2.712 26.062-9.834 9.727-9.727 14.452-24.399 14.421-44.777-.037-23.987-6.579-39.256-19.226-44.876-7.287-3.238-21.079-3.349-27.933-.225-6.394 2.914-13.231 9.463-17.162 16.438l-3.28 5.821-1.245-7.407c-2.301-13.694-9.031-19.13-20.853-16.842Zm123.759.369c-6.39 1.139-15.528 5.118-18.922 8.238-6.018 5.532-7.667 15.209-3.871 22.722 3.26 6.453 7.897 9.257 14.439 8.732 2.855-.229 5.91-1.014 6.789-1.744 1.446-1.2 1.368-1.577-.817-3.923-3.682-3.954-4.661-6.491-4.661-12.079 0-6.523 1.822-9.993 6.652-12.67 5.248-2.909 11.224-3.721 17.613-2.395 11.32 2.35 16.478 10.65 17.464 28.101l.54 9.551-11.46 1.195c-34.719 3.619-52.769 15.581-52.799 34.992-.02 12.415 7.271 20.285 20.198 21.805 15.043 1.768 31.043-6.773 40.811-21.784l3.701-5.688.564 6.729c1.075 12.824 5.63 19.413 14.32 20.716 6.115.917 11.61-.846 14.927-4.787 2.205-2.621 2.586-3.869 2.158-7.065-.657-4.895-1.227-5.444-3.512-3.377-2.52 2.282-6.485 2.082-8.772-.441-1.748-1.929-1.954-4.464-2.503-30.75-.649-31.1-1.234-34.875-6.661-42.955-5.977-8.899-15.452-13.13-30.712-13.713-5.516-.211-12.485.055-15.486.59Zm77.003.507c-1.9.824-3.619 1.663-3.82 1.863-.201.201.102 2.997.673 6.213.571 3.216 1.239 24.227 1.484 46.692.443 40.469.467 40.867 2.658 43.198 3.68 3.917 10.774 4.375 15.296.986 1.627-1.219 1.719-1.985.812-6.703-.564-2.929-1.29-23.883-1.614-46.565-.324-22.681-.857-41.935-1.183-42.787-.763-1.986-5.582-4.485-8.552-4.435-1.265.022-3.854.714-5.754 1.538Zm30.332-.195c-1.717.778-3.854 2.46-4.75 3.738-1.758 2.511-2.15 8.508-.703 10.792.753 1.19 1.164 1.142 2.61-.304.979-.979 2.844-1.586 4.341-1.412 4.645.538 5.006 3.735 5.068 44.919.054 36.322.126 37.705 2.099 40.213 2.79 3.547 7.847 4.367 13.537 2.195 3.54-1.353 4.37-2.099 3.92-3.523-2.95-9.293-3.53-47.085-.92-59.726 3.63-17.559 13.26-28.274 25.43-28.274 6.73 0 11.77 3.27 14.61 9.477 3.47 7.587 4.36 17.803 4.37 50.099l.01 28.075 2.58 2.425c3.19 2.999 10.59 3.35 14.65.693 2.42-1.583 2.55-2.009 1.58-5-.6-1.823-1.39-17.863-1.8-36.269-.81-36.302-1.24-39.144-7.27-48.128-2.37-3.527-4.84-5.641-9.17-7.85-5.35-2.727-6.82-3.016-15-2.958-7.67.053-9.92.471-14.58 2.706-6.6 3.173-11.88 8.358-15.8 15.546l-2.91 5.316-.52-6.52c-.84-10.533-5.63-16.47-13.896-17.237-2.494-.232-5.702.2-7.486 1.007ZM510 130.952c-13.085 2.582-21.475 15.608-22.253 34.548l-.247 6 12-.03c14.984-.037 22.23-1.964 27.609-7.344 4.48-4.48 6.308-10.462 5.601-18.333-.596-6.639-3.162-10.855-7.94-13.046-4.204-1.927-10.329-2.672-14.77-1.795Zm-103.5 3.321c-10.644 4.354-15.658 13.703-17.729 33.055-1.889 17.655 1.003 36.537 6.513 42.522 6.845 7.436 19.153 6.766 27.41-1.492C431.287 199.765 436 184.48 436 165.201c0-21.58-6.266-31.087-21-31.865-3.025-.16-6.85.262-8.5.937Zm185.95 0c-12.513 5.034-17.807 18.008-17.844 43.727-.036 25.09 4.594 35.366 16.54 36.713C609.375 216.768 622 196.507 622 165.201c0-21.58-6.266-31.087-21-31.865-3.025-.16-6.873.262-8.55.937Zm205.05.537c-4.611 2.164-10.516 8.341-13.425 14.043-5.597 10.97-8.45 32.116-6.159 45.647 2.451 14.477 9.255 21.5 20.828 21.5 17.626 0 26.445-14.886 26.66-45 .139-19.605-2.762-30.24-9.641-35.341-3.896-2.889-13.012-3.313-18.263-.849Zm99.451 42.251c-12.153 1.789-23.414 7.991-27.099 14.923-2.276 4.282-2.447 12.966-.335 17.049.834 1.613 2.837 3.616 4.45 4.45 14.082 7.282 36.327-11.771 39.385-33.733l.522-3.75-5.687.122c-3.128.067-8.184.49-11.236.939Z\" fill=\"#000\" fill-opacity=\".969\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M436.914 83.82c-3.006 1.885-3.294 2.45-2.705 5.305 1.279 6.205 2.502 23.345 2.535 35.536l.034 12.341-5.25-5.503c-5.877-6.16-12.036-8.679-21.221-8.679-19.828 0-33.793 12.343-39.149 34.6-2.344 9.744-2.378 31.708-.061 40.4 5.106 19.16 15.109 28 31.681 28 13.746 0 26.423-7.432 31.757-18.616.887-1.861 1.917-3.384 2.288-3.384.371 0 .933 2.496 1.248 5.547 1.429 13.852 12.6 21.251 23.706 15.701 4.755-2.376 6.505-6.192 4.97-10.842-1.079-3.271-1.297-3.419-2.897-1.971-1.833 1.659-4.845 2.02-6.672.8-3.248-2.169-3.4-5.084-3.4-65.113v-60.01l-2.283-2.655c-3.187-3.705-9.922-4.378-14.581-1.457Zm186 0c-3.006 1.885-3.294 2.45-2.705 5.305 1.279 6.205 2.502 23.345 2.535 35.536l.034 12.341-5.25-5.503c-5.877-6.16-12.036-8.679-21.221-8.679-19.822 0-33.738 12.293-39.168 34.6-2.354 9.671-2.375 31.624-.04 40.4 5.098 19.154 15.106 28 31.679 28 13.746 0 26.423-7.432 31.757-18.616.887-1.861 1.917-3.384 2.288-3.384.371 0 .933 2.496 1.248 5.547 1.429 13.852 12.6 21.251 23.706 15.701 4.755-2.376 6.505-6.192 4.97-10.842-1.079-3.271-1.297-3.419-2.897-1.971-1.833 1.659-4.845 2.02-6.672.8-3.248-2.169-3.4-5.084-3.4-65.113v-60.01l-2.283-2.655c-3.187-3.705-9.922-4.378-14.581-1.457Zm-457.136 6.497c-14.86 3.377-27.041 12.972-33.67 26.523-11.202 22.896-10.734 61.221 1.018 83.44 10.368 19.605 33.549 29.235 57.932 24.069 21.067-4.464 34.027-21.984 34.052-46.029.005-4.95-.517-10.845-1.159-13.099-3.216-11.279-12.582-17.677-22.579-15.422-4.458 1.005-9.005 4.919-6.702 5.769 3.445 1.271 9.057 7.653 10.529 11.976 2.012 5.904 2.073 21.832.111 29.204-3.564 13.389-9.355 19.356-20.598 21.219-7.791 1.291-16.497-.506-22.862-4.718-8.615-5.701-14.893-19.207-17.108-36.808-1.588-12.614-.791-37.58 1.52-47.621 3.306-14.361 10.388-25.339 18.978-29.415 9.644-4.576 21.904-4 29.33 1.379 4.165 3.017 9.208 11.658 9.208 15.778 0 2.161.3 2.298 3.75 1.712 7.724-1.312 12.238-6.932 10.295-12.817-1.952-5.915-8.709-10.659-20.045-14.073-7.83-2.358-23.951-2.896-32-1.067Zm175.314.397c-4.039 2.534-5.314 4.94-5.314 10.024 0 5.837 4.007 10.103 10.139 10.794 4.012.452 4.964.163 7.737-2.348 3.695-3.347 5.125-7.628 3.982-11.919-1.876-7.042-10.389-10.413-16.544-6.55Zm-102.646 34.162c-2.847 1.542-3.661 2.508-3.17 3.76 1.837 4.678 2.493 15.159 2.514 40.184.024 29.107.876 36.94 4.87 44.768 2.329 4.566 7.052 8.866 12.118 11.032 4.498 1.923 19.011 2.133 25.099.362 6.353-1.848 13.816-7.755 17.448-13.812l3.046-5.081 1.152 6.057c1.993 10.488 7.466 15.102 17.07 14.392 6.734-.498 10.585-3.842 10.585-9.191 0-4.22-1.776-6.551-3.6-4.727-.66.66-2.18 1.2-3.378 1.2-4.814 0-4.889-.615-5.422-44.235l-.5-40.932-3.266-2.916c-3.914-3.496-8.267-3.804-12.997-.92-3.116 1.9-3.228 2.181-2.5 6.246.42 2.341.763 16.407.763 31.257 0 22.688-.274 27.878-1.713 32.5-2.499 8.02-7.667 15.987-12.623 19.461-3.724 2.61-5.232 3.039-10.677 3.039-7.677 0-10.915-1.968-14.286-8.684-3.268-6.509-4.163-17.502-4.183-51.392l-.018-29.075-2.402-2.257c-3.393-3.187-9.165-3.617-13.93-1.036Zm101.493-.365c-3.022 1.489-3.272 1.937-2.63 4.727.389 1.695.996 22.657 1.349 46.582.352 23.925 1.028 44.304 1.502 45.287 1.103 2.291 5.78 4.713 9.1 4.713 1.42 0 4.195-.674 6.167-1.498 3.24-1.354 3.513-1.763 2.833-4.25-.413-1.514-1.028-22.552-1.367-46.752-.468-33.524-.927-44.547-1.926-46.298-2.435-4.268-9.176-5.395-15.028-2.511Zm160.839.062c-15.568 4.217-25.39 14.415-30.615 31.79-2.499 8.308-2.499 28.606 0 36.914 5.318 17.685 16.315 28.054 33.55 31.634 6.957 1.446 20.911.649 27.565-1.573 11.196-3.739 18.826-11.904 18.937-20.264.076-5.753-1.369-6.143-4.645-1.254-5.458 8.145-17.244 12.753-29.905 11.693-16.51-1.382-26.061-12.234-28.103-31.929l-.284-2.737 19-.348c21.258-.391 27.593-1.822 35.826-8.093 6.706-5.108 9.174-10.533 9.174-20.164 0-7.25-.311-8.584-3.036-13-3.165-5.132-10.545-10.429-17.45-12.525-6.579-1.998-22.882-2.076-30.014-.144Zm9 6.199c-13.085 2.582-21.475 15.608-22.253 34.548l-.247 6 12-.03c14.984-.037 22.23-1.964 27.609-7.344 4.48-4.48 6.308-10.462 5.601-18.333-.596-6.639-3.162-10.855-7.94-13.046-4.204-1.927-10.329-2.672-14.77-1.795Zm-103.5 3.321c-10.644 4.354-15.658 13.703-17.729 33.055-1.889 17.655 1.003 36.537 6.513 42.522 6.845 7.436 19.153 6.766 27.41-1.492 8.593-8.593 13.306-23.878 13.306-43.157 0-21.58-6.266-31.087-21-31.865-3.025-.16-6.85.262-8.5.937Zm185.95 0c-12.513 5.034-17.807 18.008-17.844 43.727-.036 25.09 4.594 35.366 16.54 36.713 18.229 2.055 30.854-18.206 30.854-49.512 0-21.58-6.266-31.087-21-31.865-3.025-.16-6.873.262-8.55.937Z\" fill=\"#00023D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M685.6 91.05c-8.828 2.313-14.66 5.549-19.088 10.592-5.075 5.78-6.403 9.793-6.407 19.361-.003 6.929.441 9.424 2.402 13.5 3.784 7.867 11.993 15.274 25.993 23.453a6186.099 6186.099 0 0 1 19.217 11.27c14.649 8.651 20.199 16.208 20.094 27.363-.13 13.85-9.934 21.748-26.886 21.663-10.9-.055-17.697-2.425-23.448-8.177-5.292-5.292-6.963-9.537-6.971-17.714-.005-4.536-.278-5.21-2.317-5.721-3.659-.919-9.526 1.185-11.436 4.1-2.741 4.183-2.2 12.971 1.15 18.688 5.881 10.035 17.629 15.334 36.097 16.28 24.168 1.239 40.765-5.71 48.257-20.205 3.734-7.224 4.27-18.79 1.243-26.817-4.261-11.299-12.903-18.473-41.892-34.776-6.265-3.524-13.417-8.19-15.894-10.369-5.079-4.469-9.192-12.311-9.199-17.538-.015-12.542 8.422-19.295 24.018-19.224 16.331.075 24.523 6.238 25.711 19.343l.554 6.107 5.042-.485c3.942-.378 5.57-1.097 7.46-3.295 3.459-4.021 2.785-11.909-1.471-17.206-8.464-10.533-32.795-15.281-52.229-10.192Zm270.288-1.067c-6.62 2.675-8.583 12.531-3.606 18.103 2.116 2.367 3.875 3.237 7.338 3.627 4.041.456 4.955.163 8.091-2.591 4.168-3.659 5.322-7.908 3.398-12.513-2.64-6.317-9.064-9.114-15.221-6.626Zm-204.059 34.478c-3.768 1.639-5.335 4.211-5.314 8.726.023 4.866 1.2 6.306 3.951 4.834 2.991-1.6 6.721-.518 7.7 2.234.44 1.237.808 28.896.817 61.467.017 58.805.032 59.233 2.116 61.321 2.972 2.977 8.324 3.973 12.897 2.4 5.174-1.778 5.55-2.374 4.39-6.941-.559-2.199-1.274-13.399-1.588-24.888l-.572-20.888 4.887 5.049c6.323 6.532 13.123 8.737 24.533 7.955 24.337-1.668 37.849-20.913 38.072-54.227.164-24.42-6.806-40.447-20.145-46.324-2.397-1.056-6.7-1.59-13.073-1.621-7.84-.039-10.39.355-14.592 2.254-6.177 2.792-13.307 9.831-17.219 17l-2.897 5.309-.583-5.648c-1.552-15.041-11.895-23.008-23.38-18.012Zm125.075-.371c-10.476 1.752-20.274 7.965-23.053 14.615-1.741 4.166-1.728 11.48.026 15.58 3.551 8.301 13.75 12.259 21.22 8.236l3.281-1.767-3.354-3.163c-5.669-5.347-6.142-16.246-.939-21.676 3.561-3.718 8.323-5.226 16.083-5.093 14.433.246 20.676 8.376 22.008 28.662l.605 9.2-9.125.647c-37.426 2.657-59.569 18.915-55.097 40.455 2.958 14.252 18.387 20.72 36.258 15.201 10.492-3.241 21.256-12.597 27.016-23.484l1.587-3 .04 5.568c.13 18.043 11.593 27.404 25.709 20.995 4.743-2.153 6.338-4.488 6.316-9.247-.024-5.112-1.25-6.444-4.099-4.449-3.168 2.219-6.197 2.052-8.481-.47-1.752-1.933-1.95-4.439-2.463-31.25-.518-27.024-.721-29.558-2.783-34.792-4.677-11.869-11.031-17.435-23.173-20.297-6.965-1.641-19.327-1.853-27.582-.471Zm76.757.604c-3.022 1.489-3.272 1.937-2.63 4.727.389 1.695.996 22.657 1.349 46.582.352 23.925 1.028 44.304 1.502 45.287 1.103 2.291 5.78 4.713 9.1 4.713 1.42 0 4.194-.673 6.164-1.497 3.353-1.401 3.535-1.704 2.848-4.75-.403-1.789-1.017-22.828-1.364-46.753-.479-33.087-.944-44.05-1.941-45.798-2.435-4.268-9.176-5.395-15.028-2.511Zm30.434-.164c-1.598.834-3.496 2.293-4.219 3.244-1.515 1.996-1.781 9.041-.422 11.189.792 1.252 1.212 1.2 2.945-.368 2.377-2.152 6.434-1.547 7.717 1.149.461.968.988 19.63 1.173 41.472l.335 39.714 3.015 2.536c3.497 2.943 8.101 3.298 13.511 1.039 3.03-1.267 3.48-1.845 2.9-3.75-2.48-8.157-3.37-41.699-1.47-55.346 1.95-14.028 7-23.784 15.09-29.137 5.46-3.611 15.09-3.961 19.44-.707 8.46 6.316 9.35 11.091 9.37 50.287.02 26.205.27 31.884 1.57 34.611 2.62 5.517 9.15 7.082 15.97 3.828 3.1-1.48 3.5-2.054 2.94-4.25-1.83-7.107-2.42-16.817-2.46-40.038-.04-27.959-1.05-35.988-5.45-43.508-5.5-9.383-12.26-12.799-25.55-12.912-7.9-.066-10.34.306-14.5 2.218-6.31 2.901-12.9 9.25-16.3 15.702l-2.63 5-.62-6.128c-.73-7.17-3.24-11.977-7.902-15.119-3.94-2.655-10.155-2.967-14.453-.726Zm-170.866 10.437c7.984 3.624 11.479 14.258 11.517 35.036.035 19.85-3.266 32.072-10.659 39.466-6.963 6.963-19.008 8.527-27.108 3.521-7.124-4.403-11.314-19.612-10.007-36.321 2.456-31.394 18.448-49.787 36.257-41.702Zm99.059 45.895c-1.117 11.621-11.036 25.61-22.068 31.123-13.13 6.561-22.749 1.632-22.704-11.633.048-14 16.135-23.538 40.861-24.227l4.377-.122-.466 4.859Z\" fill=\"#D90209\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wejlq9\",\"data-framer-name\":\"teeturtle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l6m9x7\",\"data-framer-name\":\"teeturtle\",fill:\"black\",intrinsicHeight:701,intrinsicWidth:4096,svg:'<svg width=\"4096\" height=\"701\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M3536.09 1.084c-19.48 2.523-42.43 11.386-60.08 23.21-38.82 25.994-70.24 70.612-93.91 133.351-5.08 13.459-6.36 18.562-10.59 42.355-3.72 20.907-4.83 33.797-4.15 48 2.05 42.341 16.96 80.522 44 112.718 13.26 15.782 22.94 23.72 65.98 54.125 31.03 21.92 27.78 18.753 26.63 25.895-3.25 20.127-2.96 29.706 1.47 49.432l2.32 10.304-2.3 13.513c-13.39 78.479-7.05 129.183 18.22 145.926 21.01 13.914 58.15 3.566 85.41-23.794 4.72-4.741 9.22-10.081 9.99-11.869.77-1.788 1.68-3.25 2.01-3.25.34 0 2.48 1.353 4.76 3.006 3.63 2.631 4.15 3.489 4.15 6.869 0 6.503 2.94 21.175 6.01 29.963 6.85 19.654 17.45 31.036 34.39 36.941 5.94 2.071 8.98 2.478 18.6 2.494 17.81.03 34.45-4.766 48.15-13.872 8.31-5.525 24.24-20.443 29.54-27.659l3.68-5.01 7.61.587c4.19.323 16.6.171 27.57-.338 45.05-2.089 82.39-8.212 95.2-15.609l4.24-2.452 7.26 6.307c20.54 17.859 38.34 28.401 57.25 33.908 10.53 3.064 30.7 3.31 40 .488 26.06-7.91 44.5-30.935 44.5-55.575v-5.853l7.22-2.192c15.7-4.77 27.56-13.404 31.73-23.116 6.43-14.946-1.37-39.02-15.95-49.198-5.98-4.173-6-4.247-3.49-12.689 1.21-4.069 1.5-7.829 1.11-14.453-.44-7.608-1.04-10.012-4.01-16-4.1-8.284-9.37-13.752-17.34-17.985l-5.77-3.062-.73-9.5c-2.09-27.408-18-87.461-34.02-128.5-21.57-55.227-42.82-89.562-69.6-112.485-25.23-21.6-46.55-32.963-75.94-40.488-17.7-4.531-28.36-5.789-49.21-5.812-28.95-.032-39.95 2.057-66.5 12.625l-13.26 5.279-2.73-14.56c-12.25-65.486-29.11-101.034-63.12-133.108-38.95-36.722-89.67-54.906-136.3-48.867ZM1260.5 3.021c-7.14 2.864-13.86 8.135-16.08 12.618-1.87 3.77-1.93 9.954-2.23 263.361-.31 270.18-.14 284.226 3.86 303.854 11.67 57.236 46.58 89.319 109.28 100.427 10.82 1.918 15.88 2.16 45.67 2.188 37.7.035 37.45.078 45.3-7.772 5.84-5.835 8.68-12.759 8.7-21.197.02-9.757-2.33-15.757-8.66-22.103-7.71-7.735-9.7-8.14-42.84-8.744-29.31-.534-40.01-1.71-52.5-5.767-23.46-7.624-34.54-20.176-41.21-46.706l-2.18-8.68-.34-144.75-.33-144.75 66.28-.016 66.28-.017 4-2.255c4.6-2.595 9.96-10.01 11.6-16.055 1.48-5.418.55-17.491-1.66-21.79-3.09-5.991-6.51-9.722-10.84-11.817-4.13-2.003-5.74-2.05-69.92-2.05H1307v-99.134c0-71.386-.32-100.2-1.14-102.944-1.75-5.823-6.25-10.496-13.62-14.127-6.04-2.977-7.65-3.318-16.71-3.538-8.11-.196-10.99.142-15.03 1.764Zm1072.38-.409c-6.24 2.157-13.86 8.082-16.61 12.919l-2.25 3.969.25 274.5.24 274.5 2.33 11.454c7.79 38.291 23.88 64.177 50.83 81.741 16.18 10.545 33.32 16.826 58.76 21.524 9.23 1.704 16.54 2.123 43.91 2.515 37.27.534 38.34.371 46.44-7.1 7.06-6.508 9.62-12.486 9.67-22.634.04-6.67-.41-9.469-2.09-13-2.86-6.041-8.77-11.832-14.86-14.556-4.7-2.103-6.78-2.273-34.5-2.811-23.93-.464-31.38-.952-39.44-2.584-13.13-2.659-21.04-5.368-28.18-9.656-14.94-8.968-22.18-21.231-27.09-45.893-1.67-8.396-1.79-18.498-1.79-150.5V275.5l67-.5c48.47-.362 67.55-.823 69-1.668 11.71-6.84 16.61-25.406 10.18-38.562-3.16-6.448-9.25-12.234-13.85-13.154-1.69-.339-32.27-.616-67.95-.616H2378V120.401c0-111.642.45-104.164-6.65-110.397-1.88-1.654-5.77-4.219-8.64-5.7-4.45-2.301-6.66-2.735-15.21-2.991-7.22-.215-11.29.146-14.62 1.299Zm306.54.445c-6.21 2.392-12.61 7.715-14.79 12.311-1.5 3.152-1.63 30.026-1.63 327.073 0 317.612.04 323.709 1.93 327.417 2.33 4.569 8.44 10.258 14.28 13.284 6.09 3.16 20.64 3.832 27.73 1.282 7.2-2.587 14.11-8.17 17.29-13.957l2.72-4.967.03-322.79c.02-318.952 0-322.835-1.95-326.642-2.64-5.184-8.9-10.358-15.65-12.942-7.53-2.882-22.55-2.917-29.96-.069ZM42.47 7.042C25.927 9.205 9.383 18.39 3.256 28.812L.5 33.5v259c0 280.813-.243 268.095 5.562 291.081 6.258 24.779 17.502 44.967 33.791 60.668C61.877 665.48 89.18 677.412 130 683.648c9.414 1.439 18.484 1.766 50 1.805 38.138.047 38.559.025 44.746-2.323 23.628-8.968 33.603-41.299 20.05-64.987-4.282-7.484-10.075-12.868-17.796-16.539l-6.5-3.091-32-.675c-33.57-.708-42.774-1.733-54.383-6.058-14.632-5.451-22.406-14.493-27.754-32.28-1.692-5.624-1.823-14.034-2.106-134.25L103.956 297h59.386c36.073 0 61.49-.399 64.748-1.017 9.885-1.875 16.19-8.157 21.01-20.934 7.42-19.671-.372-46.27-15.578-53.178-3.757-1.707-8.162-1.829-66.752-1.849L104.04 220l-.27-92.75c-.262-89.912-.33-92.872-2.237-96.75C95.844 18.928 78.992 9.44 59.867 7.042c-9.073-1.137-8.7-1.137-17.396 0ZM482.5 206.586c-2.2.219-8.275.887-13.5 1.485-52.066 5.957-99.986 32.796-135.227 75.739-19.558 23.832-32.639 52.369-38.032 82.972-2.168 12.304-2.241 14.836-2.241 77.718 0 57.569.205 66.257 1.783 75.996 5.289 32.637 14.849 56.272 32.562 80.504 7.549 10.327 29.789 32.077 41.257 40.35 30.709 22.149 64.753 35.457 107.09 41.86 12.273 1.857 18.716 2.17 45.308 2.199 33.252.037 42.918-.847 65.755-6.012 35.159-7.951 67.556-24.137 85.417-42.671 7.932-8.231 11.218-14.263 12.023-22.064 1.694-16.413-13.104-40.93-28.088-46.536-11.61-4.344-17.253-2.905-46.813 11.936-27.279 13.696-40.424 18.31-61.294 21.519-10.833 1.665-35.587 1.829-48 .318-30.222-3.68-56.617-15.732-75.079-34.282-13.467-13.53-20.128-25.058-25.039-43.332-2.318-8.625-2.688-12.245-3.129-30.535l-.5-20.75 108.873-.01c66.233-.007 113.574-.414 120.874-1.041 28.784-2.473 48.921-12.955 57.487-29.923 10.064-19.937 12.779-61.177 6.125-93.026-7.615-36.447-26.512-67.884-56.078-93.294-30.446-26.166-64.216-41.611-103.25-47.225-10.2-1.466-40.602-2.66-48.284-1.895Zm466 .074c-33.301 2.698-60.197 10.406-85.994 24.644-18.025 9.949-30.572 19.455-46.858 35.503-28.463 28.045-45.027 57.798-52.885 94.986-2.231 10.56-2.263 11.707-2.263 83.707v73l2.807 13c8.119 37.616 24.148 66.49 51.347 92.493 31.672 30.279 72.179 49.832 120.024 57.938 37.927 6.426 87.142 5.101 122.322-3.292 40.34-9.623 80.91-33.501 90.66-53.354 2.41-4.913 2.84-6.991 2.82-13.785-.03-9.886-2.03-16.027-8.4-25.774-8.28-12.696-18.98-19.726-30-19.726-6.41 0-14.49 3.149-36.99 14.406-21.61 10.815-28.46 13.653-41.25 17.104-26.64 7.19-60.761 7.404-87.613.548-32.214-8.225-59.332-28.432-72.175-53.781-8.022-15.833-11.041-30.876-11.047-55.027L863 473l109.25-.003c67.72-.003 113.62-.4 120.75-1.046 13.88-1.257 23.78-3.803 34.48-8.865 17.6-8.321 25.48-20.201 30.22-45.509 2.49-13.309 2.45-47.36-.07-61.577-4.34-24.541-14.77-49.902-28.37-68.993-7.94-11.144-27.43-31.03-38.66-39.43-32.4-24.248-66.05-36.934-107.6-40.557-10.805-.942-25.427-1.095-34.5-.36Zm1989.83 2.375c-37.19 4.647-70.65 18.995-97.83 41.951-40.6 34.289-63.06 76.281-66.56 124.449-1.17 16.049-1.13 123.661.05 139.766 2.78 37.967 14.8 69.825 36.49 96.697 5.87 7.265 21.2 22.479 29.02 28.796 13.29 10.726 34.49 22.904 51.67 29.677 11.02 4.341 30.43 9.588 45.83 12.384 13.7 2.487 16.33 2.636 47.5 2.689 34.08.058 40.88-.504 61-5.037 36.51-8.227 74.1-29.514 84.03-47.588 5.6-10.182 3.09-22.765-6.64-33.321-4.89-5.308-7.77-7.014-14.3-8.477-6.32-1.416-12.51.879-25.42 9.415-34.02 22.507-68.34 31.457-109.82 28.643-25.94-1.76-46.14-6.724-65.1-16.001-32.41-15.858-55.03-40.682-64.31-70.578-4.62-14.883-5.13-19.228-5.64-48.21l-.5-28.21 125.85-.318 125.85-.317 8.5-2.352c20.08-5.555 33.09-14.398 39.01-26.504 11.48-23.463 11.68-68.15.48-104.589-11.27-36.649-38.55-71.456-74.13-94.583-18.99-12.342-43.77-22.211-66.54-26.5-12.78-2.409-45.78-3.471-58.49-1.882Zm-1387.12 6.801c-10.33 3.68-18.65 12.713-19.7 21.394-.35 2.899-.48 67.595-.29 143.77l.35 138.5 2.31 12.5c7.07 38.194 24.11 69.798 53.54 99.299 27.17 27.244 57.02 43.657 93.57 51.457 11.54 2.461 14.38 2.671 36.51 2.706 19.31.031 25.96-.327 34-1.828 30.68-5.724 59.63-19.309 83.5-39.173 10.61-8.827 27.4-26.405 35.16-36.805 18.02-24.131 29.74-52.211 34.09-81.656.96-6.508 1.25-41.895 1.25-151V232.5l-2.74-4.67c-11.14-18.941-48.74-17.887-59.59 1.67-1.53 2.747-1.71 15.138-2.19 147l-.52 144-2.65 9.5c-6.23 22.369-16.27 39.938-32.73 57.264-18.22 19.163-37.25 30.291-61.37 35.885-7.34 1.702-12.45 2.138-25.21 2.15-18.24.017-28.52-1.872-43.5-8.001-36.36-14.875-66.47-50.421-76.23-89.988-2.17-8.779-2.18-9.311-2.72-151.31-.62-160.266.25-144.784-8.55-152.891-6.74-6.211-12.34-8.408-22.5-8.817-6.46-.261-9.77.109-13.79 1.544Zm614.29.78c-22.25 3.994-41.9 12.186-60.5 25.231-10.29 7.218-30.65 28.248-38.22 39.49l-6.63 9.837-.32-25.837c-.31-24.518-.44-26.051-2.57-30.029-2.4-4.496-6.09-7.676-13.26-11.444-3.94-2.069-5.87-2.364-15.5-2.364-10 0-11.51.252-16.66 2.78-6.74 3.31-12.3 9.129-13.77 14.399-1.46 5.276-1.49 422.273-.02 427.546 1.79 6.443 6.85 11.918 14.81 16.025 6.71 3.458 7.93 3.75 15.67 3.75 10.63 0 17.53-2.451 24.46-8.683 9.32-8.376 8.44 6.039 9.07-148.317l.56-136.5 2.6-11c6.79-28.757 17.74-48.402 37.93-68.034 20.74-20.16 38.71-30.191 63.85-35.628 7.81-1.69 14.39-2.147 37-2.569 23.81-.446 27.98-.755 31.05-2.311 12.82-6.483 19.38-24.803 14.01-39.105-2.61-6.947-8.66-13.998-14.39-16.769-4.06-1.97-5.86-2.079-32.74-1.994-19.97.063-30.81.517-36.43 1.526Zm771.94 47.894c-23.59 4.321-44.01 14.838-62.39 32.124-13.58 12.772-22.76 26.25-29.36 43.104-6.47 16.506-7.18 21.625-7.18 51.762l-.01 27H2945c99.17 0 107.09-.125 115-1.818 11.82-2.527 16.16-5.273 19.68-12.431 2.75-5.599 2.82-6.173 2.77-21.751-.04-13.927-.38-17.324-2.67-26.217-5.49-21.302-16.12-40.245-31.8-56.646-18.66-19.516-40.15-31.061-65.46-35.166-10.98-1.781-35.26-1.761-45.08.039ZM479.814 286.006c-22.352 3.56-41.883 13.354-57.824 28.994-10.292 10.098-16.613 20.231-21.207 34-3.147 9.433-3.172 9.672-3.567 33.75l-.398 24.25h84.519c55.097 0 87.223-.376 92.289-1.081 18.489-2.571 23.262-9.91 22.056-33.919-.659-13.12-3.106-22.859-8.419-33.5-12.392-24.818-35.289-43.003-63.143-50.15-10.779-2.765-33.96-3.991-44.306-2.344Zm466.533-.022c-30.664 4.354-59.463 23.55-73.535 49.016-7.669 13.878-9.812 25.145-9.812 51.588V407h84.459c89.151 0 96.101-.301 104.551-4.53 7.44-3.726 9.39-8.336 9.83-23.21.74-24.822-7.01-45.023-24.14-62.922-19.41-20.288-41.875-30.018-71.2-30.837-7.7-.215-16.769.002-20.153.483Z\" fill=\"#84BD00\"/><path d=\"M3548.5.683c-71.85 3.738-130.69 60.301-167.3 160.817-2.82 7.744-5.28 17.808-8.31 34-4.26 22.793-4.3 23.203-4.29 45.5 0 19.3.32 24.057 2.23 33.449 6.81 33.495 19.32 59.78 40.72 85.551 13.78 16.593 21.03 22.46 75.27 60.924 9.53 6.756 17.58 12.955 17.9 13.776.31.821-.23 6.911-1.21 13.534-2.06 13.879-1.69 22.109 1.68 37.266 2.85 12.881 2.81 17.511-.39 37.5-4.31 26.946-5.3 38.344-5.29 61 0 22.096.82 29.779 4.68 44 6.6 24.368 21.87 38.078 42.27 37.974 22.57-.115 59.94-21.442 71.18-40.619 1.4-2.395 3.08-4.355 3.72-4.355.65 0 2.79 1.096 4.76 2.435 3.57 2.427 3.59 2.478 5.18 14.25 6.07 44.825 29.03 65.927 66.95 61.533 11.02-1.279 22.48-4.468 30.49-8.493 10.76-5.406 25.65-18.07 36.33-30.909l4.86-5.83 26.28-.47c48.29-.863 93.05-7.937 106.01-16.757l2.71-1.848 9.79 8.627c16.92 14.92 35.77 26.148 52.78 31.435 8.34 2.591 28.11 3.793 36.5 2.218 13.08-2.453 22.65-7.717 33-18.149 10.27-10.352 15.74-22.261 16.51-35.955.23-4.077.77-7.734 1.2-8.126.44-.392 3.94-1.724 7.79-2.96 29.67-9.522 39.42-29.128 27.27-54.841-3.58-7.565-8.16-12.96-14.34-16.865-5.4-3.418-5.78-4.311-3.63-8.494 1.32-2.567 1.7-5.973 1.7-15.322 0-11.503-.14-12.3-3.2-18.5-3.79-7.696-9.9-13.976-17.31-17.804l-5.39-2.786-1.73-13.944c-2.26-18.265-8.47-47.421-13.83-64.945-6.99-22.873-9.42-30.665-11.06-35.5-17.6-51.823-37.72-91.695-59.54-118-13.26-15.987-35.98-34.171-54.76-43.833-27.69-14.249-56.43-21.103-88.68-21.149-25.97-.037-41.05 2.893-66.61 12.948-9.13 3.591-12.98 4.69-13.5 3.849-.4-.648-1.26-4.133-1.91-7.746-9.03-50.495-18.68-78.985-35.4-104.544-25.43-38.886-66.19-68.512-109.3-79.439-11.82-2.996-31.3-5.001-42.78-4.403Zm-2284 1.716c-9.01 2.215-16.76 7.765-19.61 14.041-1.78 3.913-1.85 13.768-1.86 272.06-.01 290.233-.2 279.805 5.35 302.227 4.51 18.186 10.72 31.506 21.44 45.939 7.05 9.49 14.52 16.436 25.59 23.8 27.98 18.618 64.11 26.35 118.59 25.381 18.46-.328 19.76-.481 24.38-2.839 5.56-2.841 10.61-8.286 13.82-14.911 3.15-6.51 3.09-18.763-.13-25.097-3.1-6.113-7.59-10.67-13.57-13.779-4.97-2.585-5.19-2.605-36.5-3.339-34.76-.814-42.69-1.888-57.37-7.767-20.52-8.218-30.07-20.994-35.85-47.984l-2.28-10.631v-284l66.57-.5 66.58-.5 4.23-2.8c17.79-11.776 14.27-44.229-5.38-49.596-2.7-.737-24.91-1.095-68.25-1.098L1306 221V120.46c0-97.92-.05-100.64-1.96-104.386-5.83-11.427-23.63-17.585-39.54-13.675Zm1071.34-.01c-6.41 1.727-14.95 7.095-17.72 11.142-1.27 1.851-2.7 5.077-3.19 7.168-1.31 5.662-1.19 515.974.13 535.818 2.65 39.767 12.77 66.507 33.44 88.389 18.11 19.168 42.13 31.054 74.91 37.078 23.75 4.364 76.62 5.407 85.09 1.679 4.99-2.196 10.84-7.776 14.33-13.663 2.39-4.027 2.67-5.498 2.67-14 0-8.155-.35-10.191-2.49-14.383-1.37-2.685-4.33-6.388-6.58-8.228-7.96-6.519-8.84-6.673-42.93-7.503-37.9-.923-48.53-2.709-64-10.749-16.65-8.657-26.22-24.576-29.98-49.88-1.3-8.792-1.52-30.079-1.52-150.217V275.067l66.87-.283 66.88-.284 3.66-2.608c16.24-11.558 15.16-39.38-1.89-48.735-2.71-1.487-9.8-1.685-69.25-1.934l-66.22-.278-.28-100.722c-.26-95.757-.36-100.89-2.12-104.11-6.23-11.441-24.68-17.799-39.81-13.724Zm307.65-.066c-6.93 1.774-14.84 7.198-17.66 12.106l-2.33 4.071v648l2.41 4.215c7.74 13.508 28.02 19.04 43.63 11.897 6.42-2.942 12.04-7.862 14.52-12.727 1.91-3.744 1.94-9.049 1.94-327.595l-.01-323.79-2.24-3.674c-2.81-4.592-6.09-7.177-13.29-10.474-6.78-3.102-19.14-4.032-26.97-2.029ZM3540 40.019c-27.31 3.8-56.26 18.884-77.5 40.385-16.43 16.633-29.49 36.092-40.14 59.819-12.3 27.402-16.87 46.053-20.38 83.212-2.4 25.375-2.44 30.516-.36 44.883 2.97 20.513 10.73 40.003 23.77 59.682 10.36 15.642 34.14 38.876 68.46 66.908 15.04 12.285 32.15 26.444 38 31.464 24.66 21.139 46.76 35.478 68.65 44.544 14.82 6.139 20.71 7.47 33 7.46 8.85-.007 12.17-.439 16.96-2.21 22.98-8.491 41.69-33.111 54.99-72.381 9.08-26.783 12.5-49.979 9.13-61.785-7.14-24.944-9.08-41.489-7.43-63.284 1.52-20.181.49-61.56-2-79.716-9.99-72.893-40.4-120.637-92.35-144.969-23.85-11.176-52.94-16.774-72.8-14.012Zm-108.95 161.252c-10.55 5.339-16.94 31.017-11.07 44.516 4.2 9.652 9.44 11.542 15.88 5.725 10.52-9.508 13.66-34.113 5.86-46.022-1.95-2.986-5.43-5.519-7.52-5.475-.38.008-1.8.573-3.15 1.256Zm-492.55 8.346c-46.26 6.443-80.08 22.974-111.56 54.539-26.37 26.442-41.64 54.054-49.69 89.844l-2.59 11.5-.4 71.432c-.43 76.517.01 87.507 4.23 106.204 3.46 15.33 6.72 24.471 14.05 39.364 8.06 16.396 17.09 28.98 30.46 42.458 25.63 25.832 57.25 43.652 94.25 53.104 40.02 10.225 95.62 10.226 135.52.003 33.76-8.648 68.58-29.81 76.84-46.706 2.29-4.671 2.59-6.314 2.15-11.78-.59-7.383-3.91-14.256-9.9-20.483-4.88-5.078-8.62-7.043-14.8-7.775-6.04-.715-11.47 1.618-26.15 11.237-17.99 11.788-37.87 20.047-59.11 24.555-14.36 3.051-45.65 3.784-61.9 1.452-32.25-4.627-55.3-13.704-76.4-30.084-24.12-18.723-38.54-42.163-44.17-71.78-2.21-11.636-3.15-59.558-1.2-60.818.78-.501 53.68-.869 121.87-.848 76.52.023 123.36-.336 128.34-.986 21.05-2.746 38.48-11.884 46.3-24.274 11.48-18.182 13.75-64.323 4.86-98.811-7.62-29.578-22.32-54.781-45.27-77.622-27.64-27.502-56.87-43.23-95.73-51.514-8.31-1.771-13.97-2.174-33.5-2.381-12.92-.136-24.85-.06-26.5.17Zm658.79 3.47c-7.64 3.782-12.84 14.414-13.99 28.585-1.62 20.149 10.22 33.644 25.75 29.33 7.3-2.026 14.9-13.425 17.02-25.509 1.4-7.959-.76-18.785-5.11-25.553-5.38-8.384-14.97-11.16-23.67-6.853Zm-2043.02 2.453c-10.47 2.819-20.66 12.081-21.78 19.796-.33 2.29-.44 68.289-.25 146.664l.35 142.5 2.69 12.117c7.32 33.061 19.36 56.8 42.37 83.549 40.11 46.624 95.21 69.673 155.26 64.939 37.24-2.935 66.57-14.158 96.31-36.852 36.7-28.008 62.51-66.813 71.68-107.753 3.96-17.693 4.09-23.072 4.1-167.093V233.315l-2.31-4.408c-2.67-5.111-10.92-11.204-17.38-12.843-6-1.522-18.11-1.313-23.92.414-6.69 1.986-13.81 6.848-16.6 11.34l-2.29 3.682-.55 143c-.54 142.058-.56 143.057-2.7 151.718-5.28 21.424-13.07 36.921-27.27 54.3-14.6 17.881-35.62 33.027-54.96 39.617-18.03 6.144-43.33 7.689-62.13 3.795-29.88-6.193-56.4-24.321-76.09-52.007-10.7-15.046-16.79-28.733-21.09-47.423-2.03-8.838-2.08-11.513-2.39-149-.17-77-.55-141.039-.85-142.309-.69-2.96-7.87-10.777-12.72-13.844-4.37-2.762-13.63-5.376-18.71-5.281-1.95.036-5.89.699-8.77 1.474Zm613.23 1.181c-1.65.232-7.37 1.494-12.72 2.805-35.77 8.776-67.25 31.487-88.68 63.974l-6.6 10-.5-27.5c-.54-29.913-.66-30.554-6.66-36.148-12.42-11.577-36.28-11.299-48.47.567-6.3 6.131-5.87-10.085-5.85 222.299.02 203.652.1 212.954 1.85 216.791 3.5 7.717 14.38 14.753 24.82 16.058 12.84 1.604 27.89-5.004 33.31-14.629l2.5-4.438.51-135 .52-135 2.29-10.87c4.54-21.504 13.22-41.857 23.86-56.002 13.7-18.197 35.37-35.968 53.97-44.254 18.32-8.168 26.68-9.578 60.93-10.279l29.08-.595 4.83-3c9.14-5.675 15.37-18.508 14.13-29.077-.84-7.184-3.75-13.521-8.61-18.798-7.09-7.691-6.84-7.645-41.16-7.475-16.69.082-31.7.339-33.35.571Zm1574.63 14.364c-2.82 2.247-5.13 4.452-5.13 4.9 0 .448 3.42 1.574 7.59 2.503 16.57 3.685 58.25 20.881 64.16 26.463 2.76 2.608 2.88 6.533.73 23.9-1.47 11.834-7.11 43.76-9.75 55.149l-1.28 5.5-6.97-.261c-3.84-.143-12.09-.537-18.34-.876l-11.36-.616.74 4.376c1.52 9.067.68 8.583 16.17 9.344 19.23.945 19.18.923 26.52 11.872 3.38 5.038 11.32 16.136 17.65 24.661 13.63 18.351 28.12 38.796 28.85 40.681 1.3 3.385-21.63 45.391-35.83 65.632-3.78 5.397-6.88 10.563-6.88 11.479 0 2.064 6.13 11.209 7.5 11.19 3.09-.045 33.08-48.783 44.22-71.867l7.42-15.384 9.18.628c5.05.346 20.88.891 35.18 1.212 14.3.32 27.17 1.024 28.6 1.564 4.12 1.557 22.69 34.297 26.86 47.365.71 2.2 1.64 4.387 2.07 4.859 1.03 1.122 10.97-4.464 10.97-6.166 0-3.893-11.4-28.029-19.11-40.473-2.69-4.333-4.89-9.013-4.89-10.399 0-1.386 2.01-7.538 4.46-13.671 4.98-12.483 10.74-31.666 13.49-44.989 1.01-4.861 2.25-9.261 2.77-9.776.51-.516 3.26-1.214 6.11-1.551 2.84-.337 5.17-.943 5.17-1.348 0-1.892-3.19-9.49-4.28-10.18-.67-.426-3.14-.782-5.49-.791l-4.28-.015-3.37-7.4c-9.73-21.353-30.11-50.653-49.5-71.173-7.55-7.982-7.53-7.949-5.26-11.695 1.07-1.778 2.98-6.079 4.23-9.559l2.27-6.327-5.61-5.619c-3.87-3.866-5.76-5.167-6.06-4.172-1.39 4.627-7.01 19.569-7.61 20.229-.39.431-4.27-.339-8.62-1.711-22.99-7.242-53.86-10.071-68.25-6.254l-6.32 1.679-15.18-7.407C3783.01 235.53 3758.63 227 3749.68 227c-1.33 0-4.73 1.838-7.55 4.085Zm-801.63 32.427c-43.34 6.947-81.23 37.324-95.63 76.655-6.17 16.861-7.05 22.863-7.59 52.083l-.49 26.75 105.35-.02c105.21-.02 113.21-.25 124.86-3.591 14.61-4.19 19.74-20.062 15.43-47.77-2.07-13.287-5.4-23.831-11.46-36.314-13.23-27.231-39.06-51.51-65.22-61.299-19.27-7.209-44.89-9.759-65.25-6.494Zm892 .799-6.99 1.189-.76 6c-4.81 38.055-7.93 57.279-11.81 72.859l-2.96 11.859 4.66 6.641c2.57 3.653 10.15 14.066 16.86 23.141 6.71 9.075 15.98 21.87 20.6 28.432 6.46 9.172 9.08 12.113 11.33 12.711 5.28 1.407 52.76 3.058 67.37 2.344 16.52-.808 15.25.011 20.33-13.135 8.22-21.246 14.29-43.642 13.65-50.326-1.25-12.948-26.7-53.354-51.29-81.394-9.18-10.478-13.78-13.025-32.12-17.797-10.2-2.655-13.97-3.132-26.87-3.401-8.58-.179-17.99.196-22 .877ZM3487 318.193c0 2.167 8.69 13.662 15.08 19.935 3.14 3.095 8.24 6.86 11.32 8.366 4.76 2.329 6.55 2.678 11.98 2.333 5.07-.323 7.14-.984 10.07-3.22 7.35-5.605 11.66-14.053 10.18-19.947-.59-2.349-.6-2.351-7.36-1.044-15.59 3.017-31.04.806-49.52-7.083-1.19-.509-1.75-.298-1.75.66Zm237 1.298c0 .889 1.13 8.587 2.5 17.106 5.21 32.248 3.35 41.125-19.96 95.738-4.19 9.809-8.51 20.159-9.61 23-2.66 6.889-3.5 16.318-2 22.34 2.37 9.46 10.13 18.325 16.06 18.325 3.46 0 21.99 6.463 29.79 10.387 9.34 4.706 21.61 14.09 27.77 21.251 2.78 3.224 8.93 11.037 13.67 17.362 14.03 18.72 22.91 27.017 35.96 33.589 19.99 10.066 50.46 11.171 76.32 2.764 16.59-5.391 36.3-16.57 50-28.348 21.54-18.522 43.77-29.993 61.25-31.619 9.77-.908 19.52 2.044 25.48 7.72l4.27 4.059 2.78-3.333c5.27-6.311 7.14-11.83 6.83-20.2-.16-4.286-6.43-10.056-13.07-12.027-11.75-3.491-26.14-1.59-43.04 5.69-13.46 5.799-18.31 8.722-68.5 41.3-24.55 15.939-32.82 19.16-55 21.448-21.08 2.173-34.95-.069-47.7-7.711-6.51-3.901-15.67-13.491-20.8-21.771-9.67-15.616-13.53-20.829-19.68-26.578-9.7-9.078-18.64-14.462-37.55-22.61-18.97-8.178-22.42-10.299-24.38-14.99-3.57-8.537-.91-17.255 14.43-47.383 15.58-30.596 18.29-39.138 18.35-58 .05-15.718-3.37-27.307-11.07-37.458-4.55-6.01-13.1-12.566-13.1-10.051Zm-197.31 124.226c-.26.431-1.24 3.548-2.18 6.927-1.58 5.675-1.59 6.552-.13 11.5.88 2.946 2.92 7.661 4.55 10.477 2.56 4.431 3.31 5.057 5.5 4.637 4.23-.808 12.86-6.544 15.29-10.156 4.33-6.443 3.67-7.496-10.22-16.429-10.14-6.521-12.35-7.721-12.81-6.956Zm39.96 35.209-5.65 5.926v7.523c0 8.755 2.99 25.317 6.36 35.215 5.3 15.54 14.53 30.117 27.36 43.175 9.95 10.122 17.26 15.415 28.65 20.752 13.82 6.474 13.38 6.45 14.11.779 4.43-34.193 8.96-50.473 18.83-67.597 3.89-6.739 12.87-16.861 17.69-19.924 2.16-1.375 2.33-1.837 1.22-3.432-3.77-5.453-6.66-13.281-7.04-19.093-.23-3.437-.59-6.25-.82-6.25-.22 0-2.08 1.044-4.13 2.32-14.45 8.989-38.42 13.049-54.46 9.228-4-.952-13.25-4.614-20.56-8.139-7.31-3.525-13.88-6.409-14.6-6.409-.72 0-3.85 2.667-6.96 5.926Zm-25.92 20.204c-4.09 2.289-15.05 32.551-19.33 53.37-2.3 11.195-2.67 15.43-2.66 30.5 0 15.592.28 18.563 2.58 27.254 4.61 17.519 13.08 29.099 23.13 31.628 16.08 4.049 37.86-13.902 47.64-39.269l3.06-7.936-2.09-2.588c-15.53-19.234-35.08-54.116-45.83-81.768-4.18-10.756-4.94-12.064-6.5-11.191Zm156.77 17.269c-10.29 3.255-16.79 9.555-20.8 20.151-4.03 10.679-12.51 41.576-14.94 54.43-3.18 16.867-3.21 44.515-.05 54.52 6.3 19.959 19.46 27.691 40.82 23.968 11.17-1.948 17.07-4.453 26.85-11.383 22.02-15.614 35.74-34.185 45.13-61.085 3.26-9.344 3.62-11.334 3.25-18.077-.31-5.788-1.14-9.134-3.5-14.177-15.14-32.361-52.64-55.976-76.76-48.347Zm289 23.823c-11.16 4.815-24.12 15.529-35.91 29.682-7.12 8.545-16.63 22.773-19.59 29.277-5.55 12.239 1.01 28.367 16.39 40.286 17.22 13.347 42.13 18.231 57.64 11.305 7.13-3.183 13.5-10.277 15.43-17.185 3.93-14.101 4.48-51.682 1.03-69.521-2.42-12.469-7.4-20.833-14.69-24.651-4.11-2.154-14.38-1.745-20.3.807Zm58.23 17.54-2.65 2.762 1.45 10.988c.8 6.043 1.46 11.325 1.46 11.738.02 1.309 2.41.816 6.53-1.34 10.75-5.639 14.63-9.892 12.56-13.759-1.23-2.304-14.23-13.151-15.75-13.151-.53 0-2.15 1.243-3.6 2.762ZM3788.6 602.25c-2.07 6.737-5.3 15.145-7.17 18.684-1.87 3.539-3.16 6.673-2.86 6.965 1.02 1.027 39.07.408 50.43-.821 29.06-3.144 51.81-9.58 68.54-19.388 5.56-3.262 15.92-11.568 15.25-12.234-.16-.164-4.06.792-8.66 2.125-29.91 8.661-75.59 6.791-102.88-4.21-4.6-1.854-8.48-3.371-8.62-3.371-.14 0-1.95 5.513-4.03 12.25Z\" fill=\"#228848\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h4096v701H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d3xuth\",\"data-framer-name\":\"hacksmith\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m425za\",\"data-framer-name\":\"hacksmith\",fill:\"black\",intrinsicHeight:57,intrinsicWidth:231,svg:'<svg width=\"231\" height=\"57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.363.283C22.26.625 18.397 1.78 17.722 2.27c-.418.303-.417.326.048.973l.476.662 2.25-.745c6.677-2.212 13.612-1.768 20.308 1.3 1.042.477 1.937.867 1.989.867.052 0 .063-.427.025-.95-.065-.887-.145-.991-1.197-1.555-1.355-.726-4.64-1.83-6.918-2.327-2.275-.495-7.882-.61-10.34-.21ZM69.143.22c-.06.163-1.128 5.33-2.371 11.482L61.13 39.605c-1.859 9.195-3.38 16.87-3.38 17.056 0 .187.15.339.332.339.223 0 .55-.712 1.003-2.181.655-2.13 5.244-16.984 11.557-37.413 1.73-5.598 3.25-10.505 3.378-10.905l.233-.727h26.094c14.351 0 49.62-.067 78.373-.15 50.498-.143 52.28-.162 52.28-.558 0-.367-.21-.41-1.974-.41-1.085 0-5.121-.1-8.967-.22s-10.648-.322-15.114-.45a6848.91 6848.91 0 0 1-15.34-.457c-3.97-.124-15.898-.476-26.506-.781-24.49-.706-46.682-1.356-60.796-1.782A7026.65 7026.65 0 0 0 83.016.41C78.487.29 73.538.131 72.018.057c-2.185-.106-2.787-.072-2.875.163ZM15.5 4.04c-.095 1.04-.045 1.489.194 1.751.432.473.406.733-.116 1.202-.241.216-.473.71-.515 1.097l-.076.704-.311-.615c-.227-.45-.48-.616-.936-.616-.671 0-1.017-.565-.787-1.286.129-.404-1.494-2.516-1.933-2.516-.242 0-.078 1.975.28 3.383.114.446.595 1.302 1.068 1.902 2.023 2.563 1.933 2.146 1.755 8.098-.087 2.903-.188 5.309-.225 5.346-.038.037-.436-.086-.885-.272-.45-.186-1.118-.338-1.486-.338-1.411 0-2.43.78-1.376 1.053.617.16.567.651-.112 1.092-.58.377-.708.376-5.112-.04-1.11-.104-1.797-.044-2.63.23C1.178 24.583 0 25.445 0 25.895c0 .163 8.864.235 28.762.235 28.02 0 28.762-.01 28.762-.421 0-.792-2.547-2.71-3.598-2.71-.353 0-.463.145-.465.614-.007 1.118-.229 1.232-2.215 1.143-1.979-.09-2.574-.377-2.148-1.037.235-.364 1.085-.48 1.884-.256.553.154.386-.494-.248-.962-.647-.48-2.435-.633-3.869-.332l-.846.179V3.839l-.521-.487c-.288-.267-.618-.485-.734-.484-.298.002-.771 1.089-.631 1.45.064.167.008.504-.125.75-.179.331-.169.472.04.547.217.078.22.2.014.548-.2.338-.202.511-.006.706.197.195.194.364-.011.69-.172.273-.19.48-.05.567.124.076.142.301.041.514-.1.207-.167 1.464-.151 2.792.016 1.328-.06 2.47-.17 2.536-.11.068-.085.258.053.424.176.21.183.43.022.729-.161.297-.155.502.02.675.167.166.176.345.028.538-.122.159-.203 1.122-.179 2.14.023 1.018-.044 1.905-.15 1.97-.107.065-.677-.652-1.267-1.594-4.545-7.256-6.795-10.293-8.254-11.141-.765-.445-3.202-1.487-3.477-1.488-.146 0-.02 1.36.237 2.573.239 1.126.872 2.245 3.943 6.965 2.012 3.092 3.659 5.684 3.659 5.76 0 .17-11.128.125-14.729-.061l-2.66-.137.691-1.079.691-1.078.702.586c1.346 1.123 2.02.203.972-1.327-.572-.836-.58-.892-.25-1.78.636-1.704 1.028-3.277.9-3.607-.248-.642-1.318-.219-3.303 1.306-.471.361-.891.62-.934.574-.043-.045-.71-1.012-1.481-2.148l-1.403-2.066.146-2.408.147-2.408-.919-1.622c-.505-.892-1.003-1.622-1.105-1.622-.103 0-.244.63-.315 1.398Zm31.648 3.412c0 .953.11 1.16 1.356 2.54 3.058 3.387 4.702 6.114 5.93 9.838.682 2.064.83 2.319 1.714 2.954.532.382 1.001.66 1.043.62.145-.145-.773-3.663-1.361-5.215-.755-1.993-2.297-4.81-3.57-6.525-1.19-1.603-3.58-4.168-4.47-4.796l-.642-.454v1.038ZM8.038 8.917c-1.828 1.928-3.71 4.589-4.867 6.885C2.29 17.547.95 21.47.758 22.866L.614 23.9l.972-.409c.965-.406.975-.422 1.502-2.409C4.092 17.307 6.694 12.797 9.6 9.8c.958-.988.971-1.022.709-1.845-.147-.461-.334-.839-.415-.839-.08 0-.916.81-1.856 1.801Zm70.24 1.214c0 .059-1.07 3.506-2.379 7.662-1.308 4.155-2.431 7.73-2.496 7.946-.103.342.052.391 1.241.391h1.36l.702-2.293c.387-1.26.868-2.846 1.068-3.523.201-.677.46-1.356.575-1.51.158-.21 1.55-.28 5.596-.28 5.011 0 5.387.028 5.387.398 0 .327-1.597 5.383-2.157 6.828-.141.366-.025.397 1.265.335 1.293-.06 1.435-.117 1.59-.626.092-.308 1.191-3.804 2.442-7.77 1.25-3.966 2.274-7.318 2.274-7.45 0-.148-.487-.212-1.292-.17l-1.293.067-1.04 3.355-1.04 3.356-5.563.06c-3.06.032-5.563-.021-5.563-.12 0-.098.455-1.585 1.01-3.303.556-1.719 1.013-3.2 1.016-3.292.002-.092-.605-.168-1.35-.168-.744 0-1.353.048-1.353.107Zm20.446 7.83c-3.8 4.366-6.91 7.99-6.91 8.053 0 .064.634.111 1.41.105l1.41-.01 2.706-3.334 2.707-3.334 3.862-.011 3.862-.01.253 1.956c.139 1.077.319 2.587.4 3.356l.147 1.398h2.857l-.111-.615c-.061-.338-.564-3.635-1.118-7.326a986.238 986.238 0 0 0-1.135-7.438l-.127-.727h-3.302l-6.91 7.937Zm25.49-7.472c-2.395.583-4.266 1.603-5.909 3.221-1.527 1.504-2.632 3.47-3.038 5.407-.97 4.636 2.788 7.378 9.482 6.918 3.32-.228 3.491-.279 3.925-1.182.209-.435.344-.828.3-.872-.045-.044-.988.08-2.097.274-6.236 1.097-9.862-1.137-8.919-5.495.621-2.872 2.816-5.288 5.913-6.509 1.544-.608 5.235-.838 7.226-.45 1.538.3 1.763.185 1.77-.908.003-.527-.101-.599-1.044-.727-2.062-.28-5.781-.122-7.609.323Zm11.028 4.512a955.5 955.5 0 0 1-2.524 7.994c-.537 1.66-.976 3.049-.976 3.087 0 .038.628.04 1.395.003l1.395-.067 1.555-4.921 2.44-7.711c.487-1.535.885-2.92.885-3.076 0-.2-.397-.286-1.311-.286h-1.311l-1.548 4.977Zm7.175-1.48c-2.459 1.922-4.614 3.627-4.787 3.788-.268.248.113.947 2.481 4.555l2.798 4.263 1.654.002 1.654.001-1.219-1.734c-3.318-4.717-4.683-6.735-4.673-6.91.005-.106 1.858-1.575 4.117-3.265 2.258-1.69 4.411-3.322 4.783-3.627l.677-.554-1.507-.008-1.507-.008-4.471 3.496Zm12.635-3.094c-2.242.79-3.681 2.32-3.683 3.914-.001 1.278.409 1.856 3.022 4.259 1.355 1.246 2.454 2.444 2.535 2.763.085.334-.005.87-.218 1.315-.802 1.666-3.979 2.331-7.024 1.47-.864-.245-1.651-.396-1.748-.337-.241.147-.225 1.592.018 1.741.108.066 1.159.238 2.337.381 4.826.588 8.256-.779 9.188-3.662.456-1.412.053-2.108-2.683-4.628-1.342-1.237-2.565-2.549-2.718-2.915-.384-.919.237-1.96 1.581-2.65.905-.464 1.235-.507 3.153-.414 1.179.057 2.357.172 2.619.256.413.133.493.043.613-.692.076-.465.082-.9.014-.968-.069-.068-1.41-.151-2.982-.184-2.309-.048-3.082.02-4.024.351Zm12.236-.205c-.212.34-5.768 15.45-5.768 15.685 0 .123.507.223 1.127.223.621 0 1.128-.026 1.128-.058 0-.21 4.495-12.926 4.694-13.279.191-.337.489 1.789 1.29 9.199.485 4.48.332 4.14 1.86 4.13l1.293-.01 4.963-6.603c4.777-6.357 5.672-7.474 5.428-6.776-.126.358-2.916 9.908-3.51 12.01l-.397 1.408 1.267-.067 1.268-.066.597-2.125c.329-1.169 1.32-4.66 2.202-7.757.882-3.098 1.604-5.74 1.604-5.872 0-.15-.662-.24-1.772-.24h-1.773l-5.15 6.753c-2.832 3.714-5.177 6.659-5.209 6.543-.061-.216-.755-6.307-1.228-10.78l-.266-2.516h-1.763c-.969 0-1.817.09-1.885.198Zm23.547.389c-.124.322-1.276 3.946-2.561 8.053l-2.335 7.466h2.807l.621-2.07c.779-2.594 4.1-13.118 4.307-13.644.135-.347-.005-.392-1.231-.392-1.285 0-1.399.042-1.608.587Zm5.116-.084c-.288 1.066-.295 1.063 2.677 1.063 1.551 0 2.82.083 2.82.185s-.296 1.083-.658 2.18c-1.487 4.509-3.853 11.896-3.853 12.03 0 .08.603.145 1.339.145h1.34l.573-1.845 2.243-7.215 1.67-5.368 2.967-.063c2.945-.062 2.969-.067 3.185-.63.12-.311.218-.66.218-.776 0-.125-2.882-.209-7.193-.209h-7.192l-.136.503Zm16.848-.142c-.076.199-1.226 3.797-2.554 7.997l-2.414 7.636 1.24.068c.683.038 1.319-.012 1.414-.112.096-.099.649-1.74 1.231-3.647.582-1.907 1.174-3.541 1.317-3.631.382-.243 10.698-.21 10.85.035.072.114-.411 1.825-1.07 3.803l-1.2 3.596h2.769l.581-1.845c.319-1.015 1.407-4.463 2.417-7.662 1.01-3.199 1.889-5.992 1.954-6.208.102-.342-.053-.391-1.239-.391h-1.356l-.784 2.517c-.432 1.384-.91 2.944-1.064 3.467l-.279.95h-5.619c-5.251 0-5.611-.025-5.488-.39.072-.216.576-1.776 1.121-3.468l.99-3.076h-1.338c-1.024 0-1.372.085-1.479.36Zm-105.577 4.438c.194 1.47.303 2.754.242 2.852-.17.272-5.725.222-5.725-.051 0-.386 4.797-5.842 4.969-5.652.089.097.32 1.38.514 2.85Zm-89.653-.648c.377.314 1.009.976 1.404 1.47l.718.9-.456.453c-.393.39-.53.414-.982.174-.578-.307-1.315-1.1-1.327-1.43-.004-.114-.218-.431-.475-.703-.406-.429-.429-.556-.171-.965.376-.598.46-.592 1.29.1Zm-.133 3.287.856.84-.938 1.565c-1.387 2.316-2.059 1.922-1.194-.7.3-.911.322-1.28.113-1.97-.333-1.104-.314-1.609.039-1.021.148.246.654.825 1.124 1.286Zm-17.21 9.97c0 .59.437 2.942.701 3.774.166.52.423.774.947.932.396.12 2.344.69 4.33 1.268l5.08 1.48c1.014.295 1.542.576 1.693.9.149.32.814.684 2.053 1.123 2.116.751 3.54 1.839 3.926 2.999.522 1.57-.263 4.21-1.579 5.308-1.046.873-1.91 1.179-3.843 1.362-1.949.184-3.32.754-3.996 1.66-.508.681-1.003 2.163-.793 2.372.07.07 9.095.127 20.055.127 19.906 0 19.927 0 19.927-.457 0-.703-.806-2.108-1.58-2.753-1.012-.844-2.037-1.038-5.313-1.003-2.52.026-3.097-.037-4.208-.464-1.8-.69-2.848-1.994-3.335-4.152-.456-2.018.397-3.712 2.39-4.747.655-.34 1.285-.823 1.4-1.071.163-.357.851-.612 3.227-1.2 4.475-1.106 6.64-1.786 8.727-2.74 2.325-1.063 7.264-3.944 7.264-4.237 0-.137-4.104-.217-11.167-.217-9.775 0-11.166-.042-11.166-.336 0-.295-2.08-.335-17.37-.335-16.635 0-17.37.017-17.37.406Zm72.328.655c-.063.216-1.536 5.123-3.274 10.905-1.737 5.783-3.227 10.794-3.31 11.137l-.151.622 2.77-.063c2.737-.062 2.774-.07 2.944-.623.095-.307 1.103-3.68 2.241-7.493 1.138-3.814 2.566-8.584 3.174-10.6.608-2.015 1.105-3.802 1.105-3.97 0-.242-.565-.306-2.692-.306-2.37 0-2.706.047-2.807.391Zm8.773-.111c-.677 1.984-6.884 22.33-6.884 22.567 0 .106 1.06.194 2.355.194h2.354l.534-1.734c.293-.953 1.239-4.124 2.1-7.046.863-2.921 1.628-5.312 1.7-5.312.074 0 .582 3.145 1.129 6.99l.995 6.99 3.09.062 3.09.062.9-2.858c2.982-9.482 6.117-19.692 6.117-19.924 0-.387-4.374-.379-4.67.009-.118.154-.326.682-.462 1.174-.688 2.482-3.97 13.307-4.02 13.256-.03-.032-.477-3.272-.991-7.201s-.986-7.225-1.05-7.326c-.197-.317-6.178-.225-6.287.096Zm20.447.427c-.132.41-1.675 5.47-3.429 11.24-1.754 5.772-3.242 10.629-3.306 10.794-.094.245.785.299 4.815.294 5.253-.006 6.284-.137 8.079-1.032 2.581-1.285 4.43-3.403 6.255-7.164 2.024-4.173 2.792-8.973 1.874-11.714-.377-1.126-1.44-2.262-2.561-2.736-.364-.154-2.714-.286-6.042-.34l-5.446-.09-.239.748Zm19.283.356c-2.139 6.59-4.897 15.864-5.013 16.858-.173 1.472.132 2.582.988 3.59.831.98 1.729 1.282 4.265 1.437 3.176.194 6.247-.3 7.731-1.245 2.318-1.475 3.155-2.855 4.82-7.946 2.877-8.803 4.211-13.042 4.211-13.388 0-.321-.334-.37-2.581-.37-1.42 0-2.639.094-2.71.207-.105.169-1.987 6.037-4.202 13.104-.563 1.797-1.727 3.673-2.666 4.298-1.076.717-2.56.7-3.304-.038-.94-.932-.979-.729 1.985-10.412.998-3.26 1.862-6.205 1.919-6.543l.105-.615h-5.203l-.345 1.063Zm22.027-.493c-2.135 1.055-3.812 3.388-4.373 6.085-.396 1.902-.058 3.166 1.625 6.075 1.895 3.276 2.014 4.312.593 5.172-.608.367-1.14.44-3.232.44h-2.505l-.47 1.623c-.258.892-.537 1.96-.62 2.375l-.152.753 3.803-.113c2.252-.067 4.17-.234 4.705-.41 1.987-.656 4.315-3.763 4.899-6.54.306-1.452-.108-3.013-1.315-4.957-2.32-3.737-2.5-4.336-1.594-5.305.384-.41.858-.603 1.765-.715 1.477-.184 10.921.055 10.876.275-.034.168-2.548 8.315-3.222 10.442a338.16 338.16 0 0 0-1.033 3.356c-.334 1.107-.75 2.393-.924 2.856-.174.464-.316.895-.316.958 0 .063 1.229.086 2.731.051l2.731-.062.965-3.132a943.82 943.82 0 0 0 2.03-6.71c.586-1.97 1.367-4.561 1.735-5.761l.671-2.181h2.549c1.77 0 2.617-.086 2.772-.28.302-.378 1.4-4.578 1.239-4.738-.071-.07-5.675-.127-12.454-.127h-12.325l-1.154.57Zm27.696-.094c-.127.292-.898 2.745-1.715 5.452-.816 2.707-2.075 6.834-2.798 9.171-1.788 5.784-2.266 7.409-2.266 7.697 0 .163.858.245 2.567.245h2.568l.263-1.037c.145-.57 1.285-4.47 2.534-8.668l2.384-8.023c.095-.33.39-.392 1.842-.392 2.12 0 2.731.33 2.731 1.476 0 1.061-.73 2.397-1.717 3.144-.647.49-1.121.638-2.258.71l-1.439.091-.041 5.79a902.663 902.663 0 0 1-.056 6.293c-.016.493.044.505 2.772.567l2.788.063-.181-4.09c-.296-6.692-.413-5.949 1.072-6.812 2.155-1.253 3.626-3.3 4.344-6.05.717-2.742.215-4.585-1.489-5.46-.91-.466-1.334-.507-6.325-.6l-5.35-.099-.23.532Zm17.709-.27c-.071.112-1.091 3.475-2.268 7.472a882.487 882.487 0 0 1-3.382 11.23c-.683 2.179-1.242 4.004-1.242 4.054 0 .05 1.24.064 2.755.03l2.756-.063.498-1.678c3.031-10.198 4.137-13.876 5.146-17.113.652-2.091 1.144-3.878 1.093-3.97-.135-.243-5.204-.207-5.356.037Zm8.016 1.975c-.369 1.2-1.549 5.05-2.622 8.556a2267.006 2267.006 0 0 1-2.832 9.197c-.485 1.552-.882 2.89-.882 2.975 0 .085 5.304.12 11.787.08 13.473-.086 13.341-.07 15.311-1.897 1.34-1.243 2.586-3.609 2.802-5.319.205-1.633-.259-3.036-1.819-5.494-1.928-3.039-2.019-3.626-.753-4.83.637-.605.797-.644 2.985-.715l2.312-.075.582-2.234c.502-1.93.535-2.252.241-2.364-.187-.07-1.922-.064-3.855.015l-3.515.144-1.196.787c-1.873 1.233-3.161 3.22-3.699 5.707-.372 1.72-.003 3.027 1.722 6.103 1.659 2.958 1.826 3.84.904 4.753l-.553.55h-16.464l.318-1.063c.175-.585.459-1.465.631-1.958l.312-.894 3.524-.062 3.523-.061.245-.946c.256-.99.841-3.127 1.038-3.797.106-.36-.154-.391-3.299-.391-3.148 0-3.405-.03-3.293-.392l.589-1.901.466-1.51h8.49l.596-2.2c.328-1.21.596-2.367.596-2.572 0-.34-.601-.373-6.761-.373h-6.761l-.67 2.181Zm-139.773-.324c-.928.655-.932.664-1.088 2.468-.326 3.754-2.515 8.954-5.276 12.53-.84 1.09-1.616 2.1-1.723 2.247-.12.163-.022.548.255.999l.45.733.985-1.04c2.21-2.334 4.181-5.51 5.532-8.915 1.034-2.608 2.205-9.09 1.698-9.4-.087-.054-.462.117-.833.378ZM.772 33.77c.378 2.82 2.433 7.806 4.404 10.685.968 1.414 2.659 3.438 2.972 3.559.105.04.43-.204.723-.541l.533-.615-1.407-1.728c-2.467-3.03-4.05-6.144-5.1-10.03-.268-.996-.599-1.812-.734-1.813-.135 0-.538-.153-.895-.337l-.65-.336.155 1.156Zm109.332-.31c.587.65.659.892.659 2.204 0 3.748-2.243 8.218-4.763 9.493-.833.421-3.812.726-4.122.421-.07-.068.733-2.96 1.784-6.427 1.052-3.466 1.912-6.364 1.912-6.44 0-.077.871-.104 1.936-.06 1.859.075 1.963.107 2.594.809ZM12.182 51.488c0 .186 2.555 1.74 4.2 2.555 3.978 1.97 7.81 2.831 12.606 2.832 2.705 0 3.855-.102 5.734-.515 3.83-.84 7.056-2.15 9.902-4.02l1.248-.82-1.49-.066c-1.374-.06-1.645.01-3.48.919-4.12 2.04-7.028 2.686-12.027 2.672-4.997-.014-8.609-.885-12.347-2.977-.997-.557-1.428-.66-2.764-.66-.87 0-1.582.036-1.582.08Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1syqm0s\",\"data-framer-name\":\"Paystand\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gd2s9m\",\"data-framer-name\":\"paystand\",fill:\"black\",intrinsicHeight:233,intrinsicWidth:1e3,svg:'<svg width=\"1000\" height=\"233\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M981.508 54.105c-.261.71-.591 8.49-.734 17.29l-.259 16h-15.5c-14.2 0-15.944.2-20.788 2.388-6.537 2.954-12.495 9.524-14.908 16.44-1.522 4.364-1.804 8.527-1.804 26.671 0 20.323.126 21.774 2.301 26.5 6.192 13.454 16.894 18.278 38.115 17.18 17.037-.882 30.419-5.092 31.595-9.942.298-1.231.418-27.213.266-57.738l-.277-55.5-8.766-.289c-6.456-.213-8.892.05-9.241 1Zm-660.243 4.93c-1.777 1.79-1.826 112.883-.05 114.659 1.251 1.251 15.311 1.709 18.218.593 1.365-.524 1.582-3.177 1.582-19.3 0-13.206.352-19.045 1.2-19.893.835-.835 6.24-1.207 17.75-1.224 22.432-.034 29.677-1.967 38.135-10.174 10.494-10.185 13.524-30.552 6.812-45.785-2.788-6.327-10.068-13.357-17.287-16.693l-6.11-2.824-29.5-.31c-22.735-.239-29.787-.02-30.75.95ZM690.636 71.44c-.342.89-.621 5.181-.621 9.536v7.918h-6.878c-4.692 0-7.248.447-8.045 1.408-.724.872-1.056 4.197-.873 8.75l.296 7.342 5.5.259c10.924.515 9.812-2.599 10.178 28.492.346 29.314.52 30.344 5.991 35.451 5.796 5.412 18.615 7.229 30.643 4.343 7.293-1.749 7.566-2.396 4.921-11.643-2.521-8.812-1.776-8.395-12.316-6.889-4.759.68-5.222.55-7.25-2.028-2.072-2.634-2.167-3.711-2.167-24.513 0-18.918.206-21.837 1.582-22.365.87-.334 5.997-.607 11.393-.607 11.22 0 11.034.15 11.01-8.832-.023-8.434-.24-8.59-12.695-9.168l-10.79-.5-.5-9-.5-9-9.129-.286c-7.66-.24-9.229-.025-9.75 1.332Zm-312.595 8.467c5.867 2.993 8.275 8.353 7.818 17.4-.42 8.324-2.685 12.325-8.574 15.147-4.71 2.257-30.581 3.414-34.109 1.526-2.083-1.115-2.161-1.764-2.161-17.955 0-9.238.3-17.098.667-17.464.366-.367 7.809-.667 16.54-.667 13.935 0 16.355.246 19.819 2.013Zm60.708 8.075c-5.376 1.267-11.7 4.625-15.572 8.27-3.942 3.712-7.531 10.239-6.748 12.277.674 1.757 10.246 6.342 13.268 6.355 1.279.006 3.045-1.203 4.268-2.919 3.761-5.282 8.616-7.491 16.51-7.511 11.727-.03 16.54 4.307 16.54 14.908v4.532h-13.451c-18.706 0-27.805 2.236-33.182 8.153-7.767 8.547-8.251 25.589-.997 35.118 5.025 6.602 11.899 8.924 28.13 9.503 20.993.749 35.969-2.663 38.499-8.771.832-2.008 1.053-10.726.764-30.164-.47-31.709-.982-34.154-8.803-41.974-6.214-6.214-14.457-8.908-26.815-8.765-4.755.056-10.339.5-12.411.988Zm177.195.22c-6.306 1.782-13.372 6.101-15.983 9.768-2.589 3.635-4.946 10.976-4.946 15.401 0 1.738.724 5.604 1.609 8.591 3.165 10.687 12.032 15.709 31.706 17.956 15.006 1.713 19.685 4.175 19.685 10.354 0 6.413-9.749 10.633-21.246 9.197-6.757-.844-10.969-3.372-14.231-8.539-1.402-2.22-3.137-4.036-3.857-4.036-2.645 0-11.22 3.302-13.029 5.016-1.657 1.57-1.725 2.187-.618 5.541 1.639 4.966 8.259 12.044 13.974 14.94 11.003 5.575 30.606 6.039 41.855.991 10.959-4.918 16.152-12.92 16.152-24.886 0-11.997-6.69-20.043-19.506-23.458-2.197-.585-8.269-1.557-13.494-2.161-15.827-1.827-19-3.48-19-9.899 0-4.725 1.999-6.625 8.516-8.096 9.526-2.15 18.97.767 23.206 7.168 3.057 4.619 4.778 4.768 12.278 1.062 6.877-3.398 7.557-6.095 3.151-12.498-3.426-4.98-8.705-8.918-15.151-11.303-5.951-2.202-24.824-2.876-31.071-1.109Zm156.571-.688c-11.001 2.795-16.97 6.53-21.75 13.609-4.288 6.35-3.781 8.34 2.874 11.284 3.094 1.368 6.31 2.487 7.147 2.487.837 0 3.653-1.993 6.257-4.43 5.494-5.138 11.166-7.058 18.348-6.21 8.702 1.027 12.763 5.369 12.986 13.886l.138 5.254-16.5.619c-21.695.814-27.585 2.905-32.68 11.598-5.105 8.711-4.103 25.044 1.961 31.95 6.452 7.348 16.706 9.888 36.612 9.07 14.56-.599 21.691-1.982 26.32-5.103l3.287-2.216v-29.959c0-33.718-.372-35.931-7.223-42.986-6.146-6.328-13.011-8.8-25.272-9.102-5.778-.143-11.405-.03-12.505.25Zm84.5.84c-8.971 1.911-15.028 4.217-17.722 6.748l-2.278 2.141v37.625c0 27.931.309 37.935 1.2 38.826 1.593 1.593 15.007 1.593 16.6 0 .884-.884 1.2-9.684 1.2-33.378 0-27.87.208-32.35 1.553-33.466.96-.797 5.448-1.441 11.75-1.687 11.861-.464 15.782.913 19.163 6.731 1.895 3.261 2.056 5.479 2.354 32.485.231 20.868.651 29.194 1.5 29.734 1.947 1.238 15.159.902 16.48-.419.879-.879 1.2-9.085 1.2-30.684 0-34.66-.589-38.218-7.618-46.036-6.608-7.349-12.198-9.37-26.882-9.72-7.515-.179-14.429.232-18.5 1.1Zm-350.75 1.202c-.96.388-1.25 7.322-1.25 29.911 0 26.61.183 29.888 1.926 34.475 2.909 7.655 6.354 11.472 13.552 15.016 5.357 2.637 7.975 3.264 15.245 3.649 4.827.256 11.274.057 14.326-.441 3.052-.498 6.089-.726 6.75-.506.762.254 1.201 2.66 1.201 6.583 0 11.696-5.353 17.08-16.945 17.04-7.827-.027-11.669-1.782-16.177-7.391-1.767-2.199-3.825-3.998-4.574-3.998-1.992 0-12.706 5.575-14.22 7.399-1.086 1.308-.873 2.285 1.309 6.008 5.793 9.886 15.336 14.572 31.26 15.35 8.416.412 11.33.139 17.023-1.59 11.613-3.527 18.52-11.335 21.2-23.966 1.631-7.689 1.563-95.362-.076-97-.727-.728-4.259-1.2-8.965-1.2-6.653 0-7.913.276-8.8 1.933-.648 1.21-1.035 13.182-1.035 31.981v30.047l-2.75.769c-1.513.423-7.105.769-12.427.769-8.212 0-10.104-.314-12.5-2.071-5.967-4.378-6.32-6.327-6.321-34.979-.002-18.926-.33-26.378-1.202-27.25-1.178-1.178-13.935-1.593-16.55-.538Zm473.212 17.306c1.305 1.084 1.538 4.875 1.538 25.032 0 20.732-.207 23.927-1.629 25.107-1.062.881-5.153 1.468-11.75 1.685-11.668.383-15.671-1.062-19.121-6.905-1.776-3.007-2-5.183-2-19.387 0-18.848.966-21.993 7.834-25.504 3.621-1.851 5.436-2.075 13.878-1.717 5.827.248 10.327.924 11.25 1.689Zm-514.044 33.639c1.277.49 1.582 2.308 1.582 9.441 0 4.859-.396 9.079-.88 9.378-1.628 1.006-17.776 1.853-22.324 1.171-7.582-1.137-11-6.154-9.189-13.484 1.374-5.559 5.42-7.11 18.561-7.111 5.868-.001 11.38.271 12.25.605Zm332.382.593c.738.738 1.2 4.354 1.2 9.393 0 9.542.363 9.21-11.052 10.091-15.659 1.207-21.948-1.634-21.948-9.916 0-4.734 2.027-8.433 5.357-9.776 3.396-1.371 25.035-1.2 26.443.208Z\" fill=\"#192E53\"/><path d=\"M119.015 37.444c0-19.919.3-36.517.667-36.883 1.407-1.408 4.149-.34 13.333 5.19l9.5 5.72.268 23.881c.16 14.224.678 24.375 1.281 25.101.557.671 8.198 5.377 16.981 10.46l15.97 9.238v35.18c0 26.573-.306 35.596-1.25 36.877-1.803 2.447-52.868 31.81-54.707 31.457-1.271-.243-1.592-2.436-1.823-12.424l-.28-12.129 15.78-9.179c8.679-5.048 16.343-9.908 17.03-10.8 1.548-2.008 1.785-42.37.266-45.21-.542-1.01-8.192-5.984-17-11.05l-16.016-9.213V37.444Z\" fill=\"#4FA9DB\"/><path d=\"M161.229 38.422c-.157-5.995-.058-11.49.219-12.214.277-.723 1.385-1.314 2.461-1.314 2.224 0 51.94 28.465 53.856 30.836 1.894 2.342 1.813 119.458-.084 121.355-3.091 3.092-95.783 55.978-97.174 55.444-1.203-.461-1.492-2.8-1.492-12.065 0-10.155.229-11.7 1.967-13.281 1.082-.984 18.187-11.175 38.01-22.646l36.042-20.856-.259-47.515-.26-47.515-16.5-9.665-16.5-9.665-.286-10.899Z\" fill=\"#4FA9DB\"/><path d=\"m.515 55.504 47.5-27.732C79.75 9.245 96.345.1 98.015.217c2.486.176 2.502.238 2.781 11.194.203 7.975-.088 11.52-1.053 12.84-.733 1.002-17.734 11.351-37.78 22.996L25.515 68.421v95.669l16.28 9.511 16.28 9.51-.28 12.142-.28 12.141-2.5-.032c-1.375-.018-14.316-6.916-28.758-15.33L0 176.734l.257-60.615.258-60.615Z\" fill=\"#1A2E53\"/><path d=\"M43.635 79.766c.891-.754 12.929-8 26.75-16.1 16.929-9.923 25.946-14.655 27.63-14.5 2.491.227 2.501.268 2.78 11.796.244 10.072.05 11.763-1.5 13.083-.979.833-8.642 5.457-17.03 10.275l-15.25 8.76v22.752c0 20.435.178 22.903 1.75 24.239.963.819 8.275 5.253 16.25 9.855s14.834 8.84 15.242 9.418c.408.577.633 16.976.5 36.441-.216 31.541-.42 35.504-1.881 36.425-1.284.81-3.885-.277-12-5.013l-10.361-6.046-.267-24.536-.268-24.537-14.232-8.237c-7.828-4.531-15.47-9.103-16.983-10.161l-2.75-1.922v-35.31c0-31.319.183-35.464 1.62-36.682Z\" fill=\"#1A2E53\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9x5fb\",\"data-framer-name\":\"Smartcat\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gohwo6\",\"data-framer-name\":\"Smartcat logo\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M104.913 7.08V5.59h3.534v14.802h-3.534V18.9c-1.503 1.739-4.341 1.786-6.367 1.046a7.39 7.39 0 0 1-3.57-2.775 7.414 7.414 0 0 1 .183-8.62 7.388 7.388 0 0 1 3.685-2.62c1.963-.626 4.633-.433 6.069 1.148Zm0 5.9a3.858 3.858 0 0 0-.888-2.436 3.846 3.846 0 0 0-4.788-.927 3.862 3.862 0 0 0-.303 6.6 3.841 3.841 0 0 0 4.853-.483 3.83 3.83 0 0 0 1.126-2.753Zm-91.128.504a6.918 6.918 0 0 1-1.96 4.99 6.893 6.893 0 0 1-4.931 2.083 6.88 6.88 0 0 1-4.933-2.082 6.909 6.909 0 0 1-1.959-4.99v-.138h3.533v.137a3.393 3.393 0 0 0 2.058 3.234 3.374 3.374 0 0 0 4.475-1.902c.163-.425.239-.877.223-1.332 0-1.911-1.177-2.906-2.948-3.375l-1.535-.393C4.45 9.287 3.453 8.992 2.534 7.8A4.848 4.848 0 0 1 3.8.736 4.825 4.825 0 0 1 6.349 0h4.857v3.54H6.35a1.318 1.318 0 0 0-1.32 1.322c0 1.015.892 1.259 1.709 1.475l1.177.319c3.44.893 5.87 3.08 5.87 6.828Zm36.6-6.404V5.59h3.533v14.802h-3.533V18.9c-1.504 1.739-4.342 1.786-6.368 1.046a7.39 7.39 0 0 1-3.57-2.775 7.414 7.414 0 0 1 .183-8.62 7.388 7.388 0 0 1 3.686-2.62c1.974-.626 4.632-.425 6.069 1.148Zm0 5.9a3.86 3.86 0 0 0-.889-2.436 3.845 3.845 0 0 0-4.787-.927 3.862 3.862 0 0 0-.303 6.6 3.841 3.841 0 0 0 4.852-.483 3.827 3.827 0 0 0 1.127-2.753Zm41.746 3.722a7.391 7.391 0 0 1-3.127 2.94 7.372 7.372 0 0 1-8.139-1.069 7.412 7.412 0 0 1 .374-11.436 7.375 7.375 0 0 1 8.191-.532 7.392 7.392 0 0 1 2.701 2.702l-3.058 1.774a3.827 3.827 0 0 0-1.405-1.416 3.841 3.841 0 0 0-5.563 2.103 3.862 3.862 0 0 0 1.105 4.135 3.843 3.843 0 0 0 5.867-.963l3.054 1.762ZM56.737 10.75v9.642h3.533v-9.7a1.6 1.6 0 0 1 1.594-1.613h3.42v-3.49h-3.412a5.126 5.126 0 0 0-3.637 1.513 5.146 5.146 0 0 0-1.498 3.649Zm-40.596 0v9.642h3.533v-9.44a1.718 1.718 0 0 1 .47-1.385 1.59 1.59 0 0 1 1.128-.465h1.825a1.568 1.568 0 0 1 1.483.982c.079.195.118.405.115.615v9.693h3.533v-9.708a1.576 1.576 0 0 1 .991-1.487 1.56 1.56 0 0 1 .619-.11h1.825a1.567 1.567 0 0 1 1.479.982c.079.195.118.404.115.615v9.708h3.533v-9.213a6.142 6.142 0 0 0-.251-2.041 5.155 5.155 0 0 0-3.62-3.391 5.486 5.486 0 0 0-1.264-.157h-1.688a5.1 5.1 0 0 0-3.49 1.267 5.15 5.15 0 0 0-3.392-1.267h-1.81a5.126 5.126 0 0 0-3.636 1.512 5.146 5.146 0 0 0-1.498 3.649Zm51.478-8.823h3.533V5.59h4.762v3.489h-4.758v6.152a1.6 1.6 0 0 0 .98 1.49c.195.08.403.123.614.123h3.533v3.54H72.75a5.13 5.13 0 0 1-3.631-1.507 5.15 5.15 0 0 1-1.504-3.638l.004-13.312Zm43.713 0h3.533V5.59h4.762v3.489h-4.758v6.152a1.609 1.609 0 0 0 .463 1.14 1.584 1.584 0 0 0 1.135.473H120v3.54h-3.533a5.13 5.13 0 0 1-3.631-1.507 5.15 5.15 0 0 1-1.504-3.638V1.927Z\" fill=\"#231D33\"/></svg>',transformTemplate:transformTemplate1,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qg85cr\",\"data-framer-name\":\"Cellublue\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:252,intrinsicWidth:1245,pixelHeight:252,pixelWidth:1245,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/wqWpfEYb5UWd8XqOhmwzDHeW0.svg\",srcSet:\"https://framerusercontent.com/images/wqWpfEYb5UWd8XqOhmwzDHeW0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/wqWpfEYb5UWd8XqOhmwzDHeW0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wqWpfEYb5UWd8XqOhmwzDHeW0.svg 1245w\"},className:\"framer-1e16avv\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:1115,pixelHeight:200,pixelWidth:1115,positionX:\"center\",positionY:\"center\",sizes:\"97.5652px\",src:\"https://framerusercontent.com/images/Pt6PA8vnmGsDXyAQJ3DjpatbMT4.svg\",srcSet:\"https://framerusercontent.com/images/Pt6PA8vnmGsDXyAQJ3DjpatbMT4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Pt6PA8vnmGsDXyAQJ3DjpatbMT4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Pt6PA8vnmGsDXyAQJ3DjpatbMT4.svg 1115w\"},className:\"framer-qirz9m\",\"data-framer-name\":\"JumpStory\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{\"data-framer-name\":\"Tablet\"},tvSQDcCfE:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-b1yjtd\",\"data-framer-name\":\"Section Bento/Bento 04\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-emen56\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1378v0s\",\"data-framer-name\":\"Headline\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLTcwMA==\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"What can Stylo do for you?\"})}),className:\"framer-19vazfh\",fonts:[\"GF;Atkinson Hyperlegible-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-srigbz\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1le225t\",\"data-framer-name\":\"Box 1\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"520px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uepgdm-container hidden-u8iyf3\",nodeId:\"vWoIvTpCz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MockupMockupBrowser2,{height:\"100%\",id:\"vWoIvTpCz\",layoutId:\"vWoIvTpCz\",style:{width:\"100%\"},variant:\"li9BNfWb2\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dtdn79\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLTcwMA==\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"Draft responses that perfectly match your brand voice\"})}),className:\"framer-103632e\",fonts:[\"GF;Atkinson Hyperlegible-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-6ce7e7c0-24ea-43ec-b60a-d28a5af14ab8, rgb(30, 32, 36))\"},children:\"We give you the control you need to make sure Stylo sounds like you.\"})}),className:\"framer-1ia8g41\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdd4dm\",\"data-framer-name\":\"Box 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ycj9so\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLTcwMA==\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"Integrations like Shopify to level up your responses\"})}),className:\"framer-1v84ncg\",fonts:[\"GF;Atkinson Hyperlegible-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-6ce7e7c0-24ea-43ec-b60a-d28a5af14ab8, rgb(30, 32, 36))\"},children:\"AI is only as good as the context it has. We offer a library of integrations allowing you to get the most from Stylo.\"})}),className:\"framer-zh8y6m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:111,intrinsicWidth:317,pixelHeight:444,pixelWidth:1268,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 20px) / 2, 100px) - 60px)`,src:\"https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp 1268w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:111,intrinsicWidth:317,pixelHeight:444,pixelWidth:1268,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 40px) / 3, 100px) - 60px)`,src:\"https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IA6V64YRXm9ydAyLngMjJo4AaM.webp 1268w\"},className:\"framer-1bet2l2 hidden-u8iyf3\",\"data-framer-name\":\"Group 28\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrs4p7\",\"data-framer-name\":\"Box 3\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4vhgf9 hidden-u8iyf3\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2zdwr6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"beZdx6yjq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-acce939b-d1bc-40fa-8605-fae4e9bce0b0, rgb(79, 59, 208))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"map-pin\",id:\"beZdx6yjq\",layoutId:\"beZdx6yjq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1amgeij hidden-u8iyf3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dlmf25-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SOkNgPIHr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-acce939b-d1bc-40fa-8605-fae4e9bce0b0, rgb(79, 59, 208))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"phone-call\",id:\"SOkNgPIHr\",layoutId:\"SOkNgPIHr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hfttxo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CqZw5uRxq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-acce939b-d1bc-40fa-8605-fae4e9bce0b0, rgb(79, 59, 208))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"user\",id:\"CqZw5uRxq\",layoutId:\"CqZw5uRxq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vx78s4\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLTcwMA==\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"Translate, score and summarize your calls with ease\"})}),className:\"framer-lu414y\",fonts:[\"GF;Atkinson Hyperlegible-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-fae910b1-58dd-4ef5-8c3c-a28d85da034c, rgb(123, 130, 142))\"},children:\"Use our Stylo Voice and Scores apps to make sure you're actioning your Zendesk tickets effectively\"})}),className:\"framer-btz52l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-190r1sc\",\"data-framer-name\":\"Box 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1973083\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLTcwMA==\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"Build an A+ knowledgebase with Scribe & Scorecard\"})}),className:\"framer-111rgir\",fonts:[\"GF;Atkinson Hyperlegible-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-6ce7e7c0-24ea-43ec-b60a-d28a5af14ab8, rgb(30, 32, 36))\"},children:\"Get a free monthly report on how well your Help Center is set up for use with AI. Then use Scribe, to draft, translate and improve your articles.\"})}),className:\"framer-dz27w4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tvSQDcCfE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+669.6+40+0+77.6+0+752.4000000000001+30+198.8),pixelHeight:549,pixelWidth:621,sizes:\"301px\",src:\"https://framerusercontent.com/images/VjnzAbzFRJmOoR18Jb3PBHfYuk.svg\",srcSet:\"https://framerusercontent.com/images/VjnzAbzFRJmOoR18Jb3PBHfYuk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VjnzAbzFRJmOoR18Jb3PBHfYuk.svg 621w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:549,pixelWidth:621,sizes:\"380px\",src:\"https://framerusercontent.com/images/VjnzAbzFRJmOoR18Jb3PBHfYuk.svg\",srcSet:\"https://framerusercontent.com/images/VjnzAbzFRJmOoR18Jb3PBHfYuk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VjnzAbzFRJmOoR18Jb3PBHfYuk.svg 621w\"},className:\"framer-jaueoj\",\"data-framer-name\":\"Radiant Smile_in_Yellow__1_-removebg\",transformTemplate:transformTemplate2})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pdodjs\",\"data-framer-name\":\"Testimonial Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vd0qwx\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18eg9v5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tvSQDcCfE:{background:{alt:\"Jen WIlliams of ShipHero\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2109.4+40+0+60+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"120px\",src:\"https://framerusercontent.com/images/j6nUqrzogGj65FvmNq2wY7PesI.png\",srcSet:\"https://framerusercontent.com/images/j6nUqrzogGj65FvmNq2wY7PesI.png?scale-down-to=512 512w,https://framerusercontent.com/images/j6nUqrzogGj65FvmNq2wY7PesI.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Jen WIlliams of ShipHero\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:800,pixelWidth:800,sizes:\"158px\",src:\"https://framerusercontent.com/images/j6nUqrzogGj65FvmNq2wY7PesI.png\",srcSet:\"https://framerusercontent.com/images/j6nUqrzogGj65FvmNq2wY7PesI.png?scale-down-to=512 512w,https://framerusercontent.com/images/j6nUqrzogGj65FvmNq2wY7PesI.png 800w\"},className:\"framer-vgyt0m\",\"data-border\":true,\"data-framer-name\":\"Avatar\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"\u201CI\u2019m able to better manage the team because I can pinpoint gaps in the team\u2019s knowledge or training, and find room for process improvements.\u201D\"})})},tvSQDcCfE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"\u201CI\u2019m able to better manage the team because I can pinpoint gaps in the team\u2019s knowledge or training, and find room for process improvements.\u201D\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QXRraW5zb24gSHlwZXJsZWdpYmxlLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Atkinson Hyperlegible\", \"Atkinson Hyperlegible Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"\u201CI\u2019m able to better manage the team because I can pinpoint gaps in the team\u2019s knowledge or training, and find room for process improvements.\u201D\"})}),className:\"framer-l8vg82\",fonts:[\"GF;Atkinson Hyperlegible-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ml8vn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-131yz57\",\"data-styles-preset\":\"sCwZO61iX\",children:\"Jen Williams, SVP of Customer Success, ShipHero\"})}),className:\"framer-qwjnnn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hbzzpv\",\"data-framer-name\":\"shiphero\",fill:\"black\",intrinsicHeight:389,intrinsicWidth:1330,svg:'<svg width=\"1330\" height=\"389\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M485.839 178.091v72h17v-76.726l4.867-4.553c7.76-7.259 14.077-9.996 24.265-10.515 12.336-.628 18.703 1.941 22.638 9.132 1.532 2.801 1.787 7.729 2.23 43.162l.5 40 8.3.291 8.3.291-.3-42.791c-.296-42.219-.331-42.858-2.599-47.791-4.807-10.452-13.745-16.098-27.2-17.181-12.08-.973-27.427 4.424-36.585 12.865l-4.416 4.071v-54.255h-17v72Zm297 0v72h34v-68.898l3.25-2.433c6.344-4.749 9.964-6.038 16.849-5.998 7.508.043 11.634 1.913 14.345 6.503 1.518 2.571 1.734 6.763 1.885 36.615l.171 33.711h33l.266-40c.251-37.682.15-40.386-1.751-46.66-2.595-8.563-8.182-14.589-16.597-17.898-4.76-1.872-7.875-2.335-15.918-2.366-12.317-.048-20.667 2.501-29.501 9.004l-5.999 4.416v-49.996h-34v72Zm470.001-67.526v4.526h9.94l.28 14.25.28 14.25 4.75.305 4.75.305v-29.005l5.25-.303 5.25-.302v-8l-15.25-.276-15.25-.276v4.526Zm35 14.526v19h10l.05-12.25.05-12.25 2.94 8c6.34 17.258 6.03 16.632 8.24 16.306 1.65-.244 2.94-2.643 6.34-11.806l4.26-11.5.31 11.5.31 11.5 4.75.305 4.75.305V106l-6.68.295-6.68.296-3.51 9.69c-1.93 5.33-3.78 9.527-4.1 9.328-.33-.2-2.12-4.673-4-9.94l-3.42-9.578h-13.61v19Zm-681.601-12.6c-3.851 3.851-4.412 7.742-1.834 12.728 1.86 3.597 7.467 6.243 11.397 5.38 1.516-.333 4.057-1.963 5.646-3.622 2.316-2.417 2.891-3.916 2.891-7.534 0-3.837-.491-4.955-3.266-7.434-4.782-4.273-10.257-4.095-14.834.482Zm-202.17 32.15c-6.879 1.852-10.464 3.763-15.362 8.188-5.336 4.821-8.028 10.388-8.626 17.838-.836 10.412 2.932 18.041 11.635 23.561 4.911 3.115 17.594 7.467 30.45 10.449 9.448 2.192 17.26 5.954 19.99 9.626 1.305 1.755 2.016 4.263 2.016 7.112 0 19.695-34.662 23.667-54.929 6.295l-4.096-3.512-4.074 5.903-4.073 5.903 3.795 3.428c5.959 5.384 12.077 8.511 21.133 10.801 10.67 2.698 27.064 2.224 36.316-1.051 13.761-4.871 21.565-14.985 21.585-27.975.013-8.588-1.587-13.377-6.235-18.657-5.231-5.942-13.391-9.661-30.661-13.97-17.522-4.373-21.429-5.909-24.598-9.676-1.869-2.221-2.496-4.121-2.496-7.561 0-4.122.451-5.027 4.385-8.796 5.416-5.19 11.741-6.966 22.006-6.178 9.264.711 17.277 3.797 23.05 8.879 2.555 2.249 4.785 3.921 4.954 3.716.17-.205 1.939-2.825 3.931-5.822l3.623-5.448-3.225-2.803c-4.388-3.816-16.072-9.368-22.523-10.703-7.243-1.499-21.581-1.267-27.971.453Zm288.532.337c-7.001 2.305-14.676 7.112-18.734 11.734l-3.028 3.449v-15.07h-17.013l.256 72.25.257 72.25 8.25.29 8.25.291v-54.986l5.009 5.009c14.157 14.157 38.82 16.366 55.394 4.963 14.035-9.656 21.01-25.448 21.01-47.567 0-25.07-8.575-41.528-26.164-50.221-7.027-3.473-8.287-3.76-17.658-4.01-7.759-.208-11.417.166-15.829 1.618Zm252.02-.334c-22.686 5.5-38.922 25.358-40.497 49.531-1.794 27.525 13.982 49.409 40.715 56.48 17.618 4.66 45.322-.097 57.381-9.854l2.88-2.331-6.809-9.94c-3.746-5.466-6.85-10.021-6.898-10.122-.048-.101-3.426 1.474-7.507 3.5-7.203 3.575-7.745 3.683-18.484 3.683-10.351 0-11.374-.183-15.891-2.838-4.594-2.7-10.672-10.308-10.672-13.358 0-1.049 7.246-1.304 37-1.304h37.001l-.02-8.75c-.04-27.347-15.068-48.398-39.112-54.797-6.702-1.784-21.527-1.733-29.087.1Zm138.439.418c-6.35 2.286-11.44 5.336-16.47 9.878l-3.75 3.384v-13.281l-16.75.274-16.75.274v105h33l.26-33.688.26-33.688 2.57-2.021c4.97-3.906 13.34-6.283 22.16-6.293l8.25-.01v-31.8l-3.75.036c-2.06.02-6.13.891-9.03 1.935Zm61.38-.377c-18.92 4.579-33.5 18.676-39.2 37.906-2.34 7.881-2.32 21.944.03 30 5.61 19.24 19.99 33.109 39.57 38.147 3.93 1.012 10.25 1.658 16 1.636 17.21-.067 30.07-5.129 41.07-16.168 13.65-13.698 18.88-33.269 13.99-52.359-2.78-10.869-6.41-17.314-14.11-25.008-7.26-7.268-14.76-11.461-25.41-14.209-7.43-1.919-23.9-1.89-31.94.055Zm-538.601 52.906v52.5h17v-105h-17v52.5Zm107.252-38.073c12.238 4.367 20.378 17.497 21.435 34.573 1.158 18.707-6.158 34.246-19.026 40.414-6.793 3.255-13.094 4.052-20.292 2.565-7.737-1.599-14.347-5.034-19.869-10.324l-4.5-4.312v-49.951l3.25-3.037c8.772-8.199 16.178-11.26 27.25-11.264 4.4-.002 9.688.599 11.752 1.336Zm257.584 11.003c4.113 2.148 7.936 6.671 9.581 11.334l1.494 4.236h-21.455c-14.924 0-21.456-.335-21.456-1.099 0-4.956 7.682-13.368 14.115-15.455 5.018-1.629 13.637-1.15 17.721.984Zm199.655 4.284c10.41 5.256 14.98 18.291 11.08 31.685-4.58 15.759-23.33 21.772-35.26 11.304-10.94-9.606-11.19-30.045-.48-40.096 5.69-5.345 17.13-6.688 24.66-2.893Z\" fill=\"#242E3A\"/><path d=\"m18.5 113.5 142-78.5L308 108l-3.5 168L165 355.5 22.5 276l-4-162.5Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M86.96 43.832C47.058 67.849 11.168 89.907 7.205 92.848L0 98.197l.255 95.626.255 95.626 67 40.783c36.85 22.431 72.941 44.605 80.201 49.276 20.209 13 13.842 14.779 72.588-20.28 26.516-15.825 62.701-37.313 80.41-47.75l32.2-18.978.05-98.616.051-98.616-79.984-47.634L173.041 0l-6.765.082-6.766.081-72.55 43.669Zm73.05 9.998c-7.905 2.621-47.043 24.709-89.909 50.742-24.505 14.882-32.42 26.812-27.566 41.547 1.374 4.172 3.267 6.842 8.421 11.881 5.408 5.287 11.68 9.414 33.602 22.107l67.952 39.354c40.43 23.416 54.596 32.843 52.5 34.939-.566.566-9.662 6.283-20.215 12.705-17.27 10.511-19.392 11.549-21.236 10.388C158.715 274.446 42.959 208 42.494 208c-.283 0-.395 13.1-.249 29.111l.265 29.111 35.5 20.674c36.006 20.969 69.103 39.671 78.87 44.567 9.24 4.632 13.221 3.372 44.13-13.968 23.369-13.11 65.961-38.611 73.788-44.178 12.45-8.855 18.599-20.366 16.207-30.339-1.591-6.63-6.036-13.055-12.678-18.324-3.031-2.405-16.38-10.598-29.664-18.207-13.284-7.609-32.928-19.003-43.653-25.319a21768.648 21768.648 0 0 0-42.464-24.921c-24.734-14.474-36.323-22.884-34.245-24.854 1.975-1.873 38.121-23.651 39.209-23.623.55.014 14.275 7.779 30.5 17.257 43.598 25.467 89.436 51.859 91.335 52.588 1.53.587 1.665-1.716 1.665-28.343V120.25l-38.75-22.525c-55.056-32.003-78.579-44.844-83.016-45.319-2.054-.22-6.209.421-9.234 1.424Z\" fill=\"#F05353\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xa5680\",\"data-styles-preset\":\"utJdHMlM8\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"E5PWERpId\"},motionChild:true,nodeId:\"qWR5lxQ4U\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p1wajg\",\"data-styles-preset\":\"GyHpqTzQT\",children:\"Check out our case studies \u2192\"})})})}),className:\"framer-11i4002\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7sol94\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r8oyao\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-885yeo\",\"data-styles-preset\":\"SyMjS2tCC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b94791b-2d7e-45f3-a3f7-dc460100194a, rgb(39, 34, 71))\"},children:\"Priced right for your team.\"})}),className:\"framer-145akor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-v1wq70\",\"data-styles-preset\":\"oQUxgJaHb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-acce939b-d1bc-40fa-8605-fae4e9bce0b0, rgb(79, 59, 208))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, var(--token-acce939b-d1bc-40fa-8605-fae4e9bce0b0, rgb(79, 59, 208)) 0%, var(--token-8c4ef137-c729-4072-9b6b-643c77d304f6, rgb(200, 18, 203)) 100%)\"},children:\"Starts at $15/agent per month.\"})})}),className:\"framer-1ry6xrp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-to9stp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xa5680\",\"data-styles-preset\":\"utJdHMlM8\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tShonOd75\"},motionChild:true,nodeId:\"EfsBkTzJ8\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p1wajg\",\"data-styles-preset\":\"GyHpqTzQT\",children:\"See pricing details \u2192\"})})})}),className:\"framer-11nkkue\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5lxeb9\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7mlyv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8fc57649-60dc-4076-a953-d85b6526b096, rgb(145, 145, 151))\"},children:\"CUSTOMERS LOVE STYLO'S ZENDESK AI ASSISTANT\"})}),className:\"framer-1jyjf2t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jdpin\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h4ua0s\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bmsai0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nrn7ml\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mnld61-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PhI5X1hhZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"PhI5X1hhZ\",layoutId:\"PhI5X1hhZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-141v1p1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KvOZgr8UA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"KvOZgr8UA\",layoutId:\"KvOZgr8UA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eu6n9l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"g4zPHfqgq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"g4zPHfqgq\",layoutId:\"g4zPHfqgq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t92tnp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VX4jsHKAo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"VX4jsHKAo\",layoutId:\"VX4jsHKAo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zckxcw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Qi13K09KR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Qi13K09KR\",layoutId:\"Qi13K09KR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v3k80j\",\"data-styles-preset\":\"CknQ4q0P7\",children:\"Stylo was a game-changer for our Fulfillment Support! It makes everything easier and help us to express it better than we can, allowing us to focus in the important: our customers. I used to use ChatGPT to re-write some answer but this is next level.\"})}),className:\"framer-1rcn8nj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19dcbgz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xhmosj\",\"data-styles-preset\":\"o8HjNvuSz\",children:\"Nicolas Garcia\"})}),className:\"framer-hkqfgq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gupv0p\",\"data-styles-preset\":\"rtynI7ibA\",children:\"Zendesk\"})}),className:\"framer-1oa19xr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13k7ebb hidden-u8iyf3\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ax3g54\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lq0mem\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-grwwkm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZrXnelVzl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ZrXnelVzl\",layoutId:\"ZrXnelVzl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wjb81v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"P_muOC4rI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"P_muOC4rI\",layoutId:\"P_muOC4rI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-exxsa0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ggfevTwEG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ggfevTwEG\",layoutId:\"ggfevTwEG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7n4ook-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hkyzg1RKE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"hkyzg1RKE\",layoutId:\"hkyzg1RKE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17sxqdz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s1qxKrtmT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"s1qxKrtmT\",layoutId:\"s1qxKrtmT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v3k80j\",\"data-styles-preset\":\"CknQ4q0P7\",children:\"We researched all the alternatives we could find and Stylo is significantly ahead of their competition. They are constantly improving the app with new features.\"})}),className:\"framer-j9o89b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1osj1bt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xhmosj\",\"data-styles-preset\":\"o8HjNvuSz\",children:\"Popcard\"})}),className:\"framer-19i1bad\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gupv0p\",\"data-styles-preset\":\"rtynI7ibA\",children:\"Zendesk\"})}),className:\"framer-ukcdh8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ain10\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eg0o0q\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c858kg\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17nugn4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ikhb2mwml\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ikhb2mwml\",layoutId:\"ikhb2mwml\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9wvtg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hwxkvKwZU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"hwxkvKwZU\",layoutId:\"hwxkvKwZU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hdqipn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MbD8y8bDj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"MbD8y8bDj\",layoutId:\"MbD8y8bDj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n6mbzl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zeb7y6JT7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Zeb7y6JT7\",layoutId:\"Zeb7y6JT7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vci8fx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"abFt0ooGJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"abFt0ooGJ\",layoutId:\"abFt0ooGJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v3k80j\",\"data-styles-preset\":\"CknQ4q0P7\",children:\"Worth every penny for us - it's the only AI that performs this well at this price point. Glad to see companies focusing products and pricing for smaller companies like ours!\"})}),className:\"framer-1clf413\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-77tlxk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xhmosj\",\"data-styles-preset\":\"o8HjNvuSz\",children:\"Anonymous\"})}),className:\"framer-7b2sni\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gupv0p\",\"data-styles-preset\":\"rtynI7ibA\",children:\"Zendesk\"})}),className:\"framer-oce28\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jpmh2i\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vs3zr7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jir5zu\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v9plbd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zJVEhAG3N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"zJVEhAG3N\",layoutId:\"zJVEhAG3N\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b9vgda-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"niMgGxC9l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"niMgGxC9l\",layoutId:\"niMgGxC9l\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qnpjk4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T3X2PCcED\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"T3X2PCcED\",layoutId:\"T3X2PCcED\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lkgehc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dEha1KwkF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"dEha1KwkF\",layoutId:\"dEha1KwkF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dy3uje-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PxFlrWJKb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"PxFlrWJKb\",layoutId:\"PxFlrWJKb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v3k80j\",\"data-styles-preset\":\"CknQ4q0P7\",children:'Stylo has been such a helpful tool for my team. We mostly use the \"use my input\" feature to save us the time of writing out a whole response and it\\'s had such a positive impact on our time spent on tickets. My team said they would mutiny if we took this away from them, which is about as good of a review as an app can get.'})}),className:\"framer-v1yxuw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-171lvgt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xhmosj\",\"data-styles-preset\":\"o8HjNvuSz\",children:\"Reda\"})}),className:\"framer-23zlbx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gupv0p\",\"data-styles-preset\":\"rtynI7ibA\",children:\"Zendesk\"})}),className:\"framer-1v407e6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wq59ac hidden-u8iyf3\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-royhan\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1460j50\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h7itoy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GcX36dS8_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"GcX36dS8_\",layoutId:\"GcX36dS8_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bn6rru-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nOitNDysa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"nOitNDysa\",layoutId:\"nOitNDysa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kcridk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qvILpcAEC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"qvILpcAEC\",layoutId:\"qvILpcAEC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a2h3jh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QeubYRd7O\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"QeubYRd7O\",layoutId:\"QeubYRd7O\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sxey1q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cXcTk8oAW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"cXcTk8oAW\",layoutId:\"cXcTk8oAW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v3k80j\",\"data-styles-preset\":\"CknQ4q0P7\",children:\"Using Stylo everyday makes your work extremely efficient while giving insightful responses and elevating your workflow. It is great to see our feedback reflected on every new update.\"})}),className:\"framer-ea58xf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysys4v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xhmosj\",\"data-styles-preset\":\"o8HjNvuSz\",children:\"Ricardo Cordoba\"})}),className:\"framer-gnximb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gupv0p\",\"data-styles-preset\":\"rtynI7ibA\",children:\"Zendesk\"})}),className:\"framer-121871y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vhfcto\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1auh09i\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pc0eqo\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ha3h5t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Hn2ECzMbs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Hn2ECzMbs\",layoutId:\"Hn2ECzMbs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y2o2d1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mmY2eXFSK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"mmY2eXFSK\",layoutId:\"mmY2eXFSK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mc3grd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qfqLyhtBu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"qfqLyhtBu\",layoutId:\"qfqLyhtBu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pq4ffn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WjCKr4tAd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"WjCKr4tAd\",layoutId:\"WjCKr4tAd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-147aodt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cWTW8LcSO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(237, 203, 33)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"cWTW8LcSO\",layoutId:\"cWTW8LcSO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v3k80j\",\"data-styles-preset\":\"CknQ4q0P7\",children:\"The Stylo Integration with ChatGPT has been a game changer! It has helped streamline our process, reduce SLA time responses, and give more sentiment to our replies to improve the customer experience. I highly recommend it.\"})}),className:\"framer-ztglj1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxhq9a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xhmosj\",\"data-styles-preset\":\"o8HjNvuSz\",children:\"Fernanda Sanmiguel\"})}),className:\"framer-1q9689j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gupv0p\",\"data-styles-preset\":\"rtynI7ibA\",children:\"Zendesk\"})}),className:\"framer-1g63w8s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xa5680\",\"data-styles-preset\":\"utJdHMlM8\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.zendesk.com/marketplace/apps/support/849231/stylo-assist--openai/\",motionChild:true,nodeId:\"GasGlAiP9\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p1wajg\",\"data-styles-preset\":\"GyHpqTzQT\",children:\"See the reviews for yourself \u2192\"})})})}),className:\"framer-1naopra\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sszhzb\",\"data-framer-name\":\"Download\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tvSQDcCfE:{y:(componentViewport?.y||0)+0+5191.799999999999+25+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:460,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13spyfa-container\",nodeId:\"Ird8puvY_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{variant:\"o2DivFRwm\"},tvSQDcCfE:{variant:\"h2YRI6Fly\"}},children:/*#__PURE__*/_jsx(FreeTrial,{height:\"100%\",id:\"Ird8puvY_\",jOvCu1tVO:\"See what Stylo can do for you\",layoutId:\"Ird8puvY_\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ycSsMqaOU\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tvSQDcCfE:{y:(componentViewport?.y||0)+0+5701.799999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e5qiwk-container\",nodeId:\"HDGsiS9mG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hIKxv135W:{variant:\"FiM_EW6zZ\"},tvSQDcCfE:{variant:\"Dy0_p88u1\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"HDGsiS9mG\",layoutId:\"HDGsiS9mG\",style:{width:\"100%\"},variant:\"XBaFTdufh\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Za1gy.framer-lux5qc, .framer-Za1gy .framer-lux5qc { display: block; }\",\".framer-Za1gy.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, #fef9f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Za1gy .framer-yri3j9-container, .framer-Za1gy .framer-1e5qiwk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Za1gy .framer-spoh1v { align-content: center; align-items: center; background-color: var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, #fef9f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 25px 30px 25px 30px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-zic3a9 { align-content: center; align-items: center; background-color: var(--token-3f340655-80a8-42eb-8fcd-f8cf6ec57f37, #f3eeff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px; position: relative; width: 1px; }\",\".framer-Za1gy .framer-1f3ur07 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Za1gy .framer-19dccia, .framer-Za1gy .framer-1mbh78t, .framer-Za1gy .framer-19vazfh, .framer-Za1gy .framer-103632e, .framer-Za1gy .framer-1v84ncg, .framer-Za1gy .framer-lu414y, .framer-Za1gy .framer-btz52l, .framer-Za1gy .framer-111rgir { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Za1gy .framer-17jmwhf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Za1gy .framer-fv5f1m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Za1gy .framer-yzh73a { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Za1gy .framer-1bpsg03 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-Za1gy .framer-pwjjyb { align-content: center; align-items: center; background-color: var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, #fef9f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-1k4w5sn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-138yw5d, .framer-Za1gy .framer-1jyjf2t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Za1gy .framer-f8rwgl-container { flex: none; height: 90px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-1d6gopo, .framer-Za1gy .framer-1xvs405, .framer-Za1gy .framer-1sx7nf4, .framer-Za1gy .framer-1uwp64y, .framer-Za1gy .framer-1yd00w3, .framer-Za1gy .framer-1232cal, .framer-Za1gy .framer-12r5bfu, .framer-Za1gy .framer-86pgqg, .framer-Za1gy .framer-eo0qwn, .framer-Za1gy .framer-jcdiks, .framer-Za1gy .framer-bt8non, .framer-Za1gy .framer-a3mbes, .framer-Za1gy .framer-t1qc52, .framer-Za1gy .framer-1b4x6p4, .framer-Za1gy .framer-1wejlq9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Za1gy .framer-r8awkd { aspect-ratio: 3.6607142857142856 / 1; flex: none; height: 26px; position: relative; width: var(--framer-aspect-ratio-supported, 95px); }\",\".framer-Za1gy .framer-1tal9h9 { flex: none; height: 24px; position: relative; width: 98px; }\",\".framer-Za1gy .framer-3bz377 { aspect-ratio: 3.4190231362467864 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 106px; }\",\".framer-Za1gy .framer-nsyixg { height: 24px; overflow: hidden; position: relative; width: 89px; }\",\".framer-Za1gy .framer-177rnr5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); left: -4px; position: absolute; right: -3px; top: -36px; }\",\".framer-Za1gy .framer-7eh801 { aspect-ratio: 6.611111111111111 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 113px; }\",\".framer-Za1gy .framer-8p45y8 { aspect-ratio: 1.95 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 78px; }\",\".framer-Za1gy .framer-upw0oj { height: 14px; overflow: hidden; position: relative; width: 142px; }\",\".framer-Za1gy .framer-1edtb7m { aspect-ratio: 10.135135135135135 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Za1gy .framer-7kix03 { flex: none; height: 20px; position: relative; width: 96px; }\",\".framer-Za1gy .framer-r8j7a2 { aspect-ratio: 5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 130px; }\",\".framer-Za1gy .framer-2835lc { aspect-ratio: 3.739251040221914 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 97px; }\",\".framer-Za1gy .framer-1s3kztg { aspect-ratio: 4.441860465116279 / 1; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 87px; }\",\".framer-Za1gy .framer-1js3q2p { aspect-ratio: 4.702222222222222 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 94px; }\",\".framer-Za1gy .framer-1exf91h { aspect-ratio: 5.604651162790698 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 95px; }\",\".framer-Za1gy .framer-1ut3z6r { aspect-ratio: 5.2481203007518795 / 1; flex: none; height: 18px; position: relative; width: var(--framer-aspect-ratio-supported, 94px); }\",\".framer-Za1gy .framer-ksrwfu { aspect-ratio: 6.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 96px; }\",\".framer-Za1gy .framer-t3va58 { aspect-ratio: 2.748407643312102 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 96px; }\",\".framer-Za1gy .framer-11hmssb { aspect-ratio: 3.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 97px; }\",\".framer-Za1gy .framer-l6m9x7 { aspect-ratio: 5.843081312410842 / 1; flex: none; height: 16px; position: relative; width: var(--framer-aspect-ratio-supported, 93px); }\",\".framer-Za1gy .framer-d3xuth { height: 27px; overflow: hidden; position: relative; width: 109px; }\",\".framer-Za1gy .framer-1m425za { aspect-ratio: 4.052631578947368 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Za1gy .framer-1syqm0s { height: 22px; overflow: hidden; position: relative; width: 94px; }\",\".framer-Za1gy .framer-gd2s9m { aspect-ratio: 4.291845493562231 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Za1gy .framer-1o9x5fb { height: 31px; overflow: hidden; position: relative; width: 98px; }\",\".framer-Za1gy .framer-1gohwo6 { aspect-ratio: 5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 50%; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 90px; }\",\".framer-Za1gy .framer-qg85cr { height: 21px; overflow: hidden; position: relative; width: 96px; }\",\".framer-Za1gy .framer-1e16avv { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; opacity: 0.75; overflow: hidden; position: absolute; right: 0px; top: -6px; }\",\".framer-Za1gy .framer-qirz9m { aspect-ratio: 2.9565217391304346 / 1; height: var(--framer-aspect-ratio-supported, 33px); opacity: 0.75; overflow: hidden; position: relative; width: 96px; }\",'.framer-Za1gy .framer-b1yjtd { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, #fef9f5) /* {\"name\":\"warm-50\"} */ 0%, rgba(136, 86, 255, 0.4) 80.18018018018017%, var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, rgb(254, 249, 245)) /* {\"name\":\"warm-50\"} */ 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 30px 80px 30px; position: relative; width: 100%; }',\".framer-Za1gy .framer-emen56 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Za1gy .framer-1378v0s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-srigbz { display: grid; flex: none; gap: 20px; grid-auto-rows: 400px; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, 400px); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-1le225t { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-b6fa3b25-f291-4250-947a-8c5a6d43a845, #fdf2e3); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: auto / span 2; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Za1gy .framer-1uepgdm-container { bottom: 22px; flex: none; height: auto; position: absolute; right: -111px; width: 520px; z-index: 1; }\",\".framer-Za1gy .framer-dtdn79 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 44%; z-index: 2; }\",\".framer-Za1gy .framer-1ia8g41, .framer-Za1gy .framer-zh8y6m, .framer-Za1gy .framer-dz27w4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Za1gy .framer-fdd4dm { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #f1fff2; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Za1gy .framer-ycj9so, .framer-Za1gy .framer-1vx78s4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-1bet2l2 { aspect-ratio: 2.855855855855856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); left: 30px; overflow: visible; position: absolute; right: 30px; top: 30px; z-index: 1; }\",\".framer-Za1gy .framer-1xrs4p7 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-3f340655-80a8-42eb-8fcd-f8cf6ec57f37, #f3eeff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Za1gy .framer-4vhgf9, .framer-Za1gy .framer-1amgeij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-2zdwr6-container, .framer-Za1gy .framer-1dlmf25-container, .framer-Za1gy .framer-1hfttxo-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-Za1gy .framer-190r1sc { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffc2b3; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: auto / span 2; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Za1gy .framer-1973083 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; z-index: 2; }\",\".framer-Za1gy .framer-jaueoj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 380px); overflow: visible; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: 380px; z-index: 1; }\",'.framer-Za1gy .framer-pdodjs { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, #fef9f5) /* {\"name\":\"warm-50\"} */ 0%, var(--token-3f340655-80a8-42eb-8fcd-f8cf6ec57f37, rgb(243, 238, 255)) /* {\"name\":\"purple-50\"} */ 53.53827949042793%, var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, rgb(254, 249, 245)) /* {\"name\":\"warm-50\"} */ 101.35135135135135%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 120px 30px 120px; position: relative; width: 100%; }',\".framer-Za1gy .framer-1vd0qwx { --border-bottom-width: 1px; --border-color: var(--token-a0ff7b9b-919b-4e00-91f5-5c425f98b981, #e5dddd); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-18eg9v5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-vgyt0m { --border-bottom-width: 1px; --border-color: var(--token-576df9d7-cdc9-4025-9ac2-b496ecc91fad, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 158px); overflow: hidden; position: relative; width: 158px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Za1gy .framer-l8vg82, .framer-Za1gy .framer-qwjnnn, .framer-Za1gy .framer-11i4002, .framer-Za1gy .framer-145akor, .framer-Za1gy .framer-1ry6xrp, .framer-Za1gy .framer-11nkkue, .framer-Za1gy .framer-1rcn8nj, .framer-Za1gy .framer-j9o89b, .framer-Za1gy .framer-1clf413, .framer-Za1gy .framer-v1yxuw, .framer-Za1gy .framer-ea58xf, .framer-Za1gy .framer-ztglj1, .framer-Za1gy .framer-1naopra { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Za1gy .framer-5ml8vn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-1hbzzpv { aspect-ratio: 3.4190231362467864 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); position: relative; width: 215px; }\",'.framer-Za1gy .framer-7sol94 { align-content: center; align-items: center; background: radial-gradient(50% 50% at 50% 50%, var(--token-28356d99-aefa-4a3c-97e7-eacc1990714b, #ffeefd) /* {\"name\":\"pink-50\"} */ 0%, var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, rgb(254, 249, 245)) /* {\"name\":\"warm-50\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 100%; }',\".framer-Za1gy .framer-1r8oyao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-to9stp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-Za1gy .framer-5lxeb9 { align-content: center; align-items: center; background: radial-gradient(50% 50% at 50% 50%, var(--token-3f340655-80a8-42eb-8fcd-f8cf6ec57f37, #f3eeff) /* {\"name\":\"purple-50\"} */ 0%, var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, rgb(254, 249, 245)) /* {\"name\":\"warm-50\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 100%; }',\".framer-Za1gy .framer-7mlyv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-5jdpin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-1h4ua0s, .framer-Za1gy .framer-13k7ebb, .framer-Za1gy .framer-6ain10, .framer-Za1gy .framer-jpmh2i, .framer-Za1gy .framer-wq59ac, .framer-Za1gy .framer-vhfcto { --border-bottom-width: 1px; --border-color: var(--token-a0ff7b9b-919b-4e00-91f5-5c425f98b981, #e5dddd); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.9); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 15px 0px rgba(229, 221, 221, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 45%; }\",\".framer-Za1gy .framer-bmsai0, .framer-Za1gy .framer-ax3g54, .framer-Za1gy .framer-1eg0o0q, .framer-Za1gy .framer-1vs3zr7, .framer-Za1gy .framer-royhan, .framer-Za1gy .framer-1auh09i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-1nrn7ml, .framer-Za1gy .framer-lq0mem, .framer-Za1gy .framer-c858kg, .framer-Za1gy .framer-1jir5zu, .framer-Za1gy .framer-1460j50, .framer-Za1gy .framer-pc0eqo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Za1gy .framer-mnld61-container, .framer-Za1gy .framer-141v1p1-container, .framer-Za1gy .framer-eu6n9l-container, .framer-Za1gy .framer-t92tnp-container, .framer-Za1gy .framer-zckxcw-container, .framer-Za1gy .framer-grwwkm-container, .framer-Za1gy .framer-1wjb81v-container, .framer-Za1gy .framer-exxsa0-container, .framer-Za1gy .framer-7n4ook-container, .framer-Za1gy .framer-17sxqdz-container, .framer-Za1gy .framer-17nugn4-container, .framer-Za1gy .framer-s9wvtg-container, .framer-Za1gy .framer-hdqipn-container, .framer-Za1gy .framer-1n6mbzl-container, .framer-Za1gy .framer-vci8fx-container, .framer-Za1gy .framer-v9plbd-container, .framer-Za1gy .framer-b9vgda-container, .framer-Za1gy .framer-qnpjk4-container, .framer-Za1gy .framer-1lkgehc-container, .framer-Za1gy .framer-dy3uje-container, .framer-Za1gy .framer-1h7itoy-container, .framer-Za1gy .framer-bn6rru-container, .framer-Za1gy .framer-1kcridk-container, .framer-Za1gy .framer-a2h3jh-container, .framer-Za1gy .framer-1sxey1q-container, .framer-Za1gy .framer-1ha3h5t-container, .framer-Za1gy .framer-1y2o2d1-container, .framer-Za1gy .framer-1mc3grd-container, .framer-Za1gy .framer-1pq4ffn-container, .framer-Za1gy .framer-147aodt-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-Za1gy .framer-19dcbgz, .framer-Za1gy .framer-1osj1bt, .framer-Za1gy .framer-77tlxk, .framer-Za1gy .framer-171lvgt, .framer-Za1gy .framer-ysys4v, .framer-Za1gy .framer-sxhq9a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-hkqfgq, .framer-Za1gy .framer-1oa19xr, .framer-Za1gy .framer-19i1bad, .framer-Za1gy .framer-ukcdh8, .framer-Za1gy .framer-7b2sni, .framer-Za1gy .framer-oce28, .framer-Za1gy .framer-23zlbx, .framer-Za1gy .framer-1v407e6, .framer-Za1gy .framer-gnximb, .framer-Za1gy .framer-121871y, .framer-Za1gy .framer-1q9689j, .framer-Za1gy .framer-1g63w8s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Za1gy .framer-1sszhzb { align-content: center; align-items: center; background-color: var(--token-60dd1599-7328-45b8-bb8d-d0ba9b0e1ded, #fef9f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 25px 30px 25px 30px; position: relative; width: 100%; }\",\".framer-Za1gy .framer-13spyfa-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Za1gy.framer-72rtr7, .framer-Za1gy .framer-spoh1v, .framer-Za1gy .framer-zic3a9, .framer-Za1gy .framer-1f3ur07, .framer-Za1gy .framer-17jmwhf, .framer-Za1gy .framer-yzh73a, .framer-Za1gy .framer-pwjjyb, .framer-Za1gy .framer-1k4w5sn, .framer-Za1gy .framer-1d6gopo, .framer-Za1gy .framer-1xvs405, .framer-Za1gy .framer-1sx7nf4, .framer-Za1gy .framer-1uwp64y, .framer-Za1gy .framer-1yd00w3, .framer-Za1gy .framer-1232cal, .framer-Za1gy .framer-12r5bfu, .framer-Za1gy .framer-86pgqg, .framer-Za1gy .framer-eo0qwn, .framer-Za1gy .framer-jcdiks, .framer-Za1gy .framer-bt8non, .framer-Za1gy .framer-a3mbes, .framer-Za1gy .framer-t1qc52, .framer-Za1gy .framer-1b4x6p4, .framer-Za1gy .framer-1wejlq9, .framer-Za1gy .framer-b1yjtd, .framer-Za1gy .framer-emen56, .framer-Za1gy .framer-1378v0s, .framer-Za1gy .framer-1le225t, .framer-Za1gy .framer-dtdn79, .framer-Za1gy .framer-fdd4dm, .framer-Za1gy .framer-ycj9so, .framer-Za1gy .framer-1xrs4p7, .framer-Za1gy .framer-4vhgf9, .framer-Za1gy .framer-1amgeij, .framer-Za1gy .framer-1vx78s4, .framer-Za1gy .framer-190r1sc, .framer-Za1gy .framer-1973083, .framer-Za1gy .framer-pdodjs, .framer-Za1gy .framer-1vd0qwx, .framer-Za1gy .framer-18eg9v5, .framer-Za1gy .framer-5ml8vn, .framer-Za1gy .framer-7sol94, .framer-Za1gy .framer-1r8oyao, .framer-Za1gy .framer-to9stp, .framer-Za1gy .framer-5lxeb9, .framer-Za1gy .framer-7mlyv, .framer-Za1gy .framer-5jdpin, .framer-Za1gy .framer-1h4ua0s, .framer-Za1gy .framer-bmsai0, .framer-Za1gy .framer-1nrn7ml, .framer-Za1gy .framer-19dcbgz, .framer-Za1gy .framer-13k7ebb, .framer-Za1gy .framer-ax3g54, .framer-Za1gy .framer-lq0mem, .framer-Za1gy .framer-1osj1bt, .framer-Za1gy .framer-6ain10, .framer-Za1gy .framer-1eg0o0q, .framer-Za1gy .framer-c858kg, .framer-Za1gy .framer-77tlxk, .framer-Za1gy .framer-jpmh2i, .framer-Za1gy .framer-1vs3zr7, .framer-Za1gy .framer-1jir5zu, .framer-Za1gy .framer-171lvgt, .framer-Za1gy .framer-wq59ac, .framer-Za1gy .framer-royhan, .framer-Za1gy .framer-1460j50, .framer-Za1gy .framer-ysys4v, .framer-Za1gy .framer-vhfcto, .framer-Za1gy .framer-1auh09i, .framer-Za1gy .framer-pc0eqo, .framer-Za1gy .framer-sxhq9a, .framer-Za1gy .framer-1sszhzb { gap: 0px; } .framer-Za1gy.framer-72rtr7 > *, .framer-Za1gy .framer-18eg9v5 > *, .framer-Za1gy .framer-19dcbgz > *, .framer-Za1gy .framer-1osj1bt > *, .framer-Za1gy .framer-77tlxk > *, .framer-Za1gy .framer-171lvgt > *, .framer-Za1gy .framer-ysys4v > *, .framer-Za1gy .framer-sxhq9a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Za1gy.framer-72rtr7 > :first-child, .framer-Za1gy .framer-1f3ur07 > :first-child, .framer-Za1gy .framer-pwjjyb > :first-child, .framer-Za1gy .framer-1k4w5sn > :first-child, .framer-Za1gy .framer-emen56 > :first-child, .framer-Za1gy .framer-1378v0s > :first-child, .framer-Za1gy .framer-1le225t > :first-child, .framer-Za1gy .framer-dtdn79 > :first-child, .framer-Za1gy .framer-fdd4dm > :first-child, .framer-Za1gy .framer-ycj9so > :first-child, .framer-Za1gy .framer-1xrs4p7 > :first-child, .framer-Za1gy .framer-1vx78s4 > :first-child, .framer-Za1gy .framer-190r1sc > :first-child, .framer-Za1gy .framer-1973083 > :first-child, .framer-Za1gy .framer-pdodjs > :first-child, .framer-Za1gy .framer-1vd0qwx > :first-child, .framer-Za1gy .framer-18eg9v5 > :first-child, .framer-Za1gy .framer-5ml8vn > :first-child, .framer-Za1gy .framer-7sol94 > :first-child, .framer-Za1gy .framer-1r8oyao > :first-child, .framer-Za1gy .framer-to9stp > :first-child, .framer-Za1gy .framer-5lxeb9 > :first-child, .framer-Za1gy .framer-7mlyv > :first-child, .framer-Za1gy .framer-1h4ua0s > :first-child, .framer-Za1gy .framer-19dcbgz > :first-child, .framer-Za1gy .framer-13k7ebb > :first-child, .framer-Za1gy .framer-1osj1bt > :first-child, .framer-Za1gy .framer-6ain10 > :first-child, .framer-Za1gy .framer-77tlxk > :first-child, .framer-Za1gy .framer-jpmh2i > :first-child, .framer-Za1gy .framer-171lvgt > :first-child, .framer-Za1gy .framer-wq59ac > :first-child, .framer-Za1gy .framer-ysys4v > :first-child, .framer-Za1gy .framer-vhfcto > :first-child, .framer-Za1gy .framer-sxhq9a > :first-child, .framer-Za1gy .framer-1sszhzb > :first-child { margin-top: 0px; } .framer-Za1gy.framer-72rtr7 > :last-child, .framer-Za1gy .framer-1f3ur07 > :last-child, .framer-Za1gy .framer-pwjjyb > :last-child, .framer-Za1gy .framer-1k4w5sn > :last-child, .framer-Za1gy .framer-emen56 > :last-child, .framer-Za1gy .framer-1378v0s > :last-child, .framer-Za1gy .framer-1le225t > :last-child, .framer-Za1gy .framer-dtdn79 > :last-child, .framer-Za1gy .framer-fdd4dm > :last-child, .framer-Za1gy .framer-ycj9so > :last-child, .framer-Za1gy .framer-1xrs4p7 > :last-child, .framer-Za1gy .framer-1vx78s4 > :last-child, .framer-Za1gy .framer-190r1sc > :last-child, .framer-Za1gy .framer-1973083 > :last-child, .framer-Za1gy .framer-pdodjs > :last-child, .framer-Za1gy .framer-1vd0qwx > :last-child, .framer-Za1gy .framer-18eg9v5 > :last-child, .framer-Za1gy .framer-5ml8vn > :last-child, .framer-Za1gy .framer-7sol94 > :last-child, .framer-Za1gy .framer-1r8oyao > :last-child, .framer-Za1gy .framer-to9stp > :last-child, .framer-Za1gy .framer-5lxeb9 > :last-child, .framer-Za1gy .framer-7mlyv > :last-child, .framer-Za1gy .framer-1h4ua0s > :last-child, .framer-Za1gy .framer-19dcbgz > :last-child, .framer-Za1gy .framer-13k7ebb > :last-child, .framer-Za1gy .framer-1osj1bt > :last-child, .framer-Za1gy .framer-6ain10 > :last-child, .framer-Za1gy .framer-77tlxk > :last-child, .framer-Za1gy .framer-jpmh2i > :last-child, .framer-Za1gy .framer-171lvgt > :last-child, .framer-Za1gy .framer-wq59ac > :last-child, .framer-Za1gy .framer-ysys4v > :last-child, .framer-Za1gy .framer-vhfcto > :last-child, .framer-Za1gy .framer-sxhq9a > :last-child, .framer-Za1gy .framer-1sszhzb > :last-child { margin-bottom: 0px; } .framer-Za1gy .framer-spoh1v > *, .framer-Za1gy .framer-b1yjtd > *, .framer-Za1gy .framer-5jdpin > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Za1gy .framer-spoh1v > :first-child, .framer-Za1gy .framer-zic3a9 > :first-child, .framer-Za1gy .framer-17jmwhf > :first-child, .framer-Za1gy .framer-yzh73a > :first-child, .framer-Za1gy .framer-1d6gopo > :first-child, .framer-Za1gy .framer-1xvs405 > :first-child, .framer-Za1gy .framer-1sx7nf4 > :first-child, .framer-Za1gy .framer-1uwp64y > :first-child, .framer-Za1gy .framer-1yd00w3 > :first-child, .framer-Za1gy .framer-1232cal > :first-child, .framer-Za1gy .framer-12r5bfu > :first-child, .framer-Za1gy .framer-86pgqg > :first-child, .framer-Za1gy .framer-eo0qwn > :first-child, .framer-Za1gy .framer-jcdiks > :first-child, .framer-Za1gy .framer-bt8non > :first-child, .framer-Za1gy .framer-a3mbes > :first-child, .framer-Za1gy .framer-t1qc52 > :first-child, .framer-Za1gy .framer-1b4x6p4 > :first-child, .framer-Za1gy .framer-1wejlq9 > :first-child, .framer-Za1gy .framer-b1yjtd > :first-child, .framer-Za1gy .framer-4vhgf9 > :first-child, .framer-Za1gy .framer-1amgeij > :first-child, .framer-Za1gy .framer-5jdpin > :first-child, .framer-Za1gy .framer-bmsai0 > :first-child, .framer-Za1gy .framer-1nrn7ml > :first-child, .framer-Za1gy .framer-ax3g54 > :first-child, .framer-Za1gy .framer-lq0mem > :first-child, .framer-Za1gy .framer-1eg0o0q > :first-child, .framer-Za1gy .framer-c858kg > :first-child, .framer-Za1gy .framer-1vs3zr7 > :first-child, .framer-Za1gy .framer-1jir5zu > :first-child, .framer-Za1gy .framer-royhan > :first-child, .framer-Za1gy .framer-1460j50 > :first-child, .framer-Za1gy .framer-1auh09i > :first-child, .framer-Za1gy .framer-pc0eqo > :first-child { margin-left: 0px; } .framer-Za1gy .framer-spoh1v > :last-child, .framer-Za1gy .framer-zic3a9 > :last-child, .framer-Za1gy .framer-17jmwhf > :last-child, .framer-Za1gy .framer-yzh73a > :last-child, .framer-Za1gy .framer-1d6gopo > :last-child, .framer-Za1gy .framer-1xvs405 > :last-child, .framer-Za1gy .framer-1sx7nf4 > :last-child, .framer-Za1gy .framer-1uwp64y > :last-child, .framer-Za1gy .framer-1yd00w3 > :last-child, .framer-Za1gy .framer-1232cal > :last-child, .framer-Za1gy .framer-12r5bfu > :last-child, .framer-Za1gy .framer-86pgqg > :last-child, .framer-Za1gy .framer-eo0qwn > :last-child, .framer-Za1gy .framer-jcdiks > :last-child, .framer-Za1gy .framer-bt8non > :last-child, .framer-Za1gy .framer-a3mbes > :last-child, .framer-Za1gy .framer-t1qc52 > :last-child, .framer-Za1gy .framer-1b4x6p4 > :last-child, .framer-Za1gy .framer-1wejlq9 > :last-child, .framer-Za1gy .framer-b1yjtd > :last-child, .framer-Za1gy .framer-4vhgf9 > :last-child, .framer-Za1gy .framer-1amgeij > :last-child, .framer-Za1gy .framer-5jdpin > :last-child, .framer-Za1gy .framer-bmsai0 > :last-child, .framer-Za1gy .framer-1nrn7ml > :last-child, .framer-Za1gy .framer-ax3g54 > :last-child, .framer-Za1gy .framer-lq0mem > :last-child, .framer-Za1gy .framer-1eg0o0q > :last-child, .framer-Za1gy .framer-c858kg > :last-child, .framer-Za1gy .framer-1vs3zr7 > :last-child, .framer-Za1gy .framer-1jir5zu > :last-child, .framer-Za1gy .framer-royhan > :last-child, .framer-Za1gy .framer-1460j50 > :last-child, .framer-Za1gy .framer-1auh09i > :last-child, .framer-Za1gy .framer-pc0eqo > :last-child { margin-right: 0px; } .framer-Za1gy .framer-zic3a9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Za1gy .framer-1f3ur07 > *, .framer-Za1gy .framer-1378v0s > *, .framer-Za1gy .framer-1le225t > *, .framer-Za1gy .framer-fdd4dm > *, .framer-Za1gy .framer-1xrs4p7 > *, .framer-Za1gy .framer-190r1sc > *, .framer-Za1gy .framer-5ml8vn > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Za1gy .framer-17jmwhf > *, .framer-Za1gy .framer-yzh73a > *, .framer-Za1gy .framer-1d6gopo > *, .framer-Za1gy .framer-1xvs405 > *, .framer-Za1gy .framer-1sx7nf4 > *, .framer-Za1gy .framer-1uwp64y > *, .framer-Za1gy .framer-1yd00w3 > *, .framer-Za1gy .framer-1232cal > *, .framer-Za1gy .framer-12r5bfu > *, .framer-Za1gy .framer-86pgqg > *, .framer-Za1gy .framer-eo0qwn > *, .framer-Za1gy .framer-jcdiks > *, .framer-Za1gy .framer-bt8non > *, .framer-Za1gy .framer-a3mbes > *, .framer-Za1gy .framer-t1qc52 > *, .framer-Za1gy .framer-1b4x6p4 > *, .framer-Za1gy .framer-1wejlq9 > *, .framer-Za1gy .framer-4vhgf9 > *, .framer-Za1gy .framer-1amgeij > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Za1gy .framer-pwjjyb > *, .framer-Za1gy .framer-1k4w5sn > *, .framer-Za1gy .framer-dtdn79 > *, .framer-Za1gy .framer-ycj9so > *, .framer-Za1gy .framer-1vx78s4 > *, .framer-Za1gy .framer-1973083 > *, .framer-Za1gy .framer-to9stp > *, .framer-Za1gy .framer-1h4ua0s > *, .framer-Za1gy .framer-13k7ebb > *, .framer-Za1gy .framer-6ain10 > *, .framer-Za1gy .framer-jpmh2i > *, .framer-Za1gy .framer-wq59ac > *, .framer-Za1gy .framer-vhfcto > *, .framer-Za1gy .framer-1sszhzb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Za1gy .framer-emen56 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Za1gy .framer-pdodjs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Za1gy .framer-1vd0qwx > *, .framer-Za1gy .framer-7sol94 > *, .framer-Za1gy .framer-5lxeb9 > *, .framer-Za1gy .framer-7mlyv > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Za1gy .framer-1r8oyao > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Za1gy .framer-bmsai0 > *, .framer-Za1gy .framer-ax3g54 > *, .framer-Za1gy .framer-1eg0o0q > *, .framer-Za1gy .framer-1vs3zr7 > *, .framer-Za1gy .framer-royhan > *, .framer-Za1gy .framer-1auh09i > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Za1gy .framer-1nrn7ml > *, .framer-Za1gy .framer-lq0mem > *, .framer-Za1gy .framer-c858kg > *, .framer-Za1gy .framer-1jir5zu > *, .framer-Za1gy .framer-1460j50 > *, .framer-Za1gy .framer-pc0eqo > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-Za1gy[data-border=\"true\"]::after, .framer-Za1gy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Za1gy.framer-72rtr7 { width: 810px; } .framer-Za1gy .framer-zic3a9 { flex-direction: column; padding: 50px; } .framer-Za1gy .framer-1f3ur07 { flex: none; width: 100%; } .framer-Za1gy .framer-yzh73a { align-self: unset; flex: none; height: 500px; width: 100%; } .framer-Za1gy .framer-pwjjyb { gap: 40px; padding: 50px 60px 50px 60px; } .framer-Za1gy .framer-srigbz { grid-template-columns: repeat(2, minmax(100px, 1fr)); } .framer-Za1gy .framer-pdodjs { padding: 40px 80px 120px 100px; } .framer-Za1gy .framer-1hbzzpv { height: var(--framer-aspect-ratio-supported, 62px); width: 212px; } .framer-Za1gy .framer-7sol94 { padding: 120px 60px 120px 60px; } .framer-Za1gy .framer-1h4ua0s { order: 0; } .framer-Za1gy .framer-13k7ebb { order: 1; } .framer-Za1gy .framer-6ain10 { order: 4; } .framer-Za1gy .framer-jpmh2i { order: 3; } .framer-Za1gy .framer-wq59ac { order: 5; } .framer-Za1gy .framer-vhfcto { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Za1gy .framer-zic3a9, .framer-Za1gy .framer-pwjjyb { gap: 0px; } .framer-Za1gy .framer-zic3a9 > *, .framer-Za1gy .framer-pwjjyb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Za1gy .framer-zic3a9 > :first-child, .framer-Za1gy .framer-pwjjyb > :first-child { margin-top: 0px; } .framer-Za1gy .framer-zic3a9 > :last-child, .framer-Za1gy .framer-pwjjyb > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-Za1gy.framer-72rtr7 { width: 390px; } .framer-Za1gy .framer-spoh1v, .framer-Za1gy .framer-b1yjtd { padding: 40px 24px 40px 24px; } .framer-Za1gy .framer-zic3a9 { flex-direction: column; padding: 30px; } .framer-Za1gy .framer-1f3ur07 { flex: none; width: 100%; } .framer-Za1gy .framer-pwjjyb { gap: 30px; padding: 80px 30px 60px 30px; } .framer-Za1gy .framer-emen56 { gap: 20px; } .framer-Za1gy .framer-srigbz { grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-Za1gy .framer-1le225t { align-content: center; align-items: center; grid-column: auto / span 1; height: min-content; } .framer-Za1gy .framer-dtdn79, .framer-Za1gy .framer-1973083, .framer-Za1gy .framer-1h4ua0s, .framer-Za1gy .framer-6ain10, .framer-Za1gy .framer-jpmh2i, .framer-Za1gy .framer-vhfcto { width: 100%; } .framer-Za1gy .framer-fdd4dm { align-content: center; align-items: center; height: auto; } .framer-Za1gy .framer-1xrs4p7 { align-content: center; align-items: center; height: min-content; } .framer-Za1gy .framer-190r1sc { align-content: center; align-items: center; grid-column: auto / span 1; height: auto; justify-content: flex-start; padding: 30px 30px 0px 30px; } .framer-Za1gy .framer-jaueoj { height: var(--framer-aspect-ratio-supported, 301px); position: relative; right: unset; top: unset; transform: unset; width: 301px; } .framer-Za1gy .framer-pdodjs { padding: 40px 30px 40px 30px; } .framer-Za1gy .framer-1vd0qwx { gap: 50px; padding: 60px 0px 60px 0px; } .framer-Za1gy .framer-vgyt0m { height: 120px; width: var(--framer-aspect-ratio-supported, 120px); } .framer-Za1gy .framer-1hbzzpv { height: var(--framer-aspect-ratio-supported, 52px); width: 178px; } .framer-Za1gy .framer-7sol94 { padding: 120px 30px 120px 30px; } .framer-Za1gy .framer-5lxeb9 { padding: 30px; } .framer-Za1gy .framer-5jdpin { flex-direction: column; } .framer-Za1gy .framer-mnld61-container, .framer-Za1gy .framer-141v1p1-container, .framer-Za1gy .framer-eu6n9l-container, .framer-Za1gy .framer-t92tnp-container, .framer-Za1gy .framer-zckxcw-container, .framer-Za1gy .framer-17nugn4-container, .framer-Za1gy .framer-s9wvtg-container, .framer-Za1gy .framer-hdqipn-container, .framer-Za1gy .framer-1n6mbzl-container, .framer-Za1gy .framer-vci8fx-container, .framer-Za1gy .framer-v9plbd-container, .framer-Za1gy .framer-b9vgda-container, .framer-Za1gy .framer-qnpjk4-container, .framer-Za1gy .framer-1lkgehc-container, .framer-Za1gy .framer-dy3uje-container, .framer-Za1gy .framer-1ha3h5t-container, .framer-Za1gy .framer-1y2o2d1-container, .framer-Za1gy .framer-1mc3grd-container, .framer-Za1gy .framer-1pq4ffn-container, .framer-Za1gy .framer-147aodt-container { height: var(--framer-aspect-ratio-supported, 20px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Za1gy .framer-zic3a9, .framer-Za1gy .framer-pwjjyb, .framer-Za1gy .framer-emen56, .framer-Za1gy .framer-1vd0qwx, .framer-Za1gy .framer-5jdpin { gap: 0px; } .framer-Za1gy .framer-zic3a9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Za1gy .framer-zic3a9 > :first-child, .framer-Za1gy .framer-pwjjyb > :first-child, .framer-Za1gy .framer-emen56 > :first-child, .framer-Za1gy .framer-1vd0qwx > :first-child, .framer-Za1gy .framer-5jdpin > :first-child { margin-top: 0px; } .framer-Za1gy .framer-zic3a9 > :last-child, .framer-Za1gy .framer-pwjjyb > :last-child, .framer-Za1gy .framer-emen56 > :last-child, .framer-Za1gy .framer-1vd0qwx > :last-child, .framer-Za1gy .framer-5jdpin > :last-child { margin-bottom: 0px; } .framer-Za1gy .framer-pwjjyb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Za1gy .framer-emen56 > *, .framer-Za1gy .framer-5jdpin > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Za1gy .framer-1vd0qwx > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5891.6\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hIKxv135W\":{\"layout\":[\"fixed\",\"auto\"]},\"tvSQDcCfE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Za1gy\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5891.6,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Atkinson Hyperlegible\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNdi-OZFy-FA.woff2\",weight:\"700\"},{family:\"Atkinson Hyperlegible\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE4JgpewSSbQ.woff2\",weight:\"400\"}]},...TopNavigationFonts,...ButtonPrimaryButtonFonts,...TickerFonts,...MockupMockupBrowser2Fonts,...FeatherFonts,...PhosphorFonts,...FreeTrialFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hIKxv135W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tvSQDcCfE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"5891.6\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "zendeskMockup", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Tdy2602Kk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerAbFnGjLhJ", "withCSS", "AbFnGjLhJ_default", "addPropertyControls", "ControlType", "addFonts", "TopNavigationFonts", "getFonts", "pQWsMWkcK_default", "ButtonPrimaryButtonFonts", "AZMcsbJkb_default", "TickerFonts", "Ticker", "MockupMockupBrowser2Fonts", "AbFnGjLhJ_default", "FeatherFonts", "Icon", "PhosphorFonts", "FreeTrialFonts", "JCK5_3gQW_default", "FooterFonts", "V1EH44HA_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "Image2", "SVG", "getLoadingLazyAtYPosition", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
