{"version":3,"file":"mXdS_-Z1-ORJWHQPkrIRKhIlzjkZiululHwQUa8nvKU.CJg34HDq.mjs","names":["size","serializationHash","variantClassNames","transition1","animation","Transition","Variants","getProps","createLayoutDependency","Component","className","Image","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","ComponentsImpactTypeCards","SVGFonts","SVG","serializationHash","variantClassNames","transition1","addImageAlt","humanReadableVariantMap","getProps","Component","className","css","NavNav","NavTriageModal","ComponentsButton","SVG","Image","HomepageLogoTicker","HomepageCarousel","SectionsIconGrid","HomepageWhyEcologi","SectionsProjectMap","SectionsTestimonials","ComponentsFooter","ComponentsCookierBanner","ComponentsBackgroundColor","metadata","className","_Fragment","PropertyOverrides","SVG1","css"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js","https:/framerusercontent.com/modules/kSN82a5SK5U4gQ1qxhQj/eD8KLyRp8svz0V7yHY2a/TzHhZLs2x.js","https:/framerusercontent.com/modules/FrQuVuaFmJlIhodlFodV/6fV7SZKTOowCyhoADkhD/b810OUOti.js","https:/framerusercontent.com/modules/bBkTNH9CUXAkc4IWozH2/SmvYlAdQ82Y3lclURDGd/YUOpsLzzM.js","https:/framerusercontent.com/modules/LtqG7uNbS1Z9hkhgft6e/Qief5J4STOgj0abgt2eZ/n7hm6ubNd.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||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:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (3bdc3c5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";const TickerFonts=getFonts(Ticker);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const serializationHash=\"framer-rYjZr\";const variantClassNames={ItbkHFWWy:\"framer-v-1yxpn7w\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ItbkHFWWy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yxpn7w\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ItbkHFWWy\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.7,className:\"framer-1k58cpp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kpMh9JO3z-container\",nodeId:\"kpMh9JO3z\",rendersWithMotion:true,scopeId:\"TzHhZLs2x\",style:{opacity:.7,transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"kpMh9JO3z\",layoutId:\"kpMh9JO3z\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:162,pixelHeight:112,pixelWidth:324,src:\"https://framerusercontent.com/images/vO9IwtJDZhPom0E9fPK3Fn3FvE.png\"},className:\"framer-1kimrn0\",\"data-framer-name\":\"Monday\",layoutDependency:layoutDependency,layoutId:\"LEMvsMCZE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:55,pixelHeight:112,pixelWidth:110,src:\"https://framerusercontent.com/images/QW3jqh0Yz0k3yCemQvWVNbC6vLE.png\"},className:\"framer-1ccvvz1\",\"data-framer-name\":\"Ubisoft\",layoutDependency:layoutDependency,layoutId:\"QmZc5FtWU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:129,pixelHeight:112,pixelWidth:258,src:\"https://framerusercontent.com/images/o2xkLw75I8MxhAYKP5rPsd6e8.png\"},className:\"framer-yzl2qj\",\"data-framer-name\":\"Capgemini\",layoutDependency:layoutDependency,layoutId:\"XF5q4Teub\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:121,pixelHeight:112,pixelWidth:242,src:\"https://framerusercontent.com/images/uPgaw1fNCbVPXKfN7Am01Uz41w.png\"},className:\"framer-ntyqud\",\"data-framer-name\":\"Mulberry\",layoutDependency:layoutDependency,layoutId:\"oJzsZzuNX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:66,pixelHeight:112,pixelWidth:132,src:\"https://framerusercontent.com/images/aexclT6Wi3KIbTwFxK4zkbucVN0.png\"},className:\"framer-1to650\",\"data-framer-name\":\"Albert\",layoutDependency:layoutDependency,layoutId:\"inPw0rAS0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:69,pixelHeight:112,pixelWidth:138,src:\"https://framerusercontent.com/images/55vtvAMqnwt2nR23HD3YaF3yo.png\"},className:\"framer-12xbnm2\",\"data-framer-name\":\"Ustwo\",layoutDependency:layoutDependency,layoutId:\"T7s3spqh6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:44,pixelHeight:112,pixelWidth:88,src:\"https://framerusercontent.com/images/RHenMlyXNgfyLHRkDwOYn7uUk.png\"},className:\"framer-1t5ibus\",\"data-framer-name\":\"Lucyandyak\",layoutDependency:layoutDependency,layoutId:\"M0IflOKhz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:65,pixelHeight:112,pixelWidth:130,src:\"https://framerusercontent.com/images/PN5MbiKilhbZEnvJ6B3QGHJsbg.png\"},className:\"framer-trw7mm\",\"data-framer-name\":\"Eet\",layoutDependency:layoutDependency,layoutId:\"r15uTg_fm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:50,pixelHeight:112,pixelWidth:100,src:\"https://framerusercontent.com/images/Af7ANbRMIDO9DgrJKjaruc64DE.png\"},className:\"framer-9yfhyr\",\"data-framer-name\":\"Xero\",layoutDependency:layoutDependency,layoutId:\"Ypic6ecpr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:119,pixelHeight:112,pixelWidth:238,src:\"https://framerusercontent.com/images/KygZJ0XkmSO5vpBzPmupuAGq4.png\"},className:\"framer-17di5ap\",\"data-framer-name\":\"Krystal\",layoutDependency:layoutDependency,layoutId:\"w54ZgQ4jT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:95,pixelHeight:112,pixelWidth:190,src:\"https://framerusercontent.com/images/6zC2tOrdRq3Mf3MPG29Y9othivk.png\"},className:\"framer-yu8xr\",\"data-framer-name\":\"Biopak\",layoutDependency:layoutDependency,layoutId:\"qo2cNoQG4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:56,pixelHeight:112,pixelWidth:112,src:\"https://framerusercontent.com/images/PImcOmSqClqgktyudjtJdXhbM.png\"},className:\"framer-1ruc4do\",\"data-framer-name\":\"Ellers-farm\",layoutDependency:layoutDependency,layoutId:\"ojig3Yf2l\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:112,pixelHeight:112,pixelWidth:224,src:\"https://framerusercontent.com/images/GGaK3XpIJQ7lov1aLtQE1uSFQ.png\"},className:\"framer-1dk2ggt\",\"data-framer-name\":\"Kinetic\",layoutDependency:layoutDependency,layoutId:\"OmvIXLuDK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:77,pixelHeight:112,pixelWidth:154,src:\"https://framerusercontent.com/images/a9jjsWEAv3YHxPl4WgqNdd3G4.png\"},className:\"framer-12qbesk\",\"data-framer-name\":\"Ethique\",layoutDependency:layoutDependency,layoutId:\"GXcblyFPR\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rYjZr.framer-5mzekc, .framer-rYjZr .framer-5mzekc { display: block; }\",\".framer-rYjZr.framer-1yxpn7w { 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: 1344px; }\",\".framer-rYjZr .framer-1k58cpp-container { flex: 1 0 0px; height: 100px; position: relative; width: 1px; }\",\".framer-rYjZr .framer-1kimrn0 { aspect-ratio: 2.892857142857143 / 1; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 152px; }\",\".framer-rYjZr .framer-1ccvvz1 { aspect-ratio: 0.9821428571428571 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 50px; }\",\".framer-rYjZr .framer-yzl2qj { aspect-ratio: 2.3035714285714284 / 1; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 121px; }\",\".framer-rYjZr .framer-ntyqud { aspect-ratio: 2.1607142857142856 / 1; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 106px; }\",\".framer-rYjZr .framer-1to650 { aspect-ratio: 1.1785714285714286 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 59px; }\",\".framer-rYjZr .framer-12xbnm2 { aspect-ratio: 1.2321428571428572 / 1; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 69px; }\",\".framer-rYjZr .framer-1t5ibus { aspect-ratio: 0.7857142857142857 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 40px; }\",\".framer-rYjZr .framer-trw7mm { aspect-ratio: 1.1607142857142858 / 1; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 61px; }\",\".framer-rYjZr .framer-9yfhyr { aspect-ratio: 0.8928571428571429 / 1; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 46px; }\",\".framer-rYjZr .framer-17di5ap { aspect-ratio: 2.125 / 1; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 115px; }\",\".framer-rYjZr .framer-yu8xr { aspect-ratio: 1.6964285714285714 / 1; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 89px; }\",\".framer-rYjZr .framer-1ruc4do { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\".framer-rYjZr .framer-1dk2ggt { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 101px; }\",\".framer-rYjZr .framer-12qbesk { aspect-ratio: 1.375 / 1; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 67px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 1344\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTzHhZLs2x=withCSS(Component,css,\"framer-rYjZr\");export default FramerTzHhZLs2x;FramerTzHhZLs2x.displayName=\"Homepage/Logo ticker\";FramerTzHhZLs2x.defaultProps={height:100,width:1344};addFonts(FramerTzHhZLs2x,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTzHhZLs2x\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1344\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TzHhZLs2x.map","// Generated by Framer (2a0d5ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kVW2bFDnoUbMBTl7TwEU/dpdS1eAhU6RNk7Iie5qB/d9a2yNeez.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/71fozfxGlJip7lagPsrx/UeTL2HBVNRCXjq3hLvMh/oEvCvqMlQ.js\";const enabledGestures={B2JWA4kxw:{hover:true},JCFsfb4vW:{hover:true},MuIJseHwy:{hover:true},nvQ7tmx9k:{hover:true},zigpiYT2n:{hover:true}};const cycleOrder=[\"JCFsfb4vW\",\"B2JWA4kxw\",\"MuIJseHwy\",\"nvQ7tmx9k\",\"zigpiYT2n\"];const serializationHash=\"framer-stwUk\";const variantClassNames={B2JWA4kxw:\"framer-v-1h4azw7\",JCFsfb4vW:\"framer-v-2550z8\",MuIJseHwy:\"framer-v-clorck\",nvQ7tmx9k:\"framer-v-1m4uk47\",zigpiYT2n:\"framer-v-h7r1vx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};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={\"Carbon avoidance\":\"B2JWA4kxw\",\"Carbon removal\":\"MuIJseHwy\",\"Habitat restoration\":\"nvQ7tmx9k\",Funds:\"JCFsfb4vW\",Reforestation:\"zigpiYT2n\"};const getProps=({description,height,id,image,link,padding,width,...props})=>{return{...props,d9ctWDpBa:description??props.d9ctWDpBa??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis urna diam, pulvinar quis.\",dqoN2_T56:padding??props.dqoN2_T56??\"0px 0px 40px 0px\",FyripnkPn:image??props.FyripnkPn??{pixelHeight:1008,pixelWidth:1648,src:\"https://framerusercontent.com/images/3uhNAhKCIva49TRTMPUZ1BymPU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3uhNAhKCIva49TRTMPUZ1BymPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/3uhNAhKCIva49TRTMPUZ1BymPU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3uhNAhKCIva49TRTMPUZ1BymPU.png 1648w\"},trE8HEp3l:link??props.trE8HEp3l,variant:humanReadableVariantMap[props.variant]??props.variant??\"JCFsfb4vW\"};};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,FyripnkPn,d9ctWDpBa,trE8HEp3l,dqoN2_T56,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JCFsfb4vW\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"B2JWA4kxw-hover\",\"MuIJseHwy-hover\",\"nvQ7tmx9k-hover\"].includes(gestureVariant))return false;if([\"B2JWA4kxw\",\"MuIJseHwy\",\"nvQ7tmx9k\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"B2JWA4kxw-hover\")return true;if(baseVariant===\"B2JWA4kxw\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"MuIJseHwy-hover\")return true;if(baseVariant===\"MuIJseHwy\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"nvQ7tmx9k-hover\")return true;if(baseVariant===\"nvQ7tmx9k\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"zigpiYT2n-hover\")return true;if(baseVariant===\"zigpiYT2n\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:trE8HEp3l,motionChild:true,nodeId:\"JCFsfb4vW\",scopeId:\"b810OUOti\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-2550z8\",className,classNames)} framer-1bq1wb`,\"data-framer-name\":\"Funds\",layoutDependency:layoutDependency,layoutId:\"JCFsfb4vW\",ref:refBinding,style:{\"--1ublplk\":numberToPixelString(dqoN2_T56),...style},...addPropertyOverrides({\"B2JWA4kxw-hover\":{\"data-framer-name\":undefined},\"JCFsfb4vW-hover\":{\"data-framer-name\":undefined},\"MuIJseHwy-hover\":{\"data-framer-name\":undefined},\"nvQ7tmx9k-hover\":{\"data-framer-name\":undefined},\"zigpiYT2n-hover\":{\"data-framer-name\":undefined},B2JWA4kxw:{\"data-framer-name\":\"Carbon avoidance\"},MuIJseHwy:{\"data-framer-name\":\"Carbon removal\"},nvQ7tmx9k:{\"data-framer-name\":\"Habitat restoration\"},zigpiYT2n:{\"data-framer-name\":\"Reforestation\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-106prkq\",\"data-framer-name\":\"Inner\",layoutDependency:layoutDependency,layoutId:\"sgUfORDt0\",style:{backgroundColor:\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"none\"},variants:{\"B2JWA4kxw-hover\":{boxShadow:\"0px 0.6021873017743928px 2.0474368260329356px -1.3333333333333333px rgba(0, 0, 0, 0.46), 0px 2.288533303243457px 7.781013231027754px -2.6666666666666665px rgba(0, 0, 0, 0.4), 0px 10px 34px -4px rgba(0, 0, 0, 0.12)\"},\"JCFsfb4vW-hover\":{boxShadow:\"0px 0.6021873017743928px 2.0474368260329356px -1.3333333333333333px rgba(0, 0, 0, 0.46), 0px 2.288533303243457px 7.781013231027754px -2.6666666666666665px rgba(0, 0, 0, 0.4), 0px 10px 34px -4px rgba(0, 0, 0, 0.12)\"},\"MuIJseHwy-hover\":{boxShadow:\"0px 0.6021873017743928px 2.0474368260329356px -1.3333333333333333px rgba(0, 0, 0, 0.23), 0px 2.288533303243457px 7.781013231027754px -2.6666666666666665px rgba(0, 0, 0, 0.2), 0px 10px 34px -4px rgba(0, 0, 0, 0.06)\"},\"nvQ7tmx9k-hover\":{boxShadow:\"0px 0.6021873017743928px 2.0474368260329356px -1.3333333333333333px rgba(0, 0, 0, 0.23), 0px 2.288533303243457px 7.781013231027754px -2.6666666666666665px rgba(0, 0, 0, 0.2), 0px 10px 34px -4px rgba(0, 0, 0, 0.06)\"},\"zigpiYT2n-hover\":{boxShadow:\"0px 0.6021873017743928px 2.0474368260329356px -1.3333333333333333px rgba(0, 0, 0, 0.23), 0px 2.288533303243457px 7.781013231027754px -2.6666666666666665px rgba(0, 0, 0, 0.2), 0px 10px 34px -4px rgba(0, 0, 0, 0.06)\"},B2JWA4kxw:{backgroundColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\"},MuIJseHwy:{backgroundColor:\"var(--token-17c6baec-78b5-476d-80db-6323656d41f6, rgb(250, 168, 140))\"},nvQ7tmx9k:{backgroundColor:\"rgb(253, 209, 134)\"},zigpiYT2n:{backgroundColor:\"var(--token-363a5822-f310-4a25-ae8d-ba2a92e3135c, rgb(177, 243, 208))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-evuakf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LuRlMJFeL\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} - ${dqoN2_T56*2}px)`,...toResponsiveImage(FyripnkPn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-zwoz60\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"QHwrOJs1h\"}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2s2rrd\",\"data-framer-name\":\"wave-dark-green\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:424,layoutDependency:layoutDependency,layoutId:\"KoWQdgQWg\",svg:'<svg width=\"424\" height=\"32\" viewBox=\"0 0 424 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4440_14054)\">\\n<path d=\"M424 20.62V32H0V8.13004C73.12 -8.70996 150.37 4.03004 217.96 15.69C298.53 29.58 324.27 31.25 424 20.62Z\" fill=\"#105246\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4440_14054\">\\n<rect width=\"424\" height=\"32\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dejx6y\",\"data-framer-name\":\"wave-green\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:424,layoutDependency:layoutDependency,layoutId:\"AQcHSsqD_\",svg:'<svg width=\"424\" height=\"32\" viewBox=\"0 0 424 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2449_9285)\">\\n<path d=\"M424 20.62V32H0V8.13004C73.12 -8.70996 150.37 4.03004 217.96 15.69C298.53 29.58 324.27 31.25 424 20.62Z\" fill=\"#135E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2449_9285\">\\n<rect width=\"424\" height=\"32\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xwvrr7\",\"data-framer-name\":\"wave-coral\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:424,layoutDependency:layoutDependency,layoutId:\"pTAQkY6wt\",svg:'<svg width=\"424\" height=\"32\" viewBox=\"0 0 424 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2449_9289)\">\\n<path d=\"M424 20.62V32H0V8.13004C73.12 -8.70996 150.37 4.03004 217.96 15.69C298.53 29.58 324.27 31.25 424 20.62Z\" fill=\"#FAA88C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2449_9289\">\\n<rect width=\"424\" height=\"32\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-jfccej\",\"data-framer-name\":\"wave-yellow\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:424,layoutDependency:layoutDependency,layoutId:\"IwzNY1uwv\",svg:'<svg width=\"424\" height=\"32\" viewBox=\"0 0 424 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2449_9291)\">\\n<path d=\"M424 20.62V32H0V8.13004C73.12 -8.70996 150.37 4.03004 217.96 15.69C298.53 29.58 324.27 31.25 424 20.62Z\" fill=\"#FDD186\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2449_9291\">\\n<rect width=\"424\" height=\"32\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wofckh\",\"data-framer-name\":\"wave-light-green\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:424,layoutDependency:layoutDependency,layoutId:\"VoZN4VR0N\",svg:'<svg width=\"424\" height=\"32\" viewBox=\"0 0 424 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3258_41069)\">\\n<path d=\"M424 20.62V32H0V8.13004C73.12 -8.70996 150.37 4.03004 217.96 15.69C298.53 29.58 324.27 31.25 424 20.62Z\" fill=\"#B1F3D0\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3258_41069\">\\n<rect width=\"424\" height=\"32\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d6o3bc\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"l4j8RraUP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gttiw1\",\"data-framer-name\":\"Project tag\",layoutDependency:layoutDependency,layoutId:\"DXGMKDELn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h8b963\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"UGnj0Hrza\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/vMjKbT939fS91MU7i9D5VkK2OI.svg\"},className:\"framer-1u099kn\",layoutDependency:layoutDependency,layoutId:\"TokNrqa4a\",...addPropertyOverrides({B2JWA4kxw:{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/TNU8bYvCHjusRLqxE0ipLGGWZhg.svg\"}},MuIJseHwy:{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/6dz8WnFHFJWgsBV1D7CfBjR0B4.svg\"}},nvQ7tmx9k:{background:{alt:\"\",fit:\"fill\",pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/WIELGWRhzIO1fT6k78n17hI8no.svg\"}},zigpiYT2n:{background:{alt:\"\",fit:\"fill\",pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Kfxpi5Z9t5RMwyhi1qXvfe5j2oA.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-anyose\",\"data-styles-preset\":\"oEvCvqMlQ\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232)))\"},children:\"Impact Funds\"})}),className:\"framer-1n83tqe\",\"data-framer-name\":\"Carbon avoidance\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iFqsqH_LL\",style:{\"--extracted-1lwpl3i\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\",\"--framer-paragraph-spacing\":\"12px\"},variants:{B2JWA4kxw:{\"--extracted-1lwpl3i\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},MuIJseHwy:{\"--extracted-1lwpl3i\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},nvQ7tmx9k:{\"--extracted-1lwpl3i\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},zigpiYT2n:{\"--extracted-1lwpl3i\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B2JWA4kxw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-anyose\",\"data-styles-preset\":\"oEvCvqMlQ\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Carbon avoidance\"})})},MuIJseHwy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-anyose\",\"data-styles-preset\":\"oEvCvqMlQ\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Carbon removal\"})})},nvQ7tmx9k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-anyose\",\"data-styles-preset\":\"oEvCvqMlQ\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Habitat restoration\"})})},zigpiYT2n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-anyose\",\"data-styles-preset\":\"oEvCvqMlQ\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Reforestation\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xv39k2\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"WzMDaLA0s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis urna diam, pulvinar quis.\"})}),className:\"framer-18ev6j5\",\"data-framer-name\":\"Support a range of high-quality and verified carbon avoidance projects across the world.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W095Rsska\",style:{\"--extracted-r6o4lv\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\",\"--framer-paragraph-spacing\":\"0px\"},text:d9ctWDpBa,variants:{B2JWA4kxw:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},MuIJseHwy:{\"--extracted-r6o4lv\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},nvQ7tmx9k:{\"--extracted-r6o4lv\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},zigpiYT2n:{\"--extracted-r6o4lv\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B2JWA4kxw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis urna diam, pulvinar quis.\"})})},MuIJseHwy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis urna diam, pulvinar quis.\"})})},nvQ7tmx9k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis urna diam, pulvinar quis.\"})})},zigpiYT2n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis urna diam, pulvinar quis.\"})})}},baseVariant,gestureVariant)})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-stwUk.framer-1bq1wb, .framer-stwUk .framer-1bq1wb { display: block; }\",\".framer-stwUk.framer-2550z8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 540px; justify-content: flex-start; overflow: visible; padding: var(--1ublplk); position: relative; text-decoration: none; width: 420px; }\",\".framer-stwUk .framer-106prkq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-stwUk .framer-evuakf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-stwUk .framer-zwoz60 { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); max-height: 240px; min-height: 180px; position: relative; width: 100%; }\",\".framer-stwUk .framer-2s2rrd, .framer-stwUk .framer-1dejx6y, .framer-stwUk .framer-xwvrr7, .framer-stwUk .framer-jfccej { bottom: -1px; flex: none; height: 32px; left: -2px; position: absolute; right: -2px; }\",\".framer-stwUk .framer-1wofckh { flex: none; height: 32px; position: relative; width: 428px; }\",\".framer-stwUk .framer-1d6o3bc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 1px; justify-content: flex-start; overflow: visible; padding: 24px 40px 56px 40px; position: relative; width: 100%; }\",\".framer-stwUk .framer-1gttiw1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-stwUk .framer-1h8b963 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 6px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-stwUk .framer-1u099kn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-stwUk .framer-1n83tqe { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-stwUk .framer-xv39k2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-stwUk .framer-18ev6j5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-stwUk.framer-v-1h4azw7 .framer-1h8b963, .framer-stwUk.framer-v-clorck .framer-1h8b963, .framer-stwUk.framer-v-1m4uk47 .framer-1h8b963, .framer-stwUk.framer-v-h7r1vx .framer-zwoz60, .framer-stwUk.framer-v-h7r1vx .framer-1h8b963 { order: 0; }\",\".framer-stwUk.framer-v-1h4azw7 .framer-1n83tqe, .framer-stwUk.framer-v-clorck .framer-1n83tqe, .framer-stwUk.framer-v-1m4uk47 .framer-1n83tqe, .framer-stwUk.framer-v-h7r1vx .framer-2s2rrd, .framer-stwUk.framer-v-h7r1vx .framer-1n83tqe { order: 1; }\",\".framer-stwUk.framer-v-h7r1vx .framer-1wofckh { bottom: -1px; left: -2px; order: 6; position: absolute; right: -2px; width: unset; }\",\".framer-stwUk.framer-v-2550z8.hover.framer-2550z8 { height: 525px; }\",\".framer-stwUk.framer-v-h7r1vx.hover .framer-1wofckh { width: unset; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 540\n * @framerIntrinsicWidth 420\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"B2JWA4kxw\":{\"layout\":[\"fixed\",\"fixed\"]},\"MuIJseHwy\":{\"layout\":[\"fixed\",\"fixed\"]},\"nvQ7tmx9k\":{\"layout\":[\"fixed\",\"fixed\"]},\"zigpiYT2n\":{\"layout\":[\"fixed\",\"fixed\"]},\"h4tMkJrE1\":{\"layout\":[\"fixed\",\"fixed\"]},\"E1uSzM7Zs\":{\"layout\":[\"fixed\",\"fixed\"]},\"nhFJHyKh4\":{\"layout\":[\"fixed\",\"fixed\"]},\"sehHpE4fu\":{\"layout\":[\"fixed\",\"fixed\"]},\"FYmvx5yy4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"FyripnkPn\":\"image\",\"d9ctWDpBa\":\"description\",\"trE8HEp3l\":\"link\",\"dqoN2_T56\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerb810OUOti=withCSS(Component,css,\"framer-stwUk\");export default Framerb810OUOti;Framerb810OUOti.displayName=\"Components/Impact type cards\";Framerb810OUOti.defaultProps={height:540,width:420};addPropertyControls(Framerb810OUOti,{variant:{options:[\"JCFsfb4vW\",\"B2JWA4kxw\",\"MuIJseHwy\",\"nvQ7tmx9k\",\"zigpiYT2n\"],optionTitles:[\"Funds\",\"Carbon avoidance\",\"Carbon removal\",\"Habitat restoration\",\"Reforestation\"],title:\"Variant\",type:ControlType.Enum},FyripnkPn:{__defaultAssetReference:\"data:framer/asset-reference,3uhNAhKCIva49TRTMPUZ1BymPU.png?originalFilename=image+277.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},d9ctWDpBa:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis urna diam, pulvinar quis.\",displayTextArea:true,title:\"Description\",type:ControlType.String},trE8HEp3l:{title:\"Link\",type:ControlType.Link},dqoN2_T56:{defaultValue:\"0px 0px 40px 0px\",title:\"Padding\",type:ControlType.Padding}});addFonts(Framerb810OUOti,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb810OUOti\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B2JWA4kxw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MuIJseHwy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nvQ7tmx9k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zigpiYT2n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h4tMkJrE1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E1uSzM7Zs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nhFJHyKh4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sehHpE4fu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FYmvx5yy4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"FyripnkPn\\\":\\\"image\\\",\\\"d9ctWDpBa\\\":\\\"description\\\",\\\"trE8HEp3l\\\":\\\"link\\\",\\\"dqoN2_T56\\\":\\\"padding\\\"}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"540\",\"framerIntrinsicWidth\":\"420\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b810OUOti.map","// Generated by Framer (100f99d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/VHA35VnXX9I43smfEdAT/7P5rlXyqKWBZhUclApdf/O4LPz1FVm.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/t6IYEPCwyvyoJRki6qwx/5nMVOL1okPLmh89ksiBh/RyKKj9LRD.js\";import ComponentsImpactTypeCards from\"https://framerusercontent.com/modules/FrQuVuaFmJlIhodlFodV/6fV7SZKTOowCyhoADkhD/b810OUOti.js\";const ComponentsImpactTypeCardsFonts=getFonts(ComponentsImpactTypeCards);const CarouselFonts=getFonts(Carousel);const SVGFonts=getFonts(SVG);const cycleOrder=[\"xFG6Wsjn9\",\"ubURWWiJ8\"];const serializationHash=\"framer-Iz51X\";const variantClassNames={ubURWWiJ8:\"framer-v-xyi9ph\",xFG6Wsjn9:\"framer-v-1tca0wm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"xFG6Wsjn9\",Mobile:\"ubURWWiJ8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xFG6Wsjn9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xFG6Wsjn9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();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-1tca0wm\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xFG6Wsjn9\",ref:refBinding,style:{...style},...addPropertyOverrides({ubURWWiJ8:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m0cs3h\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"SbpUQSEkK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ls7727\",\"data-styles-preset\":\"O4LPz1FVm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fund high-impact, high-integrity climate action\"})}),className:\"framer-ut41z4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MfxXeidvA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9m1ssr\",\"data-framer-name\":\"Carousel wrapper\",layoutDependency:layoutDependency,layoutId:\"Ibczuka7P\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u0k9c7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bHKcQFBo7-container\",nodeId:\"bHKcQFBo7\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"bHKcQFBo7\",layoutId:\"bHKcQFBo7\",padding:0,paddingBottom:20,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IjpdADAXx\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"440px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f7y8cq-container\",\"data-framer-name\":\"card\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"TL98ecX0z-container\",name:\"card\",nodeId:\"TL98ecX0z\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(ComponentsImpactTypeCards,{d9ctWDpBa:\"Fund high-quality tree planting projects across the globe.\",dqoN2_T56:\"0px 0px 40px 40px\",FyripnkPn:addImageAlt({pixelHeight:960,pixelWidth:1280,src:\"https://framerusercontent.com/images/8EQo4f29ADkXK1QtopTvf92c.jpg\",srcSet:\"https://framerusercontent.com/images/8EQo4f29ADkXK1QtopTvf92c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8EQo4f29ADkXK1QtopTvf92c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8EQo4f29ADkXK1QtopTvf92c.jpg 1280w\"},\"\"),height:\"100%\",id:\"TL98ecX0z\",layoutId:\"TL98ecX0z\",name:\"card\",style:{height:\"100%\",width:\"100%\"},trE8HEp3l:resolvedLinks[0],variant:\"zigpiYT2n\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fTgwiLxZT\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sisxuv-container\",\"data-framer-name\":\"card\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"EGakfDq87-container\",name:\"card\",nodeId:\"EGakfDq87\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(ComponentsImpactTypeCards,{d9ctWDpBa:\"Maximise your business’s climate impact by funding multiple high-quality projects in one go.\",dqoN2_T56:\"0px 0px 40px 0px\",FyripnkPn:addImageAlt({pixelHeight:960,pixelWidth:1280,src:\"https://framerusercontent.com/images/rD35hDrdAYuIPIlQVoMe6PoCck.png\",srcSet:\"https://framerusercontent.com/images/rD35hDrdAYuIPIlQVoMe6PoCck.png?scale-down-to=512 512w,https://framerusercontent.com/images/rD35hDrdAYuIPIlQVoMe6PoCck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rD35hDrdAYuIPIlQVoMe6PoCck.png 1280w\"},\"\"),height:\"100%\",id:\"EGakfDq87\",layoutId:\"EGakfDq87\",name:\"card\",style:{height:\"100%\",width:\"100%\"},trE8HEp3l:resolvedLinks1[0],variant:\"JCFsfb4vW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gCPqvNpjP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s0ofbi-container\",\"data-framer-name\":\"card\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"axRQKzP_e-container\",name:\"card\",nodeId:\"axRQKzP_e\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(ComponentsImpactTypeCards,{d9ctWDpBa:\"Fund certified carbon removal projects that extract carbon dioxide from our atmosphere.\",dqoN2_T56:\"0px 0px 40px 0px\",FyripnkPn:addImageAlt({pixelHeight:960,pixelWidth:1280,src:\"https://framerusercontent.com/images/8YpzzDVWoghwW2t1sva8eVGo.jpg\",srcSet:\"https://framerusercontent.com/images/8YpzzDVWoghwW2t1sva8eVGo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8YpzzDVWoghwW2t1sva8eVGo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8YpzzDVWoghwW2t1sva8eVGo.jpg 1280w\"},\"\"),height:\"100%\",id:\"axRQKzP_e\",layoutId:\"axRQKzP_e\",name:\"card\",style:{height:\"100%\",width:\"100%\"},trE8HEp3l:resolvedLinks2[0],variant:\"MuIJseHwy\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"h4OKcZvly\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10un71a-container\",\"data-framer-name\":\"card\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Iy0GZww7S-container\",name:\"card\",nodeId:\"Iy0GZww7S\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(ComponentsImpactTypeCards,{d9ctWDpBa:\"Support a range of high-quality and verified carbon avoidance projects across the world.\",dqoN2_T56:\"0px 0px 40px 0px\",height:\"100%\",id:\"Iy0GZww7S\",layoutId:\"Iy0GZww7S\",name:\"card\",style:{height:\"100%\",width:\"100%\"},trE8HEp3l:resolvedLinks3[0],variant:\"B2JWA4kxw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"o2UBV7TQs\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"440px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ti3ni4-container\",\"data-framer-name\":\"card\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xTNa0O8_N-container\",name:\"card\",nodeId:\"xTNa0O8_N\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(ComponentsImpactTypeCards,{d9ctWDpBa:\"Support biodiversity in the UK and help keep carbon locked away in healthy ecosystems.\",dqoN2_T56:\"0px 40px 40px 0px\",FyripnkPn:addImageAlt({pixelHeight:960,pixelWidth:1280,src:\"https://framerusercontent.com/images/GMHtBkwKN8VsjeNzH2JqXCRumq4.jpg\",srcSet:\"https://framerusercontent.com/images/GMHtBkwKN8VsjeNzH2JqXCRumq4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GMHtBkwKN8VsjeNzH2JqXCRumq4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GMHtBkwKN8VsjeNzH2JqXCRumq4.jpg 1280w\"},\"\"),height:\"100%\",id:\"xTNa0O8_N\",layoutId:\"xTNa0O8_N\",name:\"card\",style:{height:\"100%\",width:\"100%\"},trE8HEp3l:resolvedLinks4[0],variant:\"nvQ7tmx9k\",width:\"100%\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({ubURWWiJ8:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:1.15,widthInset:0,widthType:\"columns\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jhqaxl\",\"data-framer-name\":\"Supported by\",layoutDependency:layoutDependency,layoutId:\"Bo8laNdWW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qo8fdq\",\"data-styles-preset\":\"RyKKj9LRD\",style:{\"--framer-text-alignment\":\"center\"},children:\"We support industry leading certifications and quality standards\"})}),className:\"framer-fr713h\",\"data-framer-name\":\"We support industry leading certifications and quality standards\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dr2Xrj6Vb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-du4v6h\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"pWdj1YKuz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16r2i6w-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IUVJHoFpS-container\",nodeId:\"IUVJHoFpS\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"152\" height=\"38\" viewBox=\"0 0 152 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_1898_31528)\"> <path d=\"M47.595 5.86417H49.9264L52.0043 11.7261C52.1817 12.2967 52.4351 12.9711 52.6125 13.7233H52.6886C52.8659 12.9711 53.0687 12.3226 53.2967 11.752L55.3494 5.86417H57.7061L53.5248 16.5505H51.7763L47.595 5.86417ZM59.1252 12.3486C59.2519 11.4148 59.86 10.8701 60.671 10.8701C61.4819 10.8701 62.09 11.4148 62.1407 12.3486H59.1252ZM64.0413 13.3861C64.0666 13.2305 64.0666 13.1786 64.0666 13.1008C64.0666 10.8442 62.6475 9.44357 60.6203 9.44357C58.593 9.44357 57.0979 10.9479 57.0979 13.0748C57.0979 15.2017 58.4916 16.7061 60.671 16.7061C62.1914 16.7061 63.2811 16.0317 63.8892 14.8386L62.3688 14.2161L62.2421 14.268C61.862 14.8645 61.3805 15.2017 60.7216 15.2017C59.784 15.2017 59.0745 14.5273 59.0745 13.4639V13.3861H64.0413ZM65.283 16.3948H67.2089V13.3342C67.2089 11.9336 67.7664 11.1814 68.3493 11.1814C68.6534 11.1814 68.8307 11.3111 68.9828 11.6483L69.1095 11.7001L70.706 10.7923C70.4272 9.83263 69.8697 9.41763 69.1348 9.41763C68.3239 9.41763 67.6397 9.85857 67.0822 10.8961V9.677H65.283V16.3948ZM71.5422 16.3948H73.4681V9.70294H71.5422V16.3948ZM71.3395 6.8498C71.3395 7.52418 71.8463 7.99106 72.5305 7.99106C73.2147 7.99106 73.7215 7.52418 73.7215 6.8498C73.7215 6.17543 73.2147 5.70855 72.5305 5.70855C71.821 5.73449 71.3395 6.20136 71.3395 6.8498ZM79.9807 16.3948H81.9067V9.70294H79.9807V16.3948ZM79.778 6.8498C79.778 7.52418 80.2848 7.99106 80.969 7.99106C81.6532 7.99106 82.1601 7.52418 82.1601 6.8498C82.1601 6.17543 81.6532 5.70855 80.969 5.70855C80.2595 5.73449 79.778 6.20136 79.778 6.8498ZM78.3082 7.00543C78.4856 7.00543 78.7137 7.0573 78.9164 7.16105L79.0431 7.10918L79.1192 5.52699C78.739 5.42324 78.2829 5.34542 77.8775 5.34542C76.281 5.34542 75.5714 6.20136 75.5714 8.432V9.75482H74.3804V11.2851H75.5714V16.3948H77.4973V11.2333H78.9164V9.70294H77.4973V8.32825C77.548 7.31668 77.7761 7.00543 78.3082 7.00543ZM85.1756 12.3486C85.3023 11.4148 85.9105 10.8701 86.7214 10.8701C87.5323 10.8701 88.1405 11.4148 88.1912 12.3486H85.1756ZM90.1171 13.3861C90.1425 13.2305 90.1425 13.1786 90.1425 13.1008C90.1425 10.8442 88.7234 9.44357 86.6961 9.44357C84.6688 9.44357 83.1737 10.9479 83.1737 13.0748C83.1737 15.2017 84.5675 16.7061 86.7468 16.7061C88.2672 16.7061 89.3569 16.0317 89.9651 14.8386L88.4446 14.2161L88.3179 14.268C87.9378 14.8645 87.4563 15.2017 86.7975 15.2017C85.8598 15.2017 85.1503 14.5273 85.1503 13.4639V13.3861H90.1171ZM96.3003 13.0748C96.3003 14.242 95.5908 15.0202 94.5518 15.0202C93.5888 15.0202 92.9553 14.2939 92.9553 13.0748C92.9553 11.8558 93.6142 11.1036 94.5771 11.1036C95.5401 11.1036 96.3003 11.9336 96.3003 13.0748ZM91.0294 13.0489C91.0294 15.3055 92.2204 16.6802 93.9183 16.6802C94.8812 16.6802 95.8188 16.1614 96.3257 15.3055V16.3948H98.2009V5.47511H96.275V8.6395C96.275 9.39169 96.3003 10.1698 96.3003 10.7923C95.7682 9.8845 94.9066 9.41763 93.9943 9.41763C92.3218 9.44356 91.0294 10.8701 91.0294 13.0489ZM103.979 11.1295C103.979 14.3717 106.31 16.6802 109.402 16.6802C111.454 16.6802 113.051 15.7983 114.09 13.9567L112.595 12.9711L112.341 13.023C111.682 14.1642 110.795 14.683 109.478 14.683C107.602 14.683 106.183 13.1786 106.183 11.1036C106.183 9.02856 107.602 7.52418 109.452 7.52418C110.694 7.52418 111.606 8.04293 112.265 9.21013L112.519 9.262L114.039 8.27637C113.076 6.4348 111.429 5.55292 109.376 5.55292C106.335 5.57886 103.979 7.86137 103.979 11.1295ZM117.536 15.4611C117.029 15.4611 116.776 15.2017 116.776 14.7348C116.776 14.1123 117.308 13.7492 118.879 13.438V14.8386C118.448 15.2536 118.017 15.4611 117.536 15.4611ZM121.439 15.2017C121.286 15.2795 121.185 15.3055 121.084 15.3055C120.856 15.3055 120.78 15.2277 120.78 14.9164V11.9595C120.78 10.2995 119.867 9.44357 118.22 9.44357C116.826 9.44357 115.661 10.1698 115.027 11.2592L116.168 12.0633L116.294 12.0373C116.75 11.3889 117.308 11.0517 117.941 11.0517C118.575 11.0517 118.879 11.3889 118.879 12.167V12.5301C115.965 12.9711 114.926 13.7751 114.926 14.9942C114.926 16.0317 115.635 16.7061 116.852 16.7061C117.713 16.7061 118.398 16.4208 119.056 15.7464C119.183 16.2911 119.563 16.6542 120.4 16.6542C120.856 16.6542 121.21 16.5764 121.54 16.4727V15.2795L121.439 15.2017ZM122.579 16.3948H124.505V13.3342C124.505 11.9336 125.062 11.1814 125.645 11.1814C125.949 11.1814 126.127 11.3111 126.279 11.6483L126.405 11.7001L128.002 10.7923C127.723 9.83263 127.166 9.41763 126.431 9.41763C125.62 9.41763 124.936 9.85857 124.378 10.8961V9.677H122.579V16.3948ZM134.033 13.0489C134.033 14.268 133.399 15.0202 132.411 15.0202C131.423 15.0202 130.713 14.242 130.713 13.0748C130.713 11.9076 131.423 11.1036 132.436 11.1036C133.45 11.1036 134.033 11.8298 134.033 13.0489ZM130.713 15.3055C131.22 16.1614 132.107 16.6802 133.019 16.6802C134.743 16.6802 135.984 15.2017 135.984 12.997C135.984 10.7923 134.793 9.41763 133.121 9.41763C132.158 9.41763 131.296 9.8845 130.739 10.7923C130.764 10.1439 130.764 9.39169 130.764 8.6395V5.47511H128.838V16.3948H130.713V15.3055ZM142.319 13.0489C142.319 14.1383 141.559 14.9942 140.571 14.9942C139.583 14.9942 138.797 14.1642 138.797 13.0489C138.797 11.9336 139.532 11.1036 140.571 11.1036C141.61 11.1036 142.319 11.9595 142.319 13.0489ZM136.846 13.0489C136.846 15.098 138.442 16.6802 140.546 16.6802C142.649 16.6802 144.245 15.098 144.245 13.0489C144.245 10.9998 142.674 9.41763 140.546 9.41763C138.417 9.44356 136.846 10.9998 136.846 13.0489ZM145.462 16.3948H147.388V13.1267C147.388 11.9076 147.996 11.1295 148.883 11.1295C149.694 11.1295 150.074 11.5704 150.074 12.7376V16.3948H152V12.0633C152 10.3514 151.113 9.41763 149.618 9.41763C148.655 9.41763 147.894 9.8845 147.337 10.7923V9.677H145.462V16.3948ZM47.8991 29.5193C48.7607 31.0237 50.0278 31.698 51.7003 31.698C53.8289 31.698 55.3494 30.2715 55.3494 28.4818C55.3494 27.0552 54.6905 26.1474 52.5365 25.1618C50.712 24.3318 50.4079 24.0205 50.4079 23.4239C50.4079 22.8274 50.8893 22.3605 51.7256 22.3605C52.5112 22.3605 53.0433 22.7236 53.4488 23.3461L53.7022 23.398L55.0959 22.3605C54.3864 21.2192 53.2207 20.5708 51.7003 20.5708C49.6223 20.5708 48.2539 21.8158 48.2539 23.4239C48.2539 24.8764 48.9888 25.8102 51.0161 26.6661C52.8153 27.4443 53.1954 27.8852 53.1954 28.6115C53.1954 29.3377 52.5619 29.8824 51.6496 29.8824C50.7373 29.8824 50.1038 29.4674 49.5463 28.5336L49.2929 28.4558L47.8991 29.5193ZM60.6203 29.9083L60.4936 29.8305C60.2402 29.9602 60.0121 30.0121 59.784 30.0121C59.1252 30.0121 58.8717 29.7527 58.8717 28.9486V26.2771H60.671V24.7468H58.8717V22.0752H58.4663L56.9458 22.983V24.7468H55.7548V26.2771H56.9458V29.4415C56.9458 30.9199 57.7567 31.698 59.2519 31.698C59.784 31.698 60.3162 31.5943 60.671 31.4387L60.6203 29.9083ZM63.9906 30.479C63.4838 30.479 63.2304 30.2196 63.2304 29.7527C63.2304 29.1302 63.7626 28.7671 65.3337 28.4558V29.8565C64.9029 30.2715 64.4468 30.479 63.9906 30.479ZM67.8678 30.2196C67.7157 30.2974 67.6144 30.3233 67.513 30.3233C67.2849 30.3233 67.2089 30.2455 67.2089 29.9343V26.9774C67.2089 25.3174 66.2966 24.4614 64.6495 24.4614C63.2557 24.4614 62.09 25.1877 61.4565 26.2771L62.5969 27.0811L62.7236 27.0552C63.1797 26.4068 63.7372 26.0696 64.3707 26.0696C65.0043 26.0696 65.3083 26.4068 65.3083 27.1849V27.548C62.3941 27.989 61.3552 28.793 61.3552 30.0121C61.3552 31.0496 62.0647 31.724 63.2811 31.724C64.1427 31.724 64.8269 31.4387 65.4857 30.7643C65.6124 31.309 65.9926 31.6721 66.8288 31.6721C67.2849 31.6721 67.6397 31.5943 67.9691 31.4905V30.2974L67.8678 30.2196ZM69.0335 31.4387H70.9594V28.1705C70.9594 26.9515 71.5676 26.1733 72.4545 26.1733C73.2654 26.1733 73.6455 26.6143 73.6455 27.7815V31.4387H75.5714V27.1071C75.5714 25.3952 74.6845 24.4614 73.1894 24.4614C72.2264 24.4614 71.4662 24.9283 70.9087 25.8361V24.7208H69.0335V31.4387ZM82.084 28.0927C82.084 29.2599 81.3745 30.038 80.3355 30.038C79.3726 30.038 78.739 29.3118 78.739 28.0927C78.739 26.8736 79.3979 26.1214 80.3609 26.1214C81.3745 26.1214 82.084 26.9515 82.084 28.0927ZM76.8131 28.0668C76.8131 30.3233 78.0042 31.698 79.702 31.698C80.6649 31.698 81.6026 31.1793 82.1094 30.3233V31.4127H83.9846V20.493H82.0587V23.6574C82.0587 24.4096 82.084 25.1877 82.084 25.8102C81.5519 24.9024 80.6903 24.4355 79.778 24.4355C78.1309 24.4614 76.8131 25.888 76.8131 28.0668ZM87.7858 30.479C87.2789 30.479 87.0255 30.2196 87.0255 29.7527C87.0255 29.1302 87.5577 28.7671 89.1288 28.4558V29.8565C88.698 30.2715 88.2672 30.479 87.7858 30.479ZM91.6883 30.2196C91.5362 30.2974 91.4349 30.3233 91.3335 30.3233C91.1054 30.3233 91.0294 30.2455 91.0294 29.9343V26.9774C91.0294 25.3174 90.1171 24.4614 88.47 24.4614C87.0762 24.4614 85.9105 25.1877 85.277 26.2771L86.4173 27.0811L86.544 27.0552C87.0002 26.4068 87.5577 26.0696 88.1912 26.0696C88.8247 26.0696 89.1288 26.4068 89.1288 27.1849V27.548C86.2146 27.989 85.1756 28.793 85.1756 30.0121C85.1756 31.0496 85.8852 31.724 87.1015 31.724C87.9631 31.724 88.6473 31.4387 89.3062 30.7643C89.4329 31.309 89.813 31.6721 90.6493 31.6721C91.1054 31.6721 91.4602 31.5943 91.7896 31.4905V30.2974L91.6883 30.2196ZM92.8286 31.4387H94.7545V28.378C94.7545 26.9774 95.312 26.2252 95.8949 26.2252C96.1989 26.2252 96.3763 26.3549 96.5284 26.6921L96.6551 26.7439L98.2516 25.8361C97.9728 24.8764 97.4153 24.4614 96.6804 24.4614C95.8695 24.4614 95.1853 24.9024 94.6278 25.9399V24.7208H92.8286V31.4387ZM103.903 28.0927C103.903 29.2599 103.193 30.038 102.154 30.038C101.191 30.038 100.558 29.3118 100.558 28.0927C100.558 26.8736 101.216 26.1214 102.179 26.1214C103.193 26.1214 103.903 26.9515 103.903 28.0927ZM98.6317 28.0668C98.6317 30.3233 99.8227 31.698 101.521 31.698C102.483 31.698 103.421 31.1793 103.928 30.3233V31.4127H105.803V20.493H103.877V23.6574C103.877 24.4096 103.903 25.1877 103.903 25.8102C103.37 24.9024 102.509 24.4355 101.597 24.4355C99.9494 24.4614 98.6317 25.888 98.6317 28.0668Z\" fill=\"#4E4E4E\"/> <path d=\"M0.384865 0.261651C0.0807742 0.261651 -0.0966123 0.59884 0.0554333 0.858216L2.26009 4.74886H30.3379L32.8213 0.261651H0.384865Z\" fill=\"#4E4E4E\"/> <path d=\"M3.65385 7.23887L6.23862 11.7779H26.4353L28.9441 7.23887H3.65385Z\" fill=\"#4E4E4E\"/> <path d=\"M22.5328 18.833L25.0416 14.2939H7.65771L10.2425 18.833H22.5328Z\" fill=\"#4E4E4E\"/> <path d=\"M41.0317 0.183838L35.254 0.209776L20.8097 25.7843L17.9968 21.0636L11.5602 21.1933L20.5056 36.9893C20.6576 37.2487 21.0377 37.2487 21.1898 36.9893L41.3865 0.780403C41.5132 0.521027 41.3105 0.183838 41.0317 0.183838Z\" fill=\"#4E4E4E\"/> </g> <defs> <clipPath id=\"clip0_1898_31528\"> <rect width=\"152\" height=\"37\" fill=\"white\" transform=\"translate(0 0.183838)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"IUVJHoFpS\",layoutId:\"IUVJHoFpS\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1922m8p-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ppCAnI3Zi-container\",nodeId:\"ppCAnI3Zi\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"163\" height=\"20\" viewBox=\"0 0 163 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_1898_31535)\"> <path d=\"M161.156 1.70194V2.26948H161.444C161.595 2.26948 161.704 2.2555 161.765 2.23034C161.863 2.1884 161.913 2.10173 161.913 1.97592C161.913 1.7942 161.782 1.70194 161.525 1.70194H161.156ZM160.876 3.25918V1.47828H161.564C161.98 1.47828 162.19 1.64602 162.19 1.98431C162.19 2.26389 162.033 2.42883 161.72 2.47357L162.229 3.25918H161.933L161.446 2.49314H161.153V3.25918H160.874H160.876ZM160.214 2.33657C160.214 2.714 160.329 3.02713 160.558 3.28154C160.795 3.54155 161.1 3.67015 161.472 3.67015C161.843 3.67015 162.134 3.54155 162.371 3.28713C162.603 3.03831 162.721 2.73078 162.721 2.36453C162.721 1.99829 162.603 1.69635 162.371 1.44752C162.134 1.1959 161.832 1.07009 161.472 1.07009C161.111 1.07009 160.823 1.19311 160.58 1.43914C160.337 1.68516 160.214 1.98431 160.214 2.33657ZM159.935 2.39249C159.935 1.95356 160.08 1.58731 160.374 1.29376C160.667 0.997405 161.033 0.849229 161.469 0.849229C161.905 0.849229 162.26 0.994609 162.553 1.28816C162.849 1.58172 162.997 1.94237 162.997 2.37012C162.997 2.79788 162.849 3.16132 162.553 3.45488C162.26 3.75123 161.896 3.89941 161.469 3.89941C161.041 3.89941 160.689 3.75123 160.388 3.46047C160.086 3.16692 159.935 2.81185 159.935 2.39529\" fill=\"#4E4E4E\"/> <path d=\"M27.3767 15.1663C27.9215 14.4422 28.1954 13.4134 28.1954 12.0798C28.1954 10.7462 27.9215 9.71739 27.3767 8.99888C26.8318 8.28036 26.0495 7.91971 25.0324 7.91971C24.0154 7.91971 23.233 8.28036 22.6826 8.99888C22.1321 9.72018 21.8583 10.7462 21.8583 12.0798C21.8583 13.4134 22.1321 14.4422 22.6826 15.1663C23.233 15.8904 24.0154 16.2511 25.0324 16.2511C26.0495 16.2511 26.8318 15.8904 27.3767 15.1663ZM30.1596 17.0898C29.0364 18.4765 27.332 19.1727 25.0436 19.1727C22.7552 19.1727 21.0508 18.4793 19.9276 17.0898C18.8044 15.7031 18.2427 14.0312 18.2427 12.0798C18.2427 10.1284 18.8044 8.49564 19.9276 7.08658C21.0508 5.67751 22.7552 4.97298 25.0436 4.97298C27.332 4.97298 29.0364 5.67751 30.1596 7.08658C31.2829 8.49564 31.8445 10.1591 31.8445 12.0798C31.8445 14.0005 31.2829 15.7031 30.1596 17.0898Z\" fill=\"#4E4E4E\"/> <path d=\"M36.804 18.7197H33.3226V0.709441H36.804V18.7197Z\" fill=\"#4E4E4E\"/> <path d=\"M47.24 15.102C47.7541 14.3695 48.0112 13.419 48.0112 12.2559C48.0112 10.626 47.6005 9.46297 46.7762 8.76124C46.2705 8.33908 45.6865 8.1266 45.0159 8.1266C43.9989 8.1266 43.2528 8.51241 42.775 9.28125C42.3 10.0501 42.0597 11.0062 42.0597 12.1469C42.0597 13.377 42.3 14.3611 42.7862 15.0992C43.2696 15.8345 44.0044 16.2036 44.9908 16.2036C45.9771 16.2036 46.7259 15.8373 47.2372 15.1048M46.385 5.616C47.0137 5.97107 47.5222 6.46032 47.9134 7.08937V0.734603H51.4424V18.7197H48.0615V16.8745C47.5641 17.6629 46.9997 18.2389 46.3655 18.5967C45.7312 18.9546 44.9405 19.1363 43.9961 19.1363C42.4397 19.1363 41.1321 18.5073 40.0703 17.2492C39.0086 15.9911 38.4777 14.3751 38.4777 12.4041C38.4777 10.1312 39.0002 8.34467 40.048 7.03905C41.093 5.73622 42.4928 5.08481 44.2419 5.08481C45.0466 5.08481 45.7647 5.26094 46.3906 5.616\" fill=\"#4E4E4E\"/> <path d=\"M62.3701 13.159C62.4875 13.9809 62.7166 14.596 63.0575 15.0042C63.6806 15.745 64.7479 16.1169 66.2623 16.1169C67.1676 16.1169 67.9053 16.019 68.4697 15.8233C69.5426 15.4487 70.0791 14.7526 70.0791 13.7349C70.0791 13.1394 69.8164 12.6809 69.2911 12.3538C68.7659 12.0379 67.9332 11.7555 66.7932 11.5095L64.8457 11.0817C62.929 10.6596 61.6157 10.1983 60.8976 9.70061C59.685 8.87027 59.0787 7.57024 59.0787 5.80332C59.0787 4.19017 59.671 2.851 60.8585 1.78301C62.0432 0.717828 63.7867 0.183838 66.0863 0.183838C68.0059 0.183838 69.646 0.687075 70.9983 1.69355C72.3535 2.70002 73.066 4.15941 73.1303 6.07451H69.5175C69.4504 4.99255 68.967 4.22092 68.0645 3.76521C67.4638 3.46327 66.7178 3.3123 65.8237 3.3123C64.8289 3.3123 64.0382 3.508 63.4431 3.89941C62.8507 4.29081 62.5545 4.83599 62.5545 5.53493C62.5545 6.17795 62.8451 6.65882 63.4319 6.97754C63.8063 7.19002 64.6054 7.43884 65.8237 7.72401L68.9838 8.47048C70.3697 8.79758 71.4063 9.23092 72.0964 9.77889C73.1694 10.626 73.7058 11.8533 73.7058 13.4553C73.7058 15.0573 73.0688 16.4664 71.7975 17.5539C70.5261 18.6415 68.7295 19.1838 66.4104 19.1838C64.0913 19.1838 62.1773 18.6498 60.8194 17.5763C59.4615 16.5055 58.7825 15.0321 58.7825 13.159H62.3701Z\" fill=\"#4E4E4E\"/> <path d=\"M74.2563 8.00358V5.52374H76.1116V1.80818H79.5539V5.52095H81.7165V8.00079H79.5539V15.0377C79.5539 15.5829 79.6238 15.924 79.7607 16.0582C79.8976 16.1924 80.3223 16.2595 81.032 16.2595C81.1382 16.2595 81.2499 16.2595 81.3673 16.2539C81.4846 16.2511 81.602 16.2427 81.7165 16.2343V18.8372L80.068 18.8987C78.4223 18.9546 77.2991 18.6694 76.6983 18.0432C76.3072 17.6434 76.1116 17.0283 76.1116 16.198V8.00079H74.2563V8.00358Z\" fill=\"#4E4E4E\"/> <path d=\"M91.0265 12.2448C90.803 12.3845 90.5795 12.4936 90.3531 12.5802C90.1268 12.6669 89.8139 12.7452 89.4171 12.8179L88.6236 12.9661C87.8804 13.0975 87.3467 13.254 87.0254 13.4413C86.4777 13.7601 86.2039 14.2521 86.2039 14.9203C86.2039 15.5158 86.3715 15.9436 86.7068 16.2091C87.0421 16.4747 87.4473 16.6061 87.9278 16.6061C88.6879 16.6061 89.3892 16.3853 90.029 15.9463C90.6689 15.5074 91.0014 14.7022 91.0265 13.5392V12.2448ZM88.8974 10.6176C89.5456 10.5365 90.0095 10.4331 90.2861 10.3129C90.7862 10.1004 91.0377 9.77051 91.0377 9.32318C91.0377 8.77801 90.8449 8.40058 90.4621 8.1937C90.0793 7.98681 89.5149 7.88337 88.7717 7.88337C87.939 7.88337 87.3467 8.08466 87.0002 8.49284C86.7515 8.79479 86.5867 9.20017 86.5057 9.71459H83.1471C83.2198 8.54876 83.5467 7.59261 84.1279 6.84334C85.0527 5.67192 86.637 5.08481 88.8862 5.08481C90.3503 5.08481 91.6496 5.37277 92.7868 5.9515C93.924 6.53022 94.4912 7.62057 94.4912 9.22533V15.3341C94.4912 15.759 94.4996 16.2707 94.5164 16.8745C94.5415 17.3302 94.6114 17.6406 94.7231 17.8027C94.8377 17.9649 95.0081 18.0991 95.2372 18.2053V18.7197H91.4512C91.345 18.4513 91.2724 18.1997 91.2305 17.9621C91.1914 17.7272 91.1578 17.4561 91.1327 17.1541C90.6493 17.6769 90.0933 18.1187 89.4618 18.4877C88.7102 18.9182 87.8552 19.1363 86.908 19.1363C85.6982 19.1363 84.6951 18.7924 83.9043 18.1047C83.1136 17.4169 82.7196 16.4412 82.7196 15.1775C82.7196 13.5392 83.3567 12.3538 84.628 11.6213C85.3237 11.2215 86.3492 10.9363 87.7015 10.7658L88.8946 10.6204L88.8974 10.6176Z\" fill=\"#4E4E4E\"/> <path d=\"M107.288 6.16397C108.16 6.88528 108.596 8.07907 108.596 9.75094V18.7197H105.031V10.6204C105.031 9.91868 104.938 9.3819 104.754 9.00726C104.413 8.3223 103.768 7.98122 102.815 7.98122C101.644 7.98122 100.839 8.48166 100.404 9.48534C100.177 10.0165 100.065 10.6903 100.065 11.5123V18.7225H96.584V5.42589H99.9537V7.36895C100.398 6.68399 100.82 6.19193 101.217 5.88999C101.929 5.3532 102.834 5.08481 103.93 5.08481C105.299 5.08481 106.422 5.44546 107.291 6.16677\" fill=\"#4E4E4E\"/> <path d=\"M118.766 15.102C119.281 14.3695 119.538 13.419 119.538 12.2559C119.538 10.626 119.127 9.46297 118.305 8.76124C117.8 8.33908 117.213 8.1266 116.545 8.1266C115.528 8.1266 114.779 8.51241 114.304 9.28125C113.829 10.0501 113.589 11.0062 113.589 12.1469C113.589 13.377 113.829 14.3611 114.315 15.0992C114.799 15.8345 115.534 16.2036 116.52 16.2036C117.506 16.2036 118.252 15.8373 118.766 15.1048M117.911 5.616C118.537 5.97107 119.046 6.46032 119.437 7.08937V0.734603H122.966V18.7197H119.582V16.8745C119.088 17.6629 118.521 18.2389 117.886 18.5967C117.252 18.9546 116.461 19.1363 115.517 19.1363C113.961 19.1363 112.656 18.5073 111.591 17.2492C110.527 15.9911 109.999 14.3751 109.999 12.4041C109.999 10.1312 110.521 8.34467 111.566 7.03905C112.611 5.73622 114.011 5.08481 115.76 5.08481C116.567 5.08481 117.283 5.26094 117.911 5.616Z\" fill=\"#4E4E4E\"/> <path d=\"M132.55 12.2448C132.326 12.3845 132.103 12.4936 131.876 12.5802C131.65 12.6669 131.337 12.7452 130.943 12.8179L130.15 12.9661C129.406 13.0975 128.873 13.254 128.549 13.4413C128.001 13.7601 127.727 14.2521 127.727 14.9203C127.727 15.5158 127.895 15.9436 128.23 16.2091C128.565 16.4747 128.971 16.6061 129.451 16.6061C130.211 16.6061 130.912 16.3853 131.552 15.9463C132.192 15.5074 132.525 14.7022 132.55 13.5392V12.2448ZM130.421 10.6176C131.069 10.5365 131.53 10.4331 131.809 10.3129C132.309 10.1004 132.561 9.77051 132.561 9.32318C132.561 8.77801 132.368 8.40058 131.985 8.1937C131.6 7.98681 131.038 7.88337 130.295 7.88337C129.462 7.88337 128.87 8.08466 128.523 8.49284C128.278 8.79479 128.11 9.20017 128.029 9.71459H124.67C124.743 8.54876 125.07 7.59261 125.651 6.84334C126.576 5.67192 128.16 5.08481 130.41 5.08481C131.874 5.08481 133.173 5.37277 134.31 5.9515C135.447 6.53022 136.014 7.62057 136.014 9.22533V15.3341C136.014 15.759 136.023 16.2707 136.04 16.8745C136.065 17.3302 136.135 17.6406 136.249 17.8027C136.364 17.9649 136.534 18.0991 136.761 18.2053V18.7197H132.975C132.868 18.4513 132.796 18.1997 132.754 17.9621C132.712 17.7272 132.681 17.4561 132.656 17.1541C132.173 17.6769 131.617 18.1187 130.988 18.4877C130.233 18.9182 129.384 19.1363 128.431 19.1363C127.219 19.1363 126.218 18.7924 125.428 18.1047C124.637 17.4169 124.243 16.4412 124.243 15.1775C124.243 13.5392 124.88 12.3538 126.151 11.6213C126.847 11.2215 127.872 10.9363 129.228 10.7658L130.421 10.6204V10.6176Z\" fill=\"#4E4E4E\"/> <path d=\"M145.146 5.0904C145.19 5.09599 145.288 5.10158 145.445 5.10997V8.67736C145.224 8.6522 145.028 8.63543 144.858 8.62984C144.687 8.62145 144.548 8.61865 144.442 8.61865C143.042 8.61865 142.1 9.07436 141.619 9.98578C141.351 10.5002 141.217 11.2886 141.217 12.3566V18.7225H137.713V5.40073H141.036V7.72121C141.572 6.83216 142.041 6.22828 142.441 5.90117C143.092 5.356 143.939 5.08201 144.981 5.08201C145.045 5.08201 145.101 5.08201 145.146 5.0876\" fill=\"#4E4E4E\"/> <path d=\"M154.419 15.102C154.933 14.3695 155.188 13.419 155.188 12.2559C155.188 10.626 154.777 9.46297 153.955 8.76124C153.45 8.33908 152.866 8.1266 152.198 8.1266C151.181 8.1266 150.435 8.51241 149.957 9.28125C149.479 10.0501 149.245 11.0062 149.245 12.1469C149.245 13.377 149.488 14.3611 149.971 15.0992C150.454 15.8345 151.189 16.2036 152.176 16.2036C153.162 16.2036 153.908 15.8373 154.422 15.1048M153.564 5.616C154.19 5.97107 154.702 6.46032 155.09 7.08937V0.734603H158.619V18.7197H155.235V16.8745C154.738 17.6629 154.173 18.2389 153.539 18.5967C152.905 18.9546 152.114 19.1363 151.17 19.1363C149.613 19.1363 148.306 18.5073 147.244 17.2492C146.182 15.9911 145.651 14.3751 145.651 12.4041C145.651 10.1312 146.174 8.34467 147.222 7.03905C148.267 5.73622 149.667 5.08481 151.416 5.08481C152.223 5.08481 152.938 5.26094 153.564 5.616Z\" fill=\"#4E4E4E\"/> <path d=\"M11.2686 15.376C10.5785 15.787 9.75703 15.9939 8.80424 15.9939C7.51895 15.9939 6.37057 15.5354 5.3619 14.6156C4.35322 13.6958 3.84749 12.1329 3.84749 9.92148C3.84749 7.71003 4.31411 6.0829 5.24454 4.98975C6.17778 3.89661 7.36807 3.34864 8.81542 3.34864C9.57262 3.34864 10.26 3.48284 10.8803 3.75123C11.9867 4.24049 12.6825 5.09879 12.9675 6.32892H16.6669C16.4629 4.59555 15.6666 3.14735 14.2807 1.9871C12.892 0.826863 11.0563 0.245345 8.76792 0.245345C6.13028 0.245345 4.00955 1.12321 2.40573 2.88175C0.80191 4.64028 0 6.97754 0 9.89072C0 12.8039 0.793527 15.0433 2.38058 16.704C3.90337 18.3563 5.85646 19.1838 8.24263 19.1838C9.39659 19.1838 10.4025 18.9881 11.2686 18.6023V15.376Z\" fill=\"#4E4E4E\"/> <path d=\"M8.80145 9.1163V12.4069H13.4872V17.0954H16.7758V9.1163H8.80145Z\" fill=\"#4E4E4E\"/> </g> <defs> <clipPath id=\"clip0_1898_31535\"> <rect width=\"163\" height=\"19\" fill=\"white\" transform=\"translate(0 0.183838)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"ppCAnI3Zi\",layoutId:\"ppCAnI3Zi\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i1yl4r-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"d2GClY0CB-container\",nodeId:\"d2GClY0CB\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"65\" height=\"36\" viewBox=\"0 0 65 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_1898_31565)\"> <path d=\"M62.4354 9.5612C63.8518 9.5612 65 8.41797 65 7.00774C65 5.5975 63.8518 4.45428 62.4354 4.45428C61.019 4.45428 59.8707 5.5975 59.8707 7.00774C59.8707 8.41797 61.019 9.5612 62.4354 9.5612Z\" fill=\"#4E4E4E\"/> <path d=\"M34.8435 22.1524C34.8435 22.1524 34.5782 22.1524 34.3129 22.1964C33.9592 22.2404 33.6054 22.3285 33.2517 22.5046C32.8095 22.7247 32.4558 22.9889 32.102 23.3411C31.6599 23.8253 31.3503 24.3977 31.2619 25.0581C31.2177 25.4103 31.2177 26.0706 31.2177 26.0706V35.0958H34.534V24.97H38.0272V22.1084H34.8435V22.1524Z\" fill=\"#4E4E4E\"/> <path d=\"M0 28.5801C0 24.7939 2.78571 21.9763 6.76531 21.9763C10.7449 21.9763 13.4864 24.7499 13.4864 28.5801V29.6367H3.18367C3.58163 31.4417 4.9966 32.4103 6.76531 32.4103C8.13605 32.4103 9.10884 32.014 9.72789 31.2216H12.9558C12.0272 33.5989 9.72789 35.1398 6.76531 35.1398C2.78571 35.1398 0 32.3662 0 28.5801ZM10.3027 27.2153C9.81633 25.5423 8.44558 24.7059 6.80952 24.7059C5.08503 24.7059 3.7585 25.5864 3.31633 27.2153H10.3027Z\" fill=\"#4E4E4E\"/> <path d=\"M40.6361 30.0329V18.1901H43.6871V22.1524H47.932V24.8819H43.6871V29.9889C43.6871 31.6618 44.5714 32.3222 45.8095 32.3222C47.0476 32.3222 47.932 31.7058 47.932 29.9889V29.6807H50.983V29.9889C50.983 33.4669 48.9048 35.1398 45.8537 35.1398C42.7143 35.1398 40.6361 33.4669 40.6361 30.0329Z\" fill=\"#4E4E4E\"/> <path d=\"M64.5136 25.3222C64.2041 24.4417 63.6293 23.6933 62.8333 23.165C62.0374 22.6367 61.1088 22.3725 60.1803 22.2845C59.2959 22.1964 58.4116 22.1964 57.5272 22.2845C57.085 22.3285 56.6429 22.4606 56.2449 22.5926V18.1901H52.9286V35.1838H56.2449V25.3222H61.5952V35.1838H64.8673V27.7436C64.8673 26.9071 64.7789 26.1147 64.5136 25.3222Z\" fill=\"#4E4E4E\"/> <path d=\"M28.5646 28.536C28.5646 24.882 25.5578 21.8882 21.8878 21.8882C18.2177 21.8882 15.2109 24.882 15.2109 28.536C15.2109 32.1901 18.2177 35.1838 21.8878 35.1838C23.3469 35.1838 24.6735 34.6996 25.7789 33.9071V35.1838H28.5646V28.536ZM21.8878 32.014C19.9422 32.014 18.3946 30.4731 18.3946 28.536C18.3946 26.5989 19.9422 25.0581 21.8878 25.0581C23.8333 25.0581 25.381 26.5989 25.381 28.536C25.381 30.4731 23.8333 32.014 21.8878 32.014Z\" fill=\"#4E4E4E\"/> <path d=\"M34.0034 0.492014C34.0034 0.492014 33.7381 0.492014 33.4728 0.536039C33.119 0.580064 32.7653 0.668115 32.4116 0.844215C31.9694 1.06434 31.6156 1.32849 31.2619 1.68069C30.8197 2.16497 30.5102 2.7373 30.4218 3.39767C30.3776 3.74988 30.3776 4.41025 30.3776 4.41025V13.4354H33.6497V3.35365H37.1429V0.492014H34.0034Z\" fill=\"#4E4E4E\"/> <path d=\"M27.7687 0.492014H24.4524V10.3536H19.1463V0.492014H15.8742V7.93227C15.8742 8.76874 15.9626 9.60522 16.2279 10.3977C16.5374 11.2782 17.1122 12.0266 17.9082 12.5549C18.7041 13.0832 19.6327 13.3474 20.5612 13.4354C21.4456 13.5235 22.3299 13.5235 23.2143 13.4354C24.0986 13.3033 24.983 13.0392 25.7347 12.5549C26.5306 12.0266 27.1054 11.3222 27.415 10.3977C27.6803 9.60522 27.7687 8.76874 27.7687 7.93227C27.7687 5.46686 27.7687 0.492014 27.7687 0.492014Z\" fill=\"#4E4E4E\"/> <path d=\"M13.1769 5.86308C13.0884 5.15868 12.8673 4.54233 12.5578 3.88195C12.1599 3.04547 11.5408 2.34107 10.8333 1.72472C10.0374 1.06434 9.15306 0.624089 8.18027 0.403964C7.38435 0.227863 6.54422 0.139813 5.7483 0.271888C4.95238 0.315913 4.2449 0.580064 3.53742 0.976291C3.44898 1.02032 3.31633 1.10837 3.22789 1.19642C3.13946 1.24044 3.05102 1.28447 2.96258 1.37252V0.447989H0V18.7184H3.27211V12.3788C3.27211 12.3788 4.02381 12.9952 4.59864 13.1713C5.61565 13.4794 6.63265 13.5235 7.69388 13.3474C8.40136 13.2153 9.10884 12.9952 9.72789 12.643C10.6565 12.1147 11.4524 11.4103 12.0714 10.5738C12.602 9.82535 13 8.94484 13.1327 8.02032C13.2653 7.31591 13.2653 6.56749 13.1769 5.86308ZM9.72789 8.15239C9.68367 8.24044 9.68367 8.28447 9.63946 8.32849C9.59524 8.41654 9.55102 8.50459 9.5068 8.54862C9.5068 8.59264 9.46259 8.63667 9.46259 8.63667C9.28571 8.90082 9.10884 9.12094 8.88776 9.34107L8.84354 9.3851C8.71089 9.47315 8.62245 9.60522 8.4898 9.69327C8.35714 9.78132 8.26871 9.82535 8.13605 9.9134C8.09184 9.95742 8.04762 9.95742 7.95918 10.0014C7.87075 10.0455 7.78231 10.0895 7.69388 10.0895C7.60544 10.1335 7.56122 10.1335 7.47279 10.1775C7.38435 10.2216 7.2517 10.2216 7.16327 10.2656H7.03061C6.85374 10.2656 6.72109 10.3096 6.54422 10.3096C6.36735 10.3096 6.19048 10.3096 6.05782 10.2656C4.9966 10.0895 4.11225 9.51717 3.58163 8.63667V8.59264C3.53742 8.50459 3.44898 8.37252 3.40476 8.28447C3.40476 8.24044 3.36054 8.24044 3.36054 8.19642C3.18367 7.80019 3.09524 7.31591 3.09524 6.87566C3.09524 6.43541 3.09524 5.90711 3.27211 5.46686V5.42283L3.40476 5.15868L3.44898 5.11466C3.4932 5.07063 3.53742 4.98258 3.58163 4.93856C4.02381 4.23415 4.68708 3.74988 5.48299 3.48572C5.52721 3.48572 5.57143 3.48572 5.61565 3.4417C5.70408 3.39767 5.79252 3.39767 5.88095 3.39767C6.10204 3.35365 6.32313 3.30962 6.54422 3.30962C6.76531 3.30962 6.98639 3.35365 7.20748 3.39767H7.2517C7.38435 3.4417 7.51701 3.4417 7.60544 3.48572C7.7381 3.52975 7.82653 3.57378 7.95918 3.6178C7.95918 3.6178 8.0034 3.6178 8.0034 3.66183C8.57823 3.92598 9.06463 4.36623 9.41837 4.89453C9.55102 5.07063 9.63946 5.24673 9.72789 5.42283V5.46686C9.90476 5.86308 9.9932 6.34736 9.9932 6.78761C9.9932 7.22786 9.90476 7.75617 9.72789 8.15239Z\" fill=\"#4E4E4E\"/> <path d=\"M45.5 13.4354C41.8299 13.4354 38.8231 10.4417 38.8231 6.78761C38.8231 3.13352 41.8299 0.183838 45.5 0.183838C49.1701 0.183838 52.1769 3.17755 52.1769 6.83164C52.1769 10.4857 49.1701 13.4354 45.5 13.4354ZM45.5 3.35365C43.5544 3.35365 42.0068 4.89453 42.0068 6.83164C42.0068 8.76874 43.5544 10.3096 45.5 10.3096C47.4456 10.3096 48.9932 8.76874 48.9932 6.83164C48.9932 4.89453 47.4456 3.35365 45.5 3.35365Z\" fill=\"#4E4E4E\"/> </g> <defs> <clipPath id=\"clip0_1898_31565\"> <rect width=\"65\" height=\"35\" fill=\"white\" transform=\"translate(0 0.183838)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"d2GClY0CB\",layoutId:\"d2GClY0CB\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ir5sr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nOHNnOe5X-container\",nodeId:\"nOHNnOe5X\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"164\" height=\"30\" viewBox=\"0 0 164 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_1898_31593)\"> <path d=\"M23.6212 17.8176H23.6089V17.8798H23.5231V20.255C22.0644 19.4218 19.4412 17.9171 17.1612 16.5989C16.9161 16.4497 16.6219 16.487 16.4135 16.6611C16.4135 16.6611 16.4012 16.6611 16.389 16.6611C16.389 16.6611 16.3767 16.6735 16.3645 16.686C16.3032 16.7357 16.2541 16.7979 16.2051 16.8601C16.1806 16.8974 16.1806 16.9347 16.1683 16.972C16.1561 17.0217 16.1315 17.0715 16.1193 17.1088C16.1193 17.1585 16.1193 17.1958 16.1193 17.2456C16.1193 17.2829 16.1193 17.3326 16.1193 17.3699C16.1315 17.4197 16.1683 17.4694 16.1928 17.5192C16.2051 17.544 16.2174 17.5814 16.2296 17.6062C16.2786 17.6808 16.3522 17.743 16.4257 17.7803C16.5238 17.8301 16.6219 17.8922 16.7077 17.942L23.3515 21.8344C23.3515 21.8344 23.4373 21.8841 23.4741 21.909V25.2169H24.8593V25.1547H24.9573V17.8052H23.5722L23.6212 17.8176Z\" fill=\"#4E4E4E\"/> <path d=\"M1.38516 11.4754H1.47096V9.10022C2.91741 9.93341 5.55288 11.4506 7.82061 12.7687C7.93094 12.8309 8.04126 12.8558 8.15158 12.8558C8.27416 12.8558 8.39674 12.8185 8.49481 12.7563C8.60513 12.6941 8.70319 12.6195 8.77674 12.4952C8.96061 12.1718 8.85029 11.7615 8.53158 11.5625L1.47096 7.40897V4.12595H0.0858061V4.18813H0V11.5376L1.38516 11.55V11.4754Z\" fill=\"#4E4E4E\"/> <path d=\"M16.1806 12.4827C16.2174 12.5449 16.2786 12.5822 16.3399 12.632C16.4625 12.7563 16.6219 12.8309 16.7812 12.8309C16.8915 12.8309 17.0141 12.8061 17.1122 12.7439C17.1122 12.7439 17.1122 12.7439 17.1245 12.7439C17.9948 12.234 18.9019 11.6993 19.7844 11.177C21.1819 10.3562 22.4812 9.59765 23.3638 9.07535V11.3759H23.4986V11.4754H24.8838V4.12595H24.7489V4.02646H23.3638V7.32192C22.3218 7.95614 19.1225 9.8961 16.4012 11.55C16.0825 11.7366 15.9845 12.1594 16.1683 12.4827H16.1806Z\" fill=\"#4E4E4E\"/> <path d=\"M8.789 16.8725C8.73997 16.7979 8.67868 16.7233 8.60513 16.6735C8.39674 16.4994 8.10255 16.4621 7.84513 16.6114C7.84513 16.6114 7.83287 16.6114 7.82062 16.6238L1.58128 20.2799V17.9793H1.44645V17.8798H0.0735481V25.2293H0.208386V25.3288H1.59354V22.0333C2.63547 21.3991 5.83482 19.4591 8.5561 17.8052C8.8748 17.6187 8.97287 17.1958 8.789 16.8725Z\" fill=\"#4E4E4E\"/> <path d=\"M13.1774 1.52689H16.3399V0.183838H8.61739V1.52689H11.7922V27.8532H8.61739V29.1838H16.3399V27.8532H13.1774V1.52689Z\" fill=\"#4E4E4E\"/> <path d=\"M75.6075 9.57277C74.7004 9.05048 73.6829 8.78933 72.5797 8.78933C71.4765 8.78933 70.4713 9.05048 69.5642 9.57277C68.6449 10.0951 67.9217 10.8163 67.3946 11.7117C66.8675 12.6071 66.5978 13.6019 66.5978 14.659V14.6963C66.5978 15.7657 66.8675 16.7606 67.3946 17.656C67.9217 18.5513 68.6572 19.2602 69.5642 19.7825C70.4836 20.3048 71.4888 20.5659 72.5797 20.5659C73.6707 20.5659 74.7004 20.3048 75.6075 19.7825C76.5145 19.2602 77.2378 18.5513 77.7771 17.656C78.3042 16.7606 78.5739 15.7657 78.5739 14.6963V14.659C78.5739 13.6019 78.3042 12.6071 77.7771 11.7117C77.25 10.8163 76.5268 10.0951 75.6075 9.57277ZM76.9313 14.6963C76.9313 15.4797 76.7352 16.2134 76.3429 16.885C75.9507 17.5565 75.4113 18.0912 74.7494 18.4767C74.0875 18.8622 73.352 19.0612 72.5797 19.0612C71.8075 19.0612 71.072 18.8622 70.41 18.4767C69.7481 18.0912 69.2088 17.5565 68.8165 16.885C68.4242 16.2259 68.2281 15.4797 68.2281 14.6963V14.659C68.2281 13.8755 68.4242 13.1418 68.8165 12.4703C69.2088 11.7988 69.7359 11.2765 70.3978 10.8785C71.0597 10.493 71.7952 10.294 72.5797 10.294C73.3642 10.294 74.0997 10.493 74.7617 10.8785C75.4236 11.264 75.9629 11.7988 76.3429 12.4703C76.7352 13.1418 76.9313 13.8755 76.9313 14.659V14.6963Z\" fill=\"#4E4E4E\"/> <path d=\"M89.0177 18.7254L85.5364 9.01317H82.8764V20.3048H84.4087V10.2692L88.0371 20.3048H89.9248L93.5532 10.2692L93.5164 20.3048H95.0732V9.01317H92.5235L89.0177 18.7254Z\" fill=\"#4E4E4E\"/> <path d=\"M100.945 20.3172H108.569V18.9368H102.538V15.2186H108.03V13.8755H102.538V10.3811H108.569V9.01317H100.945V20.3172Z\" fill=\"#4E4E4E\"/> <path d=\"M112.896 10.3811H116.758V20.3172H118.363V10.3811H122.212V9.01317H112.896V10.3811Z\" fill=\"#4E4E4E\"/> <path d=\"M135.108 14.8704C135.635 14.6341 136.064 14.2735 136.395 13.8009C136.726 13.3283 136.885 12.7812 136.885 12.147C136.885 11.5127 136.726 10.9656 136.419 10.493C136.113 10.0205 135.684 9.65982 135.157 9.39867C134.63 9.13753 134.029 9.01317 133.367 9.01317H127.079V20.3172H128.672V15.2434H131.835C132.754 16.6238 135.218 20.3172 135.218 20.3172H137.204L133.649 15.2186C134.164 15.1937 134.654 15.0818 135.108 14.8704ZM128.672 10.3935H133.122C133.784 10.3935 134.299 10.5428 134.654 10.8537C135.01 11.1645 135.181 11.5874 135.181 12.147C135.181 12.52 135.108 12.8434 134.949 13.1045C134.789 13.3657 134.556 13.5646 134.25 13.7014C133.943 13.8382 133.563 13.9128 133.122 13.9128H128.672V10.3935Z\" fill=\"#4E4E4E\"/> <path d=\"M141.911 10.3065H144.878V19.0363H141.911V20.3172H149.278V19.0363H146.312V10.3065H149.278V9.02561H141.911V10.3065Z\" fill=\"#4E4E4E\"/> <path d=\"M40.2553 10.3065H43.2218V19.0363H40.2553V20.3172H47.6224V19.0363H44.656V10.3065H47.6224V9.02561H40.2553V10.3065Z\" fill=\"#4E4E4E\"/> <path d=\"M59.623 14.0123L56.4849 13.5771C55.774 13.4776 55.2591 13.2786 54.9282 12.9802C54.6462 12.7314 54.5114 12.3832 54.5114 11.9356C54.5114 11.4879 54.6708 11.1521 54.9895 10.8412C55.3082 10.5428 55.823 10.3811 56.5462 10.3811H62.2585V9.01317H56.534C55.7495 9.01317 55.0875 9.14996 54.5727 9.41111C54.0456 9.6847 53.6533 10.0453 53.3959 10.493C53.1508 10.9407 53.0282 11.4133 53.0282 11.9231C53.0282 12.7936 53.2856 13.4776 53.7882 13.975C54.3275 14.4973 55.1733 14.8579 56.2398 15.0072L59.3533 15.4424C60.0888 15.5419 60.6404 15.7657 60.9836 16.0766C61.2901 16.3502 61.4372 16.7357 61.4372 17.2207C61.4372 17.7057 61.2533 18.0788 60.8978 18.4021C60.5301 18.7254 59.9785 18.8995 59.2798 18.8995H53.163V20.3048H59.2185C60.0398 20.3048 60.7385 20.168 61.3023 19.8944H61.2411C61.8049 19.6084 62.234 19.2353 62.5036 18.7627C62.7733 18.3026 62.9204 17.7803 62.9204 17.2332C62.9204 16.3627 62.6385 15.6538 62.0991 15.1067C61.5352 14.547 60.6527 14.1491 59.623 14.0123Z\" fill=\"#4E4E4E\"/> <path d=\"M157.957 11.0402C158.594 10.6547 159.305 10.4681 160.053 10.4681H164V9.01317H160.053C159.011 9.01317 158.043 9.27432 157.16 9.77175C156.277 10.2692 155.579 10.9656 155.064 11.8236C154.549 12.6817 154.279 13.6392 154.279 14.6714C154.279 15.7036 154.537 16.6611 155.064 17.5192C155.579 18.3772 156.29 19.0612 157.16 19.5711C158.043 20.0685 159.011 20.3296 160.053 20.3296H164V18.8747H160.053C159.305 18.8747 158.594 18.6881 157.957 18.3151C157.319 17.942 156.805 17.4321 156.437 16.7855C156.069 16.1512 155.885 15.4424 155.885 14.6838C155.885 13.9253 156.069 13.2164 156.437 12.5698C156.805 11.9356 157.319 11.4257 157.957 11.0402Z\" fill=\"#4E4E4E\"/> </g> <defs> <clipPath id=\"clip0_1898_31593\"> <rect width=\"164\" height=\"29\" fill=\"white\" transform=\"translate(0 0.183838)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"nOHNnOe5X\",layoutId:\"nOHNnOe5X\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ix0aax-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Z4GH2jH6u-container\",nodeId:\"Z4GH2jH6u\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"130\" height=\"34\" viewBox=\"0 0 130 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_1898_31578)\"> <path d=\"M35.7878 21.4596C38.0524 23.293 40.2427 24.2188 42.3495 24.2188C43.4725 24.2188 44.3635 23.9805 45.0225 23.5038C45.338 23.2838 45.5979 22.9905 45.765 22.6513C45.9413 22.3121 46.0248 21.9363 46.0063 21.5513C46.0156 21.0563 45.8578 20.5613 45.5422 20.1763C45.041 19.6538 44.4378 19.2321 43.7695 18.9388L40.2242 17.2705C38.6557 16.5463 37.5605 15.758 36.9294 14.9146C36.289 14.0438 35.9549 12.9805 35.9827 11.8988C35.9642 11.0463 36.1405 10.1938 36.5025 9.4238C36.8644 8.64464 37.4027 7.9663 38.0802 7.42547C38.7392 6.8938 39.491 6.49047 40.2984 6.25214C41.1616 5.99547 42.0525 5.85797 42.9528 5.86714C43.4911 5.86714 44.0201 5.91297 44.5492 6.0138C45.0782 6.10547 45.5979 6.24297 46.0991 6.4263C46.5817 6.60047 47.0458 6.82047 47.4912 7.0863C47.9089 7.3338 48.2894 7.62714 48.6514 7.94797V11.963C47.8254 11.1288 46.8509 10.4321 45.7928 9.90964C44.8647 9.44214 43.8345 9.19464 42.7857 9.1763C41.9876 9.13964 41.1894 9.3688 40.5304 9.81797C40.252 10.0196 40.0293 10.2855 39.8808 10.5971C39.7323 10.9088 39.658 11.248 39.6766 11.5871C39.6766 12.0455 39.8251 12.4946 40.1128 12.8521C40.549 13.3196 41.0873 13.6771 41.6813 13.9155L44.9946 15.4371C45.765 15.7855 46.4982 16.1888 47.2035 16.638C47.7511 16.9955 48.243 17.4263 48.6514 17.9305C49.0133 18.3705 49.2825 18.8838 49.4496 19.4246C49.6166 20.0021 49.7001 20.598 49.7001 21.203C49.7187 22.1105 49.5238 23.0088 49.134 23.8338C48.7349 24.6496 48.1502 25.3738 47.4263 25.9238C46.7116 26.4646 45.9042 26.868 45.041 27.1155C44.1315 27.3813 43.1848 27.5188 42.2382 27.5188C41.0316 27.5188 39.8344 27.3263 38.6928 26.9413C37.6348 26.6021 36.6417 26.0888 35.76 25.4196L35.7785 21.4596H35.7878Z\" fill=\"#4E4E4E\"/> <path d=\"M49.5517 12.4671H53.7189L57.9881 21.1296L62.2574 12.4671H66.3225L55.5472 33.1838H51.5656L55.9834 25.0071L49.5517 12.4671Z\" fill=\"#4E4E4E\"/> <path d=\"M67.4548 27.1613V5.34464H71.2879V27.1521H67.4548V27.1613Z\" fill=\"#4E4E4E\"/> <path d=\"M72.346 12.4671H76.5874L80.801 21.1021L85.0425 12.4671H89.0797L80.7175 27.9313L72.3552 12.4671H72.346Z\" fill=\"#4E4E4E\"/> <path d=\"M95.9013 12.1188C98.2402 12.1188 100.05 12.9163 101.331 14.5021C102.612 16.1246 103.15 18.2238 102.955 20.7905H91.8641C91.9383 21.313 92.1332 21.8171 92.4116 22.2663C92.6901 22.7155 93.0706 23.1005 93.5161 23.403C94.4256 24.0355 95.5765 24.3471 96.9687 24.3471C97.8689 24.3471 98.7692 24.1913 99.623 23.898C100.44 23.6321 101.201 23.2288 101.878 22.7063V26.0521C101.127 26.538 100.31 26.9046 99.4374 27.1246C98.4815 27.3813 97.4977 27.5096 96.5046 27.5096C95.4187 27.5096 94.3328 27.3263 93.3119 26.9688C92.3467 26.6296 91.4464 26.098 90.6854 25.4196C89.9336 24.7413 89.3303 23.9163 88.9127 22.9905C88.4672 22.0005 88.2444 20.928 88.263 19.8463C88.263 18.8196 88.4672 17.8113 88.8663 16.858C89.2468 15.9505 89.7851 15.1163 90.4812 14.4013C91.168 13.6955 91.994 13.1271 92.9035 12.733C93.8502 12.3205 94.8711 12.1005 95.9013 12.1005V12.1188ZM91.9754 18.2605H99.3817C99.3168 17.3988 98.9177 16.6013 98.2773 16.0238C97.609 15.4371 96.7366 15.1255 95.8364 15.1621C94.9547 15.1438 94.1008 15.4371 93.414 15.978C92.6994 16.5646 92.1889 17.3621 91.9754 18.2605Z\" fill=\"#4E4E4E\"/> <path d=\"M108.737 12.4671V14.7313C109.201 13.888 109.906 13.2096 110.77 12.7788C111.633 12.3388 112.607 12.1463 113.572 12.238V16.0238C112.06 15.8313 110.881 16.0788 110.027 16.7663C109.173 17.4538 108.746 18.5263 108.746 19.9838V27.1613H104.913L104.895 12.4671H108.737Z\" fill=\"#4E4E4E\"/> <path d=\"M121.276 12.1188C122.287 12.1096 123.28 12.3388 124.181 12.7971C124.988 13.1821 125.675 13.7871 126.167 14.5296V12.4671H130V27.1613H126.167V25.0988C125.675 25.8413 124.988 26.4463 124.181 26.8313C123.28 27.2805 122.287 27.5188 121.276 27.5096C120.255 27.5188 119.243 27.308 118.315 26.8955C117.443 26.5013 116.672 25.9238 116.041 25.218C115.401 24.4938 114.909 23.6688 114.575 22.7613C113.879 20.8638 113.879 18.783 114.575 16.8763C114.909 15.978 115.401 15.1438 116.041 14.4196C116.672 13.7046 117.452 13.1363 118.315 12.7421C119.243 12.3205 120.255 12.1096 121.276 12.128V12.1188ZM122.037 24.2555C122.612 24.2555 123.178 24.1455 123.707 23.9071C124.209 23.6871 124.663 23.3663 125.044 22.9721C125.424 22.5596 125.721 22.083 125.916 21.5696C126.13 21.0105 126.241 20.4055 126.232 19.8005C126.232 19.2046 126.13 18.6088 125.916 18.0496C125.712 17.5271 125.424 17.0505 125.044 16.6471C124.673 16.253 124.218 15.9321 123.717 15.7121C123.188 15.4921 122.622 15.373 122.046 15.3821C121.48 15.3821 120.923 15.4921 120.413 15.7121C119.902 15.9321 119.447 16.2438 119.076 16.6471C118.696 17.0596 118.389 17.5363 118.194 18.0496C117.981 18.6088 117.87 19.2046 117.879 19.8005C117.879 20.4055 117.981 21.0013 118.194 21.5696C118.389 22.0921 118.696 22.5688 119.076 22.9721C119.457 23.3663 119.911 23.678 120.413 23.9071C120.923 24.1363 121.48 24.2555 122.037 24.2555Z\" fill=\"#4E4E4E\"/> <path d=\"M4.77047 14.328C4.77047 15.1255 4.86328 15.9138 5.05818 16.6838C5.58721 18.7096 6.78446 20.5063 8.45506 21.7805C10.1257 23.0638 12.186 23.7513 14.3021 23.7513V28.463H13.9309C10.6175 28.3805 7.43414 27.1613 4.92825 25.0163C2.43164 22.8805 0.751767 19.938 0.204184 16.7113C0.0649675 15.9321 0 15.1438 0 14.3555C0 12.4946 0.371243 10.6613 1.08589 8.94714C1.80053 7.23297 2.85857 5.67464 4.18576 4.35464C5.51296 3.0438 7.09074 1.9988 8.8263 1.29297C10.5711 0.568804 12.4366 0.211304 14.3114 0.211304V4.92297H13.9402C11.4807 5.01464 9.15114 6.05047 7.44342 7.8013C5.7357 9.55214 4.77975 11.8896 4.77047 14.328Z\" fill=\"#4E4E4E\"/> <path d=\"M28.6228 19.0396C28.6228 20.9005 28.2516 22.7338 27.5369 24.448C26.813 26.1621 25.7643 27.7205 24.4371 29.0405C23.1099 30.3513 21.5321 31.3963 19.7965 32.1021C18.061 32.8171 16.1955 33.1746 14.3207 33.1746V28.463H14.6919C17.1607 28.3713 19.4903 27.3355 21.198 25.5755C22.9057 23.8155 23.8616 21.478 23.8616 19.0396C23.8616 18.2421 23.7688 17.4538 23.5739 16.6838C23.0449 14.658 21.8476 12.8705 20.1771 11.5871C18.5065 10.3038 16.4461 9.6163 14.33 9.6163V4.89547H14.7012C18.0238 4.97797 21.2073 6.19714 23.7131 8.3513C26.219 10.4963 27.8896 13.448 28.4465 16.6746C28.5764 17.4538 28.6414 18.2421 28.6414 19.0396H28.6228Z\" fill=\"#4E4E4E\"/> </g> <defs> <clipPath id=\"clip0_1898_31578\"> <rect width=\"130\" height=\"33\" fill=\"white\" transform=\"translate(0 0.183838)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"Z4GH2jH6u\",layoutId:\"Z4GH2jH6u\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wa8i37-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MMqIGQivP-container\",nodeId:\"MMqIGQivP\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"125\" height=\"24\" viewBox=\"0 0 125 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M33.4549 22.765V2.0972H33.66C36.7046 2.0972 39.7492 2.08684 42.7938 2.0972C43.9436 2.10237 45.0502 2.34053 46.0489 2.91003C47.5226 3.74875 48.3215 5.02755 48.5753 6.64804C48.7156 7.54372 48.6832 8.43421 48.3485 9.29365C47.9329 10.3653 47.2149 11.1782 46.2001 11.7529C46.1461 11.7839 46.0975 11.8098 46.0273 11.8461C46.2486 11.9444 46.4646 12.0273 46.6643 12.1308C47.9545 12.7831 48.7372 13.8238 49.0503 15.1906C49.4444 16.8991 49.2392 18.5403 48.2568 20.0366C47.3985 21.3464 46.1461 22.1282 44.6238 22.5165C43.9868 22.677 43.3336 22.7495 42.675 22.7495H33.4495L33.4549 22.765ZM36.0514 20.3213H36.2944C38.4374 20.3213 40.5805 20.3213 42.7236 20.3213C43.0583 20.3213 43.3984 20.2954 43.7169 20.2333C45.0934 19.9589 46.0705 19.2185 46.47 17.8673C46.7021 17.0958 46.6751 16.3141 46.47 15.5375C46.2055 14.5279 45.5577 13.8445 44.559 13.4821C43.9652 13.2646 43.3444 13.1922 42.7182 13.187C40.5643 13.1818 38.4105 13.187 36.2512 13.187H36.0514V20.3265V20.3213ZM36.0514 10.764H36.2782C38.3943 10.764 40.5158 10.764 42.6318 10.7588C42.9665 10.7588 43.312 10.7278 43.6413 10.6501C44.7749 10.3861 45.5901 9.75443 45.9086 8.63095C46.1245 7.88024 46.0921 7.11918 45.8492 6.37883C45.6116 5.66436 45.1258 5.15698 44.424 4.8567C43.8788 4.62372 43.3066 4.53053 42.7128 4.53053C40.5643 4.53053 38.4159 4.53053 36.2674 4.53053H36.0461V10.7692L36.0514 10.764ZM70.4326 20.3213H83.2155V22.7495H67.1073V22.5631C67.1073 21.9366 67.1019 21.305 67.1127 20.6785C67.1127 20.575 67.1559 20.4507 67.226 20.3679C69.1856 17.919 71.1559 15.4753 73.1209 13.0265L79.8146 4.69621C79.8524 4.64961 79.8848 4.60301 79.9388 4.53053H67.5175V2.1179H83.1669C83.1669 2.17485 83.1777 2.2318 83.1777 2.29393C83.1777 2.95662 83.1777 3.6245 83.1777 4.28719C83.1777 4.38556 83.1399 4.47876 83.0805 4.55642C80.3167 8.00968 77.542 11.4629 74.7727 14.9162C73.3584 16.6765 71.9495 18.4368 70.5351 20.197C70.5081 20.2281 70.4919 20.2592 70.438 20.3265H70.4326V20.3213ZM66.5944 15.7756H53.3581C53.4552 16.195 53.5092 16.5885 53.6334 16.9664C54.3027 19.0011 55.6847 20.3265 57.8548 20.7303C59.539 21.0409 61.0991 20.6992 62.3839 19.5188C62.8157 19.1253 63.145 18.6542 63.3987 18.1365C63.4365 18.0536 63.4743 17.9967 63.593 17.9967C64.4406 18.0019 65.2881 17.9967 66.1356 17.9967C66.1572 17.9967 66.1788 18.0019 66.2544 18.007C66.06 18.4419 65.8927 18.8717 65.6767 19.2755C64.446 21.5587 62.4702 22.7753 59.8683 23.0653C57.8116 23.2931 55.9006 22.8944 54.1894 21.7192C52.327 20.4404 51.2096 18.6749 50.8641 16.4797C50.4376 13.8238 51.1286 11.4629 53.0018 9.47485C54.4269 7.96308 56.2191 7.09847 58.3406 7.05187C61.5201 6.97939 63.8576 8.40315 65.4338 11.0539C66.168 12.2861 66.4919 13.6478 66.5783 15.0663C66.589 15.2579 66.589 15.4495 66.5998 15.641C66.5998 15.6773 66.5998 15.7135 66.589 15.7601L66.5944 15.7756ZM63.6902 13.4976C63.6902 13.4976 63.701 13.4614 63.701 13.451C63.6956 13.4148 63.6848 13.3837 63.6794 13.3475C63.3609 12.2602 62.7941 11.3128 61.9034 10.5776C60.6726 9.54733 59.2529 9.10208 57.6442 9.46967C55.7441 9.90457 54.4917 11.0798 53.7629 12.8194C53.6766 13.0317 53.6118 13.2543 53.5308 13.4976H63.6902Z\" fill=\"#4E4E4E\"/> <path d=\"M99.1024 15.7808H85.8498C85.893 16.05 85.9254 16.2985 85.9848 16.5367C86.5192 18.6439 87.804 20.1039 89.9848 20.6578C91.6853 21.0875 93.2885 20.808 94.6813 19.6845C95.1887 19.2755 95.5666 18.7578 95.8581 18.1831C95.9283 18.0381 96.0092 17.9967 96.1658 18.0019C96.9431 18.0122 97.7205 18.0019 98.4978 18.0019H98.7083C98.541 18.53 98.3143 19.0373 98.0335 19.5136C96.8891 21.4758 95.1509 22.62 92.8837 22.998C91.221 23.2724 89.5962 23.1585 88.0469 22.4751C85.5205 21.3619 83.9605 19.4567 83.4098 16.8215C82.8592 14.1966 83.4692 11.815 85.2398 9.74925C86.5192 8.25819 88.171 7.35216 90.1522 7.11401C92.5166 6.82926 94.5895 7.50748 96.3331 9.08138C97.8446 10.4482 98.6651 12.1774 98.9512 14.1551C99.0268 14.6832 99.0538 15.2217 99.1024 15.786V15.7808ZM96.182 13.4976C96.1712 13.4355 96.1658 13.3941 96.155 13.3578C95.8149 12.2085 95.2103 11.2248 94.2494 10.4689C93.0078 9.49039 91.5935 9.10209 90.028 9.48521C88.3708 9.88904 87.194 10.8986 86.4382 12.3793C86.2601 12.7314 86.1413 13.1093 85.9848 13.4976H96.1874H96.182ZM116.128 23.1274C112.555 23.1274 109.429 20.7976 108.533 17.3651C107.729 14.2846 108.414 11.5199 110.714 9.21599C112.096 7.83883 113.823 7.13471 115.804 7.0467C119.578 6.8862 122.736 9.31954 123.702 12.7832C124.442 15.4184 124.047 17.9087 122.342 20.1194C120.906 21.9832 118.946 22.9617 116.56 23.1119C116.506 23.1119 116.452 23.1222 116.398 23.1222H116.128V23.1274ZM121.435 15.144C121.429 15.0456 121.424 14.9473 121.419 14.8489C121.332 13.2595 120.749 11.8875 119.572 10.7692C117.607 8.90018 114.595 8.92089 112.657 10.8106C111.572 11.8719 110.989 13.1611 110.876 14.6522C110.741 16.4332 111.275 17.9967 112.555 19.2962C114.282 21.0565 116.992 21.3154 119.011 19.8864C120.657 18.7267 121.381 17.0958 121.44 15.1492L121.435 15.144ZM103.183 22.7598H100.603V7.45053H103.097V9.12279C104.436 7.51265 106.169 6.9328 108.22 7.06223V9.5784H108.02C107.2 9.55769 106.401 9.66641 105.645 9.9874C104.258 10.5828 103.491 11.6338 103.259 13.0731C103.21 13.4148 103.189 13.7565 103.189 14.0982C103.183 16.9043 103.189 19.7104 103.189 22.5165V22.7546L103.183 22.7598Z\" fill=\"#4E4E4E\"/> <path d=\"M26.8097 10.5569H0.034668V11.7529H26.8097V10.5569Z\" fill=\"#4E4E4E\"/> <path d=\"M8.80674 2.14379H0.034668V10.5569H8.80674V2.14379Z\" fill=\"#4E4E4E\"/> <path d=\"M22.3778 10.5569C25.1326 10.5569 27.3657 8.41512 27.3657 5.77308C27.3657 3.13105 25.1326 0.989258 22.3778 0.989258C19.6231 0.989258 17.3899 3.13105 17.3899 5.77308C17.3899 8.41512 19.6231 10.5569 22.3778 10.5569Z\" fill=\"#4E4E4E\"/> <path d=\"M13.4222 11.4112L6.75542 22.4854H20.089L13.4222 11.4112Z\" fill=\"#4E4E4E\"/> </svg>',description:\"\",height:\"100%\",id:\"MMqIGQivP\",layoutId:\"MMqIGQivP\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gzyc23-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cdbLYrVHw-container\",nodeId:\"cdbLYrVHw\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"145\" height=\"40\" viewBox=\"0 0 145 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.0558 25.3685C12.2152 25.3685 12.3658 25.4305 12.4899 25.5546L13.6592 26.8302C13.0125 27.6364 12.2064 28.2476 11.2585 28.6817C10.3106 29.1069 9.17667 29.3196 7.84785 29.3196C6.66077 29.3196 5.58886 29.1158 4.64097 28.7083C3.69307 28.3008 2.88692 27.7338 2.21365 27.0163C1.54039 26.2898 1.02657 25.4305 0.663364 24.4206C0.309012 23.4196 0.131836 22.3211 0.131836 21.134C0.131836 19.9469 0.32673 18.8307 0.707658 17.8297C1.08859 16.8287 1.62897 15.9605 2.32882 15.2429C3.02866 14.5165 3.86139 13.9584 4.83586 13.5598C5.80147 13.1522 6.87338 12.9485 8.04275 12.9485C9.21211 12.9485 10.2397 13.1434 11.1433 13.5243C12.0558 13.9052 12.8265 14.4102 13.4555 15.0303L12.4633 16.4123C12.4013 16.5009 12.3304 16.5806 12.233 16.6426C12.1444 16.7135 12.0203 16.7401 11.852 16.7401C11.7457 16.7401 11.6306 16.7135 11.5065 16.6515C11.3914 16.5806 11.2585 16.5097 11.1167 16.4211C10.975 16.3237 10.8156 16.2174 10.6295 16.1111C10.4435 16.0048 10.2309 15.8985 9.98282 15.8099C9.74364 15.7124 9.45129 15.6327 9.13238 15.5796C8.81346 15.5175 8.45025 15.4821 8.02503 15.4821C7.30746 15.4821 6.65191 15.615 6.05837 15.8719C5.46483 16.1199 4.95988 16.492 4.53466 16.9793C4.10944 17.4576 3.7728 18.0512 3.54247 18.751C3.30329 19.442 3.18812 20.2393 3.18812 21.134C3.18812 22.0288 3.31215 22.8349 3.56019 23.5348C3.8171 24.2346 4.16259 24.8281 4.60553 25.3065C5.03961 25.7849 5.55342 26.157 6.14696 26.4139C6.7405 26.6619 7.36948 26.7948 8.0516 26.7948C8.45911 26.7948 8.82232 26.7682 9.1501 26.7239C9.48673 26.6796 9.78793 26.6088 10.0537 26.5113C10.3372 26.4139 10.5941 26.2898 10.8421 26.1481C11.0902 25.9886 11.3382 25.8026 11.5863 25.5811C11.6571 25.5191 11.7369 25.466 11.8166 25.4305C11.8963 25.3863 11.9849 25.3597 12.0735 25.3597L12.0558 25.3685Z\" fill=\"#4E4E4E\"/> <path d=\"M21.2778 24.2966C20.4894 24.3321 19.825 24.4029 19.2846 24.5092C18.7442 24.6067 18.3101 24.7307 17.9912 24.8902C17.6634 25.0408 17.4331 25.2268 17.2913 25.4305C17.1496 25.6343 17.0787 25.8646 17.0787 26.1038C17.0787 26.5822 17.2205 26.9277 17.5039 27.1314C17.7963 27.3352 18.1684 27.4415 18.6202 27.4415C19.1783 27.4415 19.6655 27.344 20.073 27.1403C20.4894 26.9365 20.888 26.6265 21.2778 26.2101V24.2966ZM15.0058 19.3711C16.3169 18.1752 17.8849 17.5816 19.7275 17.5816C20.3919 17.5816 20.9855 17.688 21.5081 17.9183C22.0308 18.1309 22.4737 18.4321 22.8369 18.8219C23.2002 19.2028 23.4748 19.6635 23.6608 20.2039C23.8557 20.7442 23.9443 21.3289 23.9443 21.9756V29.1512H22.7041C22.4472 29.1512 22.2434 29.1158 22.1105 29.0449C21.9688 28.9652 21.8625 28.8057 21.7739 28.5666L21.5347 27.7516C21.2424 28.0085 20.9677 28.2388 20.6931 28.4337C20.4185 28.6286 20.135 28.788 19.8427 28.9209C19.5503 29.0538 19.2314 29.1512 18.8859 29.2221C18.5493 29.293 18.1861 29.3284 17.7786 29.3284C17.3002 29.3284 16.8573 29.2664 16.4497 29.1424C16.0422 29.0095 15.6967 28.8146 15.3955 28.5577C15.1032 28.3008 14.8729 27.9819 14.7134 27.5921C14.554 27.2112 14.4742 26.7594 14.4742 26.2544C14.4742 25.9621 14.5185 25.6786 14.616 25.404C14.7134 25.1205 14.864 24.8459 15.0766 24.589C15.2981 24.3321 15.5816 24.084 15.9271 23.8537C16.2726 23.6234 16.6978 23.4285 17.2027 23.2601C17.7166 23.0918 18.3012 22.9501 18.9745 22.8526C19.6478 22.7463 20.4096 22.6755 21.2778 22.6489V21.9845C21.2778 21.2226 21.1183 20.6645 20.7906 20.3013C20.4628 19.9292 19.9933 19.7521 19.382 19.7521C18.9391 19.7521 18.567 19.8052 18.2747 19.9027C17.9912 20.009 17.7343 20.1241 17.5128 20.257C17.2913 20.381 17.0876 20.4962 16.9015 20.6025C16.7244 20.7088 16.5206 20.7531 16.2991 20.7531C16.1043 20.7531 15.9448 20.7088 15.8119 20.6114C15.679 20.5051 15.5727 20.3899 15.493 20.257L15.0058 19.38V19.3711Z\" fill=\"#4E4E4E\"/> <path d=\"M29.2862 12.6916V29.1424H26.5488V12.6916H29.2862Z\" fill=\"#4E4E4E\"/> <path d=\"M42.3352 17.7854L36.1429 32.2695C36.0631 32.4644 35.9568 32.6062 35.8239 32.7036C35.6999 32.8099 35.505 32.8542 35.2393 32.8542H33.2017L35.3279 28.2919L30.7301 17.7854H33.1309C33.3435 17.7854 33.5118 17.8386 33.627 17.9449C33.751 18.0512 33.8484 18.1663 33.9016 18.2992L36.32 24.1903C36.3998 24.3941 36.4706 24.589 36.5149 24.7839C36.5769 24.9876 36.6301 25.1825 36.6832 25.3951C36.7541 25.1914 36.8161 24.9876 36.8781 24.7839C36.949 24.5801 37.0199 24.3763 37.0996 24.1726L39.3852 18.2904C39.4472 18.1398 39.5358 18.0246 39.6775 17.9271C39.8193 17.8297 39.9699 17.7854 40.147 17.7854H42.3352Z\" fill=\"#4E4E4E\"/> <path d=\"M53.8339 29.1512H51.194C50.9991 29.1512 50.8308 29.0981 50.7067 29.0006C50.5916 28.8943 50.4853 28.7792 50.4055 28.6463L48.0048 24.6953C47.9694 24.8193 47.9251 24.9345 47.8719 25.0496C47.8276 25.1559 47.7745 25.2622 47.7213 25.3597L45.5952 28.6463C45.5155 28.7703 45.418 28.8855 45.294 29.0006C45.1788 29.107 45.0282 29.1512 44.8511 29.1512H42.406L46.3039 23.2956L42.5566 17.7943H45.1966C45.3914 17.7943 45.542 17.8208 45.6395 17.8828C45.7369 17.936 45.8167 18.0246 45.8964 18.1486L48.2794 21.9402C48.3591 21.6921 48.4743 21.4441 48.6249 21.196L50.5384 18.2018C50.6979 17.9271 50.9105 17.7943 51.1674 17.7943H53.6833L49.9537 23.1804L53.8427 29.1601L53.8339 29.1512Z\" fill=\"#4E4E4E\"/> <path d=\"M74.28 27.5921C73.465 28.1856 72.5968 28.6286 71.6755 28.9121C70.7631 29.1867 69.7797 29.3196 68.7344 29.3196C67.4322 29.3196 66.2451 29.1158 65.182 28.7083C64.1278 28.3008 63.2242 27.7338 62.4712 27.0163C61.7271 26.2898 61.1513 25.4305 60.7438 24.4206C60.3362 23.4196 60.1325 22.3211 60.1325 21.134C60.1325 19.9469 60.3274 18.8307 60.7172 17.8208C61.107 16.8198 61.6651 15.9516 62.3826 15.2252C63.1091 14.4988 63.9772 13.9407 65.0048 13.542C66.0325 13.1434 67.1841 12.9396 68.4598 12.9396C69.1065 12.9396 69.7177 12.9928 70.2758 13.0991C70.8428 13.2054 71.3655 13.3471 71.8438 13.5332C72.3311 13.7104 72.774 13.9318 73.1726 14.1887C73.5713 14.4456 73.9345 14.7291 74.2711 15.0392L73.4207 16.3857C73.2878 16.5983 73.1106 16.7312 72.898 16.7844C72.6854 16.8287 72.4551 16.7755 72.1982 16.616C71.9501 16.4743 71.7109 16.3326 71.4718 16.1908C71.2237 16.0491 70.9579 15.9251 70.6479 15.8276C70.3556 15.7213 70.0189 15.6416 69.638 15.5707C69.2659 15.5087 68.8407 15.4733 68.3535 15.4733C67.565 15.4733 66.8475 15.6061 66.2096 15.8719C65.5718 16.1377 65.0314 16.5186 64.5796 17.0147C64.1278 17.5108 63.7823 18.1043 63.5343 18.7953C63.2862 19.4863 63.1711 20.2659 63.1711 21.1163C63.1711 22.0288 63.3039 22.8526 63.5609 23.5702C63.8266 24.2878 64.1987 24.899 64.6682 25.3951C65.1466 25.8912 65.7224 26.2721 66.3957 26.5379C67.0689 26.7948 67.8131 26.9277 68.6458 26.9277C69.2393 26.9277 69.762 26.8657 70.2315 26.7416C70.701 26.6176 71.1528 26.4493 71.5958 26.2278V23.331H69.576C69.3811 23.331 69.2305 23.2779 69.1242 23.1804C69.0179 23.0741 68.9647 22.9324 68.9647 22.7818V21.0986H74.28V27.5921Z\" fill=\"#4E4E4E\"/> <path d=\"M79.4447 12.6916V29.1424H76.7073V12.6916H79.4447Z\" fill=\"#4E4E4E\"/> <path d=\"M87.1961 17.6082C88.0377 17.6082 88.7996 17.7411 89.4906 18.0157C90.1816 18.2904 90.7751 18.6801 91.2623 19.1762C91.7584 19.6812 92.1393 20.2924 92.4051 21.01C92.6709 21.7364 92.8038 22.5426 92.8038 23.4373C92.8038 24.3321 92.6709 25.1471 92.4051 25.8735C92.1393 26.5999 91.7584 27.2112 91.2623 27.725C90.7751 28.2388 90.1816 28.6286 89.4906 28.9032C88.7996 29.1778 88.0377 29.3107 87.1961 29.3107C86.3545 29.3107 85.575 29.1778 84.884 28.9032C84.193 28.6286 83.5995 28.2388 83.1034 27.725C82.6161 27.2112 82.2352 26.5999 81.9606 25.8735C81.6948 25.1471 81.5619 24.3409 81.5619 23.4373C81.5619 22.5337 81.6948 21.7364 81.9606 21.01C82.2352 20.2836 82.6161 19.6723 83.1034 19.1762C83.5995 18.6713 84.193 18.2904 84.884 18.0157C85.575 17.7411 86.3457 17.6082 87.1961 17.6082ZM87.1961 27.2112C88.144 27.2112 88.835 26.8923 89.2868 26.2544C89.7475 25.6166 89.9778 24.6864 89.9778 23.4639C89.9778 22.2414 89.7475 21.3023 89.2868 20.6645C88.835 20.0178 88.1352 19.6989 87.1961 19.6989C86.2571 19.6989 85.5218 20.0267 85.0612 20.6734C84.6005 21.3201 84.3702 22.2414 84.3702 23.4639C84.3702 24.6864 84.6005 25.6077 85.0612 26.2544C85.5307 26.8923 86.2394 27.2112 87.1961 27.2112Z\" fill=\"#4E4E4E\"/> <path d=\"M97.6229 26.2013C97.933 26.5822 98.2696 26.848 98.6328 26.9986C99.0049 27.158 99.3858 27.2289 99.7933 27.2289C100.201 27.2289 100.591 27.158 100.927 27.0074C101.264 26.8568 101.556 26.6176 101.787 26.2987C102.026 25.9709 102.203 25.5634 102.327 25.0673C102.451 24.5624 102.513 23.9688 102.513 23.2779C102.513 22.0288 102.309 21.1252 101.893 20.5759C101.477 20.0178 100.883 19.7343 100.112 19.7343C99.5896 19.7343 99.1289 19.8584 98.7391 20.0975C98.3494 20.3367 97.9773 20.6734 97.6229 21.1075V26.2013ZM97.6229 19.1851C98.0836 18.7067 98.5886 18.3258 99.1378 18.0423C99.6959 17.75 100.334 17.6082 101.051 17.6082C101.707 17.6082 102.3 17.7411 102.823 17.998C103.355 18.2549 103.806 18.627 104.17 19.1142C104.551 19.5926 104.834 20.1773 105.038 20.8683C105.233 21.5504 105.339 22.33 105.339 23.1804C105.339 24.1017 105.224 24.9433 104.993 25.6963C104.763 26.4493 104.435 27.096 104.01 27.6364C103.594 28.1679 103.08 28.5843 102.486 28.8766C101.884 29.169 101.22 29.3196 100.493 29.3196C100.139 29.3196 99.8199 29.2841 99.5276 29.2133C99.2441 29.1512 98.9783 29.0538 98.7303 28.9298C98.4822 28.8057 98.2608 28.6551 98.057 28.478C97.8621 28.2919 97.6672 28.0882 97.4812 27.8667L97.3572 28.6286C97.3129 28.8235 97.2332 28.9564 97.1268 29.0361C97.0205 29.1158 96.8788 29.1601 96.6928 29.1601H94.8856V12.7093H97.6229V19.2028V19.1851Z\" fill=\"#4E4E4E\"/> <path d=\"M113.454 24.2966C112.665 24.3321 112.001 24.4029 111.46 24.5092C110.92 24.6067 110.486 24.7307 110.167 24.8902C109.839 25.0408 109.609 25.2268 109.467 25.4305C109.325 25.6343 109.255 25.8646 109.255 26.1038C109.255 26.5822 109.396 26.9277 109.68 27.1314C109.963 27.3352 110.335 27.4415 110.796 27.4415C111.354 27.4415 111.841 27.344 112.249 27.1403C112.665 26.9365 113.064 26.6265 113.454 26.2101V24.2966ZM107.182 19.3711C108.484 18.1752 110.061 17.5816 111.894 17.5816C112.559 17.5816 113.152 17.688 113.675 17.9183C114.198 18.1309 114.641 18.4321 115.004 18.8219C115.367 19.2028 115.642 19.6635 115.828 20.2039C116.023 20.7442 116.111 21.3289 116.111 21.9756V29.1512H114.871C114.614 29.1512 114.41 29.1158 114.269 29.0449C114.127 28.9652 114.021 28.8057 113.932 28.5666L113.693 27.7516C113.4 28.0085 113.126 28.2388 112.851 28.4337C112.577 28.6286 112.293 28.788 112.001 28.9209C111.708 29.0538 111.39 29.1512 111.053 29.2221C110.716 29.293 110.353 29.3284 109.946 29.3284C109.467 29.3284 109.024 29.2664 108.617 29.1424C108.209 29.0095 107.864 28.8146 107.563 28.5577C107.27 28.3008 107.04 27.9819 106.872 27.5921C106.712 27.2112 106.623 26.7594 106.623 26.2544C106.623 25.9621 106.668 25.6786 106.765 25.404C106.863 25.1205 107.013 24.8459 107.226 24.589C107.447 24.3321 107.731 24.084 108.076 23.8537C108.422 23.6234 108.847 23.4285 109.352 23.2601C109.866 23.0918 110.45 22.9501 111.124 22.8526C111.797 22.7463 112.559 22.6755 113.427 22.6489V21.9845C113.427 21.2226 113.268 20.6645 112.94 20.3013C112.612 19.9292 112.143 19.7521 111.531 19.7521C111.088 19.7521 110.716 19.8052 110.424 19.9027C110.132 20.009 109.884 20.1241 109.662 20.257C109.441 20.381 109.237 20.4962 109.051 20.6025C108.874 20.7088 108.67 20.7531 108.448 20.7531C108.254 20.7531 108.094 20.7088 107.961 20.6114C107.828 20.5051 107.722 20.3899 107.642 20.257L107.155 19.38L107.182 19.3711Z\" fill=\"#4E4E4E\"/> <path d=\"M121.462 12.6916V29.1424H118.725V12.6916H121.462Z\" fill=\"#4E4E4E\"/> <path d=\"M142.59 12.1512C143.379 12.4613 143.777 13.3649 143.343 14.0913C142.705 15.1543 141.864 16.0845 140.845 16.8286C139.835 17.5639 138.692 18.0866 137.488 18.3701C136.664 18.565 135.928 17.9094 135.875 17.0678C135.822 16.2263 136.469 15.5087 137.275 15.2518C137.904 15.048 138.497 14.7468 139.038 14.3482C139.578 13.9584 140.048 13.48 140.429 12.9396C140.925 12.2486 141.802 11.85 142.59 12.1601V12.1512Z\" fill=\"#4E4E4E\"/> <path d=\"M134.892 17.0678C134.839 17.9183 134.103 18.5738 133.28 18.3789C132.066 18.1043 130.923 17.5817 129.913 16.8552C128.895 16.1199 128.044 15.1986 127.406 14.1356C126.963 13.4092 127.362 12.5056 128.15 12.1955C128.939 11.8854 129.816 12.2841 130.312 12.9662C130.702 13.4977 131.171 13.9761 131.712 14.3659C132.252 14.7557 132.854 15.0569 133.483 15.2606C134.29 15.5176 134.945 16.2263 134.901 17.0678H134.892Z\" fill=\"#4E4E4E\"/> <path d=\"M127.84 11.2653C127.016 11.4779 126.166 10.9818 126.095 10.1403C125.989 8.90002 126.122 7.65094 126.503 6.46386C126.884 5.27678 127.504 4.17828 128.319 3.23925C128.868 2.60142 129.851 2.69 130.392 3.34556C130.932 4.00111 130.826 4.95786 130.33 5.63999C129.94 6.17151 129.639 6.76505 129.435 7.40289C129.231 8.04072 129.125 8.69627 129.134 9.36068C129.134 10.2111 128.664 11.0527 127.849 11.2653H127.84Z\" fill=\"#4E4E4E\"/> <path d=\"M131.18 2.76973C130.728 2.05217 130.932 1.09542 131.712 0.758786C132.854 0.271552 134.086 0.0146484 135.335 0.0146484C136.584 0.0146484 137.815 0.262695 138.967 0.74107C139.747 1.06885 139.959 2.03445 139.507 2.74316C139.056 3.46072 138.108 3.65561 137.302 3.38985C136.673 3.1861 136.017 3.07979 135.344 3.07979C134.679 3.07979 134.015 3.1861 133.386 3.39871C132.58 3.66447 131.632 3.47844 131.18 2.76088V2.76973Z\" fill=\"#4E4E4E\"/> <path d=\"M140.296 3.31898C140.836 2.66343 141.811 2.56598 142.369 3.20381C143.184 4.14285 143.804 5.23248 144.203 6.41956C144.592 7.60664 144.734 8.85573 144.637 10.096C144.566 10.9375 143.715 11.4425 142.891 11.2299C142.068 11.0173 141.598 10.1846 141.598 9.33411C141.598 8.6697 141.501 8.01414 141.288 7.37631C141.075 6.73848 140.774 6.14494 140.376 5.61341C139.871 4.93128 139.755 3.97453 140.296 3.31898Z\" fill=\"#4E4E4E\"/> </svg>',description:\"\",height:\"100%\",id:\"cdbLYrVHw\",layoutId:\"cdbLYrVHw\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18z90bu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PI6U1bUBt-container\",nodeId:\"PI6U1bUBt\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"135\" height=\"18\" viewBox=\"0 0 135 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M0.456543 0.938018H9.13584C12.744 0.938018 14.2861 3.20634 14.2861 5.80588C14.2861 7.83331 13.3371 10.0013 10.8954 10.6938L14.6222 17.1977H11.5182L7.86063 10.9146H3.68903C3.43202 10.9146 3.28374 11.0351 3.28374 11.3261V17.2077H0.486198V10.7741C0.486198 8.94741 1.24737 8.19464 2.99707 8.19464H9.23469C10.8262 8.19464 11.4688 7.09058 11.4688 5.92631C11.4688 4.76204 10.7768 3.77845 9.23469 3.77845H0.456543V0.938018ZM22.2141 0.938018H30.2311V3.77845H22.2141C20.5336 3.77845 19.7922 4.57137 19.7922 5.82597C19.7922 7.15083 20.6226 7.75302 22.2339 7.75302H30.1124V10.3325H22.1647C20.5534 10.3325 19.723 10.9849 19.723 12.3097C19.723 13.6346 20.5039 14.3573 22.1449 14.3573H30.2607V17.1977H22.1449C18.3489 17.1977 16.8068 15.2907 16.8068 12.7614C16.8068 10.9046 17.6372 9.65 19.1101 9.02772C17.6174 8.40543 16.8563 7.15081 16.8563 5.36426C16.8563 2.76472 18.4478 0.928002 22.2141 0.928002V0.938018ZM36.6664 4.33047V17.1977H33.8689V4.18997C33.8689 2.0722 35.0551 0.646973 37.5462 0.646973C39.7803 0.646973 40.7688 1.80121 41.441 3.65802L46.1168 14.0361C46.3046 14.4175 46.611 14.7085 47.1349 14.7085C47.7281 14.7085 48.0839 14.3472 48.0839 13.7952V0.928002H50.9111V13.9156C50.9111 16.0635 49.7051 17.4787 47.2338 17.4787C44.9997 17.4787 43.9815 16.3245 43.3192 14.4677L38.6435 4.08959C38.426 3.60782 38.1492 3.387 37.6451 3.387C37.0025 3.387 36.6763 3.74833 36.6763 4.33047H36.6664ZM61.3895 0.938018H63.5742C68.2203 0.938018 70.8102 3.63794 70.8102 9.108C70.8102 14.5781 68.25 17.1977 63.5742 17.1977H61.3895C56.7138 17.1977 54.1535 14.5479 54.1535 9.108C54.1535 3.66805 56.7435 0.938018 61.3895 0.938018ZM63.5742 3.77845H61.3895C58.3053 3.77845 56.951 5.36426 56.951 9.09795C56.951 12.8316 58.2757 14.3472 61.3895 14.3472H63.5742C66.6584 14.3472 67.983 12.8015 67.983 9.06784C67.983 5.33415 66.6584 3.76841 63.5742 3.76841V3.77845ZM78.3626 0.938018H86.4784V3.77845H78.2736C76.8304 3.77845 76.1878 4.57134 76.1878 5.7055C76.1878 6.68911 76.6821 7.63259 78.5603 7.63259H82.3068C86.6762 7.63259 87.6943 10.0916 87.6943 12.4302C87.6943 15.1803 86.2511 17.1977 82.5935 17.1977H73.677V14.3573H82.6924C84.2147 14.3573 84.8968 13.5141 84.8968 12.3298C84.8968 11.2659 84.3531 10.3024 82.3859 10.3024H78.6592C74.3887 10.3024 73.3903 7.87348 73.3903 5.60516C73.3903 2.90526 74.8138 0.928002 78.3725 0.928002L78.3626 0.938018ZM88.841 0.938018H101.01V3.77845H96.3341V17.1977H93.5069V3.77845H88.8311V0.938018H88.841ZM108.424 0.938018H116.441V3.77845H108.424C106.743 3.77845 106.002 4.57137 106.002 5.82597C106.002 7.15083 106.832 7.75302 108.444 7.75302H116.322V10.3325H108.374C106.763 10.3325 105.933 10.9849 105.933 12.3097C105.933 13.6346 106.714 14.3573 108.355 14.3573H116.47V17.1977H108.355C104.559 17.1977 103.017 15.2907 103.017 12.7614C103.017 10.9046 103.847 9.65 105.32 9.02772C103.827 8.40543 103.066 7.15081 103.066 5.36426C103.066 2.76472 104.658 0.928002 108.424 0.928002V0.938018ZM120.059 0.938018H128.738C132.346 0.938018 133.888 3.20634 133.888 5.80588C133.888 7.83331 132.939 10.0013 130.498 10.6938L134.224 17.1977H131.12L127.463 10.9146H123.291C123.034 10.9146 122.886 11.0351 122.886 11.3261V17.2077H120.088V10.7741C120.088 8.94741 120.85 8.19464 122.599 8.19464H128.837C130.428 8.19464 131.071 7.09058 131.071 5.92631C131.071 4.76204 130.379 3.77845 128.837 3.77845H120.059V0.938018Z\" fill=\"#4E4E4E\"/> </svg>',description:\"\",height:\"100%\",id:\"PI6U1bUBt\",layoutId:\"PI6U1bUBt\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15w8990-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pjs3BlBCr-container\",nodeId:\"pjs3BlBCr\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"96\" height=\"32\" viewBox=\"0 0 96 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M84.4432 0.55957H75.5674V9.18371H84.4432V0.55957Z\" fill=\"#4E4E4E\"/> <path d=\"M72.982 0.55957L72.9209 9.22848L64.1469 9.18869C64.0502 4.77217 67.7807 0.843063 72.2949 0.604332L72.3967 0.55957H72.982Z\" fill=\"#4E4E4E\"/> <path d=\"M87.3595 0.55957C88.7947 0.634174 90.2248 1.02211 91.4717 1.73333C94.1538 3.25524 95.9096 6.12498 95.8587 9.18869H87.0236L87.0694 0.55957C87.1661 0.55957 87.2628 0.55957 87.3595 0.55957Z\" fill=\"#4E4E4E\"/> <path d=\"M95.8587 11.7501H87.0236V20.3742H95.8587V11.7501Z\" fill=\"#4E4E4E\"/> <path d=\"M84.4025 22.9406H75.6081V31.5647H84.4025V22.9406Z\" fill=\"#4E4E4E\"/> <path d=\"M95.8994 22.9406C95.8638 23.7712 95.762 24.5619 95.5228 25.3627C94.4439 29.0133 90.9322 31.6095 87.0236 31.5647V22.9406H95.8994Z\" fill=\"#4E4E4E\"/> <path d=\"M72.9413 11.7501H64.1468V20.3792H72.9413V11.7501Z\" fill=\"#4E4E4E\"/> <path d=\"M72.982 22.9406V31.5647C68.1827 31.6244 64.0756 27.6306 64.1468 22.9406H72.982Z\" fill=\"#4E4E4E\"/> <path d=\"M0.224365 3.57354H9.18166V6.05535H3.51719V7.6817H8.64219V10.1237H3.51719V11.7899H9.3496V14.2717L0.224365 14.2319V3.57354Z\" fill=\"#4E4E4E\"/> <path d=\"M33.1831 14.2717H29.5391L28.0378 11.382H26.3939V14.212L26.3328 14.2717H23.1672L23.1062 14.212V3.57354H28.506C31.3001 3.64317 33.1882 5.19492 32.8116 8.06466C32.6589 9.2434 32.0584 10.1685 31.0303 10.7951L33.1882 14.2766L33.1831 14.2717ZM26.3939 8.94498H28.4551C29.7987 8.94498 30.1906 6.93567 29.1574 6.26424C29.076 6.20953 28.6994 6.05535 28.623 6.05535H26.3939V8.94498Z\" fill=\"#4E4E4E\"/> <path d=\"M9.84836 14.2717L14.4797 3.57852L17.7878 3.56857L22.3479 14.2717H18.9074L18.2204 12.5807L13.869 12.5707L13.1514 14.2717H9.83818H9.84836ZM17.3501 10.2431L16.0777 6.82625L14.7647 10.2431H17.3501Z\" fill=\"#4E4E4E\"/> <path d=\"M47.4384 3.57354V7.78117L47.4995 7.84583H51.3115V3.57354H54.5636V14.2717H51.3115V10.2878H47.4384V14.2717H44.1863V3.57354H47.4384Z\" fill=\"#4E4E4E\"/> <path d=\"M43.1888 3.57354V6.13493H40.0181V14.2717H36.7915L36.7253 14.212V6.13493H33.6004V3.57354H43.1888Z\" fill=\"#4E4E4E\"/> <path d=\"M35.3868 18.718C39.1835 18.4296 42.5221 20.8318 42.059 24.7858C41.3566 30.7292 32.1347 31.2812 30.4196 25.7854C29.3406 22.3288 31.7377 18.9965 35.3919 18.718H35.3868ZM35.8856 21.364C32.6742 21.7022 32.7963 26.6807 35.9568 26.9244C39.6517 27.2079 39.6314 20.971 35.8856 21.364Z\" fill=\"#4E4E4E\"/> <path d=\"M46.7514 18.7876L48.5428 21.5132C48.6243 21.5132 48.7413 21.2943 48.7871 21.2247C49.3368 20.4339 49.8355 19.5983 50.3547 18.7876H54.1869L50.6855 23.8905L54.5178 29.446H50.5989L48.5988 26.437L46.5376 29.446H42.7257L46.5885 24.0149L42.9751 18.7876H46.7514Z\" fill=\"#4E4E4E\"/> <path d=\"M9.84836 18.7876H15.8691C18.5563 18.7678 20.9228 21.3789 18.3476 23.4429L17.6453 23.791C18.8769 24.0347 19.7116 25.0792 19.7726 26.2927C19.8795 28.3916 17.9099 29.3266 16.0421 29.4509H9.85344V18.7876H9.84836ZM13.1005 22.9804H15.0802C15.126 22.9804 15.3958 22.9207 15.4568 22.9008C16.1846 22.6819 16.3322 21.7022 15.691 21.3242C15.6451 21.2993 15.3958 21.1899 15.3703 21.1899H13.1005V22.9804ZM13.1005 27.0487H15.4568C15.5332 27.0487 15.9098 26.8896 15.9912 26.8398C16.4951 26.5166 16.5561 25.7556 16.0574 25.4025C15.8742 25.2732 15.3856 25.1339 15.1617 25.1339H13.1005V27.0487Z\" fill=\"#4E4E4E\"/> <path d=\"M24.7246 18.7876V26.805H29.3101V29.451H21.4776V18.7876H24.7246Z\" fill=\"#4E4E4E\"/> </svg>',description:\"\",height:\"100%\",id:\"pjs3BlBCr\",layoutId:\"pjs3BlBCr\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zvoqzu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jTzjmOXQ3-container\",nodeId:\"jTzjmOXQ3\",rendersWithMotion:true,scopeId:\"YUOpsLzzM\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"182\" height=\"40\" viewBox=\"0 0 182 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_1898_31608)\"> <path d=\"M42.2056 15.6077H45.8056L53.2056 34.8177H49.6056L47.8056 29.7377H40.1356L38.3356 34.8177H34.8556L42.2056 15.6077ZM41.0456 27.1777H46.9156L44.0356 18.9177H43.9556L41.0456 27.1777Z\" fill=\"#4E4E4E\"/> <path d=\"M54.6856 15.6077H57.7556V34.8177H54.6856V15.6077Z\" fill=\"#4E4E4E\"/> <path d=\"M61.2056 15.6077H64.2056V34.8177H61.2056V15.6077Z\" fill=\"#4E4E4E\"/> <path d=\"M67.6556 15.6077H70.7256V18.5377H67.6556V15.6077ZM67.6556 20.9077H70.7256V34.8177H67.6556V20.9077Z\" fill=\"#4E4E4E\"/> <path d=\"M76.4556 28.6577C76.4556 29.1877 76.5356 29.7077 76.6856 30.2177C76.8256 30.6977 77.0556 31.1477 77.3656 31.5377C77.6756 31.9177 78.0756 32.2277 78.5256 32.4377C79.0456 32.6777 79.6256 32.7877 80.1956 32.7777C80.9656 32.8077 81.7156 32.6077 82.3656 32.1977C82.9456 31.7577 83.3656 31.1477 83.5856 30.4577H86.4956C86.3456 31.1677 86.0656 31.8477 85.6556 32.4577C85.2656 33.0477 84.7756 33.5577 84.2056 33.9677C83.6356 34.3777 83.0056 34.6877 82.3356 34.8877C81.6256 35.0877 80.8956 35.1977 80.1656 35.1977C79.1656 35.2177 78.1756 35.0277 77.2556 34.6577C76.4756 34.3077 75.7756 33.7977 75.2056 33.1477C74.6056 32.4877 74.1556 31.6977 73.8856 30.8377C73.5756 29.8677 73.4256 28.8577 73.4356 27.8377C73.4356 26.8777 73.5856 25.9277 73.9056 25.0277C74.1956 24.1877 74.6356 23.4077 75.2056 22.7277C76.4256 21.2977 78.2356 20.4877 80.1156 20.5377C81.1556 20.5177 82.1856 20.7477 83.1156 21.2277C83.9356 21.6677 84.6456 22.2877 85.2056 23.0377C85.7956 23.8077 86.2156 24.6877 86.4556 25.6277C86.7156 26.6077 86.7856 27.6277 86.6556 28.6277L76.4556 28.6577ZM83.6156 26.6577C83.5756 26.1777 83.4756 25.7077 83.3056 25.2577C83.1456 24.8277 82.9056 24.4277 82.6056 24.0877C82.2956 23.7577 81.9356 23.4777 81.5256 23.2777C81.0856 23.0677 80.6056 22.9677 80.1156 22.9677C79.6156 22.9677 79.1056 23.0577 78.6456 23.2577C78.2256 23.4377 77.8356 23.7077 77.5156 24.0377C77.1956 24.3777 76.9456 24.7777 76.7656 25.2077C76.5756 25.6677 76.4656 26.1577 76.4556 26.6577H83.6156Z\" fill=\"#4E4E4E\"/> <path d=\"M102.126 34.8177H99.2056V32.9377C98.8256 33.7077 98.1956 34.3177 97.4056 34.6677C96.6156 35.0177 95.7556 35.1977 94.8956 35.1977C93.9156 35.2177 92.9356 35.0177 92.0356 34.6177C91.2556 34.2477 90.5756 33.7077 90.0356 33.0377C89.4756 32.3477 89.0656 31.5477 88.8256 30.6877C88.5456 29.7377 88.4056 28.7577 88.4156 27.7677C88.3756 26.6777 88.5156 25.5777 88.8556 24.5377C89.1456 23.6977 89.6056 22.9177 90.2056 22.2577C90.7656 21.6677 91.4456 21.2277 92.2056 20.9477C92.8956 20.6777 93.6356 20.5377 94.3756 20.5377C94.8156 20.5377 95.2556 20.5777 95.6956 20.6577C96.1356 20.7477 96.5656 20.8777 96.9856 21.0477C97.3956 21.2277 97.7756 21.4577 98.1256 21.7377C98.4756 22.0177 98.7656 22.3577 99.0056 22.7377V15.6377H102.076L102.126 34.8177ZM91.4156 28.0077C91.4156 28.5977 91.4956 29.1877 91.6456 29.7577C91.7856 30.3077 92.0156 30.8277 92.3456 31.2977C92.6556 31.7377 93.0656 32.1077 93.5456 32.3677C94.0756 32.6477 94.6656 32.7977 95.2656 32.7777C95.8756 32.7877 96.4856 32.6477 97.0256 32.3477C97.4956 32.0577 97.9056 31.6677 98.2056 31.2077C98.5256 30.7277 98.7656 30.1977 98.9056 29.6377C99.0856 29.0577 99.1856 28.4577 99.2056 27.8477C99.2956 26.5677 98.9356 25.2977 98.2056 24.2477C97.5256 23.3877 96.4856 22.9077 95.3956 22.9477C94.7556 22.9277 94.1256 23.0877 93.5756 23.3977C93.0656 23.6777 92.6256 24.0677 92.2856 24.5377C91.9656 25.0277 91.7456 25.5777 91.6156 26.1477C91.4856 26.7577 91.4156 27.3777 91.4156 28.0077Z\" fill=\"#4E4E4E\"/> <path d=\"M105.326 21.4177C105.686 20.2577 106.256 19.1677 107.026 18.2277C107.786 17.2877 108.756 16.5377 109.856 16.0277C111.106 15.4577 112.476 15.1777 113.856 15.2077C115.236 15.1677 116.606 15.4477 117.856 16.0277C118.946 16.5377 119.916 17.2977 120.676 18.2277C121.446 19.1677 122.016 20.2577 122.376 21.4177C123.126 23.8877 123.126 26.5377 122.376 29.0077C122.026 30.1677 121.446 31.2477 120.676 32.1777C119.906 33.1077 118.946 33.8577 117.856 34.3777C116.606 34.9477 115.236 35.2277 113.856 35.1977C112.476 35.2277 111.116 34.9477 109.856 34.3777C108.766 33.8677 107.796 33.1077 107.026 32.1777C106.256 31.2477 105.676 30.1677 105.326 29.0077C104.566 26.5377 104.566 23.8877 105.326 21.4177ZM107.006 28.2977C107.266 29.2677 107.706 30.1877 108.296 31.0077C108.896 31.8077 109.666 32.4677 110.546 32.9377C111.566 33.4377 112.686 33.6877 113.826 33.6577C114.956 33.6877 116.086 33.4477 117.096 32.9377C117.976 32.4677 118.746 31.8077 119.336 31.0077C119.926 30.1877 120.366 29.2677 120.626 28.2977C121.176 26.2777 121.176 24.1377 120.626 22.1177C120.366 21.1477 119.926 20.2277 119.336 19.4177C118.736 18.6277 117.976 17.9877 117.096 17.5377C116.086 17.0277 114.956 16.7877 113.826 16.8177C112.686 16.7877 111.566 17.0377 110.546 17.5377C109.666 18.0077 108.896 18.6677 108.296 19.4677C107.706 20.2777 107.266 21.1977 107.006 22.1677C106.446 24.1877 106.446 26.3277 107.006 28.3477V28.2977Z\" fill=\"#4E4E4E\"/> <path d=\"M127.526 22.3577V34.8177H125.826V22.3577H123.466V20.9377H125.826V19.6677C125.826 19.1177 125.866 18.5677 125.966 18.0277C126.036 17.5677 126.216 17.1277 126.476 16.7377C126.726 16.3777 127.076 16.0877 127.476 15.9077C128.016 15.6877 128.586 15.5877 129.166 15.6077H129.866C130.086 15.6077 130.316 15.6077 130.586 15.6877V17.1377L129.946 17.0477C129.746 17.0277 129.546 17.0277 129.346 17.0477C128.976 17.0277 128.606 17.0977 128.276 17.2577C128.036 17.3877 127.846 17.5877 127.726 17.8377C127.596 18.1077 127.526 18.3977 127.516 18.6877V20.9377H130.256V22.3577H127.526Z\" fill=\"#4E4E4E\"/> <path d=\"M134.006 22.3577V34.8177H132.316V22.3577H129.946V20.9377H132.316V19.6677C132.316 19.1177 132.356 18.5677 132.446 18.0277C132.516 17.5677 132.696 17.1277 132.956 16.7377C133.206 16.3777 133.556 16.0877 133.956 15.9077C134.486 15.6877 135.066 15.5877 135.636 15.6077H136.336C136.556 15.6077 136.796 15.6077 137.066 15.6877V17.1377L136.416 17.0477C136.216 17.0377 136.026 17.0377 135.826 17.0477C135.456 17.0277 135.086 17.0977 134.746 17.2577C134.506 17.3877 134.316 17.5977 134.196 17.8377C134.076 18.1077 134.006 18.3977 133.996 18.6877V20.9377H136.746V22.3577H134.006Z\" fill=\"#4E4E4E\"/> <path d=\"M145.876 23.6377C145.696 23.2477 145.426 22.9077 145.086 22.6377C144.736 22.3777 144.346 22.1877 143.936 22.0777C143.486 21.9677 143.026 21.9077 142.566 21.9077C142.176 21.9077 141.796 21.9477 141.416 22.0277C141.046 22.1077 140.686 22.2377 140.356 22.4277C140.046 22.6077 139.776 22.8677 139.576 23.1677C139.366 23.5077 139.266 23.8977 139.286 24.2977C139.266 24.6577 139.366 25.0077 139.566 25.2977C139.756 25.5577 139.996 25.7877 140.276 25.9577C140.566 26.1377 140.886 26.2877 141.216 26.3977C141.556 26.5177 141.876 26.6077 142.156 26.6877L144.416 27.1977C144.906 27.2677 145.396 27.3977 145.856 27.5877C146.316 27.7677 146.746 28.0177 147.126 28.3277C148.456 29.4977 148.766 31.4477 147.866 32.9677C147.536 33.4877 147.086 33.9277 146.556 34.2577C146.006 34.5977 145.406 34.8377 144.776 34.9677C144.116 35.1077 143.446 35.1877 142.776 35.1877C141.346 35.2577 139.946 34.8477 138.776 34.0277C137.686 33.0977 137.056 31.7477 137.046 30.3177H138.736C138.736 31.3277 139.196 32.2777 139.986 32.9077C140.806 33.5177 141.806 33.8277 142.826 33.7877C143.256 33.7877 143.686 33.7377 144.106 33.6477C144.536 33.5677 144.946 33.4077 145.326 33.1977C145.686 32.9877 146.006 32.7177 146.256 32.3777C146.506 32.0177 146.636 31.5877 146.626 31.1477C146.626 30.7977 146.546 30.4477 146.366 30.1477C146.196 29.8677 145.956 29.6277 145.676 29.4477C145.366 29.2477 145.026 29.0877 144.676 28.9677C144.306 28.8477 143.936 28.7377 143.566 28.6477L141.386 28.1677C140.866 28.0277 140.346 27.8677 139.846 27.6677C139.406 27.4977 138.996 27.2577 138.626 26.9677C138.276 26.6977 137.996 26.3577 137.806 25.9677C137.596 25.4977 137.486 24.9877 137.506 24.4777C137.486 23.8377 137.656 23.2177 137.976 22.6677C138.286 22.1777 138.706 21.7577 139.206 21.4577C139.726 21.1477 140.296 20.9177 140.886 20.7877C141.516 20.6277 142.156 20.5477 142.806 20.5377C143.486 20.5277 144.156 20.6177 144.806 20.8077C145.386 20.9777 145.926 21.2677 146.396 21.6477C146.856 22.0277 147.236 22.5077 147.486 23.0477C147.776 23.6777 147.936 24.3577 147.946 25.0477H146.206C146.206 24.5577 146.096 24.0777 145.876 23.6377Z\" fill=\"#4E4E4E\"/> <path d=\"M151.586 30.2277C151.756 30.8677 152.036 31.4677 152.416 31.9977C152.796 32.5177 153.276 32.9577 153.836 33.2877C154.466 33.6377 155.186 33.8177 155.906 33.7977C156.966 33.8577 158.016 33.4977 158.816 32.7977C159.546 32.0977 160.046 31.1977 160.266 30.2177H161.966C161.696 31.6177 160.996 32.8977 159.966 33.8777C158.816 34.7977 157.356 35.2577 155.886 35.1677C154.916 35.1877 153.946 34.9877 153.056 34.5877C152.276 34.2277 151.586 33.6777 151.056 32.9977C150.536 32.2977 150.166 31.4977 149.946 30.6577C149.696 29.7377 149.576 28.7977 149.576 27.8477C149.576 26.9377 149.706 26.0377 149.946 25.1577C150.176 24.3077 150.546 23.5077 151.056 22.7977C151.586 22.0977 152.266 21.5277 153.056 21.1377C153.936 20.6977 154.916 20.4977 155.906 20.5377C156.906 20.5077 157.886 20.7477 158.766 21.2177C159.536 21.6377 160.196 22.2477 160.686 22.9777C161.196 23.7377 161.556 24.5877 161.746 25.4777C161.966 26.4177 162.056 27.3877 162.016 28.3477H151.336C151.336 28.9777 151.426 29.6177 151.586 30.2277ZM159.986 25.0477C159.786 24.4777 159.496 23.9477 159.116 23.4777C158.736 23.0177 158.266 22.6477 157.736 22.3777C157.166 22.0877 156.546 21.9477 155.906 21.9577C155.266 21.9477 154.626 22.0877 154.056 22.3777C153.526 22.6377 153.056 23.0177 152.686 23.4777C152.296 23.9577 151.986 24.4877 151.776 25.0677C151.556 25.6577 151.406 26.2777 151.336 26.9077H160.336C160.316 26.2777 160.196 25.6477 159.986 25.0477Z\" fill=\"#4E4E4E\"/> <path d=\"M169.336 20.9377V22.3577H166.506V31.7277C166.486 32.1677 166.566 32.6177 166.736 33.0277C166.896 33.3477 167.276 33.5177 167.886 33.5577C168.366 33.5577 168.856 33.5277 169.336 33.4777V34.8977H167.826C166.986 34.9877 166.146 34.7577 165.466 34.2477C164.936 33.5477 164.706 32.6777 164.816 31.8077V22.3077H162.396V20.9377H164.816V16.7677H166.506V20.9377H169.336Z\" fill=\"#4E4E4E\"/> <path d=\"M179.296 23.6377C179.106 23.2477 178.836 22.9077 178.496 22.6377C178.156 22.3777 177.766 22.1877 177.356 22.0777C176.906 21.9677 176.446 21.9077 175.986 21.9077C175.596 21.9077 175.216 21.9477 174.836 22.0277C174.466 22.1077 174.106 22.2377 173.776 22.4277C173.466 22.6077 173.196 22.8677 172.996 23.1677C172.786 23.5077 172.686 23.8977 172.696 24.2977C172.676 24.6577 172.776 25.0077 172.986 25.2977C173.176 25.5677 173.416 25.7877 173.696 25.9577C173.986 26.1377 174.306 26.2877 174.636 26.3977C174.976 26.5177 175.286 26.6077 175.576 26.6877L177.836 27.1977C178.326 27.2677 178.816 27.3977 179.276 27.5877C179.736 27.7677 180.166 28.0177 180.546 28.3277C180.916 28.6377 181.226 29.0277 181.446 29.4577C181.686 29.9477 181.806 30.4877 181.796 31.0377C181.816 31.7177 181.636 32.3877 181.286 32.9677C180.956 33.4877 180.506 33.9277 179.976 34.2577C179.426 34.5977 178.816 34.8377 178.186 34.9677C177.526 35.1077 176.856 35.1877 176.186 35.1877C174.756 35.2577 173.356 34.8477 172.186 34.0277C171.106 33.0977 170.466 31.7477 170.446 30.3177H172.206C172.206 31.3277 172.666 32.2777 173.456 32.9077C174.276 33.5177 175.276 33.8277 176.296 33.7877C176.726 33.7877 177.156 33.7377 177.576 33.6477C178.006 33.5577 178.416 33.4077 178.796 33.1977C179.156 32.9877 179.476 32.7177 179.726 32.3777C179.976 32.0177 180.096 31.5877 180.086 31.1477C180.086 30.7977 180.006 30.4477 179.836 30.1477C179.666 29.8677 179.426 29.6277 179.146 29.4477C178.836 29.2477 178.496 29.0877 178.146 28.9677C177.776 28.8477 177.406 28.7377 177.026 28.6477L174.846 28.1677C174.326 28.0277 173.816 27.8677 173.316 27.6677C172.876 27.4977 172.456 27.2577 172.086 26.9677C171.746 26.6977 171.466 26.3577 171.266 25.9677C171.056 25.4977 170.966 24.9877 170.976 24.4777C170.956 23.8377 171.116 23.2177 171.446 22.6677C171.756 22.1777 172.166 21.7577 172.666 21.4577C173.186 21.1477 173.756 20.9277 174.346 20.7877C174.956 20.6377 175.576 20.5477 176.206 20.5377C176.866 20.5377 177.526 20.6277 178.156 20.8077C178.736 20.9777 179.276 21.2677 179.746 21.6477C180.206 22.0277 180.576 22.5077 180.836 23.0477C181.126 23.6777 181.276 24.3577 181.286 25.0477H179.596C179.596 24.5577 179.496 24.0777 179.296 23.6377Z\" fill=\"#4E4E4E\"/> <path d=\"M22.2156 18.9577H16.5456V35.0277H22.2156V18.9577Z\" fill=\"#4E4E4E\"/> <path d=\"M35.47 0.659028L21.9251 9.7986L25.1245 14.5401L38.6694 5.40057L35.47 0.659028Z\" fill=\"#4E4E4E\"/> <path d=\"M3.42095 0.538818L0.208984 5.25977L13.7021 14.44L16.9141 9.71908L3.42095 0.538818Z\" fill=\"#4E4E4E\"/> </g> <defs> <clipPath id=\"clip0_1898_31608\"> <rect width=\"182\" height=\"39\" fill=\"white\" transform=\"translate(0 0.183838)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"jTzjmOXQ3\",layoutId:\"jTzjmOXQ3\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Iz51X.framer-1hsf30z, .framer-Iz51X .framer-1hsf30z { display: block; }\",\".framer-Iz51X.framer-1tca0wm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 64px 0px; position: relative; width: 1024px; }\",\".framer-Iz51X .framer-m0cs3h { 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: 640px; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Iz51X .framer-ut41z4, .framer-Iz51X .framer-fr713h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Iz51X .framer-9m1ssr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Iz51X .framer-u0k9c7-container { flex: none; height: 580px; max-width: 2208px; position: relative; width: 100%; }\",\".framer-Iz51X .framer-f7y8cq-container, .framer-Iz51X .framer-ti3ni4-container { height: 540px; position: relative; width: 440px; }\",\".framer-Iz51X .framer-sisxuv-container, .framer-Iz51X .framer-1s0ofbi-container, .framer-Iz51X .framer-10un71a-container { height: 540px; position: relative; width: 400px; }\",\".framer-Iz51X .framer-1jhqaxl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 920px; overflow: visible; padding: 0px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-Iz51X .framer-du4v6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Iz51X .framer-16r2i6w-container { aspect-ratio: 4.108108108108108 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 124px; }\",\".framer-Iz51X .framer-1922m8p-container { aspect-ratio: 8.578947368421053 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 141px; }\",\".framer-Iz51X .framer-i1yl4r-container { aspect-ratio: 1.8571428571428572 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 60px; }\",\".framer-Iz51X .framer-ir5sr-container { aspect-ratio: 5.655172413793103 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 139px; }\",\".framer-Iz51X .framer-1ix0aax-container { aspect-ratio: 3.9393939393939394 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 108px; }\",\".framer-Iz51X .framer-wa8i37-container { aspect-ratio: 5.636363636363637 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 124px; }\",\".framer-Iz51X .framer-gzyc23-container { aspect-ratio: 4.108108108108108 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 144px; }\",\".framer-Iz51X .framer-18z90bu-container { aspect-ratio: 7.882352941176471 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 134px; }\",\".framer-Iz51X .framer-15w8990-container { aspect-ratio: 3.096774193548387 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 96px; }\",\".framer-Iz51X .framer-zvoqzu-container { aspect-ratio: 4.666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 139px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Iz51X.framer-1tca0wm, .framer-Iz51X .framer-m0cs3h, .framer-Iz51X .framer-9m1ssr, .framer-Iz51X .framer-1jhqaxl, .framer-Iz51X .framer-du4v6h { gap: 0px; } .framer-Iz51X.framer-1tca0wm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Iz51X.framer-1tca0wm > :first-child, .framer-Iz51X .framer-m0cs3h > :first-child, .framer-Iz51X .framer-9m1ssr > :first-child, .framer-Iz51X .framer-1jhqaxl > :first-child { margin-top: 0px; } .framer-Iz51X.framer-1tca0wm > :last-child, .framer-Iz51X .framer-m0cs3h > :last-child, .framer-Iz51X .framer-9m1ssr > :last-child, .framer-Iz51X .framer-1jhqaxl > :last-child { margin-bottom: 0px; } .framer-Iz51X .framer-m0cs3h > *, .framer-Iz51X .framer-9m1ssr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Iz51X .framer-1jhqaxl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Iz51X .framer-du4v6h > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Iz51X .framer-du4v6h > :first-child { margin-left: 0px; } .framer-Iz51X .framer-du4v6h > :last-child { margin-right: 0px; } }\",\".framer-Iz51X.framer-v-xyi9ph.framer-1tca0wm { gap: 0px; padding: 80px 0px 80px 0px; width: 360px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-u0k9c7-container { height: 480px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-1jhqaxl { padding: 0px 24px 0px 24px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-du4v6h { gap: 20px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-16r2i6w-container { height: var(--framer-aspect-ratio-supported, 17px); width: 70px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-1922m8p-container { height: var(--framer-aspect-ratio-supported, 9px); width: 71px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-i1yl4r-container { height: var(--framer-aspect-ratio-supported, 18px); width: 33px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-ir5sr-container { height: var(--framer-aspect-ratio-supported, 12px); width: 67px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-1ix0aax-container { height: var(--framer-aspect-ratio-supported, 14px); width: 55px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-wa8i37-container { height: var(--framer-aspect-ratio-supported, 12px); width: 64px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-gzyc23-container { height: var(--framer-aspect-ratio-supported, 20px); width: 73px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-18z90bu-container { height: var(--framer-aspect-ratio-supported, 9px); width: 65px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-15w8990-container { height: var(--framer-aspect-ratio-supported, 17px); width: 52px; }\",\".framer-Iz51X.framer-v-xyi9ph .framer-zvoqzu-container { height: var(--framer-aspect-ratio-supported, 17px); width: 78px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Iz51X.framer-v-xyi9ph.framer-1tca0wm, .framer-Iz51X.framer-v-xyi9ph .framer-du4v6h { gap: 0px; } .framer-Iz51X.framer-v-xyi9ph.framer-1tca0wm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Iz51X.framer-v-xyi9ph.framer-1tca0wm > :first-child { margin-top: 0px; } .framer-Iz51X.framer-v-xyi9ph.framer-1tca0wm > :last-child { margin-bottom: 0px; } .framer-Iz51X.framer-v-xyi9ph .framer-du4v6h > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Iz51X.framer-v-xyi9ph .framer-du4v6h > :first-child { margin-left: 0px; } .framer-Iz51X.framer-v-xyi9ph .framer-du4v6h > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1045\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ubURWWiJ8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYUOpsLzzM=withCSS(Component,css,\"framer-Iz51X\");export default FramerYUOpsLzzM;FramerYUOpsLzzM.displayName=\"Homepage/Carousel\";FramerYUOpsLzzM.defaultProps={height:1045,width:1024};addPropertyControls(FramerYUOpsLzzM,{variant:{options:[\"xFG6Wsjn9\",\"ubURWWiJ8\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYUOpsLzzM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ComponentsImpactTypeCardsFonts,...CarouselFonts,...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYUOpsLzzM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1024\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1045\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ubURWWiJ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (6aebf05)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG as SVG1,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/RLfsHd78NBd0kbafA9hd/Lottie.js\";import SectionsProjectMap from\"#framer/local/canvasComponent/aHP0MINPD/aHP0MINPD.js\";import ComponentsButton from\"#framer/local/canvasComponent/cDVSopb0I/cDVSopb0I.js\";import ComponentsBackgroundColor from\"#framer/local/canvasComponent/ChCN6VGvF/ChCN6VGvF.js\";import ComponentsFooter from\"#framer/local/canvasComponent/G4S0QMEsx/G4S0QMEsx.js\";import SectionsIconGrid from\"#framer/local/canvasComponent/gnaBHXoEK/gnaBHXoEK.js\";import NavNav from\"#framer/local/canvasComponent/J21X_CoCN/J21X_CoCN.js\";import SectionsTestimonials from\"#framer/local/canvasComponent/jQkMZdTb_/jQkMZdTb_.js\";import NavTriageModal from\"#framer/local/canvasComponent/SKpq7wloS/SKpq7wloS.js\";import HomepageLogoTicker from\"#framer/local/canvasComponent/TzHhZLs2x/TzHhZLs2x.js\";import HomepageWhyEcologi from\"#framer/local/canvasComponent/uJyQ1x0zw/uJyQ1x0zw.js\";import ComponentsCookierBanner from\"#framer/local/canvasComponent/v3c21UG2n/v3c21UG2n.js\";import HomepageCarousel from\"#framer/local/canvasComponent/YUOpsLzzM/YUOpsLzzM.js\";import*as sharedStyle from\"#framer/local/css/DiySG71sE/DiySG71sE.js\";import*as sharedStyle3 from\"#framer/local/css/O4LPz1FVm/O4LPz1FVm.js\";import*as sharedStyle2 from\"#framer/local/css/RyKKj9LRD/RyKKj9LRD.js\";import*as sharedStyle1 from\"#framer/local/css/s4cdBe3FM/s4cdBe3FM.js\";import metadataProvider from\"#framer/local/webPageMetadata/n7hm6ubNd/n7hm6ubNd.js\";const NavNavFonts=getFonts(NavNav);const NavTriageModalFonts=getFonts(NavTriageModal);const ComponentsButtonFonts=getFonts(ComponentsButton);const SVGFonts=getFonts(SVG);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const HomepageLogoTickerFonts=getFonts(HomepageLogoTicker);const HomepageCarouselFonts=getFonts(HomepageCarousel);const SectionsIconGridFonts=getFonts(SectionsIconGrid);const HomepageWhyEcologiFonts=getFonts(HomepageWhyEcologi);const SectionsProjectMapFonts=getFonts(SectionsProjectMap);const SectionsTestimonialsFonts=getFonts(SectionsTestimonials);const LottieFonts=getFonts(Lottie);const ComponentsFooterFonts=getFonts(ComponentsFooter);const ComponentsCookierBannerFonts=getFonts(ComponentsCookierBanner);const ComponentsBackgroundColorFonts=getFonts(ComponentsBackgroundColor);const ComponentsBackgroundColorWithVariantAppearEffect=withVariantAppearEffect(ComponentsBackgroundColor);const breakpoints={AWzRMmwIi:\"(max-width: 639px)\",BdySQgr9X:\"(min-width: 1024px) and (max-width: 1440px)\",isMY4FFuv:\"(min-width: 1441px)\",RxFmHIGXy:\"(min-width: 640px) and (max-width: 1023px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jjde7\";const variantClassNames={AWzRMmwIi:\"framer-v-16g89ec\",BdySQgr9X:\"framer-v-1hyzxp1\",isMY4FFuv:\"framer-v-izey3c\",RxFmHIGXy:\"framer-v-8cow0f\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:180};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:75};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation7={opacity:.001,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Wide desktop\":\"isMY4FFuv\",Desktop:\"BdySQgr9X\",Mobile:\"AWzRMmwIi\",Tablet:\"RxFmHIGXy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"isMY4FFuv\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const fTzMh99y83bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const aU9ZRkLgX1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const K9rh5qnBN3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"RxFmHIGXy\",\"AWzRMmwIi\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"Qzswpevjp\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"qvPoX4bKz\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"L3ew8UPnG\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"l_UhScQUp\");const ref4=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"isMY4FFuv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-izey3c\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-tepwq6-container\",id:\"tepwq6\",nodeId:\"iP4C9IaMU\",scopeId:\"n7hm6ubNd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"qDLpDODmV\"},RxFmHIGXy:{variant:\"sj0_ZSfsW\"}},children:/*#__PURE__*/_jsx(NavNav,{fTzMh99y8:fTzMh99y83bnx0g({overlay}),height:\"100%\",id:\"iP4C9IaMU\",layoutId:\"iP4C9IaMU\",style:{width:\"100%\"},variant:\"srX42vkAe\",width:\"100%\",WS87XqAwV:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1pt3v1f\"),\"data-framer-portal-id\":\"tepwq6\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"W6RfnNoOX\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{width:\"90vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"594px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-mp0blp-container\"),\"data-framer-portal-id\":\"tepwq6\",inComponentSlot:true,nodeId:\"zRInVcyXo\",rendersWithMotion:true,scopeId:\"n7hm6ubNd\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"hnC8pnzkr\"}},children:/*#__PURE__*/_jsx(NavTriageModal,{aU9ZRkLgX:aU9ZRkLgX1wnntms({overlay}),height:\"100%\",id:\"zRInVcyXo\",layoutId:\"zRInVcyXo\",style:{width:\"100%\"},variant:\"Tcfy2YMMZ\",width:\"100%\"})})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8o4ns\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-g3yfzu\",\"data-framer-appear-id\":\"g3yfzu\",\"data-framer-name\":\"Content\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wwhz3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"64px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(2, 94, 71))\"},children:\"Climate leadership starts here\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(2, 94, 71))\"},children:\"Climate leadership starts here\"})}),className:\"framer-or9q0t\",\"data-framer-name\":\"For Our Planet\",fonts:[\"CUSTOM;Sofia Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\"},children:\"Your trusted partner for every step of your climate journey\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\"},children:\"Your trusted partner for every step of your climate journey\"})}),className:\"framer-148k82n\",\"data-framer-name\":\"Calculate your footprint, reduce your emissions, fund climate projects and share your milestones. Join over 20,000 businesses using our simple plug-and play solutions for every step of the journey.\",fonts:[\"CUSTOM;Sofia Pro Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+160+24+0+32+537.5},RxFmHIGXy:{y:(componentViewport?.y||0)+0+160+90+0+32+700}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+160+80+0+32+700,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-13e05cs-container\",id:\"13e05cs\",nodeId:\"ymmam68Cs\",scopeId:\"n7hm6ubNd\",children:[/*#__PURE__*/_jsx(ComponentsButton,{cQmsTu45D:false,DmV6aippQ:\"Get started\",height:\"100%\",id:\"ymmam68Cs\",K9rh5qnBN:K9rh5qnBN3bnx0g({overlay:overlay1}),layoutId:\"ymmam68Cs\",QFxCyRyN5:false,variant:\"c4AhppP_e\",WbTt7Rcm1:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.4975 11.9997C16.4975 11.9965 16.4976 11.9932 16.4976 11.99V12.01C16.4976 12.0066 16.4975 12.0032 16.4975 11.9997Z\" fill=\"#444444\"/> <path d=\"M16.2073 12.7007C16.3951 12.503 16.495 12.2565 16.4975 11.9997C16.4952 11.7432 16.4049 11.4969 16.2073 11.2993L9.20148 4.29277C8.81116 3.90241 8.18063 3.90241 7.7903 4.29277C7.39998 4.68314 7.39998 5.31374 7.7903 5.7041L14.0855 12L7.7903 18.2959C7.39998 18.6863 7.39998 19.3169 7.7903 19.7072C8.18063 20.0976 8.81116 20.0976 9.20148 19.7072L16.2073 12.7007Z\" fill=\"#444444\"/> </svg>',width:\"100%\",yCYpHkj4L:false,Zm8_MSIx5:false}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1n09212\"),\"data-framer-portal-id\":\"13e05cs\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"j3ZK4vcnL\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{width:\"90vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"594px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1n124fb-container\"),\"data-framer-portal-id\":\"13e05cs\",inComponentSlot:true,nodeId:\"AQziU8GGq\",rendersWithMotion:true,scopeId:\"n7hm6ubNd\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"hnC8pnzkr\"}},children:/*#__PURE__*/_jsx(NavTriageModal,{aU9ZRkLgX:aU9ZRkLgX1wnntms({overlay:overlay1}),height:\"100%\",id:\"AQziU8GGq\",layoutId:\"AQziU8GGq\",style:{width:\"100%\"},variant:\"Tcfy2YMMZ\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hywxmo\",\"data-framer-name\":\"Trustpilot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-151c9px\",\"data-styles-preset\":\"DiySG71sE\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Rated 4.8 on \",/*#__PURE__*/_jsx(Link,{href:\"https://uk.trustpilot.com/review/ecologi.com?utm_medium=trustbox&utm_source=Mini\",motionChild:true,nodeId:\"r9qneY2it\",openInNewTab:true,relValues:[],scopeId:\"n7hm6ubNd\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o7hojr\",\"data-styles-preset\":\"s4cdBe3FM\",children:\"Trustpilot\"})})]})}),className:\"framer-ueg7ta\",\"data-framer-name\":\"Calculate your footprint, reduce your emissions, fund climate projects and share your milestones. Join over 20,000 businesses using our simple plug-and play solutions for every step of the journey.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19e3fm9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u1fnie-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nfoif2CbI\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0635 1.68562e-09C12.2786 -1.75817e-05 12.4696 0.13753 12.5378 0.341537L15.0159 7.75778H23.0426C23.2604 7.75778 23.4532 7.89881 23.5191 8.10642C23.5851 8.31403 23.509 8.54045 23.3311 8.66614L16.8489 13.2459L19.3235 20.6527C19.392 20.8577 19.3209 21.0836 19.1474 21.2125C18.9739 21.3414 18.7372 21.3442 18.5607 21.2195L12.0636 16.6278L5.56796 21.2194C5.39144 21.3442 5.15473 21.3414 4.9812 21.2125C4.80767 21.0836 4.73663 20.8578 4.80509 20.6528L7.2783 13.2459L0.797418 8.66611C0.619529 8.5404 0.543491 8.314 0.609441 8.1064C0.67539 7.8988 0.86815 7.75778 1.08597 7.75778H9.11256L11.5893 0.341615C11.6575 0.137597 11.8484 1.76149e-05 12.0635 1.68562e-09Z\" fill=\"#0D6B54\"/> </svg>',description:\"\",height:\"100%\",id:\"nfoif2CbI\",layoutId:\"nfoif2CbI\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqw1u1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"quUcCSH_o\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0635 1.68562e-09C12.2786 -1.75817e-05 12.4696 0.13753 12.5378 0.341537L15.0159 7.75778H23.0426C23.2604 7.75778 23.4532 7.89881 23.5191 8.10642C23.5851 8.31403 23.509 8.54045 23.3311 8.66614L16.8489 13.2459L19.3235 20.6527C19.392 20.8577 19.3209 21.0836 19.1474 21.2125C18.9739 21.3414 18.7372 21.3442 18.5607 21.2195L12.0636 16.6278L5.56796 21.2194C5.39144 21.3442 5.15473 21.3414 4.9812 21.2125C4.80767 21.0836 4.73663 20.8578 4.80509 20.6528L7.2783 13.2459L0.797418 8.66611C0.619529 8.5404 0.543491 8.314 0.609441 8.1064C0.67539 7.8988 0.86815 7.75778 1.08597 7.75778H9.11256L11.5893 0.341615C11.6575 0.137597 11.8484 1.76149e-05 12.0635 1.68562e-09Z\" fill=\"#0D6B54\"/> </svg>',description:\"\",height:\"100%\",id:\"quUcCSH_o\",layoutId:\"quUcCSH_o\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vqtjap-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vpetb_OVy\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0635 1.68562e-09C12.2786 -1.75817e-05 12.4696 0.13753 12.5378 0.341537L15.0159 7.75778H23.0426C23.2604 7.75778 23.4532 7.89881 23.5191 8.10642C23.5851 8.31403 23.509 8.54045 23.3311 8.66614L16.8489 13.2459L19.3235 20.6527C19.392 20.8577 19.3209 21.0836 19.1474 21.2125C18.9739 21.3414 18.7372 21.3442 18.5607 21.2195L12.0636 16.6278L5.56796 21.2194C5.39144 21.3442 5.15473 21.3414 4.9812 21.2125C4.80767 21.0836 4.73663 20.8578 4.80509 20.6528L7.2783 13.2459L0.797418 8.66611C0.619529 8.5404 0.543491 8.314 0.609441 8.1064C0.67539 7.8988 0.86815 7.75778 1.08597 7.75778H9.11256L11.5893 0.341615C11.6575 0.137597 11.8484 1.76149e-05 12.0635 1.68562e-09Z\" fill=\"#0D6B54\"/> </svg>',description:\"\",height:\"100%\",id:\"vpetb_OVy\",layoutId:\"vpetb_OVy\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mgv8in-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RWLFZwW09\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0635 1.68562e-09C12.2786 -1.75817e-05 12.4696 0.13753 12.5378 0.341537L15.0159 7.75778H23.0426C23.2604 7.75778 23.4532 7.89881 23.5191 8.10642C23.5851 8.31403 23.509 8.54045 23.3311 8.66614L16.8489 13.2459L19.3235 20.6527C19.392 20.8577 19.3209 21.0836 19.1474 21.2125C18.9739 21.3414 18.7372 21.3442 18.5607 21.2195L12.0636 16.6278L5.56796 21.2194C5.39144 21.3442 5.15473 21.3414 4.9812 21.2125C4.80767 21.0836 4.73663 20.8578 4.80509 20.6528L7.2783 13.2459L0.797418 8.66611C0.619529 8.5404 0.543491 8.314 0.609441 8.1064C0.67539 7.8988 0.86815 7.75778 1.08597 7.75778H9.11256L11.5893 0.341615C11.6575 0.137597 11.8484 1.76149e-05 12.0635 1.68562e-09Z\" fill=\"#0D6B54\"/> </svg>',description:\"\",height:\"100%\",id:\"RWLFZwW09\",layoutId:\"RWLFZwW09\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gepfcf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gYyCc4qr1\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0635 1.68562e-09C12.2786 -1.75817e-05 12.4696 0.13753 12.5378 0.341537L15.0159 7.75778H23.0426C23.2604 7.75778 23.4532 7.89881 23.5191 8.10642C23.5851 8.31403 23.509 8.54045 23.3311 8.66614L16.8489 13.2459L19.3235 20.6527C19.392 20.8577 19.3209 21.0836 19.1474 21.2125C18.9739 21.3414 18.7372 21.3442 18.5607 21.2195L12.0636 16.6278L5.56796 21.2194C5.39144 21.3442 5.15473 21.3414 4.9812 21.2125C4.80767 21.0836 4.73663 20.8578 4.80509 20.6528L7.2783 13.2459L0.797418 8.66611C0.619529 8.5404 0.543491 8.314 0.609441 8.1064C0.67539 7.8988 0.86815 7.75778 1.08597 7.75778H9.11256L11.5893 0.341615C11.6575 0.137597 11.8484 1.76149e-05 12.0635 1.68562e-09Z\" fill=\"#0D6B54\"/> </svg>',description:\"\",height:\"100%\",id:\"gYyCc4qr1\",layoutId:\"gYyCc4qr1\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10wqdfq\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mcjvgq\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+40+0+580-389),pixelHeight:820,pixelWidth:820,sizes:\"400px\",src:\"https://framerusercontent.com/images/gYfokdtm5TOwKDNn8Qtroi6rDvs.jpg\",srcSet:\"https://framerusercontent.com/images/gYfokdtm5TOwKDNn8Qtroi6rDvs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gYfokdtm5TOwKDNn8Qtroi6rDvs.jpg 820w\"},className:\"framer-1js6d66 hidden-8cow0f hidden-16g89ec\",\"data-framer-appear-id\":\"1js6d66\",\"data-framer-name\":\"far-left\",initial:animation2,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+24+916.5+0+0),pixelHeight:1128,pixelWidth:918,sizes:`calc(max(max(min(${componentViewport?.width||\"100vw\"}, 1800px), 0px), 1px) / 2)`,src:\"https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg\",srcSet:\"https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg?scale-down-to=1024 833w,https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg 918w\"}},RxFmHIGXy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+40+0+40),pixelHeight:1128,pixelWidth:918,sizes:\"427px\",src:\"https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg\",srcSet:\"https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg?scale-down-to=1024 833w,https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg 918w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+40+0+40),pixelHeight:1128,pixelWidth:918,sizes:\"430px\",src:\"https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg\",srcSet:\"https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg?scale-down-to=1024 833w,https://framerusercontent.com/images/RwY7tkp1jUogafFcgBvEDwGbdj0.jpg 918w\"},className:\"framer-aicsab\",\"data-framer-appear-id\":\"aicsab\",\"data-framer-name\":\"left\",initial:animation3,optimized:true,style:{transformPerspective:1200}})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:108,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+40+0+580-378),pixelHeight:820,pixelWidth:820,sizes:\"322px\",src:\"https://framerusercontent.com/images/2X9k7DSYIv2LBRCRlwan9AF1Do.jpg\",srcSet:\"https://framerusercontent.com/images/2X9k7DSYIv2LBRCRlwan9AF1Do.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2X9k7DSYIv2LBRCRlwan9AF1Do.jpg 820w\"},className:\"framer-1un5guy hidden-8cow0f hidden-16g89ec\",\"data-framer-appear-id\":\"1un5guy\",\"data-framer-name\":\"far-right\",initial:animation4,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+24+916.5+0+0),pixelHeight:740,pixelWidth:766,sizes:`calc(max(max(min(${componentViewport?.width||\"100vw\"}, 1800px), 0px), 1px) / 2)`,src:\"https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg\",srcSet:\"https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg 766w\"}},RxFmHIGXy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+40+0+270),pixelHeight:740,pixelWidth:766,sizes:\"364.5px\",src:\"https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg\",srcSet:\"https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg 766w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:118,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+40+0+259),pixelHeight:740,pixelWidth:766,sizes:\"350px\",src:\"https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg\",srcSet:\"https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DrxbtUVmalNWOiSs34v0MQiNhE.jpg 766w\"},className:\"framer-vn850q\",\"data-framer-appear-id\":\"vn850q\",\"data-framer-name\":\"bottom-right\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+24+916.5+0+0),pixelHeight:904,pixelWidth:852,sizes:`calc(max(max(min(${componentViewport?.width||\"100vw\"}, 1800px), 0px), 1px) / 2)`,src:\"https://framerusercontent.com/images/qLapEppZ1AYkI87mlq12dp60c.jpg\",srcSet:\"https://framerusercontent.com/images/qLapEppZ1AYkI87mlq12dp60c.jpg 852w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:108,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160+40+0+0),pixelHeight:904,pixelWidth:852,sizes:\"380px\",src:\"https://framerusercontent.com/images/qLapEppZ1AYkI87mlq12dp60c.jpg\",srcSet:\"https://framerusercontent.com/images/qLapEppZ1AYkI87mlq12dp60c.jpg 852w\"},className:\"framer-fvm17n\",\"data-framer-appear-id\":\"fvm17n\",\"data-framer-name\":\"top-right\",initial:animation5,optimized:true,style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,animate:animation6,className:\"framer-1sinyi\",\"data-framer-appear-id\":\"1sinyi\",\"data-framer-name\":\"badge\",initial:animation7,optimized:true,children:/*#__PURE__*/_jsx(SVG1,{className:\"framer-blwwyi\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:131,intrinsicWidth:131,style:{rotate:10},svg:'<svg width=\"131\" height=\"131\" viewBox=\"0 0 131 131\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1454_63766)\">\\n<path d=\"M65.2998 130.3C101.198 130.3 130.3 101.198 130.3 65.2996C130.3 29.4011 101.198 0.299561 65.2998 0.299561C29.4013 0.299561 0.299805 29.4011 0.299805 65.2996C0.299805 101.198 29.4013 130.3 65.2998 130.3Z\" fill=\"#FDD186\"/>\\n<path d=\"M21.6852 90.5764L23.5864 87.0014L23.2777 86.4408L20.312 88.0414L19.4102 86.3677L27.6895 81.8989L29.477 85.2058C30.5008 87.1071 29.5989 88.6508 28.242 89.3821C27.0639 90.0158 25.4633 89.8127 24.6345 88.7564L22.7495 92.5345L21.6933 90.5764H21.6852ZM27.1208 84.3689L24.6345 85.7096L25.3577 87.0421C25.8614 87.9764 26.6414 88.0739 27.2995 87.7164C27.9577 87.3589 28.3314 86.6114 27.9089 85.8314L27.1208 84.3689Z\" fill=\"#135E4E\"/>\\n<path d=\"M28.1691 96.8081L30.891 99.9037L29.6316 101.017L25.6504 96.4993L32.7029 90.2837L36.6029 94.7118L35.3435 95.8249L32.7029 92.8268L31.021 94.3056L33.3366 96.9381L32.0529 98.0674L29.7373 95.4349L28.161 96.8243L28.1691 96.8081Z\" fill=\"#135E4E\"/>\\n<path d=\"M38.1548 107.818L38.8373 105.543L35.9692 103.495L34.0517 104.893L32.4023 103.723L40.7223 98.1001L42.388 99.2863L39.7798 108.979L38.1548 107.826V107.818ZM37.383 102.471L39.3411 103.869L40.4298 100.269L37.383 102.471Z\" fill=\"#135E4E\"/>\\n<path d=\"M46.0525 110.044L49.335 111.425L48.685 112.969L43.6475 110.848L47.2956 102.179L49.0425 102.918L46.0443 110.044H46.0525Z\" fill=\"#135E4E\"/>\\n<path d=\"M58.0605 115.171L59.2224 105.835L61.1074 106.071L59.9456 115.406L58.0605 115.171Z\" fill=\"#135E4E\"/>\\n<path d=\"M76.2687 114.805L74.3431 115.008L73.0593 109.28L71.2718 114.261L69.7931 114.415L66.99 109.922L66.9168 115.788L64.9912 115.991L65.1618 106.517L66.7625 106.347L70.2968 112.181L72.515 105.746L74.14 105.575L76.2606 114.805H76.2687Z\" fill=\"#135E4E\"/>\\n<path d=\"M81.412 102.991C83.3863 102.187 84.8326 103.251 85.4095 104.681C85.9863 106.111 85.6776 107.858 83.7113 108.655L81.9157 109.386L83.1507 112.433L81.3957 113.148L77.8613 104.438L81.412 103V102.991ZM82.9963 107.151C83.8413 106.81 83.8901 106.022 83.6382 105.405C83.3782 104.771 82.8013 104.243 81.9807 104.576L80.2501 105.283L81.2901 107.85L82.9963 107.16V107.151Z\" fill=\"#135E4E\"/>\\n<path d=\"M96.2562 105.12L94.3387 103.714L91.4543 105.738L92.1287 108.013L90.4712 109.174L87.9443 99.4569L89.6181 98.2788L97.8812 103.974L96.2481 105.12H96.2562ZM90.9668 104.064L92.9331 102.683L89.9025 100.456L90.9668 104.064Z\" fill=\"#135E4E\"/>\\n<path d=\"M97.0689 98.3681C95.0701 96.6375 94.7857 93.5906 96.5245 91.5756C97.5726 90.365 99.0595 89.8206 100.514 89.9587L100.359 91.7381C99.4414 91.6487 98.572 91.9412 97.922 92.6969C96.8007 93.9887 97.0445 95.8331 98.312 96.9381C99.5795 98.035 101.448 98.0269 102.561 96.7431C103.219 95.9794 103.39 95.0775 103.171 94.1837L104.909 93.7775C105.251 95.1912 104.918 96.7512 103.869 97.9537C102.123 99.9687 99.0839 100.123 97.0607 98.3762L97.0689 98.3681Z\" fill=\"#135E4E\"/>\\n<path d=\"M103.317 81.0213L104.804 81.7932L103.61 84.0926L110.467 87.6594L109.59 89.3413L102.732 85.7744L101.538 88.0738L100.051 87.3019L103.317 81.0132V81.0213Z\" fill=\"#135E4E\"/>\\n<path d=\"M26.0076 53.5509L22.1888 54.8834L22.0263 55.509L25.2926 56.3459L24.8213 58.1821L15.7051 55.8503L16.6395 52.2102C17.1757 50.1221 18.8901 49.6021 20.3851 49.984C21.677 50.3171 22.717 51.5521 22.6113 52.8928L26.5601 51.3977L26.0076 53.5509ZM17.8095 54.4284L20.5476 55.1271L20.9213 53.6565C21.1813 52.6246 20.6776 52.0315 19.9463 51.8446C19.2232 51.6577 18.4432 51.9502 18.2157 52.8115L17.8013 54.4284H17.8095Z\" fill=\"#135E4E\"/>\\n<path d=\"M27.194 46.1084L29.1278 42.4684L30.6146 43.2566L27.7953 48.5784L19.4834 44.1747L22.2459 38.9666L23.7328 39.7547L21.8559 43.2891L23.8303 44.3372L25.4715 41.2334L26.9828 42.0297L25.3415 45.1334L27.2021 46.1166L27.194 46.1084Z\" fill=\"#135E4E\"/>\\n<path d=\"M36.3105 36.2528L34.1167 35.3347L31.7848 37.9672L32.9711 40.0228L31.6305 41.534L26.918 32.6697L28.2748 31.134L37.6267 34.7578L36.3023 36.2528H36.3105ZM30.9155 36.4478L32.508 34.6522L29.0467 33.1897L30.9155 36.4478Z\" fill=\"#135E4E\"/>\\n<path d=\"M40.2185 30.809L43.1191 28.7371L44.0941 30.1021L39.6498 33.279L34.1816 25.6253L35.7254 24.5203L40.2185 30.809Z\" fill=\"#135E4E\"/>\\n<path d=\"M51.6992 16.7852C53.7386 16.1758 55.0792 17.3783 55.5179 18.8571C55.9567 20.3358 55.4773 22.0421 53.4379 22.6515L51.5773 23.204L52.5117 26.3565L50.6917 26.8927L48.0186 17.874L51.6992 16.7852ZM52.8773 21.0752C53.7548 20.8152 53.8767 20.0352 53.6898 19.3933C53.4948 18.7352 52.9667 18.1583 52.1136 18.4102L50.3179 18.9383L51.1061 21.5952L52.8773 21.0671V21.0752Z\" fill=\"#135E4E\"/>\\n<path d=\"M64.9425 24.3089L62.5538 21.0427L61.9119 21.0752L62.0662 24.4471L60.1731 24.5364L59.7344 15.1439L63.4881 14.9733C65.6412 14.8758 66.6406 16.3546 66.7137 17.8983C66.7787 19.2308 65.8931 20.5877 64.585 20.8802L67.1688 24.2196L64.9425 24.3252V24.3089ZM61.7088 16.7202L61.8387 19.5396L63.35 19.4664C64.4144 19.4177 64.8369 18.7514 64.7962 18.0039C64.7556 17.2564 64.2519 16.5902 63.3663 16.6389L61.7006 16.7121L61.7088 16.7202Z\" fill=\"#135E4E\"/>\\n<path d=\"M70.5899 19.6859C71.1668 17.0777 73.7018 15.3877 76.3099 15.9646C78.9099 16.5415 80.5105 19.1496 79.9336 21.7659C79.3568 24.3659 76.7974 26.0477 74.1974 25.4709C71.5811 24.894 70.013 22.2859 70.5899 19.6859ZM78.0649 21.3515C78.4305 19.7021 77.5611 18.0771 75.9199 17.7115C74.2705 17.3459 72.808 18.4427 72.4342 20.1002C72.0686 21.7496 72.9299 23.3584 74.5792 23.724C76.2205 24.0896 77.6911 23.0009 78.0567 21.3515H78.0649Z\" fill=\"#135E4E\"/>\\n<path d=\"M78.3323 29.4763L79.218 27.9732C79.4942 28.2495 80.128 28.5663 80.2011 28.5988C80.9567 28.9563 81.5173 28.5257 81.8342 27.8432L85.8398 19.2876L87.5542 20.092L83.5486 28.6476C82.8173 30.2076 81.4523 31.1582 79.4373 30.2157C79.2017 30.102 78.6898 29.7932 78.3242 29.4682L78.3323 29.4763Z\" fill=\"#135E4E\"/>\\n<path d=\"M89.4634 30.1427L92.8109 32.5477L91.8278 33.9127L86.9365 30.3946L92.429 22.7571L97.2146 26.2021L96.2315 27.5671L92.9815 25.2271L91.6734 27.0471L94.5253 29.0946L93.5259 30.484L90.674 28.4365L89.4472 30.1427H89.4634Z\" fill=\"#135E4E\"/>\\n<path d=\"M97.2637 32.4013C99.2705 30.6788 102.334 30.8413 104.064 32.8645C105.104 34.0751 105.429 35.6351 105.08 37.0488L103.341 36.6345C103.569 35.7407 103.398 34.8388 102.756 34.0832C101.643 32.7913 99.7824 32.7507 98.5068 33.8476C97.2312 34.9445 96.963 36.7888 98.0762 38.0888C98.7343 38.8526 99.6037 39.1532 100.522 39.072L100.668 40.8513C99.2137 40.9813 97.7268 40.4207 96.6868 39.2101C94.9562 37.187 95.2405 34.1482 97.2718 32.4095L97.2637 32.4013Z\" fill=\"#135E4E\"/>\\n<path d=\"M111.914 45.8726L110.411 46.6282L109.249 44.3126L102.342 47.782L101.489 46.0838L108.396 42.6145L107.234 40.2988L108.737 39.5432L111.914 45.8726Z\" fill=\"#135E4E\"/>\\n<path d=\"M106.908 51.5196L107.363 53.364C106.713 53.5346 106.331 54.3065 106.542 55.1596C106.745 55.9802 107.33 56.4109 107.98 56.2565C108.484 56.1346 108.752 55.6715 108.793 54.8346L108.833 53.6402C108.866 51.5115 109.987 50.8534 110.808 50.6502C112.441 50.244 113.912 51.3734 114.342 53.1203C114.765 54.8428 114.05 56.4271 112.311 56.8577L111.856 55.0134C112.506 54.8509 112.896 54.274 112.701 53.4859C112.522 52.7709 111.913 52.3484 111.303 52.4946C111.076 52.5515 110.629 52.7302 110.588 53.754L110.548 54.8427C110.475 56.3215 110.077 57.7028 108.525 58.0846C106.713 58.5315 105.332 57.2315 104.909 55.509C104.43 53.559 105.307 51.9259 106.908 51.5277V51.5196Z\" fill=\"#135E4E\"/>\\n<path d=\"M70.9546 58.7672C70.6133 58.6453 70.3858 58.3122 70.4102 57.9465V57.8978C70.4102 57.8003 70.4264 57.7028 70.4264 57.5972C70.4264 54.7697 68.1271 52.4622 65.2914 52.4622C62.4558 52.4622 60.1564 54.7615 60.1564 57.5972C60.1564 57.6865 60.1564 57.7759 60.1727 57.8653V57.9547C60.2052 58.3203 59.9777 58.6534 59.6364 58.7753C57.1014 59.6609 55.4033 62.0578 55.4033 64.739C55.4033 68.2247 58.2389 71.0603 61.7246 71.0603C62.6752 71.0603 63.6177 70.8247 64.4789 70.4103V65.3078C64.4789 64.8609 64.8446 64.4953 65.2914 64.4953C65.7383 64.4953 66.1039 64.8609 66.1039 65.3078V70.4103C66.9652 70.8328 67.9077 71.0603 68.8583 71.0603C72.3439 71.0603 75.1796 68.2247 75.1796 64.739C75.1796 62.0578 73.4814 59.669 70.9464 58.7753L70.9546 58.7672Z\" fill=\"#135E4E\"/>\\n<path d=\"M83.3206 44.524C80.4931 43.8171 74.3831 42.6309 65.2993 42.6309C56.2156 42.6309 50.1056 43.8171 47.2781 44.524C46.1162 44.8165 45.3037 45.8565 45.3037 47.0509V65.5109C45.3037 75.2771 52.3968 81.9071 63.8531 89.439C64.2918 89.7315 64.7956 89.8777 65.2993 89.8777C65.8031 89.8777 66.3068 89.7315 66.7456 89.4471C78.1937 81.9152 85.295 75.2852 85.295 65.519V47.059C85.295 45.8646 84.4825 44.8246 83.3206 44.5321V44.524ZM68.8662 72.6771C67.9237 72.6771 66.9893 72.5065 66.1118 72.1815V75.4396C66.1118 75.8865 65.7462 76.2521 65.2993 76.2521C64.8525 76.2521 64.4868 75.8865 64.4868 75.4396V72.1815C63.6093 72.5065 62.675 72.6771 61.7325 72.6771C57.3531 72.6771 53.7862 69.1102 53.7862 64.7309C53.7862 61.5621 55.6793 58.7184 58.5475 57.459C58.6206 53.7946 61.6268 50.8371 65.3075 50.8371C68.9881 50.8371 71.9943 53.7946 72.0675 57.459C74.9356 58.7184 76.8287 61.5702 76.8287 64.7309C76.8287 69.1102 73.2618 72.6771 68.8825 72.6771H68.8662Z\" fill=\"#135E4E\"/>\\n<path d=\"M19.5801 72.2871C20.4775 72.2871 21.2051 71.5596 21.2051 70.6621C21.2051 69.7646 20.4775 69.0371 19.5801 69.0371C18.6826 69.0371 17.9551 69.7646 17.9551 70.6621C17.9551 71.5596 18.6826 72.2871 19.5801 72.2871Z\" fill=\"#135E4E\"/>\\n<path d=\"M111.019 72.2871C111.916 72.2871 112.644 71.5596 112.644 70.6621C112.644 69.7646 111.916 69.0371 111.019 69.0371C110.121 69.0371 109.394 69.7646 109.394 70.6621C109.394 71.5596 110.121 72.2871 111.019 72.2871Z\" fill=\"#135E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1454_63766\">\\n<rect width=\"130\" height=\"130\" fill=\"white\" transform=\"translate(0.299805 0.299561)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a0onwr\",\"data-framer-name\":\"Businesses\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17wfbvx\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qo8fdq\",\"data-styles-preset\":\"RyKKj9LRD\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by over 24,000 businesses\"})}),className:\"framer-1yp65wb\",\"data-framer-appear-id\":\"1yp65wb\",\"data-framer-name\":\"Trusted by over 24,000 businesses\",fonts:[\"Inter\"],initial:animation8,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1600px)`,y:(componentViewport?.y||0)+0+160+24+1253.5+0+178},RxFmHIGXy:{y:(componentViewport?.y||0)+0+160+90+1162+0+178}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1600px)`,y:(componentViewport?.y||0)+0+160+80+1062+0+178,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ll3hy-container\",id:\"19ll3hy\",nodeId:\"yUehnLAOF\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(HomepageLogoTicker,{height:\"100%\",id:\"yUehnLAOF\",layoutId:\"yUehnLAOF\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+1899.5},RxFmHIGXy:{y:(componentViewport?.y||0)+0+1874}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1045,width:`min(${componentViewport?.width||\"100vw\"}, 2400px)`,y:(componentViewport?.y||0)+0+1764,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1in3ssb-container\",id:elementId,nodeId:\"Qzswpevjp\",ref:ref1,scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"ubURWWiJ8\"}},children:/*#__PURE__*/_jsx(HomepageCarousel,{height:\"100%\",id:\"Qzswpevjp\",layoutId:\"Qzswpevjp\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"xFG6Wsjn9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+2944.5},RxFmHIGXy:{y:(componentViewport?.y||0)+0+2919}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:812,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zsde1d-container\",id:elementId1,nodeId:\"qvPoX4bKz\",ref:ref2,scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"qwLnc3alE\"},RxFmHIGXy:{variant:\"uEzx77l2c\"}},children:/*#__PURE__*/_jsx(SectionsIconGrid,{A9HlZTr18:false,b6ERy4Zri:\"Attract new customers\",dABeS2ioX:\"rgba(255, 255, 255, 0)\",dADd7TeS7:\"Drive revenue\",govsgofwb:\"Boost brand\",height:\"100%\",id:\"qvPoX4bKz\",jvSGYM8AM:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/FPOQUEqXdgAJBxpnXUUvIss.svg\"},\"\"),layoutId:\"qvPoX4bKz\",LoNqDYpwI:\"Intro\",mn07MGRxz:\"Better business, better planet\",MZbk_NihH:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Differentiate from competitors to attract and retain motivated, environmentally-conscious employees.\"})}),o9UnFqOB0:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/Nr6LHpe9XDHr8PlDByY38LgyrYE.svg\"},\"Attract new customers\"),oxXTPxPzz:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Elevate brand positioning and reputation through purpose-led storytelling about your climate journey.\"})}),PUaalTVup:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/OR0Sk4vqll7BCv4f9qvV2TBTk.svg\"},\"\"),rCC90W4YR:\"Employee engagement\",style:{width:\"100%\"},variant:\"gE0yg8wLO\",width:\"100%\",WvJ_LNIFJ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Set your business apart from competitors with clear climate action plans creating a competitive edge and driving revenue growth.\"})}),x827xvajl:addImageAlt({pixelHeight:201,pixelWidth:200,src:\"https://framerusercontent.com/images/T3rK2UREAyPdfltxjoPs1p5HBJM.svg\"},\"\"),ynx33daPl:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Champion your climate impact and attract more environmentally conscious customers in new markets.\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+3756.5},RxFmHIGXy:{y:(componentViewport?.y||0)+0+3731}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:911,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3621,children:/*#__PURE__*/_jsx(Container,{className:\"framer-194t96c-container\",nodeId:\"Hm_3x_ks1\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"YJNZT1Yo7\"}},children:/*#__PURE__*/_jsx(HomepageWhyEcologi,{height:\"100%\",id:\"Hm_3x_ks1\",layoutId:\"Hm_3x_ks1\",style:{width:\"100%\"},variant:\"AIhpT6CUi\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+4667.5},RxFmHIGXy:{y:(componentViewport?.y||0)+0+4642}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:753,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4532,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g67yqw-container\",id:elementId2,nodeId:\"L3ew8UPnG\",ref:ref3,scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"SkMiA55VY\"}},children:/*#__PURE__*/_jsx(SectionsProjectMap,{height:\"100%\",id:\"L3ew8UPnG\",IFenLP4yj:true,layoutId:\"L3ew8UPnG\",style:{width:\"100%\"},u4p9idDv6:\"The projects you support matter\",variant:\"Smka_oVxf\",width:\"100%\",YPcZrr_Fs:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+5420.5},RxFmHIGXy:{y:(componentViewport?.y||0)+0+5395}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:818,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5285,children:/*#__PURE__*/_jsx(Container,{className:\"framer-we4ibx-container\",id:elementId3,nodeId:\"l_UhScQUp\",ref:ref4,scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"KaQtMMf8_\"},RxFmHIGXy:{variant:\"Nd7tMZlTn\"}},children:/*#__PURE__*/_jsx(SectionsTestimonials,{auVYxuL7s:true,Bt4buvP3s:addImageAlt({pixelHeight:4096,pixelWidth:3278,src:\"https://framerusercontent.com/images/WFq88xZmMtbGeOg8didvVaUyqiA.png\",srcSet:\"https://framerusercontent.com/images/WFq88xZmMtbGeOg8didvVaUyqiA.png?scale-down-to=1024 819w,https://framerusercontent.com/images/WFq88xZmMtbGeOg8didvVaUyqiA.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/WFq88xZmMtbGeOg8didvVaUyqiA.png 3278w\"},\"\"),D4XibNuMK:\"Stuart Newman, Head of Utilities, Your Co-op\",egQBuwc6p:\"“Ecologi has an incredibly straight-forward and transparent approach, which allows us to provide fully auditable evidence of impact and tree planting purchases.”\",height:\"100%\",id:\"l_UhScQUp\",kMsIOcUB2:addImageAlt({pixelHeight:327,pixelWidth:640,src:\"https://framerusercontent.com/images/mekvfcbSgZJcjb2JKz2aCLQgm3A.png\",srcSet:\"https://framerusercontent.com/images/mekvfcbSgZJcjb2JKz2aCLQgm3A.png?scale-down-to=512 512w,https://framerusercontent.com/images/mekvfcbSgZJcjb2JKz2aCLQgm3A.png 640w\"},\"\"),layoutId:\"l_UhScQUp\",lNj_rOU3S:\"“Each initiative we funded led to positive impact backed by robust data that is easily traceable and has been independently verified according to the highest available standards.”\",N3fMflrKV:\"Sam Walker, Technical Director, BioPak UK\",p5hSALXqc:\"“It's great to partner with Ecologi and support both the large scale reforestation projects they do and the more grass roots initiatives which really make a difference locally.”\",POXdWCYrE:addImageAlt({pixelHeight:1e3,pixelWidth:1200,src:\"https://framerusercontent.com/images/wPkhnHr8X0KS8z6ACVAn5Tg.jpg\",srcSet:\"https://framerusercontent.com/images/wPkhnHr8X0KS8z6ACVAn5Tg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wPkhnHr8X0KS8z6ACVAn5Tg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wPkhnHr8X0KS8z6ACVAn5Tg.jpg 1200w\"},\"\"),qZyc8ujUm:addImageAlt({pixelHeight:702,pixelWidth:708,src:\"https://framerusercontent.com/images/t4Nl1q2EUEVDAs388Q4sMZVHeI.png\",srcSet:\"https://framerusercontent.com/images/t4Nl1q2EUEVDAs388Q4sMZVHeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/t4Nl1q2EUEVDAs388Q4sMZVHeI.png 708w\"},\"\"),sedypqonJ:\"Antonia Doncila, Sustainability Manager, Ellers Farm Distillery\",style:{width:\"100%\"},ukbUCcMdl:addImageAlt({pixelHeight:385,pixelWidth:1500,src:\"https://framerusercontent.com/images/yxVgsl0GULos5Aiy1CyYgkP4kI.jpg\",srcSet:\"https://framerusercontent.com/images/yxVgsl0GULos5Aiy1CyYgkP4kI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yxVgsl0GULos5Aiy1CyYgkP4kI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yxVgsl0GULos5Aiy1CyYgkP4kI.jpg 1500w\"},\"\"),variant:\"b1obl4qtU\",wDBYQutCm:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/javgLpLs1OH0u3KJkt1sCdk99A.jpg\",srcSet:\"https://framerusercontent.com/images/javgLpLs1OH0u3KJkt1sCdk99A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/javgLpLs1OH0u3KJkt1sCdk99A.jpg 800w\"},\"\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f0rlet\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dlxpzh\",\"data-framer-name\":\"Scene\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikf0lz\",\"data-framer-name\":\"Get started\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ls7727\",\"data-styles-preset\":\"O4LPz1FVm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ready to take action?\"})}),className:\"framer-sv2mkl\",\"data-framer-name\":\"Ready to take action?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cW2HeKPLd\"},implicitPathVariables:undefined},{href:{webPageId:\"cW2HeKPLd\"},implicitPathVariables:undefined},{href:{webPageId:\"cW2HeKPLd\"},implicitPathVariables:undefined},{href:{webPageId:\"cW2HeKPLd\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+6238.5+0+0+80+0+0+107.2},RxFmHIGXy:{y:(componentViewport?.y||0)+0+6213+0+0+80+0+0+115.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+6103+0+0+56+0+0+115.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dpgovw-container\",nodeId:\"ftdWbI8eX\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{XOSsObgDr:resolvedLinks[2]},BdySQgr9X:{XOSsObgDr:resolvedLinks[3]},RxFmHIGXy:{XOSsObgDr:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ComponentsButton,{cQmsTu45D:false,DmV6aippQ:\"Schedule a call\",height:\"100%\",id:\"ftdWbI8eX\",layoutId:\"ftdWbI8eX\",QFxCyRyN5:false,variant:\"O_3VA_APT\",WbTt7Rcm1:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.4975 11.9997C16.4975 11.9965 16.4976 11.9932 16.4976 11.99V12.01C16.4976 12.0066 16.4975 12.0032 16.4975 11.9997Z\" fill=\"#444444\"/> <path d=\"M16.2073 12.7007C16.3951 12.503 16.495 12.2565 16.4975 11.9997C16.4952 11.7432 16.4049 11.4969 16.2073 11.2993L9.20148 4.29277C8.81116 3.90241 8.18063 3.90241 7.7903 4.29277C7.39998 4.68314 7.39998 5.31374 7.7903 5.7041L14.0855 12L7.7903 18.2959C7.39998 18.6863 7.39998 19.3169 7.7903 19.7072C8.18063 20.0976 8.81116 20.0976 9.20148 19.7072L16.2073 12.7007Z\" fill=\"#444444\"/> </svg>',width:\"100%\",XOSsObgDr:resolvedLinks[0],yCYpHkj4L:false,Zm8_MSIx5:false})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i8kuf2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T4kUeCOFm\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"T4kUeCOFm\",isForwardsDirection:true,layoutId:\"T4kUeCOFm\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcType:\"URL\",srcUrl:\"https://lottie.host/abb2f734-bd2f-4170-b330-a60e0059a4e5/0hXV3sHvCX.json\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gowst0\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{y:(componentViewport?.y||0)+0+6238.5+0+633.2},RxFmHIGXy:{y:(componentViewport?.y||0)+0+6213+0+621.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:576,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6103+0+577.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x50aay-container\",nodeId:\"s2_4n0KBa\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"Y6bosTp_P\"},RxFmHIGXy:{variant:\"Uw3ETbH3T\"}},children:/*#__PURE__*/_jsx(ComponentsFooter,{height:\"100%\",id:\"s2_4n0KBa\",layoutId:\"s2_4n0KBa\",rNz5KBGbE:\"var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42))\",style:{width:\"100%\"},variant:\"qq7QjEZl1\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11jdexj\",\"data-framer-name\":\"Cookie banner\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{width:`min(max(${componentViewport?.width||\"100vw\"} - 16px, 1px), 1024px)`,y:(componentViewport?.y||0)+0+7447.7+0},RxFmHIGXy:{y:(componentViewport?.y||0)+0+7410.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1024px)`,y:(componentViewport?.y||0)+0+7256.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14qr6i2-container\",nodeId:\"Ria12aCQC\",scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{variant:\"RsQkHn7oJ\"},RxFmHIGXy:{variant:\"RsQkHn7oJ\"}},children:/*#__PURE__*/_jsx(ComponentsCookierBanner,{height:\"100%\",id:\"Ria12aCQC\",layoutId:\"Ria12aCQC\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"LWBwsbgs1\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWzRMmwIi:{height:7559.7},RxFmHIGXy:{height:7522.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:7368.2,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5d2v4c-container\",nodeId:\"CqKBd7uEy\",rendersWithMotion:true,scopeId:\"n7hm6ubNd\",children:/*#__PURE__*/_jsx(ComponentsBackgroundColorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"SBwtvc9xY\"},{ref:ref2,target:\"AZYxnFJ4V\"},{ref:ref3,target:\"sVweCS0Ed\"},{ref:ref4,target:\"RUHWep07S\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"CqKBd7uEy\",layoutId:\"CqKBd7uEy\",style:{height:\"100%\",width:\"100%\"},variant:\"AZYxnFJ4V\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jjde7.framer-zn7x9u, .framer-jjde7 .framer-zn7x9u { display: block; }\",\".framer-jjde7.framer-izey3c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1441px; }\",\".framer-jjde7 .framer-tepwq6-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-jjde7.framer-1pt3v1f, .framer-jjde7.framer-1n09212 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-jjde7.framer-mp0blp-container, .framer-jjde7.framer-1n124fb-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 594px; z-index: 10; }\",\".framer-jjde7 .framer-r8o4ns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-g3yfzu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 560px; min-height: 490px; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-jjde7 .framer-19wwhz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-or9q0t, .framer-jjde7 .framer-ueg7ta, .framer-jjde7 .framer-sv2mkl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jjde7 .framer-148k82n { flex: none; height: auto; max-width: 480px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jjde7 .framer-13e05cs-container, .framer-jjde7 .framer-dpgovw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jjde7 .framer-1hywxmo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-19e3fm9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jjde7 .framer-1u1fnie-container, .framer-jjde7 .framer-aqw1u1-container, .framer-jjde7 .framer-1vqtjap-container, .framer-jjde7 .framer-mgv8in-container, .framer-jjde7 .framer-gepfcf-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-jjde7 .framer-10wqdfq { flex: none; height: 580px; left: calc(49.89590562109648% - min(1800px, max(1680px, 116.58570437196391%)) / 2); max-width: 1800px; min-width: 1680px; overflow: visible; pointer-events: none; position: absolute; top: 40px; width: 117%; z-index: 0; }\",\".framer-jjde7 .framer-1mcjvgq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 580px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jjde7 .framer-1js6d66 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: -21px; flex: none; height: 410px; left: -280px; position: absolute; width: 400px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-jjde7 .framer-aicsab { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 516px; left: 67px; position: absolute; top: 40px; width: 430px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-jjde7 .framer-1un5guy { aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 56px; flex: none; height: var(--framer-aspect-ratio-supported, 322px); position: absolute; right: -225px; width: 322px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-jjde7 .framer-vn850q { aspect-ratio: 1.0909090909090908 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 321px); position: absolute; right: 153px; top: 259px; width: 350px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-jjde7 .framer-fvm17n { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 360px; position: absolute; right: 50px; top: 0px; width: 380px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-jjde7 .framer-1sinyi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 420px; overflow: hidden; padding: 0px; position: absolute; top: 368px; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-jjde7 .framer-blwwyi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 130px); position: relative; width: 130px; }\",\".framer-jjde7 .framer-1a0onwr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 184px 0px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-17wfbvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-1yp65wb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-jjde7 .framer-19ll3hy-container { flex: none; height: auto; max-width: 1600px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-1in3ssb-container { flex: none; height: auto; max-width: 2400px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-zsde1d-container, .framer-jjde7 .framer-194t96c-container, .framer-jjde7 .framer-1g67yqw-container, .framer-jjde7 .framer-we4ibx-container, .framer-jjde7 .framer-1i8kuf2-container, .framer-jjde7 .framer-1x50aay-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jjde7 .framer-f0rlet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-dlxpzh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 56px 0px 0px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-jjde7 .framer-1ikf0lz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-jjde7 .framer-1gowst0 { background-color: var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, #01382a); bottom: -5px; flex: none; height: 10px; left: 0px; overflow: hidden; position: absolute; width: 100%; z-index: 10; }\",\".framer-jjde7 .framer-11jdexj { align-content: center; align-items: center; bottom: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: sticky; width: 100%; z-index: 1; }\",\".framer-jjde7 .framer-14qr6i2-container { bottom: 10px; flex: 1 0 0px; height: auto; max-width: 1024px; position: sticky; top: 0px; width: 1px; z-index: 10; }\",\".framer-jjde7 .framer-5d2v4c-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: -1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 640px) and (max-width: 1023px) { .framer-jjde7.framer-izey3c { width: 640px; } .framer-jjde7 .framer-r8o4ns { gap: 180px; padding: 90px 40px 0px 40px; } .framer-jjde7 .framer-g3yfzu { max-width: 400px; } .framer-jjde7 .framer-10wqdfq { height: 600px; left: calc(49.89590562109648% - min(1800px, max(1520px, 116.58570437196391%)) / 2); min-width: 1520px; } .framer-jjde7 .framer-1mcjvgq { height: 600px; } .framer-jjde7 .framer-aicsab { height: 520px; left: 80px; width: 427px; } .framer-jjde7 .framer-vn850q { height: var(--framer-aspect-ratio-supported, 330px); right: 140px; top: 270px; width: 365px; } .framer-jjde7 .framer-fvm17n { height: 380px; right: 40px; } .framer-jjde7 .framer-dlxpzh { padding: 80px 0px 0px 0px; } .framer-jjde7 .framer-1ikf0lz { padding: 0px 56px 20px 56px; }}\",\"@media (max-width: 639px) { .framer-jjde7.framer-izey3c { width: 360px; } .framer-jjde7.framer-mp0blp-container, .framer-jjde7.framer-1n124fb-container { width: 90%; } .framer-jjde7 .framer-r8o4ns { gap: 97px; padding: 24px 0px 0px 0px; } .framer-jjde7 .framer-g3yfzu { min-height: unset; padding: 32px 40px 0px 40px; } .framer-jjde7 .framer-10wqdfq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; min-width: 0px; padding: 0px; position: relative; top: unset; width: 100%; } .framer-jjde7 .framer-1mcjvgq { flex: 1 0 0px; height: 240px; left: unset; overflow: hidden; position: relative; right: unset; top: unset; width: 1px; } .framer-jjde7 .framer-aicsab { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: 100%; left: unset; order: 0; position: relative; top: unset; width: 50%; } .framer-jjde7 .framer-vn850q { aspect-ratio: unset; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: 100%; order: 4; position: relative; right: unset; top: unset; width: 50%; } .framer-jjde7 .framer-fvm17n { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: 100%; order: 2; position: relative; right: unset; top: unset; width: 50%; } .framer-jjde7 .framer-1sinyi { bottom: -33px; left: unset; right: 40px; top: unset; z-index: 1; } .framer-jjde7 .framer-blwwyi { height: var(--framer-aspect-ratio-supported, 80px); width: 80px; z-index: 1; } .framer-jjde7 .framer-1a0onwr { padding: 0px 16px 184px 16px; } .framer-jjde7 .framer-17wfbvx { padding: 0px 16px 0px 16px; } .framer-jjde7 .framer-dlxpzh { padding: 80px 0px 0px 0px; } .framer-jjde7 .framer-1ikf0lz { gap: 40px; padding: 0px 40px 40px 40px; } .framer-jjde7 .framer-11jdexj { padding: 0px 8px 0px 8px; }}\",\"@media (min-width: 1024px) and (max-width: 1440px) { .framer-jjde7.framer-izey3c { width: 1024px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7404\n * @framerIntrinsicWidth 1441\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RxFmHIGXy\":{\"layout\":[\"fixed\",\"auto\"]},\"AWzRMmwIi\":{\"layout\":[\"fixed\",\"auto\"]},\"BdySQgr9X\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Qzswpevjp\":{\"pattern\":\":Qzswpevjp\",\"name\":\"yellow\"},\"qvPoX4bKz\":{\"pattern\":\":qvPoX4bKz\",\"name\":\"mushroom2\"},\"L3ew8UPnG\":{\"pattern\":\":L3ew8UPnG\",\"name\":\"green\"},\"l_UhScQUp\":{\"pattern\":\":l_UhScQUp\",\"name\":\"blue\"}}\n * @framerResponsiveScreen\n */const Framern7hm6ubNd=withCSS(Component,css,\"framer-jjde7\");export default Framern7hm6ubNd;Framern7hm6ubNd.displayName=\"Home\";Framern7hm6ubNd.defaultProps={height:7404,width:1441};addFonts(Framern7hm6ubNd,[{explicitInter:true,fonts:[{family:\"Sofia Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/3picOzdm279yHcWBfvz9Gl6rm08.woff2\"},{family:\"Sofia Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZhIxXuM5tWh1Zyunf814ZQtbsk.woff2\"},{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\"}]},...NavNavFonts,...NavTriageModalFonts,...ComponentsButtonFonts,...SVGFonts,...HomepageLogoTickerFonts,...HomepageCarouselFonts,...SectionsIconGridFonts,...HomepageWhyEcologiFonts,...SectionsProjectMapFonts,...SectionsTestimonialsFonts,...LottieFonts,...ComponentsFooterFonts,...ComponentsCookierBannerFonts,...ComponentsBackgroundColorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern7hm6ubNd\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"Qzswpevjp\\\":{\\\"pattern\\\":\\\":Qzswpevjp\\\",\\\"name\\\":\\\"yellow\\\"},\\\"qvPoX4bKz\\\":{\\\"pattern\\\":\\\":qvPoX4bKz\\\",\\\"name\\\":\\\"mushroom2\\\"},\\\"L3ew8UPnG\\\":{\\\"pattern\\\":\\\":L3ew8UPnG\\\",\\\"name\\\":\\\"green\\\"},\\\"l_UhScQUp\\\":{\\\"pattern\\\":\\\":l_UhScQUp\\\",\\\"name\\\":\\\"blue\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RxFmHIGXy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AWzRMmwIi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BdySQgr9X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"7404\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1441\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}