{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://ga.jspm.io/npm:phenomenon@1.6.0/dist/phenomenon.mjs", "ssg:https://ga.jspm.io/npm:cobe@0.6.0/dist/index.esm.js", "ssg:https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js", "ssg:https://framerusercontent.com/modules/nzKhYj9McMLtjJHIgWFt/QpCMBsCW4TMOEtsTOv48/RUxSJbzco.js", "ssg:https://framerusercontent.com/modules/ShBTDvKx4Yp1auD1gAtx/krPvIkj0X2efRLMCGXyI/A0OqvjNwM.js", "ssg:https://framerusercontent.com/modules/xn4LgWAMQPNT9utWBcAQ/kigOHxePUT6lak0yUONA/FzBZqYka4.js", "ssg:https://framerusercontent.com/modules/3EQZpCTNzbjn8x1EsHtz/VqNa8TSHf4RJZBtmubXy/DKyyJ4mvg.js", "ssg:https://framerusercontent.com/modules/mWYCPuKgUOju9doSH9DN/l7CpaRpoWYAumgctw1Dd/fZ5nUt1GC.js", "ssg:https://framerusercontent.com/modules/n0uUv9GloNltkkXZIndw/FRg18z6Nr6S9NyKUys2x/sF4vzf8sO.js", "ssg:https://framerusercontent.com/modules/4apupTmzXgYEVYQ91P5G/6j52NUwSh2OG7CdfJDMn/UVGMjvD_A.js", "ssg:https://framerusercontent.com/modules/d9ypdS312HYbK3o32hvD/msGTlyZSX0UctlYLrNIn/ZZDsH024J.js", "ssg:https://framerusercontent.com/modules/jluj83Y8wMkWlicTOL9D/5Rra2t48xtEAwygU7UqV/NumberAnimator_2.js", "ssg:https://framerusercontent.com/modules/o5xhMf3uSDUQtZOEDqne/bsdr9rYYT9z6yrXxAQw3/BxknfK0QL.js", "ssg:https://framerusercontent.com/modules/WRTHdE7wQYd1fa1shrRT/gktzlIhOsgaqflmeCRJT/Y8K_OwimL.js", "ssg:https://framerusercontent.com/modules/DuX0EJ4NXgOSoHNvJTCs/2tlUoUKsWhmWJIM0nhCj/o0_jSGowk.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 isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const 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:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"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\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "var t=[\"x\",\"y\",\"z\"],e=function(t){Object.assign(this,{uniforms:{},geometry:{vertices:[{x:0,y:0,z:0}]},mode:0,modifiers:{},attributes:[],multiplier:1,buffers:[]}),Object.assign(this,t),this.prepareProgram(),this.prepareUniforms(),this.prepareAttributes()};e.prototype.compileShader=function(t,r){var s=this.gl.createShader(t);return this.gl.shaderSource(s,r),this.gl.compileShader(s),s},e.prototype.prepareProgram=function(){var t=this.gl,r=this.vertex,s=this.fragment,n=t.createProgram();t.attachShader(n,this.compileShader(35633,r)),t.attachShader(n,this.compileShader(35632,s)),t.linkProgram(n),t.useProgram(n),this.program=n},e.prototype.prepareUniforms=function(){for(var t=Object.keys(this.uniforms),r=0;r<t.length;r+=1){var s=this.gl.getUniformLocation(this.program,t[r]);this.uniforms[t[r]].location=s}},e.prototype.prepareAttributes=function(){void 0!==this.geometry.vertices&&this.attributes.push({name:\"aPosition\",size:3}),void 0!==this.geometry.normal&&this.attributes.push({name:\"aNormal\",size:3}),this.attributeKeys=[];for(var t=0;t<this.attributes.length;t+=1)this.attributeKeys.push(this.attributes[t].name),this.prepareAttribute(this.attributes[t])},e.prototype.prepareAttribute=function(r){for(var s=this.geometry,n=this.multiplier,a=s.vertices,o=s.normal,h=new Float32Array(n*a.length*r.size),u=0;u<n;u+=1)for(var f=r.data&&r.data(u,n),c=u*a.length*r.size,l=0;l<a.length;l+=1)for(var p=0;p<r.size;p+=1){var m=this.modifiers[r.name];h[c]=void 0!==m?m(f,l,p,this):\"aPosition\"===r.name?a[l][t[p]]:\"aNormal\"===r.name?o[l][t[p]]:f[p],c+=1}this.attributes[this.attributeKeys.indexOf(r.name)].data=h,this.prepareBuffer(this.attributes[this.attributeKeys.indexOf(r.name)])},e.prototype.prepareBuffer=function(t){var r=t.data,s=t.name,n=t.size,a=this.gl.createBuffer();this.gl.bindBuffer(34962,a),this.gl.bufferData(34962,r,35044);var o=this.gl.getAttribLocation(this.program,s);this.gl.enableVertexAttribArray(o),this.gl.vertexAttribPointer(o,n,5126,!1,0,0),this.buffers[this.attributeKeys.indexOf(t.name)]={buffer:a,location:o,size:n}},e.prototype.render=function(t){var r=this,s=this.uniforms,n=this.multiplier,a=this.gl;a.useProgram(this.program);for(var o=0;o<this.buffers.length;o+=1){var h=this.buffers[o],u=h.location,f=h.buffer,c=h.size;a.enableVertexAttribArray(u),a.bindBuffer(34962,f),a.vertexAttribPointer(u,c,5126,!1,0,0)}Object.keys(t).forEach((function(r){s[r].value=t[r].value})),Object.keys(s).forEach((function(t){var n=s[t];r.uniformMap[n.type](n.location,n.value)})),a.drawArrays(this.mode,0,n*this.geometry.vertices.length),this.onRender&&this.onRender(this)},e.prototype.destroy=function(){for(var t=0;t<this.buffers.length;t+=1)this.gl.deleteBuffer(this.buffers[t].buffer);this.gl.deleteProgram(this.program),this.gl=null};var i=function(t){var r=this,s=t||{},n=s.canvas;void 0===n&&(n=document.querySelector(\"canvas\"));var a=s.context;void 0===a&&(a={});var o=s.contextType;void 0===o&&(o=\"experimental-webgl\");var h=s.settings;void 0===h&&(h={});var u=n.getContext(o,Object.assign({alpha:!1,antialias:!1},a));Object.assign(this,{gl:u,canvas:n,uniforms:{},instances:new Map,shouldRender:!0}),Object.assign(this,{devicePixelRatio:1,clearColor:[1,1,1,1],position:{x:0,y:0,z:2},clip:[.001,100]}),Object.assign(this,h),this.uniformMap={float:function(t,r){return u.uniform1f(t,r)},vec2:function(t,r){return u.uniform2fv(t,r)},vec3:function(t,r){return u.uniform3fv(t,r)},vec4:function(t,r){return u.uniform4fv(t,r)},mat2:function(t,r){return u.uniformMatrix2fv(t,!1,r)},mat3:function(t,r){return u.uniformMatrix3fv(t,!1,r)},mat4:function(t,r){return u.uniformMatrix4fv(t,!1,r)}},u.enable(u.DEPTH_TEST),u.depthFunc(u.LEQUAL),!1===u.getContextAttributes().alpha&&(u.clearColor.apply(u,this.clearColor),u.clearDepth(1)),this.onSetup&&this.onSetup(u),window.addEventListener(\"resize\",(function(){return r.resize()})),this.resize(),this.render()};i.prototype.resize=function(){var t=this.gl,r=this.canvas,s=this.devicePixelRatio,n=this.position;r.width=r.clientWidth*s,r.height=r.clientHeight*s;var a=t.drawingBufferWidth,o=t.drawingBufferHeight,h=a/o;t.viewport(0,0,a,o);var u=Math.tan(Math.PI/180*22.5),f=[1,0,0,0,0,1,0,0,0,0,1,0,n.x,n.y,(h<1?1:h)*-n.z,1];this.uniforms.uProjectionMatrix={type:\"mat4\",value:[.5/u,0,0,0,0,h/u*.5,0,0,0,0,-(this.clip[1]+this.clip[0])/(this.clip[1]-this.clip[0]),-1,0,0,-2*this.clip[1]*(this.clip[0]/(this.clip[1]-this.clip[0])),0]},this.uniforms.uViewMatrix={type:\"mat4\",value:[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},this.uniforms.uModelMatrix={type:\"mat4\",value:f}},i.prototype.toggle=function(t){t!==this.shouldRender&&(this.shouldRender=void 0!==t?t:!this.shouldRender,this.shouldRender&&this.render())},i.prototype.render=function(){var t=this;this.gl.clear(16640),this.instances.forEach((function(r){r.render(t.uniforms)})),this.onRender&&this.onRender(this),this.shouldRender&&requestAnimationFrame((function(){return t.render()}))},i.prototype.add=function(t,r){void 0===r&&(r={uniforms:{}}),void 0===r.uniforms&&(r.uniforms={}),Object.assign(r.uniforms,JSON.parse(JSON.stringify(this.uniforms))),Object.assign(r,{gl:this.gl,uniformMap:this.uniformMap});var s=new e(r);return this.instances.set(t,s),s},i.prototype.remove=function(t){var r=this.instances.get(t);void 0!==r&&(r.destroy(),this.instances.delete(t))},i.prototype.destroy=function(){var t=this;this.instances.forEach((function(r,s){r.destroy(),t.instances.delete(s)})),this.toggle(!1)};export default i;\n\n//# sourceMappingURL=phenomenon.mjs.map", "import e from\"phenomenon\";var a=\"phi\",o=\"theta\",t=\"mapSamples\",i=\"mapBrightness\",f=\"baseColor\",r=\"markerColor\",l=\"glowColor\",c=\"markers\",n=\"diffuse\",A=\"devicePixelRatio\",g=\"dark\",v=\"offset\",s=\"scale\",d={[a]:\"A\",[o]:\"B\",[t]:\"k\",[i]:\"E\",[f]:\"L\",[r]:\"M\",[l]:\"y\",[n]:\"F\",[g]:\"G\",[v]:\"x\",[s]:\"C\"},{PI:u,sin:m,cos:x}=Math,U=e=>[].concat(...e.map((e=>{let[a,o]=e.location;a=a*u/180,o=o*u/180-u;let t=x(a);return[-t*x(o),m(a),t*m(o),e.size]})),[0,0,0,0]),D=(u,m)=>{let _=(e,a,o)=>({type:e,value:\"undefined\"==typeof m[a]?o:m[a]}),x=u.getContext(\"webgl\")?\"webgl\":\"experimental-webgl\",y=new e({canvas:u,contextType:x,context:{alpha:!0,stencil:!1,antialias:!0,depth:!1,preserveDrawingBuffer:!1},settings:{[A]:m[A]||1,onSetup:e=>{let a=e.RGB,o=e.UNSIGNED_BYTE,t=e.TEXTURE_2D,i=e.createTexture();e.bindTexture(t,i),e.texImage2D(t,0,a,1,1,0,a,o,new Uint8Array([0,0,0,0]));let f=new Image;f.onload=()=>{e.bindTexture(t,i),e.texImage2D(t,0,a,a,o,f),e.generateMipmap(t);let r=e.getParameter(e.CURRENT_PROGRAM),l=e.getUniformLocation(r,\"H\");e.texParameteri(t,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(t,e.TEXTURE_MAG_FILTER,e.NEAREST),e.uniform1i(l,0)},f.src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACAAQAAAADMzoqnAAAAAXNSR0IArs4c6QAABA5JREFUeNrV179uHEUAx/Hf3JpbF+E2VASBsmVKTBcpKJs3SMEDcDwBiVJAAewYEBUivIHT0uUBIt0YCovKD0CRjUC4QfHYh8hYXu+P25vZ2Zm9c66gMd/GJ/tz82d3bk8GN4SrByYF2366FNTACIAkivVAAazQdnf3MvAlbNUQfOPAdQDvSAimMWhwy4I2g4SU+Kp04ISLpPBAKLxPyic3O/CCi+Y7rUJbiodcpDOFY7CgxCEXmdYD2EYK2s5lApOx5pEDDYCUwM1XdJUwBV11QQMg59kePSCaPAASQMEL2hwo6TJFgxpg+TgC2ymXPbuvc40awr3D1QCFfbH9kcoqAOkZozpQo0aqAGQRKCog/+tjkgbNFEtg2FffBvBGlSxHoAaAa1u6X4PBAwDiR8FFsrQgeUhfJTSALaB9jy5NCybJPn1SVFiWk7ywN+KzhH1aKAuydhGkbEF4lWohLXDXavlyFgHY7LBnLRdlAP6BS5Cc8RfVDXbkwN/oIvmY+6obbNeBP0JwTuMGu9gTzy1Q4RS/cWpfzszeYwd+CAFrtBW/Hur0gLbJGlD+/OjVwe/drfBxkbbg63dndEDfiEBlAd7ac0BPe1D6Jd8dfbLH+RI0OzseFB5s01/M+gMdAeluLOCAuaUA9Lezo/vSgXoCX9rtEiXnp7Q1W/CNyWcd8DXoS6jH/YZ5vAJEWY2dXFQe2TUgaFaNejCzJ98g6HnlVrsE58sDcYqg+9XY75fPqdoh/kRQWiXKg8MWlJQxUFMPjqnyujhFBE7UxIMjyszk0QwQlFsezImsyvUYYYVED2pk6m0Tg8T04Fwjk2kdAwSACqlM6gRRt3vQYAFGX0Ah7Ebx1H+MDRI5ui0QldH4j7FGcm90XdxD2Jg1AOEAVAKhEFXSn4cKUELurIAKwJ3MArypPscQaLhJFICJ0ohjDySAdH8AhDtCiTuMycH8CXzhH9jUACAO5uMhoAwA5i+T6WAKmmAqnLy80wxHqIPFYpqCwxGaYLt4Dyievg5kEoVEUAhs6pqKgFtDQYOuaXypaWKQfIuwwoGSZgfLsu/XAtI8cGN+h7Cc1A5oLOMhwlIPXuhu48AIvsSBkvtV9wsJRKCyYLfq5lTrQMFd1a262oqBck9K1V0YjQg0iEYYgpS1A9GlXQV5cykwm4A7BzVsxQqo7E+zCegO7Ma7yKgsuOcfKbMBwLC8wvVNYDsANYalEpOAa6zpWjTeMKGwEwC1CiQewJc5EKfgy7GmRAZA4vUVGwE2dPM/g0xuAInE/yG5aZ8ISxWGfYigUVbdyBElTHh2uCwGdfCkOLGgQVBh3Ewp+/QK4CDlR5Ws/Zf7yhCf8pH7vinWAvoVCQ6zz0NX5V/6GkAVV+2/5qsJ/gU8bsxpM8IeAQAAAABJRU5ErkJggg==\"}}});return y.add(\"\",{vertex:\"attribute vec3 aPosition;uniform mat4 uProjectionMatrix;uniform mat4 uModelMatrix;uniform mat4 uViewMatrix;void main(){gl_Position=uProjectionMatrix*uModelMatrix*uViewMatrix*vec4(aPosition,1.);}\",fragment:\"precision highp float;uniform vec2 r,x;uniform vec3 L,M,y;uniform vec4 z[64];uniform float A,B,k,C,D,E,F,G;uniform sampler2D H;float I=1./k;mat3 J(float a,float b){float c=cos(a),d=cos(b),e=sin(a),f=sin(b);return mat3(d,f*e,-f*c,0.,c,e,f,d*-e,d*c);}vec3 v(vec3 c,out float w){c=c.xzy;float p=max(2.,floor(log2(2.236068*k*3.141593*(1.-c.z*c.z))*.72021));vec2 g=floor(pow(1.618034,p)/2.236068*vec2(1.,1.618034)+.5),d=fract((g+1.)*.618034)*6.283185-3.883222,e=-2.*g,f=vec2(atan(c.y,c.x),c.z-1.),q=floor(vec2(e.y*f.x-d.y*(f.y*k+1.),-e.x*f.x+d.x*(f.y*k+1.))/(d.x*e.y-e.x*d.y));float n=3.141593;vec3 s;for(float h=0.;h<4.;h+=1.){vec2 t=vec2(mod(h,2.),floor(h*.5));float j=dot(g,q+t);if(j>k)continue;float a=j,b=0.;if(a>=524288.)a-=524288.,b+=.803894;if(a>=262144.)a-=262144.,b+=.901947;if(a>=131072.)a-=131072.,b+=.950973;if(a>=65536.)a-=65536.,b+=.475487;if(a>=32768.)a-=32768.,b+=.737743;if(a>=16384.)a-=16384.,b+=.868872;if(a>=8192.)a-=8192.,b+=.934436;if(a>=4096.)a-=4096.,b+=.467218;if(a>=2048.)a-=2048.,b+=.733609;if(a>=1024.)a-=1024.,b+=.866804;if(a>=512.)a-=512.,b+=.433402;if(a>=256.)a-=256.,b+=.216701;if(a>=128.)a-=128.,b+=.108351;if(a>=64.)a-=64.,b+=.554175;if(a>=32.)a-=32.,b+=.777088;if(a>=16.)a-=16.,b+=.888544;if(a>=8.)a-=8.,b+=.944272;if(a>=4.)a-=4.,b+=.472136;if(a>=2.)a-=2.,b+=.236068;if(a>=1.)a-=1.,b+=.618034;float l=fract(b)*6.283185,i=1.-2.*j*I,m=sqrt(1.-i*i);vec3 o=vec3(cos(l)*m,sin(l)*m,i);float u=length(c-o);if(u<n)n=u,s=o;}w=n;return s.xzy;}void main(){vec2 a=(gl_FragCoord.xy/r*2.-1.)/C-x*vec2(1.,-1.)/r;a.x*=r.x/r.y;float c=dot(a,a),b;vec3 d=vec3(0.,0.,1.),e=normalize(vec3(a,sqrt(.64-c)));if(c<=.64){vec3 f=e*J(B,A),g=v(f,b);float j=asin(g.y),h=acos(-g.x/cos(j));h=g.z<0.?-h:h;float t=texture2D(H,vec2(h*.5/3.141593,-(j/3.141593+.5))).x,u=smoothstep(8e-3,0.,b),l=dot(e,d),s=pow(l,F)*E,m=t*u*s,N=mix((1.-m)*pow(l,.4),m,G)+.1;gl_FragColor=vec4(L*N,1.);int O=int(D);float n=0.;for(int i=0;i<64;i++){if(i>=O)break;vec4 o=z[i];vec3 p=o.xyz,w=p-f;float q=o.w;if(dot(w,w)>q*q*4.)continue;vec3 P=v(p,b);b=length(P-f),b<q?n+=smoothstep(q*.5,0.,b):0.;}n=min(1.,n*s),gl_FragColor.xyz=mix(gl_FragColor.xyz,M,n),gl_FragColor.xyz+=pow(1.-dot(e,d),4.)*y;}float K=pow(dot(normalize(vec3(-a,sqrt(1.-c))),d),4.)*smoothstep(.1,1.,.2/(c-.64));gl_FragColor+=vec4(K*y,K);}\",uniforms:{r:{type:\"vec2\",value:[m.width,m.height]},A:_(\"float\",a),B:_(\"float\",o),k:_(\"float\",t),E:_(\"float\",i),L:_(\"vec3\",f),M:_(\"vec3\",r),F:_(\"float\",n),y:_(\"vec3\",l),G:_(\"float\",g),z:{type:\"vec4\",value:U(m[c])},D:{type:\"float\",value:m[c].length},x:_(\"vec2\",v,[0,0]),C:_(\"float\",s,1)},mode:4,geometry:{vertices:[{x:-100,y:100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0},{x:100,y:-100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0}]},onRender:({uniforms:e})=>{let a={};if(m.onRender){m.onRender(a);for(let o in d)void 0!==a[o]&&(e[d[o]].value=a[o]);void 0!==a[c]&&(e.z.value=U(a[c]),e.D.value=a[c].length),a.width&&a.height&&(e.r.value=[a.width,a.height])}}}),y};export{D as default};\n\n//# sourceMappingURL=index.esm.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Color,RenderTarget}from\"framer\";import{useEffect,useRef}from\"react\";import createGlobe from\"cobe\";import{useSpring}from\"framer-motion\";/**\n * GLOBE FOR FRAMER\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 300\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Globe(props){const{background,baseColor,glowColor,isDraggable,dragOptions,speed,theta,phi,dark,diffuse,maxSamples,mapBrightness,markerSize,markerArray,markerColor,scale,alignment,maxWidth,offset}=props;const{offsetX,offsetY}=offset;const{stiffness,damping,mass}=dragOptions;const canvasRef=useRef();const pointerInteracting=useRef(null);const pointerInteractionMovement=useRef(0);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const r=useSpring(0,{stiffness:stiffness,damping:damping,mass:mass,restDelta:1e-4,restSpeed:1e-4});const fadeMask=\"radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 70%)\";useEffect(()=>{let phiValue=phi;let width=0;const onResize=()=>{if(canvasRef.current&&(width=canvasRef.current.offsetWidth)){window.addEventListener(\"resize\",onResize);}};onResize();const baseConvert=convertRGB(baseColor);const glowConvert=convertRGB(glowColor);const markerConvert=convertRGB(markerColor);const globe=createGlobe(canvasRef.current,{devicePixelRatio:2,width:width*2,height:width*2,phi:phi,theta:theta,dark:dark,diffuse:diffuse,mapSamples:maxSamples,mapBrightness:mapBrightness,baseColor:[baseConvert.r,baseConvert.g,baseConvert.b],glowColor:[glowConvert.r,glowConvert.g,glowConvert.b],markerColor:[markerConvert.r,markerConvert.g,markerConvert.b],markers:markerArray.map(marker=>{return{location:[marker.latitude,marker.longitude],size:markerSize};}),scale:scale,offset:[offsetX,offsetY],onRender:state=>{if(!isCanvas){state.phi=phiValue+r.get();}state.width=width*2;state.height=width*2;if(!isCanvas){state.phi=phiValue+r.get();phiValue+=speed/200;}}});return()=>{globe.destroy();};},[props]);return /*#__PURE__*/ _jsx(\"div\",{style:{...flexStyles,placeItems:alignment,background:background},children:/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",aspectRatio:\"1/1\",maxWidth:maxWidth,WebkitMaskImage:fadeMask,MozMaskImage:fadeMask,maskImage:fadeMask},children:/*#__PURE__*/ _jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"100%\",contain:\"layout paint size\",cursor:\"auto\",userSelect:\"none\"},onPointerDown:e=>{if(isDraggable){pointerInteracting.current=e.clientX-pointerInteractionMovement.current;canvasRef.current.style.cursor=\"grabbing\";}},onPointerUp:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"grab\";}},onPointerOver:()=>{if(isDraggable){canvasRef.current.style.cursor=\"grab\";}},onPointerOut:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"auto\";}},onMouseMove:e=>{if(isDraggable){if(pointerInteracting.current!==null){const delta=e.clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}},onTouchMove:e=>{if(pointerInteracting.current!==null&&e.touches[0]){const delta=e.touches[0].clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}})})});};/* Default properties */ Globe.defaultProps={background:\"#000000\",baseColor:\"#333333\",glowColor:\"#ffffff\",markerColor:\"#ffffff\",isDraggable:true,dragOptions:{stiffness:200,damping:40,mass:1},speed:1,phi:0,theta:.3,dark:1,diffuse:2,mapBrightness:20,maxSamples:2e4,markerSize:.1,markerArray:{latitude:52.3676,longitude:4.9041},scale:1,alignment:\"center\",maxWidth:800,offset:{offsetX:0,offsetY:0}};Globe.displayName=\"Globe\";const dp=Globe.defaultProps;const dpOffset=Globe.defaultProps.offset;const dpDrag=Globe.defaultProps.dragOptions;addPropertyControls(Globe,{background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:dp.background},baseColor:{type:ControlType.Color,title:\"Base\",defaultValue:dp.baseColor},glowColor:{type:ControlType.Color,title:\"Glow\",defaultValue:dp.glowColor},markerColor:{type:ControlType.Color,title:\"Marker\",defaultValue:dp.markerColor},isDraggable:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:dp.isDraggable},dragOptions:{type:ControlType.Object,title:\"Transition\",controls:{stiffness:{type:ControlType.Number,min:0,max:1e3,title:\"Stiffness\",defaultValue:dpDrag.stiffness},damping:{type:ControlType.Number,min:0,max:100,title:\"Damping\",defaultValue:dpDrag.damping},mass:{type:ControlType.Number,min:0,title:\"Mass\",displayStepper:true,defaultValue:dpDrag.mass}},hidden(props){return!props.isDraggable;}},speed:{type:ControlType.Number,min:0,step:.1,displayStepper:true,title:\"Speed\",defaultValue:dp.speed},phi:{type:ControlType.Number,min:0,max:6.28,step:.01,displayStepper:true,title:\"Phi\",defaultValue:dp.phi},theta:{type:ControlType.Number,min:-1.57,max:1.57,step:.01,title:\"Theta\",defaultValue:dp.theta},dark:{type:ControlType.Number,min:0,max:1,step:.1,displayStepper:true,title:\"Dark\",defaultValue:dp.dark},diffuse:{type:ControlType.Number,min:0,max:5,step:.01,title:\"Diffuse\",defaultValue:dp.diffuse},mapBrightness:{type:ControlType.Number,min:0,max:12,step:.01,title:\"Brightness\",defaultValue:dp.mapBrightness},maxSamples:{type:ControlType.Number,min:0,max:1e5,title:\"Samples\",defaultValue:dp.maxSamples},scale:{type:ControlType.Number,min:0,max:5,step:.025,displayStepper:true,title:\"Scale\",defaultValue:dp.scale},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:dp.alignment,displaySegmentedControl:true},maxWidth:{type:ControlType.Number,title:\"Max Width\",min:100,max:5e3,defaultValue:dp.maxWidth},offset:{type:ControlType.Object,title:\"Offset\",controls:{offsetX:{type:ControlType.Number,min:-5e3,max:5e3,title:\"X\",defaultValue:dpOffset.offsetX},offsetY:{type:ControlType.Number,min:-5e3,max:5e3,title:\"Y\",defaultValue:dpOffset.offsetY}}},markerSize:{type:ControlType.Number,min:0,max:1,step:.01,title:\"Markers\",defaultValue:dp.markerSize},markerArray:{type:ControlType.Array,title:\"Location\",// defaultValue: [{ latitude: 52.3676, longitude: 4.9041 }],\ncontrol:{type:ControlType.Object,title:\"Location\",controls:{latitude:{type:ControlType.Number,min:-90,max:90,title:\"Lat\",step:1e-4,defaultValue:dp.markerArray.latitude},longitude:{type:ControlType.Number,min:-180,max:180,title:\"Long\",step:1e-4,defaultValue:dp.markerArray.longitude}}}}});/* Styles */ const flexStyles={width:\"100%\",height:\"100%\",display:\"flex\",placeItems:\"center\",placeContent:\"center\",overflow:\"visible\"};/* Functions */ const convertRGB=color=>{return{r:Color(color).r/255,g:Color(color).g/255,b:Color(color).b/255};};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Globe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Globe.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMemo}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const baseUrl=\"https://logo.clearbit.com/\";const getLogoUrl=company=>{if(!company)return null;return company.includes(\".\")?`${baseUrl}${company}?size=500`:`${baseUrl}${company}.com?size=500`;};/**\n * @framerIntrinsicWidth 64\n * @framerIntrinsicHeight 64\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Logo(props){const{company,radius,isSearch,srcType,srcUrl,srcFile,style}=props;const logoURL=useMemo(()=>{if(isSearch)return getLogoUrl(company);if(srcType===SrcType.Upload)return srcFile;if(srcType===SrcType.Url)return srcUrl;return null;},[company,isSearch,srcType,srcUrl,srcFile]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return logoURL?/*#__PURE__*/ _jsx(\"img\",{src:logoURL,style:{...baseStyles,...style,borderRadius:radius},alt:\"Logo\"}):emptyState;};Logo.defaultProps={company:\"Framer\",radius:100,width:64,height:64,isSearch:true};const baseStyles={position:\"absolute\",left:0,right:0,top:0,bottom:0,width:\"100%\",height:\"100%\"};addPropertyControls(Logo,{isSearch:{type:ControlType.Boolean,title:\"Type\",disabledTitle:\"Custom\",enabledTitle:\"Search\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Upload],hidden:({isSearch})=>isSearch},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.jpg\",hidden:({srcType,isSearch})=>srcType===SrcType.Upload||isSearch},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"jpg\",\"png\",\"jpeg\",\"tiff\",\"gif\"],hidden:({srcType,isSearch})=>srcType===SrcType.Url||isSearch},company:{type:ControlType.String,title:\"Company\",placeholder:\"Github, Apple...\",hidden:({isSearch})=>!isSearch},radius:{type:ControlType.Number,min:0,max:100,title:\"Radius\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Logo\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"64\",\"framerIntrinsicHeight\":\"64\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Logo.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"BqhAuf9E8\",\"mnqaqBMzF\",\"k_okUxK6m\",\"HwG1fxhTs\",\"absAgWQi2\",\"hL6RIVn6h\",\"EILJh2uKb\",\"KO_ylSbNI\"];const serializationHash=\"framer-mO4bV\";const variantClassNames={absAgWQi2:\"framer-v-cnhx9z\",BqhAuf9E8:\"framer-v-dajm9x\",EILJh2uKb:\"framer-v-w930k4\",hL6RIVn6h:\"framer-v-6y5w04\",HwG1fxhTs:\"framer-v-afnopz\",k_okUxK6m:\"framer-v-1rotuj6\",KO_ylSbNI:\"framer-v-1rgoyy8\",mnqaqBMzF:\"framer-v-1mcutsy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Battery Line - M\":\"k_okUxK6m\",\"Battery Line - S\":\"HwG1fxhTs\",\"Cosmetic Line - M\":\"absAgWQi2\",\"Cosmetic Line - S\":\"hL6RIVn6h\",\"Standard Line - M\":\"BqhAuf9E8\",\"Standard Line - S\":\"mnqaqBMzF\",\"Suplement Line - M\":\"EILJh2uKb\",\"Suplement Line - S\":\"KO_ylSbNI\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,v65wuOwPb:click!==null&&click!==void 0?click:props.v65wuOwPb,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"BqhAuf9E8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,v65wuOwPb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BqhAuf9E8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapodo35h=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(v65wuOwPb){const res=await v65wuOwPb(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-dajm9x\",className,classNames),\"data-framer-name\":\"Standard Line - M\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BqhAuf9E8\",onTap:onTapodo35h,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(189, 255, 194)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({absAgWQi2:{\"data-framer-name\":\"Cosmetic Line - M\"},EILJh2uKb:{\"data-framer-name\":\"Suplement Line - M\"},hL6RIVn6h:{\"data-framer-name\":\"Cosmetic Line - S\"},HwG1fxhTs:{\"data-framer-name\":\"Battery Line - S\"},k_okUxK6m:{\"data-framer-name\":\"Battery Line - M\"},KO_ylSbNI:{\"data-framer-name\":\"Suplement Line - S\"},mnqaqBMzF:{\"data-framer-name\":\"Standard Line - S\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Standard Line\"})}),className:\"framer-xa0h3i\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mE36aViPp\",style:{\"--extracted-r6o4lv\":\"rgb(0, 66, 6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({absAgWQi2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Cosmetic Line\"})})},EILJh2uKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Supplement Line\"})})},hL6RIVn6h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Cosmetic Line\"})})},HwG1fxhTs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Battery Line\"})})},k_okUxK6m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Battery Line\"})})},KO_ylSbNI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Supplement Line\"})})},mnqaqBMzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 66, 6))\"},children:\"Standard Line\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mO4bV.framer-1htntvu, .framer-mO4bV .framer-1htntvu { display: block; }\",\".framer-mO4bV.framer-dajm9x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 10px 8px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-mO4bV .framer-xa0h3i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mO4bV.framer-dajm9x { gap: 0px; } .framer-mO4bV.framer-dajm9x > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mO4bV.framer-dajm9x > :first-child { margin-left: 0px; } .framer-mO4bV.framer-dajm9x > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 112.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"mnqaqBMzF\":{\"layout\":[\"auto\",\"auto\"]},\"k_okUxK6m\":{\"layout\":[\"auto\",\"auto\"]},\"HwG1fxhTs\":{\"layout\":[\"auto\",\"auto\"]},\"absAgWQi2\":{\"layout\":[\"auto\",\"auto\"]},\"hL6RIVn6h\":{\"layout\":[\"auto\",\"auto\"]},\"EILJh2uKb\":{\"layout\":[\"auto\",\"auto\"]},\"KO_ylSbNI\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"v65wuOwPb\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRUxSJbzco=withCSS(Component,css,\"framer-mO4bV\");export default FramerRUxSJbzco;FramerRUxSJbzco.displayName=\"Tag\";FramerRUxSJbzco.defaultProps={height:30,width:112.5};addPropertyControls(FramerRUxSJbzco,{variant:{options:[\"BqhAuf9E8\",\"mnqaqBMzF\",\"k_okUxK6m\",\"HwG1fxhTs\",\"absAgWQi2\",\"hL6RIVn6h\",\"EILJh2uKb\",\"KO_ylSbNI\"],optionTitles:[\"Standard Line - M\",\"Standard Line - S\",\"Battery Line - M\",\"Battery Line - S\",\"Cosmetic Line - M\",\"Cosmetic Line - S\",\"Suplement Line - M\",\"Suplement Line - S\"],title:\"Variant\",type:ControlType.Enum},v65wuOwPb:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerRUxSJbzco,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRUxSJbzco\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mnqaqBMzF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"k_okUxK6m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HwG1fxhTs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"absAgWQi2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hL6RIVn6h\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EILJh2uKb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KO_ylSbNI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"v65wuOwPb\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"112.5\",\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RUxSJbzco.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import Tag from\"https://framerusercontent.com/modules/nzKhYj9McMLtjJHIgWFt/QpCMBsCW4TMOEtsTOv48/RUxSJbzco.js\";const TagFonts=getFonts(Tag);const LogoFonts=getFonts(Logo);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const LogoControls=getPropertyControls(Logo);const TagControls=getPropertyControls(Tag);const cycleOrder=[\"sQQ6W5srD\",\"lqG98G1Zd\",\"Uub8r3GMH\"];const serializationHash=\"framer-Bhxx9\";const variantClassNames={lqG98G1Zd:\"framer-v-7cumpp\",sQQ6W5srD:\"framer-v-192tmpg\",Uub8r3GMH:\"framer-v-c4giwj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Battery Line - M\":\"k_okUxK6m\",\"Battery Line - S\":\"HwG1fxhTs\",\"Cosmetic Line - M\":\"absAgWQi2\",\"Cosmetic Line - S\":\"hL6RIVn6h\",\"Standard Line - M\":\"BqhAuf9E8\",\"Standard Line - S\":\"mnqaqBMzF\",\"Suplement Line - M\":\"EILJh2uKb\",\"Suplement Line - S\":\"KO_ylSbNI\"};const humanReadableVariantMap={\"Desktop - Variant 2\":\"Uub8r3GMH\",Desktop:\"sQQ6W5srD\",Mobile:\"lqG98G1Zd\"};const getProps=({brandImage,brandLogo,date,file,height,id,person,quote,tag2,testimonial,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6,_humanReadableEnumMap_tag2,_ref7,_ref8,_ref9;return{...props,CKys9TdIN:(_ref=file!==null&&file!==void 0?file:props.CKys9TdIN)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/KnjWGbgfCSk7tU5G5MiKqQdtfk0.jpg\",ktIgnsRLr:(_ref1=date!==null&&date!==void 0?date:props.ktIgnsRLr)!==null&&_ref1!==void 0?_ref1:\"Date: 11 October 2024\",lU_IMJMmO:(_ref2=brandImage!==null&&brandImage!==void 0?brandImage:props.lU_IMJMmO)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/sJGDpnlLZptbk6kuBrRWOrde4.jpg\",srcSet:\"https://framerusercontent.com/images/sJGDpnlLZptbk6kuBrRWOrde4.jpg 958w\"},rxaVUbZBa:(_ref3=quote!==null&&quote!==void 0?quote:props.rxaVUbZBa)!==null&&_ref3!==void 0?_ref3:\"\u201COne of the best decisions we made this year\u201D\",UXOMg7hE1:(_ref4=person!==null&&person!==void 0?person:props.UXOMg7hE1)!==null&&_ref4!==void 0?_ref4:\"Musa, Co- Founder at\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"sQQ6W5srD\",wEGDKSe69:(_ref6=testimonial!==null&&testimonial!==void 0?testimonial:props.wEGDKSe69)!==null&&_ref6!==void 0?_ref6:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. Packages are shipped faster and more reliably, which has made a massive difference for us. Our account manager is always super responsive and helpful whenever we have questions or need something. They really understand sourcing, supply chain improvements, and offer great advice on how to grow.\",wYMEuBCPy:(_ref8=(_ref7=(_humanReadableEnumMap_tag2=humanReadableEnumMap[tag2])!==null&&_humanReadableEnumMap_tag2!==void 0?_humanReadableEnumMap_tag2:tag2)!==null&&_ref7!==void 0?_ref7:props.wYMEuBCPy)!==null&&_ref8!==void 0?_ref8:\"BqhAuf9E8\",yF_3Uny0g:(_ref9=brandLogo!==null&&brandLogo!==void 0?brandLogo:props.yF_3Uny0g)!==null&&_ref9!==void 0?_ref9:{src:\"https://framerusercontent.com/images/NtkqkkdJK3RsveItKJkhs5CrY.png\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yF_3Uny0g,wEGDKSe69,ktIgnsRLr,lU_IMJMmO,UXOMg7hE1,CKys9TdIN,rxaVUbZBa,wYMEuBCPy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sQQ6W5srD\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const v65wuOwPbr2zo2a=activeVariantCallback(async(...args)=>{setVariant(\"Uub8r3GMH\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"lqG98G1Zd\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Uub8r3GMH\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-192tmpg\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sQQ6W5srD\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\",WebkitBackdropFilter:\"blur(10px)\",...style},variants:{lqG98G1Zd:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(230, 230, 230)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"},Uub8r3GMH:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(230, 230, 230)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"}},...addPropertyOverrides({lqG98G1Zd:{\"data-border\":true,\"data-framer-name\":\"Mobile\"},Uub8r3GMH:{\"data-border\":true,\"data-framer-name\":\"Desktop - Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-75e8u5\",\"data-border\":true,\"data-framer-appear-id\":\"75e8u5\",\"data-framer-name\":\"Text\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"GDJPFz63f\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(230, 230, 230)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.95)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",WebkitBackdropFilter:\"blur(8px)\"},variants:{lqG98G1Zd:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},Uub8r3GMH:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7y3yng\",\"data-framer-name\":\"Frame 5177\",layoutDependency:layoutDependency,layoutId:\"Bcl8OZxIZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1csdjub\",\"data-framer-name\":\"Frame 1000002369\",layoutDependency:layoutDependency,layoutId:\"AZA1bHWqC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tzfqtz\",layoutDependency:layoutDependency,layoutId:\"x0hmvLooP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"\u201COne of the best decisions we made this year\u201D\"})}),className:\"framer-1dyqo1l\",\"data-framer-name\":\"Description\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"qeuEHj8lD\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:rxaVUbZBa,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lqG98G1Zd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"\u201COne of the best decisions we made this year\u201D\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(69, 72, 79))\"},children:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. Packages are shipped faster and more reliably, which has made a massive difference for us. Our account manager is always super responsive and helpful whenever we have questions or need something. They really understand sourcing, supply chain improvements, and offer great advice on how to grow.\"})}),className:\"framer-25cctk\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tuyqoUkNk\",style:{\"--extracted-r6o4lv\":\"rgb(69, 72, 79)\",\"--framer-paragraph-spacing\":\"0px\"},text:wEGDKSe69,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lqG98G1Zd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(69, 72, 79))\"},children:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. Packages are shipped faster and more reliably, which has made a massive difference for us. Our account manager is always super responsive and helpful whenever we have questions or need something. They really understand sourcing, supply chain improvements, and offer great advice on how to grow.\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4xzzaq\",layoutDependency:layoutDependency,layoutId:\"xtg1FyO5D\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ve4ys2-container\",layoutDependency:layoutDependency,layoutId:\"GkUnW5XnP-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"GkUnW5XnP\",layoutId:\"GkUnW5XnP\",variant:wYMEuBCPy,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hzavje\",layoutDependency:layoutDependency,layoutId:\"v80TzZFKa\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Uub8r3GMH:{height:30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6nngt-container\",layoutDependency:layoutDependency,layoutId:\"Rf62glu8p-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"Rf62glu8p\",layoutId:\"Rf62glu8p\",v65wuOwPb:v65wuOwPbr2zo2a,variant:wYMEuBCPy,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l5um5l\",layoutDependency:layoutDependency,layoutId:\"XpWWGjATU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-180ihwp-container\",layoutDependency:layoutDependency,layoutId:\"kkfE5W61t-container\",children:/*#__PURE__*/_jsx(Logo,{company:\"Framer\",height:\"100%\",id:\"kkfE5W61t\",isSearch:false,layoutId:\"kkfE5W61t\",radius:100,srcFile:CKys9TdIN,srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ydqm9d\",\"data-framer-name\":\"Frame 1000002370\",layoutDependency:layoutDependency,layoutId:\"wW1znlkgl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1quz0vp\",layoutDependency:layoutDependency,layoutId:\"uHDOAQLvU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVtSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:\"Musa, Co- Founder EYEKONIK Eyewear.\"})}),className:\"framer-1wx1wcc\",\"data-framer-name\":\"Description\",fonts:[\"Inter-MediumItalic\"],layoutDependency:layoutDependency,layoutId:\"ke0JRVoaN\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:UXOMg7hE1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lqG98G1Zd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVtSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:\"Musa, Co- Founder at\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||486.5)-0-551)/2)+50+0+0+323+0+0+0+2),sizes:\"57px\",...toResponsiveImage(yF_3Uny0g),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-l1gzar\",\"data-framer-name\":\"EYEKONIK_EYEWEAR_-_Logo_320x 2\",layoutDependency:layoutDependency,layoutId:\"F6FdkPl1A\",...addPropertyOverrides({lqG98G1Zd:{background:{alt:\"\",fit:\"fit\",sizes:\"49px\",...toResponsiveImage(yF_3Uny0g),...{positionX:\"center\",positionY:\"center\"}}},Uub8r3GMH:{background:{alt:\"\",fit:\"fit\",sizes:\"62px\",...toResponsiveImage(yF_3Uny0g),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\"},children:\"Date: 11 October 2024\"})}),className:\"framer-1fbq03t\",\"data-framer-name\":\"Description\",fonts:[\"Inter-LightItalic\"],layoutDependency:layoutDependency,layoutId:\"FNt7T9RVT\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ktIgnsRLr,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lqG98G1Zd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\"},children:\"Date: 11 October 2024\"})})}},baseVariant,gestureVariant)})]})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||486.5)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||486.5)-0)*1)/2)),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`,...toResponsiveImage(lU_IMJMmO),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1fgxbxe\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"L3NWanlNI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(230, 230, 230)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"},variants:{lqG98G1Zd:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},Uub8r3GMH:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({lqG98G1Zd:{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(lU_IMJMmO),...{positionX:\"center\",positionY:\"center\"}}},Uub8r3GMH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(lU_IMJMmO),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Bhxx9.framer-4pzcuk, .framer-Bhxx9 .framer-4pzcuk { display: block; }\",\".framer-Bhxx9.framer-192tmpg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 939px; }\",\".framer-Bhxx9 .framer-75e8u5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bhxx9 .framer-7y3yng { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Bhxx9 .framer-1csdjub { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Bhxx9 .framer-1tzfqtz { 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-Bhxx9 .framer-1dyqo1l, .framer-Bhxx9 .framer-25cctk, .framer-Bhxx9 .framer-1fbq03t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Bhxx9 .framer-4xzzaq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Bhxx9 .framer-ve4ys2-container, .framer-Bhxx9 .framer-p6nngt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Bhxx9 .framer-hzavje { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 6px; height: min-content; justify-content: flex-start; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Bhxx9 .framer-l5um5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Bhxx9 .framer-180ihwp-container { flex: none; height: 45px; position: relative; width: 45px; }\",\".framer-Bhxx9 .framer-1ydqm9d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Bhxx9 .framer-1quz0vp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Bhxx9 .framer-1wx1wcc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Bhxx9 .framer-l1gzar { aspect-ratio: 3.327272710489206 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 57px; }\",\".framer-Bhxx9 .framer-1fgxbxe { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-end; overflow: hidden; padding: 50px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bhxx9.framer-192tmpg, .framer-Bhxx9 .framer-75e8u5, .framer-Bhxx9 .framer-7y3yng, .framer-Bhxx9 .framer-1csdjub, .framer-Bhxx9 .framer-1tzfqtz, .framer-Bhxx9 .framer-4xzzaq, .framer-Bhxx9 .framer-hzavje, .framer-Bhxx9 .framer-l5um5l, .framer-Bhxx9 .framer-1ydqm9d, .framer-Bhxx9 .framer-1quz0vp, .framer-Bhxx9 .framer-1fgxbxe { gap: 0px; } .framer-Bhxx9.framer-192tmpg > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Bhxx9.framer-192tmpg > :first-child, .framer-Bhxx9 .framer-4xzzaq > :first-child, .framer-Bhxx9 .framer-hzavje > :first-child, .framer-Bhxx9 .framer-l5um5l > :first-child, .framer-Bhxx9 .framer-1quz0vp > :first-child { margin-left: 0px; } .framer-Bhxx9.framer-192tmpg > :last-child, .framer-Bhxx9 .framer-4xzzaq > :last-child, .framer-Bhxx9 .framer-hzavje > :last-child, .framer-Bhxx9 .framer-l5um5l > :last-child, .framer-Bhxx9 .framer-1quz0vp > :last-child { margin-right: 0px; } .framer-Bhxx9 .framer-75e8u5 > *, .framer-Bhxx9 .framer-1fgxbxe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Bhxx9 .framer-75e8u5 > :first-child, .framer-Bhxx9 .framer-7y3yng > :first-child, .framer-Bhxx9 .framer-1csdjub > :first-child, .framer-Bhxx9 .framer-1tzfqtz > :first-child, .framer-Bhxx9 .framer-1ydqm9d > :first-child, .framer-Bhxx9 .framer-1fgxbxe > :first-child { margin-top: 0px; } .framer-Bhxx9 .framer-75e8u5 > :last-child, .framer-Bhxx9 .framer-7y3yng > :last-child, .framer-Bhxx9 .framer-1csdjub > :last-child, .framer-Bhxx9 .framer-1tzfqtz > :last-child, .framer-Bhxx9 .framer-1ydqm9d > :last-child, .framer-Bhxx9 .framer-1fgxbxe > :last-child { margin-bottom: 0px; } .framer-Bhxx9 .framer-7y3yng > *, .framer-Bhxx9 .framer-1csdjub > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Bhxx9 .framer-1tzfqtz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Bhxx9 .framer-4xzzaq > *, .framer-Bhxx9 .framer-hzavje > *, .framer-Bhxx9 .framer-1quz0vp > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-Bhxx9 .framer-l5um5l > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-Bhxx9 .framer-1ydqm9d > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-Bhxx9.framer-v-7cumpp.framer-192tmpg { flex-direction: column; gap: 0px; justify-content: flex-start; width: 342px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bhxx9.framer-v-7cumpp .framer-75e8u5 { flex: none; order: 1; padding: 30px; width: 100%; }\",\".framer-Bhxx9.framer-v-7cumpp .framer-1csdjub { gap: 12px; }\",\".framer-Bhxx9.framer-v-7cumpp .framer-1dyqo1l, .framer-Bhxx9.framer-v-c4giwj .framer-1tzfqtz { order: 1; }\",\".framer-Bhxx9.framer-v-7cumpp .framer-25cctk { order: 2; }\",\".framer-Bhxx9.framer-v-7cumpp .framer-4xzzaq { order: 0; }\",\".framer-Bhxx9.framer-v-7cumpp .framer-180ihwp-container { height: 38px; width: 38px; }\",\".framer-Bhxx9.framer-v-7cumpp .framer-l1gzar { height: var(--framer-aspect-ratio-supported, 15px); width: 49px; }\",\".framer-Bhxx9.framer-v-7cumpp .framer-1fgxbxe { align-self: unset; flex: none; height: 283px; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bhxx9.framer-v-7cumpp.framer-192tmpg, .framer-Bhxx9.framer-v-7cumpp .framer-1csdjub { gap: 0px; } .framer-Bhxx9.framer-v-7cumpp.framer-192tmpg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Bhxx9.framer-v-7cumpp.framer-192tmpg > :first-child, .framer-Bhxx9.framer-v-7cumpp .framer-1csdjub > :first-child { margin-top: 0px; } .framer-Bhxx9.framer-v-7cumpp.framer-192tmpg > :last-child, .framer-Bhxx9.framer-v-7cumpp .framer-1csdjub > :last-child { margin-bottom: 0px; } .framer-Bhxx9.framer-v-7cumpp .framer-1csdjub > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-Bhxx9.framer-v-c4giwj.framer-192tmpg { gap: 0px; height: 530px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bhxx9.framer-v-c4giwj .framer-75e8u5 { height: 100%; }\",\".framer-Bhxx9.framer-v-c4giwj .framer-1csdjub { gap: 16px; }\",\".framer-Bhxx9.framer-v-c4giwj .framer-hzavje { min-height: unset; order: 0; }\",\".framer-Bhxx9.framer-v-c4giwj .framer-l1gzar { height: var(--framer-aspect-ratio-supported, 19px); width: 62px; }\",\".framer-Bhxx9.framer-v-c4giwj .framer-1fgxbxe { align-self: unset; height: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bhxx9.framer-v-c4giwj.framer-192tmpg, .framer-Bhxx9.framer-v-c4giwj .framer-1csdjub { gap: 0px; } .framer-Bhxx9.framer-v-c4giwj.framer-192tmpg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Bhxx9.framer-v-c4giwj.framer-192tmpg > :first-child { margin-left: 0px; } .framer-Bhxx9.framer-v-c4giwj.framer-192tmpg > :last-child { margin-right: 0px; } .framer-Bhxx9.framer-v-c4giwj .framer-1csdjub > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Bhxx9.framer-v-c4giwj .framer-1csdjub > :first-child { margin-top: 0px; } .framer-Bhxx9.framer-v-c4giwj .framer-1csdjub > :last-child { margin-bottom: 0px; } }\",'.framer-Bhxx9[data-border=\"true\"]::after, .framer-Bhxx9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 486.5\n * @framerIntrinsicWidth 939\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lqG98G1Zd\":{\"layout\":[\"fixed\",\"auto\"]},\"Uub8r3GMH\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yF_3Uny0g\":\"brandLogo\",\"wEGDKSe69\":\"testimonial\",\"ktIgnsRLr\":\"date\",\"lU_IMJMmO\":\"brandImage\",\"UXOMg7hE1\":\"person\",\"CKys9TdIN\":\"file\",\"rxaVUbZBa\":\"quote\",\"wYMEuBCPy\":\"tag2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA0OqvjNwM=withCSS(Component,css,\"framer-Bhxx9\");export default FramerA0OqvjNwM;FramerA0OqvjNwM.displayName=\"Testimonial Card\";FramerA0OqvjNwM.defaultProps={height:486.5,width:939};addPropertyControls(FramerA0OqvjNwM,{variant:{options:[\"sQQ6W5srD\",\"lqG98G1Zd\",\"Uub8r3GMH\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop - Variant 2\"],title:\"Variant\",type:ControlType.Enum},yF_3Uny0g:{__defaultAssetReference:\"data:framer/asset-reference,NtkqkkdJK3RsveItKJkhs5CrY.png?originalFilename=EYEKONIK_EYEWEAR_-_Logo_320x+1.png&preferredSize=auto\",title:\"Brand logo\",type:ControlType.ResponsiveImage},wEGDKSe69:{defaultValue:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. Packages are shipped faster and more reliably, which has made a massive difference for us. Our account manager is always super responsive and helpful whenever we have questions or need something. They really understand sourcing, supply chain improvements, and offer great advice on how to grow.\",displayTextArea:false,title:\"Testimonial\",type:ControlType.String},ktIgnsRLr:{defaultValue:\"Date: 11 October 2024\",displayTextArea:false,title:\"Date\",type:ControlType.String},lU_IMJMmO:{__defaultAssetReference:\"data:framer/asset-reference,sJGDpnlLZptbk6kuBrRWOrde4.jpg?originalFilename=eyekoniccoverimage.jpg&preferredSize=auto\",title:\"Brand image\",type:ControlType.ResponsiveImage},UXOMg7hE1:{defaultValue:\"Musa, Co- Founder at\",displayTextArea:false,title:\"Person\",type:ControlType.String},CKys9TdIN:(LogoControls===null||LogoControls===void 0?void 0:LogoControls[\"srcFile\"])&&{...LogoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,KnjWGbgfCSk7tU5G5MiKqQdtfk0.jpg?originalFilename=T06P62UHRUK-U077YBK5YTU-0e294246e0e9-512.jpg\",description:undefined,hidden:undefined,title:\"File\"},rxaVUbZBa:{defaultValue:\"\u201COne of the best decisions we made this year\u201D\",displayTextArea:false,title:\"Quote\",type:ControlType.String},wYMEuBCPy:(TagControls===null||TagControls===void 0?void 0:TagControls[\"variant\"])&&{...TagControls[\"variant\"],defaultValue:\"BqhAuf9E8\",description:undefined,hidden:undefined,title:\"Tag 2\"}});addFonts(FramerA0OqvjNwM,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/YYB6GZmCWnZq3RWZOghuZIOxQY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/miJTzODdiyIr3tRo9KEoqXXk2PM.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6ZMhcggRFfEfbf7lncCpaUbA.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/8sCN6PGUr4I8q5hC5twAXfcwqV0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/aUYDUTztS7anQw5JuwCncXeLOBY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/5mDAOkC5Wpzo7NkuE9oYfqlY2u4.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/yDiPvYxioBHsicnYxpPW35WQmx8.woff2\",weight:\"300\"}]},...TagFonts,...LogoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA0OqvjNwM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lqG98G1Zd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Uub8r3GMH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"486.5\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"939\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"yF_3Uny0g\\\":\\\"brandLogo\\\",\\\"wEGDKSe69\\\":\\\"testimonial\\\",\\\"ktIgnsRLr\\\":\\\"date\\\",\\\"lU_IMJMmO\\\":\\\"brandImage\\\",\\\"UXOMg7hE1\\\":\\\"person\\\",\\\"CKys9TdIN\\\":\\\"file\\\",\\\"rxaVUbZBa\\\":\\\"quote\\\",\\\"wYMEuBCPy\\\":\\\"tag2\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A0OqvjNwM.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"AEe0t6h4U\",\"MGjA5FfhV\"];const serializationHash=\"framer-QtbDp\";const variantClassNames={AEe0t6h4U:\"framer-v-nso4sg\",MGjA5FfhV:\"framer-v-1imxjrv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Black:\"MGjA5FfhV\",White:\"AEe0t6h4U\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"AEe0t6h4U\"};};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:\"AEe0t6h4U\",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(Link,{href:{webPageId:\"o0_jSGowk\"},motionChild:true,nodeId:\"AEe0t6h4U\",scopeId:\"FzBZqYka4\",children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:264.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:128,pixelWidth:529,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png?scale-down-to=512 512w,https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png 529w\"},className:`${cx(scopingClassNames,\"framer-nso4sg\",className,classNames)} framer-1xlfmzk`,\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"AEe0t6h4U\",ref:refBinding,style:{...style},...addPropertyOverrides({MGjA5FfhV:{\"data-framer-name\":\"Black\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:64,intrinsicWidth:264.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1593,pixelWidth:7003,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GJ1Xz3ypZJn6FZoWWYvrzWWnl2o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GJ1Xz3ypZJn6FZoWWYvrzWWnl2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/GJ1Xz3ypZJn6FZoWWYvrzWWnl2o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GJ1Xz3ypZJn6FZoWWYvrzWWnl2o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GJ1Xz3ypZJn6FZoWWYvrzWWnl2o.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/GJ1Xz3ypZJn6FZoWWYvrzWWnl2o.png 7003w\"}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QtbDp.framer-1xlfmzk, .framer-QtbDp .framer-1xlfmzk { display: block; }\",\".framer-QtbDp.framer-nso4sg { height: 31px; overflow: visible; position: relative; text-decoration: none; width: 127px; }\",\".framer-QtbDp.framer-v-1imxjrv.framer-nso4sg { aspect-ratio: 4.1328125 / 1; height: var(--framer-aspect-ratio-supported, 31px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30.5\n * @framerIntrinsicWidth 127\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MGjA5FfhV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFzBZqYka4=withCSS(Component,css,\"framer-QtbDp\");export default FramerFzBZqYka4;FramerFzBZqYka4.displayName=\"Logo\";FramerFzBZqYka4.defaultProps={height:30.5,width:127};addPropertyControls(FramerFzBZqYka4,{variant:{options:[\"AEe0t6h4U\",\"MGjA5FfhV\"],optionTitles:[\"White\",\"Black\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFzBZqYka4,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFzBZqYka4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"127\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MGjA5FfhV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FzBZqYka4.map", "// Generated by Framer (d74aa50)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,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/Yv68I4lLZthCuSnztvyB/6jeVQvxvBbUOW3vGawYz/jYbJiut2Y.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uBzXzfPzx8gLsS35iYCC/wnCNw65Kqk3OYWXpAoj1/nIErfXtum.js\";import Logo from\"https://framerusercontent.com/modules/xn4LgWAMQPNT9utWBcAQ/kigOHxePUT6lak0yUONA/FzBZqYka4.js\";import Button from\"https://framerusercontent.com/modules/DHzhmbigyHTfl6kio9eS/L8a9y0QtXCRnLjVFg63l/t_qVchGUt.js\";const LogoFonts=getFonts(Logo);const ButtonFonts=getFonts(Button);const cycleOrder=[\"cWAPMkN1d\",\"YNEXqUKIX\",\"CZ9oD_Bcl\"];const serializationHash=\"framer-akLY0\";const variantClassNames={cWAPMkN1d:\"framer-v-1drqgoa\",CZ9oD_Bcl:\"framer-v-9bkkbq\",YNEXqUKIX:\"framer-v-1rweirj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"CZ9oD_Bcl\",Desktop:\"cWAPMkN1d\",Phone:\"YNEXqUKIX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cWAPMkN1d\"};};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:\"cWAPMkN1d\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c0b3ux=activeVariantCallback(async(...args)=>{setVariant(\"CZ9oD_Bcl\");});const onTapp1cy4a=activeVariantCallback(async(...args)=>{setVariant(\"YNEXqUKIX\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"CZ9oD_Bcl\")return false;return true;};const isDisplayed1=()=>{if([\"YNEXqUKIX\",\"CZ9oD_Bcl\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"CZ9oD_Bcl\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"YNEXqUKIX\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1drqgoa\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"cWAPMkN1d\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{CZ9oD_Bcl:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({CZ9oD_Bcl:{\"data-framer-name\":\"Phone Open\"},YNEXqUKIX:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wrh80j\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"z8WC7jELa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n5k8oc\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"X5fDXgSQl\",...addPropertyOverrides({CZ9oD_Bcl:{\"data-highlight\":true,onTap:onTapp1cy4a},YNEXqUKIX:{\"data-highlight\":true,onTap:onTap1c0b3ux}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o0_jSGowk\"},motionChild:true,nodeId:\"ybbfKeJOa\",openInNewTab:false,scopeId:\"DKyyJ4mvg\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:264.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||64)-0-51)/2)+0+10),pixelHeight:128,pixelWidth:529,sizes:\"127px\",src:\"https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png?scale-down-to=512 512w,https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png 529w\"},className:\"framer-1h9h87h framer-17de2gp\",\"data-framer-name\":\"Text color=White\",layoutDependency:layoutDependency,layoutId:\"ybbfKeJOa\",...addPropertyOverrides({YNEXqUKIX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:264.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||64)-0-64)/2+0+0)+0+16.5),pixelHeight:128,pixelWidth:529,sizes:\"127px\",src:\"https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png?scale-down-to=512 512w,https://framerusercontent.com/images/h6VybIf8uj9TIykBxGyF24o.png 529w\"}}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dqd4n3\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"hdV721hk6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1un6sey\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"P7jNwFZIM\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{CZ9oD_Bcl:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pmz8hb\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"pWcSdhA59\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{CZ9oD_Bcl:{rotate:45}}})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({CZ9oD_Bcl:{height:33,width:\"135px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-440)/2+0+0)+0+0+15.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n9r7oe-container\",layoutDependency:layoutDependency,layoutId:\"UsyJeQh7p-container\",nodeId:\"UsyJeQh7p\",rendersWithMotion:true,scopeId:\"DKyyJ4mvg\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"UsyJeQh7p\",layoutId:\"UsyJeQh7p\",style:{height:\"100%\",width:\"100%\"},variant:\"MGjA5FfhV\",width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-snx9tj\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Vk9LGzhB2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o0_jSGowk\"},motionChild:true,nodeId:\"MoAVXdAzI\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-49smsh\",\"data-styles-preset\":\"nIErfXtum\",children:\"Fulfillment\"})})})}),className:\"framer-1eeptey\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MoAVXdAzI\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CZ9oD_Bcl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o0_jSGowk\"},motionChild:true,nodeId:\"MoAVXdAzI\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"Fulfillment\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gAfj7JmhY\"},motionChild:true,nodeId:\"XLRS54KfG\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-49smsh\",\"data-styles-preset\":\"nIErfXtum\",children:\"Benefits\"})})})}),className:\"framer-1wt39o9\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"XLRS54KfG\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CZ9oD_Bcl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gAfj7JmhY\"},motionChild:true,nodeId:\"XLRS54KfG\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"Benefits\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BlIpY6K58\"},motionChild:true,nodeId:\"ZdhUvrjgH\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-49smsh\",\"data-styles-preset\":\"nIErfXtum\",children:\"Changelog\"})})})}),className:\"framer-1klxo2z\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ZdhUvrjgH\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CZ9oD_Bcl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BlIpY6K58\"},motionChild:true,nodeId:\"ZdhUvrjgH\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"Changelog\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Skq1ibUp9\"},motionChild:true,nodeId:\"QEDJh2_Rn\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-49smsh\",\"data-styles-preset\":\"nIErfXtum\",children:\"Partners\"})})})}),className:\"framer-1xnsaw5\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"QEDJh2_Rn\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CZ9oD_Bcl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Skq1ibUp9\"},motionChild:true,nodeId:\"QEDJh2_Rn\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"Partners\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oIQJ3u7Ay\"},motionChild:true,nodeId:\"vXqFPlHNo\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-49smsh\",\"data-styles-preset\":\"nIErfXtum\",children:\"FAQs\"})})})}),className:\"framer-ss8h1k\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"vXqFPlHNo\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CZ9oD_Bcl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oIQJ3u7Ay\"},motionChild:true,nodeId:\"vXqFPlHNo\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"FAQs\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fUEJPxXwD\"},motionChild:true,nodeId:\"Ct3BuUw73\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-49smsh\",\"data-styles-preset\":\"nIErfXtum\",children:\"Jobs\"})})})}),className:\"framer-1jqmq8\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Ct3BuUw73\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fUEJPxXwD\"},motionChild:true,nodeId:\"XmHLEkLWp\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"Jobs\"})})})}),className:\"framer-toxmz3\",fonts:[\"GF;Inter Tight-600\"],layoutDependency:layoutDependency,layoutId:\"XmHLEkLWp\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pFnf36FOn\"},motionChild:true,nodeId:\"B5wlBv1s0\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-49smsh\",\"data-styles-preset\":\"nIErfXtum\",children:\"Contact\"})})})}),className:\"framer-1st885j\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"B5wlBv1s0\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CZ9oD_Bcl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pFnf36FOn\"},motionChild:true,nodeId:\"B5wlBv1s0\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"DKyyJ4mvg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"Contact\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-168q2dk\",layoutDependency:layoutDependency,layoutId:\"Dz_Sg9kTF\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(0+((componentViewport?.height||64)-0-51)/2)+9.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l5qomr-container\",layoutDependency:layoutDependency,layoutId:\"Yql5VkVdO-container\",nodeId:\"Yql5VkVdO\",rendersWithMotion:true,scopeId:\"DKyyJ4mvg\",children:/*#__PURE__*/_jsx(Button,{BTKiVMpbK:\"\uD83D\uDCAC Work with us\",height:\"100%\",id:\"Yql5VkVdO\",J64ZJeIaC:\"rgb(0, 0, 0)\",kHdl3Aoo2:\"https://ecomflow-3pl.pro.typeform.com/to/m0lbQOpV#utm=website\",layoutId:\"Yql5VkVdO\",variant:\"PgudMOovn\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-akLY0.framer-17de2gp, .framer-akLY0 .framer-17de2gp { display: block; }\",\".framer-akLY0.framer-1drqgoa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-akLY0 .framer-1wrh80j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1024px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-akLY0 .framer-n5k8oc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 10px; position: relative; width: min-content; }\",\".framer-akLY0 .framer-1h9h87h { aspect-ratio: 4.1328125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; text-decoration: none; width: 127px; }\",\".framer-akLY0 .framer-1dqd4n3 { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-akLY0 .framer-1un6sey { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-akLY0 .framer-1pmz8hb { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-akLY0 .framer-n9r7oe-container { flex: none; height: 33px; position: relative; width: 135px; }\",\".framer-akLY0 .framer-snx9tj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-akLY0 .framer-1eeptey, .framer-akLY0 .framer-1wt39o9, .framer-akLY0 .framer-1klxo2z, .framer-akLY0 .framer-1xnsaw5, .framer-akLY0 .framer-ss8h1k, .framer-akLY0 .framer-1jqmq8, .framer-akLY0 .framer-toxmz3, .framer-akLY0 .framer-1st885j { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-akLY0 .framer-168q2dk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 175px; }\",\".framer-akLY0 .framer-1l5qomr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-akLY0.framer-v-1rweirj.framer-1drqgoa { flex-direction: column; gap: 0px; width: 390px; }\",\".framer-akLY0.framer-v-1rweirj .framer-1wrh80j { flex: none; width: 100%; }\",\".framer-akLY0.framer-v-1rweirj .framer-n5k8oc { cursor: pointer; flex: 1 0 0px; gap: unset; justify-content: space-between; padding: 10px; width: 1px; }\",\".framer-akLY0.framer-v-1rweirj .framer-1dqd4n3 { height: 44px; width: 44px; }\",\".framer-akLY0.framer-v-9bkkbq.framer-1drqgoa { flex-direction: column; gap: 0px; height: min-content; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; width: 390px; }\",\".framer-akLY0.framer-v-9bkkbq .framer-1wrh80j { flex: none; flex-direction: column; width: 100%; }\",\".framer-akLY0.framer-v-9bkkbq .framer-n5k8oc { cursor: pointer; gap: unset; justify-content: space-between; padding: 10px; width: 100%; }\",\".framer-akLY0.framer-v-9bkkbq .framer-1dqd4n3 { height: 44px; order: 2; width: 44px; }\",\".framer-akLY0.framer-v-9bkkbq .framer-1un6sey, .framer-akLY0.framer-v-9bkkbq .framer-1pmz8hb { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-akLY0.framer-v-9bkkbq .framer-n9r7oe-container, .framer-akLY0.framer-v-9bkkbq .framer-1eeptey { order: 0; }\",\".framer-akLY0.framer-v-9bkkbq .framer-snx9tj { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; padding: 20px; width: 100%; }\",\".framer-akLY0.framer-v-9bkkbq .framer-1wt39o9 { order: 1; }\",\".framer-akLY0.framer-v-9bkkbq .framer-1klxo2z { order: 2; }\",\".framer-akLY0.framer-v-9bkkbq .framer-1xnsaw5 { order: 3; }\",\".framer-akLY0.framer-v-9bkkbq .framer-ss8h1k { order: 4; }\",\".framer-akLY0.framer-v-9bkkbq .framer-toxmz3 { order: 6; }\",\".framer-akLY0.framer-v-9bkkbq .framer-1st885j { order: 7; }\",\".framer-akLY0.framer-v-9bkkbq .framer-168q2dk { min-height: 33px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YNEXqUKIX\":{\"layout\":[\"fixed\",\"fixed\"]},\"CZ9oD_Bcl\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDKyyJ4mvg=withCSS(Component,css,\"framer-akLY0\");export default FramerDKyyJ4mvg;FramerDKyyJ4mvg.displayName=\"Transperant navigation\";FramerDKyyJ4mvg.defaultProps={height:64,width:1200};addPropertyControls(FramerDKyyJ4mvg,{variant:{options:[\"cWAPMkN1d\",\"YNEXqUKIX\",\"CZ9oD_Bcl\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDKyyJ4mvg,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v8/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"}]},...LogoFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDKyyJ4mvg\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YNEXqUKIX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CZ9oD_Bcl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"64\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DKyyJ4mvg.map", "// Generated by Framer (51f36d1)\nimport{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={pYc4U1AjH:{hover:true}};const serializationHash=\"framer-3KRcG\";const variantClassNames={pYc4U1AjH:\"framer-v-1a6wuyp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const 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 Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,width,...props})=>{return{...props,v98O_eQnM:image!==null&&image!==void 0?image:props.v98O_eQnM,YMZt0Beto:link!==null&&link!==void 0?link:props.YMZt0Beto};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,v98O_eQnM,YMZt0Beto,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pYc4U1AjH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntert682wp=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{nodeId:\"pYc4U1AjH\",...addPropertyOverrides({\"pYc4U1AjH-hover\":{href:YMZt0Beto,openInNewTab:false,smoothScroll:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(v98O_eQnM)},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1a6wuyp\",className,classNames)} framer-1ymla08`,\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,id:`${layoutId}-1a6wuyp`,layoutDependency:layoutDependency,layoutId:\"pYc4U1AjH\",onMouseEnter:onMouseEntert682wp({overlay}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",opacity:1,...style},variants:{\"pYc4U1AjH-hover\":{opacity:.8}},...addPropertyOverrides({\"pYc4U1AjH-hover\":{\"data-framer-name\":undefined,as:\"a\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3KRcG.framer-1ymla08, .framer-3KRcG .framer-1ymla08 { display: block; }\",\".framer-3KRcG.framer-1a6wuyp { cursor: pointer; height: 233px; overflow: hidden; position: relative; width: 399px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3KRcG.framer-v-1a6wuyp.hover.framer-1a6wuyp { text-decoration: none; }\",'.framer-3KRcG[data-border=\"true\"]::after, .framer-3KRcG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 233\n * @framerIntrinsicWidth 399\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jjley9tbm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"v98O_eQnM\":\"image\",\"YMZt0Beto\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfZ5nUt1GC=withCSS(Component,css,\"framer-3KRcG\");export default FramerfZ5nUt1GC;FramerfZ5nUt1GC.displayName=\"Blog Image\";FramerfZ5nUt1GC.defaultProps={height:233,width:399};addPropertyControls(FramerfZ5nUt1GC,{v98O_eQnM:{title:\"Image\",type:ControlType.ResponsiveImage},YMZt0Beto:{title:\"Link\",type:ControlType.Link}});addFonts(FramerfZ5nUt1GC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfZ5nUt1GC\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"233\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"399\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"v98O_eQnM\\\":\\\"image\\\",\\\"YMZt0Beto\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jjley9tbm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fZ5nUt1GC.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/ZszG0c2fftY02YK1Avh7/JXwouxYJIoLzOKzh7gll/WGi3OC8vx.js\";const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"ARb1BBg7e\",\"rnwr1Hipc\",\"LsaLM9rtB\",\"zNQk8glx5\",\"xI3DJlgFf\"];const serializationHash=\"framer-1KH2P\";const variantClassNames={ARb1BBg7e:\"framer-v-1vio7a\",LsaLM9rtB:\"framer-v-eqk0kf\",rnwr1Hipc:\"framer-v-ab6bin\",xI3DJlgFf:\"framer-v-1o3zhz7\",zNQk8glx5:\"framer-v-1x587zn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ARb1BBg7e\",\"Variant 2\":\"rnwr1Hipc\",\"Variant 3\":\"LsaLM9rtB\",\"Variant 4\":\"zNQk8glx5\",\"Variant 5\":\"xI3DJlgFf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ARb1BBg7e\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ARb1BBg7e\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vio7a\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ARb1BBg7e\",ref:ref??ref1,style:{...style},...addPropertyOverrides({LsaLM9rtB:{\"data-framer-name\":\"Variant 3\"},rnwr1Hipc:{\"data-framer-name\":\"Variant 2\"},xI3DJlgFf:{\"data-framer-name\":\"Variant 5\"},zNQk8glx5:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-124zagm\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"R5eVen7Vv\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19idpcb\",\"data-framer-name\":\"Text CTA\",layoutDependency:layoutDependency,layoutId:\"Z4bPJ2915\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19vjecu\",\"data-framer-name\":\"Frame 1000002411\",layoutDependency:layoutDependency,layoutId:\"nB2gL7sr7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 192, 19))\"},children:\"How it works\"})}),className:\"framer-1206r3m\",\"data-framer-name\":\"How it works\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"yckJnquyV\",style:{\"--extracted-r6o4lv\":\"rgb(0, 192, 19)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-style\":\"italic\"},children:\"Worldwide, \"}),\"Seamless &  Fast.\"]})}),className:\"framer-rbw6kq\",\"data-framer-name\":\"Worldwide, Seamless & Fast.\",fonts:[\"Inter-SemiBold\",\"Inter-SemiBoldItalic\"],layoutDependency:layoutDependency,layoutId:\"HILdzC0sH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1514o7g\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"qIM7rFDee\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"By locating our fulfillment center near manufacturing facilities, we are able to dramatically speed up and simplify your fulfillment process.\"})}),className:\"framer-t7z16i\",\"data-framer-name\":\"By locating our fulfillment center near manufacturing facilities, we are able to dramatically speed up and simplify your fulfillment process.\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"RWWB0eQQA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+0+0+516,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b42r5l-container\",layoutDependency:layoutDependency,layoutId:\"xAqgOXyTo-container\",children:/*#__PURE__*/_jsx(Button,{djcEJNgMi:\"rgb(1, 162, 15)\",height:\"100%\",i0TWNlN_q:\"https://ecomflow-3pl.typeform.com/to/m0lbQOpV#utm=website\",id:\"xAqgOXyTo\",layoutId:\"xAqgOXyTo\",nQH_kmKNi:\"Get in touch\",variant:\"x42FH767c\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:80,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vngcif\",\"data-framer-name\":\"Frame 1000002423\",layoutDependency:layoutDependency,layoutId:\"z6uqBCZQe\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1g2r5o0\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"LU7LeWAUW\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.6641 13.3337V11.307C18.6641 10.3603 17.7174 9.72033 16.8374 10.067L11.9974 12.0003V11.3603C11.9974 10.4003 11.0241 9.74699 10.1441 10.1337L4.2774 12.6403C3.30406 13.067 2.66406 14.027 2.66406 15.0937V26.667C2.66406 28.1337 3.86406 29.3337 5.33073 29.3337H26.6641C28.1307 29.3337 29.3307 28.1337 29.3307 26.667V13.3337H18.6641ZM11.9974 22.667C11.9974 23.4003 11.3974 24.0003 10.6641 24.0003C9.93073 24.0003 9.33073 23.4003 9.33073 22.667V20.0003C9.33073 19.267 9.93073 18.667 10.6641 18.667C11.3974 18.667 11.9974 19.267 11.9974 20.0003V22.667ZM17.3307 22.667C17.3307 23.4003 16.7307 24.0003 15.9974 24.0003C15.2641 24.0003 14.6641 23.4003 14.6641 22.667V20.0003C14.6641 19.267 15.2641 18.667 15.9974 18.667C16.7307 18.667 17.3307 19.267 17.3307 20.0003V22.667ZM22.6641 22.667C22.6641 23.4003 22.0641 24.0003 21.3307 24.0003C20.5974 24.0003 19.9974 23.4003 19.9974 22.667V20.0003C19.9974 19.267 20.5974 18.667 21.3307 18.667C22.0641 18.667 22.6641 19.267 22.6641 20.0003V22.667ZM26.8241 2.66699H25.1841C24.5041 2.66699 23.9441 3.17366 23.8641 3.84033L22.9307 11.3337H29.0641L28.1441 3.84033C28.0641 3.17366 27.4907 2.66699 26.8241 2.66699Z\" fill=\"#EAFFEC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bsyluo\",\"data-framer-name\":\"Frame 1000002427\",layoutDependency:layoutDependency,layoutId:\"iiXXHKAoz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Your factory in China\"})}),className:\"framer-yiki23\",\"data-framer-name\":\"Your factory in China\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"biavvADNR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We collaborate directly with your factory to ensure smooth coordination, from stock preparation to seamless integration with our system, saving you time and effort.\"})}),className:\"framer-qdaseg\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yEjCjyXGA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:80,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qltr3f\",\"data-framer-name\":\"Frame 1000002424\",layoutDependency:layoutDependency,layoutId:\"qzHYCfm3D\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity:1},variants:{rnwr1Hipc:{opacity:.2}},...addPropertyOverrides({rnwr1Hipc:{__targetOpacity:.2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1je0etx\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"so9piuc2n\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.3307 25.333V11.133C29.3307 10.0396 28.6641 9.06629 27.6507 8.65296L16.9841 4.38629C16.3441 4.13296 15.6374 4.13296 14.9974 4.38629L4.33073 8.65296C3.33073 9.06629 2.66406 10.053 2.66406 11.133V25.333C2.66406 26.7996 3.86406 27.9996 5.33073 27.9996H9.33073V15.9996H22.6641V27.9996H26.6641C28.1307 27.9996 29.3307 26.7996 29.3307 25.333ZM14.6641 25.333H11.9974V27.9996H14.6641V25.333ZM17.3307 21.333H14.6641V23.9996H17.3307V21.333ZM19.9974 25.333H17.3307V27.9996H19.9974V25.333Z\" fill=\"#EAFFEC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s06blt\",\"data-framer-name\":\"Frame 1000002427\",layoutDependency:layoutDependency,layoutId:\"IcVxO6PnZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our Warehouse\"})}),className:\"framer-1sgs9xi\",\"data-framer-name\":\"Your factory in China\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"eRIPwcEEy\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Located near key manufacturing hubs, our warehouse streamlines your operations by providing quick storage, inventory management, and fast processing.\"})}),className:\"framer-12wmwz1\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"heXcKPUB_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:80,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-9ix0ad\",\"data-framer-name\":\"Frame 1000002425\",layoutDependency:layoutDependency,layoutId:\"Jk6AnNknC\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity:1},variants:{LsaLM9rtB:{opacity:.2}},...addPropertyOverrides({LsaLM9rtB:{__targetOpacity:.2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-195r4j9\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"UFUR4MHpO\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66406 9.33301H9.33073V22.6663H6.66406V9.33301ZM18.6641 9.33301H19.9974V22.6663H18.6641V9.33301ZM13.3307 9.33301H17.3307V22.6663H13.3307V9.33301ZM10.6641 9.33301H11.9974V22.6663H10.6641V9.33301ZM21.3307 9.33301H25.3307V22.6663H21.3307V9.33301Z\" fill=\"#EAFFEC\"/>\\n<path d=\"M5.33073 6.66667H10.6641V4H5.33073C3.86006 4 2.66406 5.196 2.66406 6.66667V12H5.33073V6.66667ZM5.33073 28H10.6641V25.3333H5.33073V20H2.66406V25.3333C2.66406 26.804 3.86006 28 5.33073 28ZM26.6641 4H21.3307V6.66667H26.6641V12H29.3307V6.66667C29.3307 5.196 28.1347 4 26.6641 4ZM26.6641 25.3333H21.3307V28H26.6641C28.1347 28 29.3307 26.804 29.3307 25.3333V20H26.6641V25.3333Z\" fill=\"#EAFFEC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nbqlq2\",\"data-framer-name\":\"Frame 1000002427\",layoutDependency:layoutDependency,layoutId:\"EYMjC5GwY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Last-mile fulfillment center\"})}),className:\"framer-o0tmdc\",\"data-framer-name\":\"Last-mile fulfillment center\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"KQlZgawqJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We handle the final step with precision, ensuring your products reach customers efficiently and on time, no matter where they are.\"})}),className:\"framer-113fhw0\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wsT6HyWvp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:80,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18pd7p1\",\"data-framer-name\":\"Frame 1000002426\",layoutDependency:layoutDependency,layoutId:\"AQlcuOj4H\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity:1},variants:{zNQk8glx5:{opacity:.2}},...addPropertyOverrides({zNQk8glx5:{__targetOpacity:.2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iu4kgw\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"NyyTtlRgW\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.5307 10.6663C25.298 10.2633 24.9639 9.92818 24.5616 9.69427C24.1593 9.46037 23.7028 9.33582 23.2374 9.33301H19.9974V6.66634C19.9974 6.31272 19.8569 5.97358 19.6069 5.72353C19.3568 5.47348 19.0177 5.33301 18.6641 5.33301H5.33073C4.62349 5.33301 3.94521 5.61396 3.44511 6.11406C2.94501 6.61415 2.66406 7.29243 2.66406 7.99967V21.333C2.66454 21.8006 2.78799 22.2599 3.02201 22.6648C3.25604 23.0697 3.59241 23.4059 3.9974 23.6397C3.94966 24.8774 4.39554 26.0833 5.23695 26.9922C6.07837 27.9012 7.24639 28.4386 8.48406 28.4863C9.72174 28.5341 10.9277 28.0882 11.8366 27.2468C12.7455 26.4054 13.283 25.2374 13.3307 23.9997H17.4641C17.6115 25.1153 18.1593 26.1393 19.0056 26.881C19.8518 27.6228 20.9388 28.0317 22.0641 28.0317C23.1894 28.0317 24.2763 27.6228 25.1226 26.881C25.9688 26.1393 26.5166 25.1153 26.6641 23.9997C27.3713 23.9997 28.0496 23.7187 28.5497 23.2186C29.0498 22.7185 29.3307 22.0403 29.3307 21.333V17.333C29.3286 17.0898 29.2644 16.8511 29.1441 16.6397L25.5307 10.6663ZM19.9974 11.9997H23.2374L25.6374 15.9997H19.9974V11.9997ZM8.66406 25.333C8.2685 25.333 7.88182 25.2157 7.55292 24.9959C7.22402 24.7762 6.96768 24.4638 6.8163 24.0984C6.66493 23.7329 6.62532 23.3308 6.70249 22.9428C6.77966 22.5549 6.97014 22.1985 7.24985 21.9188C7.52955 21.6391 7.88592 21.4486 8.27388 21.3714C8.66184 21.2943 9.06398 21.3339 9.42943 21.4853C9.79488 21.6366 10.1072 21.893 10.327 22.2219C10.5468 22.5508 10.6641 22.9374 10.6641 23.333C10.6641 23.8634 10.4533 24.3721 10.0783 24.7472C9.7032 25.1223 9.1945 25.333 8.66406 25.333ZM21.9974 25.333C21.6018 25.333 21.2152 25.2157 20.8863 24.9959C20.5574 24.7762 20.301 24.4638 20.1496 24.0984C19.9983 23.7329 19.9587 23.3308 20.0358 22.9428C20.113 22.5549 20.3035 22.1985 20.5832 21.9188C20.8629 21.6391 21.2193 21.4486 21.6072 21.3714C21.9952 21.2943 22.3973 21.3339 22.7628 21.4853C23.1282 21.6366 23.4406 21.893 23.6603 22.2219C23.8801 22.5508 23.9974 22.9374 23.9974 23.333C23.9974 23.8634 23.7867 24.3721 23.4116 24.7472C23.0365 25.1223 22.5278 25.333 21.9974 25.333Z\" fill=\"#EAFFEC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mtjq56\",\"data-framer-name\":\"Frame 1000002427\",layoutDependency:layoutDependency,layoutId:\"Uj_PdtHlj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Domestic delivery to customer\"})}),className:\"framer-jovod7\",\"data-framer-name\":\"Domestic delivery to customer\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"vSaK1L9Qk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"From our fulfillment center to your customer\u2019s doorstep, we prioritize speed, reliability, and a great delivery experience.\"})}),className:\"framer-kr015h\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HZcGVloVU\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1KH2P.framer-11wz79u, .framer-1KH2P .framer-11wz79u { display: block; }\",\".framer-1KH2P.framer-1vio7a { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 326px; }\",\".framer-1KH2P .framer-124zagm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-1KH2P .framer-19idpcb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-1KH2P .framer-19vjecu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1KH2P .framer-1206r3m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 377px; word-break: break-word; word-wrap: break-word; }\",\".framer-1KH2P .framer-rbw6kq, .framer-1KH2P .framer-t7z16i, .framer-1KH2P .framer-qdaseg, .framer-1KH2P .framer-12wmwz1, .framer-1KH2P .framer-113fhw0, .framer-1KH2P .framer-kr015h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1KH2P .framer-1514o7g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1KH2P .framer-1b42r5l-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1KH2P .framer-1vngcif, .framer-1KH2P .framer-1qltr3f, .framer-1KH2P .framer-9ix0ad, .framer-1KH2P .framer-18pd7p1 { 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: 24px; position: relative; width: 100%; }\",\".framer-1KH2P .framer-1g2r5o0, .framer-1KH2P .framer-1je0etx, .framer-1KH2P .framer-195r4j9, .framer-1KH2P .framer-1iu4kgw { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-1KH2P .framer-1bsyluo, .framer-1KH2P .framer-1s06blt, .framer-1KH2P .framer-nbqlq2, .framer-1KH2P .framer-1mtjq56 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1KH2P .framer-yiki23, .framer-1KH2P .framer-1sgs9xi, .framer-1KH2P .framer-o0tmdc, .framer-1KH2P .framer-jovod7 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1KH2P.framer-1vio7a, .framer-1KH2P .framer-124zagm, .framer-1KH2P .framer-19idpcb, .framer-1KH2P .framer-19vjecu, .framer-1KH2P .framer-1514o7g, .framer-1KH2P .framer-1vngcif, .framer-1KH2P .framer-1bsyluo, .framer-1KH2P .framer-1qltr3f, .framer-1KH2P .framer-1s06blt, .framer-1KH2P .framer-9ix0ad, .framer-1KH2P .framer-nbqlq2, .framer-1KH2P .framer-18pd7p1, .framer-1KH2P .framer-1mtjq56 { gap: 0px; } .framer-1KH2P.framer-1vio7a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1KH2P.framer-1vio7a > :first-child, .framer-1KH2P .framer-124zagm > :first-child, .framer-1KH2P .framer-19idpcb > :first-child, .framer-1KH2P .framer-19vjecu > :first-child, .framer-1KH2P .framer-1514o7g > :first-child, .framer-1KH2P .framer-1vngcif > :first-child, .framer-1KH2P .framer-1qltr3f > :first-child, .framer-1KH2P .framer-9ix0ad > :first-child, .framer-1KH2P .framer-18pd7p1 > :first-child { margin-top: 0px; } .framer-1KH2P.framer-1vio7a > :last-child, .framer-1KH2P .framer-124zagm > :last-child, .framer-1KH2P .framer-19idpcb > :last-child, .framer-1KH2P .framer-19vjecu > :last-child, .framer-1KH2P .framer-1514o7g > :last-child, .framer-1KH2P .framer-1vngcif > :last-child, .framer-1KH2P .framer-1qltr3f > :last-child, .framer-1KH2P .framer-9ix0ad > :last-child, .framer-1KH2P .framer-18pd7p1 > :last-child { margin-bottom: 0px; } .framer-1KH2P .framer-124zagm > *, .framer-1KH2P .framer-19idpcb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1KH2P .framer-19vjecu > *, .framer-1KH2P .framer-1514o7g > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1KH2P .framer-1vngcif > *, .framer-1KH2P .framer-1qltr3f > *, .framer-1KH2P .framer-9ix0ad > *, .framer-1KH2P .framer-18pd7p1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-1KH2P .framer-1bsyluo > *, .framer-1KH2P .framer-1s06blt > *, .framer-1KH2P .framer-nbqlq2 > *, .framer-1KH2P .framer-1mtjq56 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-1KH2P .framer-1bsyluo > :first-child, .framer-1KH2P .framer-1s06blt > :first-child, .framer-1KH2P .framer-nbqlq2 > :first-child, .framer-1KH2P .framer-1mtjq56 > :first-child { margin-left: 0px; } .framer-1KH2P .framer-1bsyluo > :last-child, .framer-1KH2P .framer-1s06blt > :last-child, .framer-1KH2P .framer-nbqlq2 > :last-child, .framer-1KH2P .framer-1mtjq56 > :last-child { margin-right: 0px; } }\",\".framer-1KH2P.framer-v-ab6bin .framer-1qltr3f, .framer-1KH2P.framer-v-eqk0kf .framer-1qltr3f, .framer-1KH2P.framer-v-1x587zn .framer-1qltr3f, .framer-1KH2P.framer-v-1o3zhz7 .framer-1qltr3f { width: 97%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1324.5\n * @framerIntrinsicWidth 326\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rnwr1Hipc\":{\"layout\":[\"fixed\",\"auto\"]},\"LsaLM9rtB\":{\"layout\":[\"fixed\",\"auto\"]},\"zNQk8glx5\":{\"layout\":[\"fixed\",\"auto\"]},\"xI3DJlgFf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersF4vzf8sO=withCSS(Component,css,\"framer-1KH2P\");export default FramersF4vzf8sO;FramersF4vzf8sO.displayName=\"SLIDER\";FramersF4vzf8sO.defaultProps={height:1324.5,width:326};addPropertyControls(FramersF4vzf8sO,{variant:{options:[\"ARb1BBg7e\",\"rnwr1Hipc\",\"LsaLM9rtB\",\"zNQk8glx5\",\"xI3DJlgFf\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersF4vzf8sO,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersF4vzf8sO\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnwr1Hipc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LsaLM9rtB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zNQk8glx5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xI3DJlgFf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1324.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"326\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={L3Tj68bcf:{hover:true}};const cycleOrder=[\"L3Tj68bcf\"];const serializationHash=\"framer-fN6vQ\";const variantClassNames={L3Tj68bcf:\"framer-v-n7tjxo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,kW5U6sy4Y:link!==null&&link!==void 0?link:props.kW5U6sy4Y};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kW5U6sy4Y,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"L3Tj68bcf\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:kW5U6sy4Y,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-n7tjxo\",className,classNames)} framer-bvzrzv`,\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"L3Tj68bcf\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(227, 227, 227)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 1.3529411554336548px 2.7058823108673096px 0px rgba(13, 16, 23, 0.05999999865889549)\",...style},variants:{\"L3Tj68bcf-hover\":{backgroundColor:\"rgb(247, 247, 247)\"}},...addPropertyOverrides({\"L3Tj68bcf-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(40, 40, 40))\"},children:\"Pricing & benefits\"})}),className:\"framer-22lecd\",\"data-framer-name\":\"Label\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"tsRnC7Z9E\",style:{\"--extracted-r6o4lv\":\"rgb(40, 40, 40)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"L3Tj68bcf-hover\":{\"--extracted-r6o4lv\":\"rgb(61, 61, 61)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"L3Tj68bcf-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Pricing & benefits\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rm1tgx\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"q0Kaixp32\",svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.3335 8.73999H12.6668\" stroke=\"#282828\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8 4.07336L12.6667 8.74003L8 13.4067\" stroke=\"#282828\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true,...addPropertyOverrides({\"L3Tj68bcf-hover\":{fill:\"rgb(61, 61, 61)\"}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fN6vQ.framer-bvzrzv, .framer-fN6vQ .framer-bvzrzv { display: block; }\",\".framer-fN6vQ.framer-n7tjxo { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 16px 10px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-fN6vQ .framer-22lecd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fN6vQ .framer-rm1tgx { flex: none; height: 17px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fN6vQ.framer-n7tjxo { gap: 0px; } .framer-fN6vQ.framer-n7tjxo > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-fN6vQ.framer-n7tjxo > :first-child { margin-left: 0px; } .framer-fN6vQ.framer-n7tjxo > :last-child { margin-right: 0px; } }\",'.framer-fN6vQ[data-border=\"true\"]::after, .framer-fN6vQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37.5\n * @framerIntrinsicWidth 190.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"G7aIEc7A5\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"kW5U6sy4Y\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUVGMjvD_A=withCSS(Component,css,\"framer-fN6vQ\");export default FramerUVGMjvD_A;FramerUVGMjvD_A.displayName=\"Button\";FramerUVGMjvD_A.defaultProps={height:37.5,width:190.5};addPropertyControls(FramerUVGMjvD_A,{kW5U6sy4Y:{title:\"Link\",type:ControlType.Link}});addFonts(FramerUVGMjvD_A,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUVGMjvD_A\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G7aIEc7A5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"190.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"kW5U6sy4Y\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"37.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UVGMjvD_A.map", "// Generated by Framer (51f36d1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Yv68I4lLZthCuSnztvyB/6jeVQvxvBbUOW3vGawYz/jYbJiut2Y.js\";const enabledGestures={hMs9LSHb4:{hover:true}};const serializationHash=\"framer-27NRV\";const variantClassNames={hMs9LSHb4:\"framer-v-ua3aw8\"};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 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,link,title,width,...props})=>{return{...props,d7W7X278s:title??props.d7W7X278s??\"This is the title of a new blog\",jJvS0UREy:link??props.jJvS0UREy};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,d7W7X278s,jJvS0UREy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hMs9LSHb4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ua3aw8\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"hMs9LSHb4\",ref:ref??ref1,style:{opacity:1,...style},variants:{\"hMs9LSHb4-hover\":{opacity:.8}},...addPropertyOverrides({\"hMs9LSHb4-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-553feb38-2637-4ec9-835b-4a57fbd49b50, rgb(0, 0, 0)))\"},children:\"This is the title of a new blog\"})}),className:\"framer-d8krie\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"WirHvBBJu\",style:{\"--extracted-1of0zx5\":\"var(--token-553feb38-2637-4ec9-835b-4a57fbd49b50, rgb(0, 0, 0))\"},text:d7W7X278s,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hMs9LSHb4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-553feb38-2637-4ec9-835b-4a57fbd49b50, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:jJvS0UREy,nodeId:\"WirHvBBJu\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ttt3qh\",\"data-styles-preset\":\"jYbJiut2Y\",children:\"This is the title of a new blog\"})})})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-27NRV.framer-1k7kmy7, .framer-27NRV .framer-1k7kmy7 { display: block; }\",\".framer-27NRV.framer-ua3aw8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 399px; }\",\".framer-27NRV .framer-d8krie { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-27NRV.framer-ua3aw8 { gap: 0px; } .framer-27NRV.framer-ua3aw8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-27NRV.framer-ua3aw8 > :first-child { margin-left: 0px; } .framer-27NRV.framer-ua3aw8 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 399\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"psU7NwcnJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"d7W7X278s\":\"title\",\"jJvS0UREy\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZZDsH024J=withCSS(Component,css,\"framer-27NRV\");export default FramerZZDsH024J;FramerZZDsH024J.displayName=\"Blog Title\";FramerZZDsH024J.defaultProps={height:25,width:399};addPropertyControls(FramerZZDsH024J,{d7W7X278s:{defaultValue:\"This is the title of a new blog\",title:\"Title\",type:ControlType.String},jJvS0UREy:{title:\"Link\",type:ControlType.Link}});addFonts(FramerZZDsH024J,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZZDsH024J\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"psU7NwcnJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"399\",\"framerIntrinsicHeight\":\"25\",\"framerVariables\":\"{\\\"d7W7X278s\\\":\\\"title\\\",\\\"jJvS0UREy\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useInView}from\"framer-motion\";import{useEffect,useState,useRef}from\"react\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function NumberAnimator(props){const ref=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:props.animation.amount});const[numberText,setNumberText]=useState(\"\");const{start,end,decimals,commas,rounding,fontColor,animation}=props;const[currentAnimation,setCurrentAnimation]=useState(null);const isCanvas=RenderTarget.current()===RenderTarget.canvas;function formatNumber(value){let number=value;let numberString=number.toFixed(decimals);if(commas){numberString=numberString.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return numberString;}function runAnimation(){if(!isCanvas){if(currentAnimation){currentAnimation.stop();}setCurrentAnimation(animate(start,end,{...animation.transition,onUpdate:latest=>{setNumberText(formatNumber(latest));}}));}}useEffect(()=>{if(animation.trigger==\"appear\"){runAnimation();}setNumberText(formatNumber(start));},[]);useEffect(()=>{if(isInView&&animation.trigger==\"layerInView\"){runAnimation();}},[isInView]);useEffect(()=>{if(animation.trigger==\"layerInView\"){if(isInView){runAnimation();}else if(animation.amount==\"some\"){if(currentAnimation){currentAnimation.stop();}setNumberText(formatNumber(start));}}},[isInView]);return /*#__PURE__*/_jsxs(motion.p,{ref:ref,style:{userSelect:props.textSelect?\"auto\":\"none\",fontVariantNumeric:`${props.monospace?\"tabular-nums \":\"\"}${props.slashedZeros?\"slashed-zero\":\"\"}`,margin:0,...fontColor.mode==\"solid\"?{color:fontColor.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${fontColor.angle}deg, ${fontColor.startColor}, ${fontColor.endColor})`},...props.font,...props.style},children:[props.prefix,isCanvas?formatNumber(end):numberText,props.suffix]});}NumberAnimator.displayName=\"Animated Number Counter\";addPropertyControls(NumberAnimator,{start:{type:ControlType.Number,defaultValue:0},end:{type:ControlType.Number,defaultValue:100},decimals:{type:ControlType.Number,defaultValue:0,min:0,max:3,step:1},commas:{type:ControlType.Boolean,defaultValue:true},fontColor:{type:ControlType.Object,controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!=\"gradient\"},angle:{type:ControlType.Number,defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!=\"gradient\"}}},font:{type:\"font\",controls:\"extended\"},animation:{type:ControlType.Object,icon:\"effect\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},amount:{type:ControlType.Enum,defaultValue:\"some\",options:[\"some\",\"all\"],optionTitles:[\"Any\",\"All\"],displaySegmentedControl:true,hidden(props){return props.trigger!==\"layerInView\";}},replay:{type:ControlType.Boolean,defaultValue:true,hidden(props){return props.trigger!==\"layerInView\";}},transition:{type:ControlType.Transition}}},prefix:{type:ControlType.String},suffix:{type:ControlType.String},textSelect:{type:ControlType.Boolean,defaultValue:true},display:{type:ControlType.Object,buttonTitle:\"Options\",controls:{monospace:{type:ControlType.Boolean,defaultValue:false,description:\"Monospaced number characters.\"},slashedZeros:{type:ControlType.Boolean,defaultValue:false,description:\"Adds a diagonal slash through zeros if your font supports it.\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"NumberAnimator\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NumberAnimator_2.map", "// Generated by Framer (4e800ba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-2zd5h .framer-styles-preset-17myian:not(.rich-text-wrapper), .framer-2zd5h .framer-styles-preset-17myian.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 180%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-2zd5h\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4e800ba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-xAEkl .framer-styles-preset-2dlmao:not(.rich-text-wrapper), .framer-xAEkl .framer-styles-preset-2dlmao.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-xAEkl\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import TestimonialCard from\"#framer/local/canvasComponent/A0OqvjNwM/A0OqvjNwM.js\";import GreenButton from\"#framer/local/canvasComponent/cNvjRd9sF/cNvjRd9sF.js\";import TransperantNavigation from\"#framer/local/canvasComponent/DKyyJ4mvg/DKyyJ4mvg.js\";import BlogImage from\"#framer/local/canvasComponent/fZ5nUt1GC/fZ5nUt1GC.js\";import EFFooter from\"#framer/local/canvasComponent/Mwwmrjdn6/Mwwmrjdn6.js\";import EmptyButton from\"#framer/local/canvasComponent/O4m9WwkcW/O4m9WwkcW.js\";import SLIDER from\"#framer/local/canvasComponent/sF4vzf8sO/sF4vzf8sO.js\";import Button1 from\"#framer/local/canvasComponent/UVGMjvD_A/UVGMjvD_A.js\";import Button from\"#framer/local/canvasComponent/WGi3OC8vx/WGi3OC8vx.js\";import BlogTitle from\"#framer/local/canvasComponent/ZZDsH024J/ZZDsH024J.js\";import AnimatedNumberCounter from\"#framer/local/codeFile/n6kj3mc/NumberAnimator_2.js\";import Blog from\"#framer/local/collection/NiXhsZ__y/NiXhsZ__y.js\";import*as sharedStyle1 from\"#framer/local/css/BxknfK0QL/BxknfK0QL.js\";import*as sharedStyle from\"#framer/local/css/Y8K_OwimL/Y8K_OwimL.js\";import metadataProvider from\"#framer/local/webPageMetadata/o0_jSGowk/o0_jSGowk.js\";const TransperantNavigationFonts=getFonts(TransperantNavigation);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const GlobeFonts=getFonts(Globe);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const TickerFonts=getFonts(Ticker);const Button1Fonts=getFonts(Button1);const SLIDERFonts=getFonts(SLIDER);const SLIDERWithVariantAppearEffect=withVariantAppearEffect(SLIDER);const TestimonialCardFonts=getFonts(TestimonialCard);const SlideshowFonts=getFonts(Slideshow);const AnimatedNumberCounterFonts=getFonts(AnimatedNumberCounter);const EmptyButtonFonts=getFonts(EmptyButton);const GreenButtonFonts=getFonts(GreenButton);const BlogImageFonts=getFonts(BlogImage);const BlogTitleFonts=getFonts(BlogTitle);const EFFooterFonts=getFonts(EFFooter);const breakpoints={pVkaWDKMx:\"(max-width: 809px)\",qUSJzXXOP:\"(min-width: 810px) and (max-width: 1199px)\",r_N0SrxK6:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-t2dBs\";const variantClassNames={pVkaWDKMx:\"framer-v-yygsas\",qUSJzXXOP:\"framer-v-i9ofkk\",r_N0SrxK6:\"framer-v-1jnwpjt\"};const transition1={bounce:.2,delay:.5,duration:.9,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition2={bounce:0,delay:.05,duration:1.3,type:\"spring\"};const textEffect={effect:animation2,tokenization:\"element\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition4={delay:.5,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition5={delay:.7,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={delay:.6,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation9={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition7={bounce:0,delay:.05,duration:1.1,type:\"spring\"};const textEffect1={effect:animation9,tokenization:\"element\",transition:transition7,trigger:\"onInView\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation10={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:40};const textEffect2={effect:animation10,tokenization:\"element\",transition:transition7,trigger:\"onMount\",type:\"appear\"};const transition8={bounce:0,delay:.35,duration:1.1,type:\"spring\"};const textEffect3={effect:animation10,repeat:false,startDelay:.2,tokenization:\"element\",transition:transition8,trigger:\"onMount\",type:\"appear\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"r_N0SrxK6\",Phone:\"pVkaWDKMx\",Tablet:\"qUSJzXXOP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"r_N0SrxK6\"};};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,Ux7aNOG_NEmoBXjvGg,TZHdlBujyEmoBXjvGg,Ux7aNOG_Nmnd1XUjra,Ryc8_IZbwEmoBXjvGg,F88gpzWEtEmoBXjvGg,idEmoBXjvGg,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"pVkaWDKMx\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"qUSJzXXOP\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"qUSJzXXOP\")return false;return true;};const router=useRouter();const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"pVkaWDKMx\")return true;return false;};const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const elementId=useRouteElementId(\"Op1drjMiP\");const elementId1=useRouteElementId(\"uRdU5Foal\");const elementId2=useRouteElementId(\"rUi51T468\");const elementId3=useRouteElementId(\"Hf877J7TU\");const isDisplayed4=()=>{if(!isBrowser())return true;if([\"qUSJzXXOP\",\"pVkaWDKMx\"].includes(baseVariant))return false;return true;};const elementId4=useRouteElementId(\"t1LSfZZk8\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"r_N0SrxK6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(250, 250, 250); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1jnwpjt\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48lfpl hidden-yygsas\",\"data-framer-name\":\"Header + Navigation\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1071,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"},className:\"framer-1ygz629\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bbon7q\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{width:\"810px\",y:(componentViewport?.y||0)+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dr073k-container\",nodeId:\"jjunt3czK\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{style:{width:\"100%\"},variant:\"YNEXqUKIX\"}},children:/*#__PURE__*/_jsx(TransperantNavigation,{height:\"100%\",id:\"jjunt3czK\",layoutId:\"jjunt3czK\",style:{height:\"100%\",width:\"100%\"},variant:\"cWAPMkN1d\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qd008p\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vurk2k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2z65kf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b0od20\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-t91oub\",\"data-framer-appear-id\":\"t91oub\",\"data-framer-name\":\"Badge\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(209, 255, 213)\"},children:\"The 3PL in China trusted by 150+ Brands\"})}),className:\"framer-ukw03l\",\"data-framer-name\":\"Label\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3p9yf\",\"data-framer-name\":\"Heading and badge\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The future of supply-\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"chain has arrived.\"})]}),fonts:[\"Inter-SemiBold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-2dlmao\",\"data-styles-preset\":\"Y8K_OwimL\",children:\"The future of supply-chain has arrived.\"})}),className:\"framer-1cfjsq8\",\"data-framer-name\":\"Heading\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17myian\",\"data-styles-preset\":\"BxknfK0QL\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Ship globally within\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"3 day post-production, increase margins, and turn cash flow into profit with smart fulfillment. With Ecomflow, you tap into the best of both worlds: all the benefits of China fulfillment, without the downsides.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17myian\",\"data-styles-preset\":\"BxknfK0QL\",children:[\"Ship globally within\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"3 day post-production, increase margins, and turn cash flow into profit with smart fulfillment. With Ecomflow, you tap into the best of both worlds: all the benefits of China fulfillment, without the downsides.\"]})}),className:\"framer-2hef94\",\"data-framer-appear-id\":\"2hef94\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bg8m5d\",\"data-framer-name\":\"Button Group\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{y:(componentViewport?.y||0)+0+0+0+-325+64+0+0+0+0+1081+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+64+64+89.2+0+319.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o68lbb-container\",nodeId:\"HkWn_WR4x\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Button,{djcEJNgMi:\"rgb(1, 162, 15)\",height:\"100%\",i0TWNlN_q:\"https://ecomflow-3pl.typeform.com/to/m0lbQOpV#utm=website\",id:\"HkWn_WR4x\",layoutId:\"HkWn_WR4x\",nQH_kmKNi:\"\uD83D\uDCAC Work with us\",variant:\"x42FH767c\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vzqk8x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1vf10fd-container\",\"data-framer-appear-id\":\"1vf10fd\",initial:animation4,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"La2Oi9aFv\",optimized:true,rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(46, 17, 17, 0)\",baseColor:\"rgb(57, 199, 52)\",dark:.9,diffuse:3.45,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(143, 143, 143)\",height:\"100%\",id:\"La2Oi9aFv\",isDraggable:false,layoutId:\"La2Oi9aFv\",mapBrightness:5.23,markerArray:[],markerColor:\"rgba(173, 38, 38, 0)\",markerSize:0,maxSamples:4522,maxWidth:902,offset:{offsetX:0,offsetY:0},phi:0,scale:1,speed:.5,style:{height:\"100%\",width:\"100%\"},theta:.26,width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1mrkvhq\",\"data-border\":true,\"data-framer-appear-id\":\"1mrkvhq\",\"data-framer-name\":\"Worldwide Delivery\",initial:animation6,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kpoaxu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44.88px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4-10 Days\"})}),className:\"framer-gsvuq9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17.95121955871582px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"17.95px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Worldwide Delivery\"})})}),className:\"framer-1emoqpl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-k50m0c hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Worldwide Delivery\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdhvyf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44.878047943115234px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"44.88px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"75%\"})})}),className:\"framer-102kstp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17.95121955871582px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"17.95px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Faster Lead Times\"})})}),className:\"framer-11a2s7z\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13q7xya hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Worldwide Delivery\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fnx22b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44.878047943115234px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"44.88px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"99.8%\"})})}),className:\"framer-18fal7x\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17.95121955871582px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"17.95px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Order Accuracy\"})})}),className:\"framer-1f897up\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1sye693 hidden-i9ofkk\",\"data-border\":true,\"data-framer-appear-id\":\"1sye693\",\"data-framer-name\":\"Order Accuracy\",initial:animation6,optimized:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1hvaw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"99.8%\"})})}),className:\"framer-1vrkes9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Order Accuracy\"})})}),className:\"framer-u3dxuo\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-r7iyn0 hidden-i9ofkk\",\"data-border\":true,\"data-framer-appear-id\":\"r7iyn0\",\"data-framer-name\":\"Faster Lead Times\",initial:animation6,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxjaz7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"51.85px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10x\"})}),className:\"framer-1upzozh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20.740739822387695px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20.74px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Faster Lead Times\"})})}),className:\"framer-179dpld\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4qdz3q hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Worldwide Delivery\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18n8ary\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44.878047943115234px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"44.88px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"99.8%\"})})}),className:\"framer-b8rjun\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17.95121955871582px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"17.95px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Order Accuracy\"})})}),className:\"framer-1rrd7ru\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vlopr2\",\"data-framer-name\":\"Brands Slider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hngn6h\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmdh6l\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 31, 4, 0.5)\"},children:[\"Ecomflow is trusted by\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 31, 4, 0.8)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 61, 8)\"},children:\"150+ top brands\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 31, 4, 0.8)\"},children:\" \"}),\"worldwide\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 31, 4, 0.8)\"},children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 31, 4, 0.5)\"},children:[\"Ecomflow is trusted by\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 31, 4, 0.8)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 61, 8)\"},children:\"150+ top brands\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 31, 4, 0.8)\"},children:\" \"}),\"worldwide\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 31, 4, 0.8)\"},children:\" \"})]})}),className:\"framer-juvbfu\",\"data-framer-name\":\"Our partners\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4qgfpt-container\",isModuleExternal:true,nodeId:\"aZMh0ZBNo\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"aZMh0ZBNo\",layoutId:\"aZMh0ZBNo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1csoubf\",\"data-framer-name\":\"Hears\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-178piup\",\"data-framer-name\":\"Logo Full + trademark black 1\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:37,intrinsicWidth:171,svg:'<svg width=\"171\" height=\"37\" viewBox=\"0 0 171 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_5638_1591)\">\\n<mask id=\"mask0_5638_1591\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"171\" height=\"37\">\\n<path d=\"M0.5 0H170.414V36.5H0.5V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_5638_1591)\">\\n<path d=\"M37.0721 16.0126C35.4875 17.979 32.5879 21.1781 30.1313 23.8777C29.972 22.8581 29.6029 21.834 28.9975 20.8626L25.0075 14.1376L27.8 9.43108C28.6914 8.23957 29.9961 7.45433 31.481 7.21681C32.9871 6.97503 34.4983 7.32741 35.7365 8.20624C37.0333 9.12691 37.902 10.5471 38.1207 12.1027C38.3218 13.5349 37.9495 14.9235 37.0721 16.0126ZM25.6266 28.3027C25.5687 28.3435 25.5082 28.3772 25.4489 28.4147C23.9758 29.1347 22.3589 29.1074 21.1053 28.2173C19.2117 26.8726 18.8365 24.4191 20.1934 22.2516L23.3406 16.9474L26.5208 22.3083L26.5385 22.337C27.8953 24.5048 27.5201 26.9577 25.6266 28.3027ZM9.65975 16.098C8.7824 15.0089 8.41009 13.6203 8.61117 12.1881C8.82988 10.6329 9.6986 9.21234 10.9954 8.29168C12.0037 7.57592 13.1706 7.23134 14.3275 7.23134C16.0832 7.23134 17.8153 8.02473 18.9319 9.51651L21.6754 14.1407L17.7344 20.7772C17.1002 21.7946 16.7225 22.8702 16.5775 23.9376C14.126 21.2434 11.2393 18.0581 9.65975 16.098ZM40.9718 11.7134C40.6459 9.39385 39.3509 7.27672 37.4192 5.90477C35.5577 4.5828 33.2853 4.05458 31.0195 4.41689C28.7543 4.7792 26.768 5.98949 25.4266 7.82408L23.3434 11.3323L21.3801 8.02296L21.3053 7.90987C18.5358 4.12193 13.1562 3.26012 9.31262 5.9902C7.38093 7.36216 6.08595 9.47929 5.76004 11.7989C5.44961 14.0067 6.03415 16.16 7.40575 17.862C9.1414 20.0157 12.3371 23.5275 14.9052 26.349C15.7483 27.275 16.5153 28.1177 17.1246 28.7962C18.8495 30.8017 21.138 31.8599 23.3672 31.8599C24.5722 31.8595 25.7604 31.5493 26.8327 30.913C27.8399 30.3996 28.7878 29.6637 29.6072 28.7111C30.2162 28.0326 30.9831 27.1903 31.8263 26.2639C34.3944 23.4424 37.5905 19.9306 39.3261 17.7766C40.6977 16.0746 41.2823 13.9213 40.9718 11.7134Z\" fill=\"black\"/>\\n<path d=\"M37.0721 16.0126C35.4875 17.979 32.5879 21.1781 30.1313 23.8777C29.972 22.8581 29.6029 21.834 28.9975 20.8626L25.0075 14.1376L27.8 9.43108C28.6914 8.23957 29.9961 7.45433 31.481 7.21681C32.9871 6.97503 34.4983 7.32741 35.7365 8.20624C37.0333 9.12691 37.902 10.5471 38.1207 12.1027C38.3218 13.5349 37.9495 14.9235 37.0721 16.0126ZM25.6266 28.3027C25.5687 28.3435 25.5082 28.3772 25.4489 28.4147C23.9758 29.1347 22.3589 29.1074 21.1053 28.2173C19.2117 26.8726 18.8365 24.4191 20.1934 22.2516L23.3406 16.9474L26.5208 22.3083L26.5385 22.337C27.8953 24.5048 27.5201 26.9577 25.6266 28.3027ZM9.65975 16.098C8.7824 15.0089 8.41009 13.6203 8.61117 12.1881C8.82988 10.6329 9.6986 9.21234 10.9954 8.29168C12.0037 7.57592 13.1706 7.23134 14.3275 7.23134C16.0832 7.23134 17.8153 8.02473 18.9319 9.51651L21.6754 14.1407L17.7344 20.7772C17.1002 21.7946 16.7225 22.8702 16.5775 23.9376C14.126 21.2434 11.2393 18.0581 9.65975 16.098ZM40.9718 11.7134C40.6459 9.39385 39.3509 7.27672 37.4192 5.90477C35.5577 4.5828 33.2853 4.05458 31.0195 4.41689C28.7543 4.7792 26.768 5.98949 25.4266 7.82408L23.3434 11.3323L21.3801 8.02296L21.3053 7.90987C18.5358 4.12193 13.1562 3.26012 9.31262 5.9902C7.38093 7.36216 6.08595 9.47929 5.76004 11.7989C5.44961 14.0067 6.03415 16.16 7.40575 17.862C9.1414 20.0157 12.3371 23.5275 14.9052 26.349C15.7483 27.275 16.5153 28.1177 17.1246 28.7962C18.8495 30.8017 21.138 31.8599 23.3672 31.8599C24.5722 31.8595 25.7604 31.5493 26.8327 30.913C27.8399 30.3996 28.7878 29.6637 29.6072 28.7111C30.2162 28.0326 30.9831 27.1903 31.8263 26.2639C34.3944 23.4424 37.5905 19.9306 39.3261 17.7766C40.6977 16.0746 41.2823 13.9213 40.9718 11.7134Z\" stroke=\"black\" stroke-width=\"2.51724\" stroke-miterlimit=\"10\"/>\\n<path d=\"M77.8337 15.2473V4.09439H83.1755V31.8596H77.8337V20.0048H64.7364V31.8596H59.3945V4.09439H64.7364V15.2473H77.8337Z\" fill=\"black\"/>\\n<path d=\"M96.5496 15.0915C93.6215 15.0915 91.92 16.6904 91.4452 19.888H101.694C101.482 18.4062 100.928 17.2363 100.032 16.3784C99.1345 15.5205 97.974 15.0915 96.5496 15.0915ZM106.679 22.1498V23.3197H91.4056C91.5898 25.0355 92.1376 26.3288 93.0477 27.1998C93.9578 28.0708 95.1776 28.5062 96.7078 28.5062C98.9762 28.5062 100.532 27.5447 101.377 25.6205H106.165C105.637 27.6745 104.529 29.3056 102.841 30.5145C101.153 31.7234 99.0949 32.3278 96.6683 32.3278C93.6344 32.3278 91.1811 31.366 89.3084 29.4417C87.435 27.5185 86.499 24.9706 86.499 21.7988C86.499 18.6274 87.4221 16.0799 89.2689 14.1553C91.1416 12.232 93.5819 11.2699 96.5891 11.2699C99.6755 11.2699 102.129 12.271 103.949 14.2722C105.769 16.2749 106.679 18.9004 106.679 22.1498Z\" fill=\"black\"/>\\n<path d=\"M117.126 28.818C118.682 28.818 119.948 28.3958 120.925 27.5506C121.9 26.7062 122.389 25.4906 122.389 23.9045V22.0717C121.914 22.4879 121.135 22.7609 120.054 22.8906L117.363 23.2026C116.044 23.3586 115.101 23.6645 114.534 24.119C113.967 24.5742 113.684 25.2304 113.684 26.0883C113.684 26.9462 113.98 27.6159 114.574 28.0966C115.167 28.578 116.018 28.818 117.126 28.818ZM128.047 31.8597H123.061C122.824 31.4442 122.639 30.6253 122.507 29.403C121.135 31.3528 118.946 32.3277 115.939 32.3277C113.696 32.3277 111.909 31.7948 110.577 30.7288C109.245 29.6632 108.579 28.1813 108.579 26.2833C108.579 22.6176 111.191 20.525 116.414 20.0049L119.5 19.7319C120.529 19.6022 121.267 19.3615 121.716 19.0105C122.164 18.6595 122.389 18.1331 122.389 17.4312C122.389 16.5732 122.105 15.9433 121.538 15.5398C120.97 15.1371 120.015 14.9354 118.669 14.9354C117.218 14.9354 116.176 15.1761 115.543 15.6568C114.91 16.1379 114.54 16.9636 114.435 18.1331H109.529C109.819 13.5578 112.878 11.2698 118.709 11.2698C124.38 11.2698 127.216 13.2848 127.216 17.3142V28.0381C127.216 29.8064 127.493 31.0798 128.047 31.8597Z\" fill=\"black\"/>\\n<path d=\"M141.935 11.4259C142.383 11.4259 142.792 11.4518 143.162 11.5039V16.0271H141.896C139.996 16.0271 138.538 16.5018 137.523 17.4508C136.507 18.4002 136 19.7969 136 21.6425V31.8599H131.014V11.7379H135.842V15.3255C136.975 12.7259 139.007 11.4259 141.935 11.4259Z\" fill=\"black\"/>\\n<path d=\"M153.45 32.4057C147.488 32.4057 144.375 30.0922 144.111 25.4644H148.978C149.11 26.7123 149.525 27.5964 150.225 28.1162C150.923 28.6366 152.025 28.8961 153.529 28.8961C156.219 28.8961 157.565 28.0906 157.565 26.4783C157.565 25.7509 157.274 25.1915 156.694 24.8015C156.114 24.4115 155.072 24.0868 153.568 23.8266L151.234 23.4366C146.775 22.7088 144.547 20.6814 144.547 17.3532C144.547 15.4555 145.285 13.9673 146.762 12.8882C148.239 11.8094 150.324 11.2698 153.014 11.2698C158.844 11.2698 161.851 13.5451 162.036 18.0942H157.327C157.274 16.8988 156.892 16.0465 156.18 15.5399C155.468 15.033 154.412 14.7795 153.014 14.7795C150.64 14.7795 149.453 15.5591 149.453 17.1193C149.453 17.7957 149.716 18.3218 150.245 18.6986C150.772 19.0754 151.642 19.3683 152.856 19.576L155.428 19.966C157.907 20.4084 159.708 21.1103 160.829 22.0718C161.95 23.0335 162.511 24.3725 162.511 26.0884C162.511 28.1162 161.72 29.676 160.137 30.7679C158.554 31.8598 156.324 32.4057 153.45 32.4057Z\" fill=\"black\"/>\\n<path d=\"M164.308 10.5182H164.61C164.806 10.5182 164.928 10.51 164.977 10.4937C165.026 10.477 165.064 10.4494 165.092 10.4093C165.119 10.3693 165.133 10.3196 165.133 10.2597C165.133 10.1927 165.115 10.1385 165.078 10.097C165.042 10.0559 164.991 10.0293 164.924 10.0187C164.892 10.0144 164.792 10.0119 164.627 10.0119H164.308V10.5182ZM163.899 11.6693V9.67478H164.759C164.975 9.67478 165.132 9.6925 165.23 9.72831C165.328 9.76411 165.407 9.82757 165.466 9.91939C165.525 10.0112 165.554 10.1161 165.554 10.2338C165.554 10.3831 165.509 10.5072 165.42 10.6043C165.331 10.7021 165.198 10.7635 165.02 10.789C165.109 10.8393 165.181 10.8957 165.239 10.9563C165.296 11.0166 165.374 11.1251 165.472 11.28L165.719 11.6693H165.23L164.934 11.2353C164.83 11.0797 164.758 10.9822 164.719 10.9418C164.68 10.9014 164.639 10.8741 164.596 10.8592C164.553 10.8436 164.485 10.8365 164.39 10.8365H164.308V11.6693H163.899Z\" fill=\"black\"/>\\n<path d=\"M164.7 12.2363C165.532 12.2363 166.21 11.5691 166.21 10.7481C166.21 9.92741 165.532 9.25987 164.7 9.25987C163.867 9.25987 163.19 9.92741 163.19 10.7481C163.19 11.5691 163.867 12.2363 164.7 12.2363ZM166.487 10.7481C166.487 11.7209 165.687 12.5093 164.7 12.5093C163.713 12.5093 162.913 11.7209 162.913 10.7481C162.913 9.77533 163.713 8.9869 164.7 8.9869C165.687 8.9869 166.487 9.77533 166.487 10.7481Z\" fill=\"black\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_5638_1591\">\\n<rect width=\"169.914\" height=\"36.5\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lmwtgu\",\"data-framer-name\":\"Fluff Co\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:208,pixelWidth:600,sizes:\"139px\",src:\"https://framerusercontent.com/images/gNmNIS6cGSmL7GJtjuDjx27i9cc.png\",srcSet:\"https://framerusercontent.com/images/gNmNIS6cGSmL7GJtjuDjx27i9cc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gNmNIS6cGSmL7GJtjuDjx27i9cc.png 600w\"},className:\"framer-i0wuix\",\"data-framer-name\":\"FluffCo_Logo-04-1 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ir0b8\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:87,pixelWidth:240,src:\"https://framerusercontent.com/images/egVPHymJJm6JC2WxMgKqxErxfQ.png\"},className:\"framer-189o0ho\",\"data-framer-name\":\"icon-amsterdam_logo 1\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:992,positionX:\"center\",positionY:\"center\",sizes:\"200.8686px\",src:\"https://framerusercontent.com/images/d56zLaROZeiOq5j4FuwGA7qUJV8.png\",srcSet:\"https://framerusercontent.com/images/d56zLaROZeiOq5j4FuwGA7qUJV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/d56zLaROZeiOq5j4FuwGA7qUJV8.png 992w\"},className:\"framer-9m06dp\",\"data-framer-name\":\"Dore & Rose (15) 1\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sp7vsh\",\"data-framer-name\":\"Eyekonik\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:320,src:\"https://framerusercontent.com/images/NtkqkkdJK3RsveItKJkhs5CrY.png\"},className:\"framer-1s30whd\",\"data-framer-name\":\"EYEKONIK_EYEWEAR_-_Logo_320x 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d5fzyh\",\"data-framer-name\":\"Smooche\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mvhny2\",\"data-framer-name\":\"black 1 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:162,svg:'<svg width=\"162\" height=\"33\" viewBox=\"0 0 162 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.215 17.219C13.327 15.972 12.134 15.349 10.636 15.349C10.027 15.349 9.43201 15.501 8.84701 15.806C8.26401 16.112 7.97201 16.609 7.97201 17.296C7.97201 17.856 8.21301 18.263 8.69501 18.517C9.17801 18.772 9.78701 18.988 10.522 19.166C11.259 19.345 12.045 19.535 12.883 19.739C13.745 19.917 14.545 20.21 15.281 20.617C16.017 20.999 16.626 21.534 17.108 22.22C17.59 22.908 17.832 23.85 17.832 25.046C17.832 26.14 17.59 27.069 17.108 27.833C16.652 28.571 16.043 29.169 15.281 29.627C14.545 30.085 13.708 30.416 12.768 30.619C11.83 30.823 10.89 30.925 9.95201 30.925C8.53001 30.925 7.22301 30.721 6.03101 30.314C4.83801 29.907 3.77201 29.169 2.83301 28.1L5.87801 25.237C6.46201 25.898 7.08301 26.446 7.74301 26.878C8.42901 27.285 9.25301 27.489 10.218 27.489C10.548 27.489 10.89 27.451 11.246 27.374C11.601 27.298 11.931 27.171 12.236 26.992C12.54 26.814 12.782 26.598 12.959 26.343C13.162 26.064 13.263 25.746 13.263 25.389C13.263 24.753 13.022 24.282 12.54 23.977C12.058 23.671 11.449 23.429 10.713 23.251C9.97701 23.047 9.17801 22.869 8.31501 22.717C7.47701 22.539 6.69101 22.272 5.95401 21.915C5.21901 21.534 4.61001 21.011 4.12701 20.35C3.64501 19.688 3.40401 18.772 3.40401 17.601C3.40401 16.583 3.60701 15.705 4.01301 14.967C4.44401 14.203 5.00201 13.58 5.68801 13.096C6.37301 12.613 7.16001 12.257 8.04801 12.027C8.93601 11.798 9.83801 11.683 10.751 11.683C11.969 11.683 13.174 11.9 14.368 12.332C15.56 12.74 16.524 13.452 17.261 14.471L14.215 17.219ZM21.194 12.142H25.534V15.005H25.61C26.016 14.14 26.663 13.376 27.551 12.714C28.465 12.027 29.683 11.683 31.206 11.683C34.074 11.683 35.977 12.816 36.917 15.082C37.576 13.911 38.401 13.058 39.39 12.524C40.381 11.964 41.561 11.683 42.931 11.683C44.149 11.683 45.177 11.887 46.015 12.294C46.852 12.702 47.525 13.262 48.033 13.974C48.565 14.687 48.946 15.527 49.174 16.494C49.403 17.436 49.517 18.454 49.517 19.548V30.467H44.949V20.083C44.949 19.523 44.898 18.988 44.797 18.479C44.695 17.945 44.517 17.486 44.263 17.105C44.009 16.698 43.667 16.38 43.236 16.15C42.805 15.921 42.246 15.806 41.561 15.806C40.85 15.806 40.241 15.947 39.733 16.227C39.252 16.481 38.845 16.837 38.515 17.296C38.211 17.729 37.983 18.238 37.83 18.823C37.703 19.383 37.64 19.955 37.64 20.541V30.467H33.071V19.548C33.071 18.403 32.83 17.499 32.348 16.837C31.866 16.15 31.067 15.806 29.95 15.806C29.189 15.806 28.542 15.934 28.008 16.188C27.501 16.443 27.07 16.787 26.714 17.219C26.384 17.652 26.143 18.148 25.991 18.708C25.839 19.268 25.762 19.854 25.762 20.465V30.467H21.194V12.142ZM53.595 21.304C53.595 19.854 53.848 18.543 54.356 17.372C54.889 16.176 55.6 15.157 56.488 14.318C57.376 13.478 58.43 12.829 59.648 12.371C60.866 11.913 62.16 11.683 63.531 11.683C64.901 11.683 66.196 11.913 67.414 12.371C68.632 12.829 69.685 13.478 70.573 14.318C71.461 15.157 72.159 16.176 72.667 17.372C73.2 18.543 73.467 19.854 73.467 21.304C73.467 22.755 73.2 24.078 72.667 25.275C72.159 26.446 71.461 27.451 70.573 28.29C69.685 29.131 68.632 29.78 67.414 30.238C66.196 30.696 64.901 30.925 63.531 30.925C62.16 30.925 60.866 30.696 59.648 30.238C58.43 29.78 57.376 29.131 56.488 28.29C55.6 27.451 54.889 26.446 54.356 25.275C53.848 24.078 53.595 22.755 53.595 21.304ZM58.163 21.304C58.163 22.017 58.277 22.705 58.505 23.366C58.759 24.028 59.115 24.613 59.571 25.122C60.054 25.631 60.625 26.038 61.285 26.343C61.945 26.65 62.693 26.802 63.531 26.802C64.368 26.802 65.116 26.65 65.776 26.343C66.436 26.038 66.995 25.631 67.451 25.122C67.934 24.613 68.289 24.028 68.517 23.366C68.771 22.705 68.898 22.017 68.898 21.304C68.898 20.592 68.771 19.905 68.517 19.243C68.289 18.581 67.934 17.996 67.451 17.486C66.995 16.977 66.436 16.57 65.776 16.265C65.116 15.96 64.368 15.806 63.531 15.806C62.693 15.806 61.945 15.96 61.285 16.265C60.625 16.57 60.054 16.977 59.571 17.486C59.115 17.996 58.759 18.581 58.505 19.243C58.277 19.905 58.163 20.592 58.163 21.304ZM76.83 21.304C76.83 19.854 77.084 18.543 77.591 17.372C78.124 16.176 78.834 15.157 79.723 14.318C80.611 13.478 81.664 12.829 82.883 12.371C84.101 11.913 85.395 11.683 86.765 11.683C88.136 11.683 89.43 11.913 90.649 12.371C91.867 12.829 92.919 13.478 93.808 14.318C94.696 15.157 95.394 16.176 95.902 17.372C96.435 18.543 96.701 19.854 96.701 21.304C96.701 22.755 96.435 24.078 95.902 25.275C95.394 26.446 94.696 27.451 93.808 28.29C92.919 29.131 91.867 29.78 90.649 30.238C89.43 30.696 88.136 30.925 86.765 30.925C85.395 30.925 84.101 30.696 82.883 30.238C81.664 29.78 80.611 29.131 79.723 28.29C78.834 27.451 78.124 26.446 77.591 25.275C77.084 24.078 76.83 22.755 76.83 21.304ZM81.398 21.304C81.398 22.017 81.512 22.705 81.74 23.366C81.994 24.028 82.349 24.613 82.806 25.122C83.289 25.631 83.86 26.038 84.519 26.343C85.179 26.65 85.928 26.802 86.765 26.802C87.603 26.802 88.352 26.65 89.012 26.343C89.672 26.038 90.23 25.631 90.687 25.122C91.169 24.613 91.524 24.028 91.753 23.366C92.007 22.705 92.133 22.017 92.133 21.304C92.133 20.592 92.007 19.905 91.753 19.243C91.524 18.581 91.169 17.996 90.687 17.486C90.23 16.977 89.672 16.57 89.012 16.265C88.352 15.96 87.603 15.806 86.765 15.806C85.928 15.806 85.179 15.96 84.519 16.265C83.86 16.57 83.289 16.977 82.806 17.486C82.349 17.996 81.994 18.581 81.74 19.243C81.512 19.905 81.398 20.592 81.398 21.304ZM113.465 17.64C112.932 17.08 112.374 16.634 111.79 16.303C111.206 15.972 110.61 15.806 110.001 15.806C109.163 15.806 108.414 15.96 107.755 16.265C107.095 16.57 106.524 16.977 106.042 17.486C105.585 17.996 105.23 18.581 104.976 19.243C104.747 19.905 104.633 20.592 104.633 21.304C104.633 22.017 104.747 22.705 104.976 23.366C105.23 24.028 105.585 24.613 106.042 25.122C106.524 25.631 107.095 26.038 107.755 26.343C108.414 26.65 109.163 26.802 110.001 26.802C110.712 26.802 111.372 26.662 111.981 26.382C112.59 26.076 113.11 25.644 113.541 25.084L116.586 28.367C116.13 28.825 115.597 29.22 114.988 29.55C114.404 29.881 113.808 30.148 113.199 30.352C112.59 30.556 112.006 30.696 111.447 30.773C110.889 30.874 110.407 30.925 110.001 30.925C108.631 30.925 107.336 30.696 106.118 30.238C104.9 29.78 103.847 29.131 102.958 28.29C102.071 27.451 101.36 26.446 100.827 25.275C100.318 24.078 100.065 22.755 100.065 21.304C100.065 19.854 100.318 18.543 100.827 17.372C101.36 16.176 102.071 15.157 102.958 14.318C103.847 13.478 104.9 12.829 106.118 12.371C107.336 11.913 108.631 11.683 110.001 11.683C111.169 11.683 112.336 11.913 113.504 12.371C114.696 12.803 115.737 13.503 116.625 14.471L113.465 17.64ZM123.911 14.7H123.988C124.343 13.936 124.965 13.249 125.854 12.638C126.767 12.002 127.935 11.683 129.356 11.683C130.573 11.683 131.602 11.887 132.439 12.294C133.302 12.702 134 13.236 134.532 13.898C135.066 14.56 135.446 15.323 135.675 16.188C135.903 17.054 136.018 17.957 136.018 18.899V30.467H131.449V21.19C131.449 20.681 131.424 20.121 131.373 19.51C131.322 18.874 131.182 18.289 130.954 17.754C130.751 17.194 130.421 16.736 129.964 16.38C129.508 15.998 128.886 15.806 128.099 15.806C127.338 15.806 126.691 15.934 126.158 16.188C125.651 16.443 125.219 16.787 124.863 17.219C124.534 17.652 124.293 18.148 124.14 18.708C123.988 19.268 123.911 19.854 123.911 20.465V30.467H119.344V1.60501H123.911V14.7ZM144.858 22.908C145.01 24.282 145.544 25.351 146.457 26.114C147.371 26.878 148.474 27.26 149.769 27.26C150.911 27.26 151.863 27.031 152.624 26.573C153.411 26.09 154.096 25.491 154.68 24.778L157.954 27.26C156.888 28.583 155.695 29.525 154.375 30.085C153.056 30.645 151.672 30.925 150.226 30.925C148.855 30.925 147.561 30.696 146.342 30.238C145.124 29.78 144.072 29.131 143.183 28.29C142.295 27.451 141.584 26.446 141.051 25.275C140.543 24.078 140.29 22.755 140.29 21.304C140.29 19.854 140.543 18.543 141.051 17.372C141.584 16.176 142.295 15.157 143.183 14.318C144.072 13.478 145.124 12.829 146.342 12.371C147.561 11.913 148.855 11.683 150.226 11.683C151.495 11.683 152.65 11.913 153.69 12.371C154.756 12.803 155.657 13.44 156.392 14.28C157.154 15.12 157.738 16.163 158.144 17.41C158.575 18.632 158.791 20.044 158.791 21.648V22.908H144.858ZM154.223 19.472C154.197 18.123 153.779 17.067 152.967 16.303C152.155 15.514 151.025 15.12 149.578 15.12C148.208 15.12 147.117 15.514 146.305 16.303C145.518 17.092 145.036 18.148 144.858 19.472H154.223Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18jgqqi\",\"data-framer-name\":\"Instant\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:168,pixelWidth:664,positionX:\"center\",positionY:\"center\",sizes:\"166px\",src:\"https://framerusercontent.com/images/S9pDs5guHZ3CVs17gQ1Hb6oX8.png\",srcSet:\"https://framerusercontent.com/images/S9pDs5guHZ3CVs17gQ1Hb6oX8.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9pDs5guHZ3CVs17gQ1Hb6oX8.png 664w\"},className:\"framer-1xz4gxo\",\"data-framer-name\":\"image (3) 1\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:46,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sTJBrgvPOgI9xvL45JinnaOig.png\"},className:\"framer-g8q0lz\",\"data-framer-name\":\"Alcanside Logo\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w3m2uv\",\"data-framer-name\":\"Main Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jx7eum\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1bfm4\",\"data-framer-name\":\"USP's\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17wlitr\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sjrcfo\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xgkqqb\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.1668 6.58289L5.8335 22.9162\" stroke=\"#00A210\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.58317 11.2496C9.194 11.2496 10.4998 9.94376 10.4998 8.33293C10.4998 6.7221 9.194 5.41626 7.58317 5.41626C5.97234 5.41626 4.6665 6.7221 4.6665 8.33293C4.6665 9.94376 5.97234 11.2496 7.58317 11.2496Z\" stroke=\"#00A210\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M20.4167 24.0829C22.0275 24.0829 23.3333 22.7771 23.3333 21.1662C23.3333 19.5554 22.0275 18.2496 20.4167 18.2496C18.8058 18.2496 17.5 19.5554 17.5 21.1662C17.5 22.7771 18.8058 24.0829 20.4167 24.0829Z\" stroke=\"#00A210\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4fu22\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"Higher Margins, Higher scale\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"Higher margins, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"Higher scale\"})]}),className:\"framer-nu2d6u\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Cutting costs is the first step towards higher profits. Leverage our buying power, local network, and in-depth expertise of the Chinese market to expand worldwide with higher margins.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Cutting costs is the first step towards higher profits. Leverage our buying power, local network, and in-depth expertise of the Chinese market to expand worldwide with higher margins.\"})}),className:\"framer-1yyiuj0\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jl1rz6\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h02cpg\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b9eynq\",\"data-framer-name\":\"Frame\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 8.75 5.725 L 19.25 11.733\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(0,162,16)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 24.5 10.077 C 24.5 9.667 24.392 9.266 24.187 8.911 C 23.982 8.557 23.688 8.263 23.333 8.058 L 15.167 3.392 C 14.812 3.187 14.41 3.079 14 3.079 C 13.59 3.079 13.188 3.187 12.833 3.392 L 4.667 8.058 C 4.312 8.263 4.018 8.557 3.813 8.911 C 3.608 9.266 3.5 9.667 3.5 10.077 L 3.5 19.41 C 3.5 19.819 3.608 20.221 3.813 20.575 C 4.018 20.93 4.312 21.224 4.667 21.428 L 12.833 26.095 C 13.188 26.3 13.59 26.407 14 26.407 C 14.41 26.407 14.812 26.3 15.167 26.095 L 23.333 21.428 C 23.688 21.224 23.982 20.93 24.187 20.575 C 24.392 20.221 24.5 19.819 24.5 19.41 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(0,162,16)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 3.85 8.91 L 14 14.743 L 24.15 8.91\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(0,162,16)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 14 26.41 L 14 14.743\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(0,162,16)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8954911798,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsoakk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"No more cash tied in inventory\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"No more cash tied \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"in inventory\"})})]}),className:\"framer-b89xxn\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"With local stock inbound speed, there is neither overstock nor under stock, turning the overstored inventory in your local warehouse into accessible funds.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"With local stock inbound speed, there is neither overstock nor under stock, turning the overstored inventory in your local warehouse into accessible funds.\"})}),className:\"framer-1ac1v9a\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eyqoh6\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e58rs7\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jnlti7\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.66674 17.0734C4.44596 17.0742 4.22951 17.0123 4.04252 16.8949C3.85553 16.7775 3.70568 16.6095 3.61038 16.4103C3.51508 16.2112 3.47825 15.9891 3.50416 15.7698C3.53006 15.5506 3.61765 15.3432 3.75674 15.1717L15.3067 3.27175C15.3934 3.17174 15.5114 3.10416 15.6416 3.0801C15.7717 3.05604 15.9061 3.07693 16.0228 3.13933C16.1394 3.20174 16.2314 3.30196 16.2836 3.42354C16.3358 3.54512 16.3452 3.68083 16.3101 3.80841L14.0701 10.8317C14.004 11.0085 13.9818 11.1987 14.0054 11.3859C14.029 11.5732 14.0977 11.7519 14.2055 11.9067C14.3133 12.0616 14.4571 12.188 14.6246 12.2751C14.792 12.3622 14.978 12.4074 15.1667 12.4067H23.3334C23.5542 12.406 23.7706 12.4679 23.9576 12.5853C24.1446 12.7026 24.2945 12.8707 24.3898 13.0698C24.4851 13.269 24.5219 13.4911 24.496 13.7103C24.4701 13.9296 24.3825 14.137 24.2434 14.3084L12.6934 26.2084C12.6068 26.3084 12.4887 26.376 12.3586 26.4001C12.2285 26.4241 12.0941 26.4032 11.9774 26.3408C11.8607 26.2784 11.7687 26.1782 11.7165 26.0566C11.6643 25.935 11.655 25.7993 11.6901 25.6717L13.9301 18.6484C13.9961 18.4716 14.0183 18.2815 13.9947 18.0942C13.9711 17.907 13.9025 17.7283 13.7946 17.5734C13.6868 17.4185 13.543 17.2921 13.3756 17.2051C13.2082 17.118 13.0221 17.0728 12.8334 17.0734H4.66674Z\" stroke=\"#00A210\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t8pqpn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"2 to 3 months faster to market\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"2 to 3 months faster to market\"})})}),className:\"framer-1kz3v1d\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Get your products to the market in a snap, allowing you to immediately sell inventory and new product batches. Save both money and time.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Get your products to the market in a snap, allowing you to immediately sell inventory and new product batches. Save both money and time.\"})}),className:\"framer-16fap5p\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8i2e2\",\"data-border\":true,\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsmfqk\",\"data-framer-name\":\"Frame 1000002164\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Explore all benefits as a DTC brand owner\"})})}),fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Explore all benefits as a DTC brand owner\"})})}),className:\"framer-6lqzdn\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.8)\"},children:[\"Making the switch to direct fulfillment from China comes with lots of benefits for brand owners. Click \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(1, 163, 15)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"pricing & benefits\"})}),\" to see what this can do for your brand. \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.8)\"},children:[\"Making the switch to direct fulfillment from China comes with lots of benefits for brand owners. Click \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(1, 163, 15)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"pricing & benefits\"})}),\" to see what this can do for your brand. \"]})}),className:\"framer-1bv6p2m\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 80px)`,y:(componentViewport?.y||0)+0+1058+16+0+0+1035+24+270},qUSJzXXOP:{y:(componentViewport?.y||0)+0+1117.8+32+0+0+1763+32+282}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+1048.8+32+0+0+461+32+221,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tsvigz-container\",nodeId:\"IvXofmb9D\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{kW5U6sy4Y:resolvedLinks[2],style:{width:\"100%\"}},qUSJzXXOP:{kW5U6sy4Y:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"IvXofmb9D\",kW5U6sy4Y:resolvedLinks[0],layoutId:\"IvXofmb9D\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nv3ati\",\"data-framer-name\":\"Global Scale\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dxw6g\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nk3rd2\",\"data-border\":true,\"data-framer-name\":\"Box\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:652,intrinsicWidth:996,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2815+0+0+16+-32),pixelHeight:652,pixelWidth:996,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1px) + 900px)`,src:\"https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg\",srcSet:\"https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg 996w\"}},qUSJzXXOP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:652,intrinsicWidth:996,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3345.8+0+0+60+-41),pixelHeight:652,pixelWidth:996,positionX:\"center\",positionY:\"center\",sizes:\"1361px\",src:\"https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg\",srcSet:\"https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg 996w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:652,intrinsicWidth:996,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1913.8+0+0+60+-41),pixelHeight:652,pixelWidth:996,positionX:\"center\",positionY:\"center\",sizes:\"1361px\",src:\"https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg\",srcSet:\"https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/54XDcx0RIvZXBIwNiNCFH1t8aw.svg 996w\"},className:\"framer-q4sd0q\",\"data-framer-name\":\"World Map\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11dbf68 hidden-yygsas\",\"data-framer-name\":\"Frame 1000002172\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fe89bz\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i57sie\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l1ys1\",\"data-framer-name\":\"Frame 5177\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16kircc\",\"data-framer-name\":\"Badge\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19revfj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4223_68360)\">\\n<path d=\"M8.00016 15.4067C11.6821 15.4067 14.6668 12.4219 14.6668 8.74003C14.6668 5.05813 11.6821 2.07336 8.00016 2.07336C4.31826 2.07336 1.3335 5.05813 1.3335 8.74003C1.3335 12.4219 4.31826 15.4067 8.00016 15.4067Z\" stroke=\"#005809\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.00016 2.07336C6.28832 3.8708 5.3335 6.25786 5.3335 8.74003C5.3335 11.2222 6.28832 13.6093 8.00016 15.4067C9.71201 13.6093 10.6668 11.2222 10.6668 8.74003C10.6668 6.25786 9.71201 3.8708 8.00016 2.07336Z\" stroke=\"#005809\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M1.3335 8.73999H14.6668\" stroke=\"#005809\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4223_68360\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0 0.73999)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 87, 8)\"},children:\"Global Scale\"})}),className:\"framer-qtmldf\",\"data-framer-name\":\"Label\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ygzw9e\",\"data-framer-name\":\"Heading and subheading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Start scaling globally \"}),\"shipping to over 65+ countries.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Start scaling globally \"}),\"shipping to over 65+ countries.\"]})}),className:\"framer-1cwyqvp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(69, 72, 79)\"},children:\"Ecomflow partners with the best logistics companies worldwide, offering the option to hide the China origin of shipments displaying local carrier. Providing strong shipping lines and a premium local experience for customers.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(69, 72, 79)\"},children:\"Ecomflow partners with the best logistics companies worldwide, offering the option to hide the China origin of shipments displaying local carrier. Providing strong shipping lines and a premium local experience for customers.\"})}),className:\"framer-oj7i9i\",\"data-framer-name\":\"Description\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xw35d\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-is4oc3\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ktce1\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lck1y1\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.13 17.5H19.8333C19.2145 17.5 18.621 17.7458 18.1834 18.1834C17.7458 18.621 17.5 19.2145 17.5 19.8333V25.13\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.16699 3.89667V5.83333C8.16699 6.76159 8.53574 7.65183 9.19212 8.30821C9.8485 8.96459 10.7387 9.33333 11.667 9.33333C12.2858 9.33333 12.8793 9.57917 13.3169 10.0168C13.7545 10.4543 14.0003 11.0478 14.0003 11.6667C14.0003 12.95 15.0503 14 16.3337 14C16.9525 14 17.546 13.7542 17.9836 13.3166C18.4212 12.879 18.667 12.2855 18.667 11.6667C18.667 10.3833 19.717 9.33333 21.0003 9.33333H24.6987\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M12.8333 25.6083V21C12.8333 20.3811 12.5874 19.7876 12.1498 19.3501C11.7123 18.9125 11.1188 18.6666 10.4999 18.6666C9.8811 18.6666 9.2876 18.4208 8.85002 17.9832C8.41243 17.5456 8.1666 16.9522 8.1666 16.3333V15.1666C8.1666 14.5478 7.92077 13.9543 7.48318 13.5167C7.0456 13.0791 6.45211 12.8333 5.83327 12.8333H2.3916\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M13.9997 25.6666C20.443 25.6666 25.6663 20.4433 25.6663 14C25.6663 7.55666 20.443 2.33331 13.9997 2.33331C7.55635 2.33331 2.33301 7.55666 2.33301 14C2.33301 20.4433 7.55635 25.6666 13.9997 25.6666Z\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yc748h\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"4 to 10 days worldwide\"})}),className:\"framer-1tjg06c\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v4t6c4\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-70a03j\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-obp3l8\",\"data-framer-name\":\"graphic\",fill:\"rgb(1, 162, 15)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-send\"><path d=\"m22 2-7 20-4-9-9-4Zm0 0L11 13\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uu0nip\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Ship to over 65 countries\"})}),className:\"framer-u0xyp4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fjvztf\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ej5ijq\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ib84gv\",\"data-framer-name\":\"graphic\",fill:\"rgb(1, 162, 15)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-truck\"><path d=\"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2m10 0H9m10 0h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14\"/><circle cx=\"17\" cy=\"18\" r=\"2\"/><circle cx=\"7\" cy=\"18\" r=\"2\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1exfeep\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Domestic delivery\"})}),className:\"framer-czln3f\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wxfobb\",\"data-framer-name\":\"Partner Slider\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n346c\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s57hq4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 31, 4)\"},children:[\"Meet some of our\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 31, 4, 0.5)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 159, 15)\"},children:\"partners\"})]})}),className:\"framer-xpinfs\",\"data-framer-name\":\"Our partners\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 72, 79)\"},children:\"Ecomflow has partnered with top companies in their industries to provide an enhanced experience for all our customers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(69, 72, 79)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 72, 79)\"},children:\"Ecomflow has partnered with top companies in their industries to provide an enhanced experience for all our customers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(69, 72, 79)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-qb8sw9\",\"data-framer-name\":\"Description\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-deli0q\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8sldpb-container\",isModuleExternal:true,nodeId:\"PWtEOdEvr\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"PWtEOdEvr\",layoutId:\"PWtEOdEvr\",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:89,intrinsicWidth:162,pixelHeight:178,pixelWidth:324,src:\"https://framerusercontent.com/images/tjZ3bbmsT3Ga1mZzE2cuQbKb3eM.png\"},className:\"framer-hh1a9z\",\"data-framer-name\":\"1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:70,intrinsicWidth:146,pixelHeight:140,pixelWidth:292,src:\"https://framerusercontent.com/images/XaLAkZn8h4yDvwC1j83XbZgJc8.png\"},className:\"framer-163zqzf\",\"data-framer-name\":\"2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:500,pixelHeight:500,pixelWidth:1e3,sizes:\"500px\",src:\"https://framerusercontent.com/images/SWGAHbf9drghXYrQegrlmRuU0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SWGAHbf9drghXYrQegrlmRuU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SWGAHbf9drghXYrQegrlmRuU0.png 1000w\"},className:\"framer-1hrqsol\",\"data-framer-name\":\"4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:252.5,intrinsicWidth:360,pixelHeight:505,pixelWidth:720,sizes:\"360px\",src:\"https://framerusercontent.com/images/K3GG0vrDhYYQ7U2qnlaofuGgE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/K3GG0vrDhYYQ7U2qnlaofuGgE.png?scale-down-to=512 512w,https://framerusercontent.com/images/K3GG0vrDhYYQ7U2qnlaofuGgE.png 720w\"},className:\"framer-8e8zlt\",\"data-framer-name\":\"5\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18jgqqi\",\"data-framer-name\":\"Instant\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:168,pixelWidth:664,positionX:\"center\",positionY:\"center\",sizes:\"166px\",src:\"https://framerusercontent.com/images/S9pDs5guHZ3CVs17gQ1Hb6oX8.png\",srcSet:\"https://framerusercontent.com/images/S9pDs5guHZ3CVs17gQ1Hb6oX8.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9pDs5guHZ3CVs17gQ1Hb6oX8.png 664w\"},className:\"framer-1xz4gxo\",\"data-framer-name\":\"image (3) 1\"})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ebip9\",\"data-framer-name\":\"Ecomflow Inventory\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ac8w0f\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7uj4z\",\"data-border\":true,\"data-framer-name\":\"Box\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c0jbd0\",\"data-framer-name\":\"Frame 16\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:971,intrinsicWidth:1456.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7001.6+16+0+0+0+24+0+24),pixelHeight:1942,pixelWidth:2913,sizes:\"462px\",src:\"https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg 2913w\"}},qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:971,intrinsicWidth:1456.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4612.8+40+0+0+0+32+58),pixelHeight:1942,pixelWidth:2913,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 168px) / 2, 1px) + 534px)`,src:\"https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg 2913w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:971,intrinsicWidth:1456.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3180.8+10+0+0+212.5+50),pixelHeight:1942,pixelWidth:2913,sizes:`calc(max((max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 64px, 1px) - 104px) / 2, 1px) + 288px)`,src:\"https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QO7fiG8tmBjcTbXUp0cmb9sgU.jpg 2913w\"},className:\"framer-kwr6q3\",\"data-framer-name\":\"cwdnjcewncewnew\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnc4m4\",\"data-framer-name\":\"Frame 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14liyqx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99ghdn\",\"data-framer-name\":\"EcomflowQuote Logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-omwy9n\",\"data-framer-name\":\"Frame 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:124,svg:'<svg width=\"124\" height=\"29\" viewBox=\"0 0 124 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_4223_68712)\">\\n<circle cx=\"13.4491\" cy=\"14.7475\" r=\"9.60733\" fill=\"white\" fill-opacity=\"0.2\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_4223_68712)\">\\n<path d=\"M24.4002 14.3382L15.3485 26.3256C14.9366 26.8711 14.085 26.7479 13.8446 26.108L10.2699 16.5901C9.97567 15.8068 10.1135 14.9266 10.633 14.2708L20.2277 2.15871C20.5999 1.68883 21.3443 1.81578 21.5398 2.38246L24.7982 11.8292C25.0915 12.6796 24.9423 13.6203 24.4002 14.3382Z\" fill=\"url(#paint0_linear_4223_68712)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M24.2154 14.1987L15.1637 26.1861C14.8618 26.5859 14.2376 26.4956 14.0614 26.0265L10.4867 16.5087C10.221 15.8015 10.3455 15.0068 10.8146 14.4146L20.4092 2.30251C20.6678 1.97603 21.185 2.06423 21.3209 2.45797L24.5792 11.9047C24.8474 12.6822 24.711 13.5423 24.2154 14.1987Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.463165\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M24.2154 14.1987L15.1637 26.1861C14.8618 26.5859 14.2376 26.4956 14.0614 26.0265L10.4867 16.5087C10.221 15.8015 10.3455 15.0068 10.8146 14.4146L20.4092 2.30251C20.6678 1.97603 21.185 2.06423 21.3209 2.45797L24.5792 11.9047C24.8474 12.6822 24.711 13.5423 24.2154 14.1987Z\" stroke=\"url(#paint1_radial_4223_68712)\" stroke-opacity=\"0.4\" stroke-width=\"0.463165\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_4223_68712)\">\\n<path d=\"M16.2512 15.1516L7.22012 27.1118C6.80822 27.6573 5.95655 27.534 5.71622 26.8941L2.14144 17.3762C1.84725 16.5929 1.98508 15.7128 2.50462 15.0569L12.0992 2.94484C12.4715 2.47496 13.2159 2.60191 13.4114 3.16859L16.6586 12.583C16.9589 13.4537 16.8062 14.4166 16.2512 15.1516Z\" fill=\"url(#paint2_linear_4223_68712)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M16.0664 15.0121L7.0353 26.9722C6.7334 27.372 6.10917 27.2817 5.93302 26.8127L2.35824 17.2948C2.09261 16.5876 2.21706 15.7929 2.68615 15.2007L12.2808 3.08864C12.5394 2.76217 13.0566 2.85037 13.1924 3.2441L16.4397 12.6586C16.7148 13.4563 16.5749 14.3386 16.0664 15.0121Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.463165\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M16.0664 15.0121L7.0353 26.9722C6.7334 27.372 6.10917 27.2817 5.93302 26.8127L2.35824 17.2948C2.09261 16.5876 2.21706 15.7929 2.68615 15.2007L12.2808 3.08864C12.5394 2.76217 13.0566 2.85037 13.1924 3.2441L16.4397 12.6586C16.7148 13.4563 16.5749 14.3386 16.0664 15.0121Z\" stroke=\"url(#paint3_radial_4223_68712)\" stroke-opacity=\"0.4\" stroke-width=\"0.463165\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<path d=\"M43.2883 18.3702H35.3481C35.6344 19.8139 36.7311 20.5895 38.2665 20.5895C39.3632 20.5895 40.4391 20.1013 41.0302 19.2579L42.7411 20.5685C41.7967 22.0776 39.9774 22.921 38.1118 22.921C35.0618 22.921 32.7368 20.7017 32.7368 17.4615C32.7368 14.2212 35.1727 12.0229 38.1118 12.0229C41.051 12.0229 43.3321 14.1325 43.3321 17.3727C43.3321 17.66 43.309 17.9941 43.2883 18.3725V18.3702ZM40.8086 16.5714C40.6539 15.151 39.5595 14.3077 38.1326 14.3077C36.7057 14.3077 35.6529 14.9968 35.3458 16.5714H40.8086Z\" fill=\"black\"/>\\n<path d=\"M43.9375 17.4615C43.9375 14.1769 46.535 12.0229 49.4792 12.0229C51.2476 12.0229 52.6876 12.8219 53.6246 14.0203L51.8356 15.4641C51.3119 14.8193 50.4392 14.4198 49.5229 14.4198C47.7568 14.4198 46.489 15.707 46.489 17.4615C46.489 19.2159 47.7545 20.5241 49.5229 20.5241C50.4392 20.5241 51.3119 20.1246 51.8356 19.4799L53.6246 20.9236C52.6853 22.122 51.2453 22.921 49.4792 22.921C46.535 22.921 43.9375 20.746 43.9375 17.4615Z\" fill=\"black\"/>\\n<path d=\"M53.9272 17.4615C53.9272 14.1769 56.4498 12.0229 59.3647 12.0229C62.2796 12.0229 64.8253 14.1769 64.8253 17.4615C64.8253 20.746 62.2819 22.921 59.3647 22.921C56.4475 22.921 53.9272 20.746 53.9272 17.4615ZM62.2589 17.4615C62.2589 15.686 60.9433 14.4198 59.3647 14.4198C57.7861 14.4198 56.4914 15.686 56.4914 17.4615C56.4914 19.2369 57.7861 20.5241 59.3647 20.5241C60.9433 20.5241 62.2589 19.2813 62.2589 17.4615Z\" fill=\"black\"/>\\n<path d=\"M82.6854 16.8214V22.6136H80.1514V16.9541C80.1514 15.2949 79.2936 14.4338 78.1019 14.4338C76.6251 14.4338 75.7882 15.4508 75.7882 17.5079V22.6159H73.2333V16.9564C73.2333 15.3205 72.3755 14.4362 71.2719 14.4362C70.0826 14.4362 68.8933 15.1436 68.8933 17.1123V22.6183H66.3384V12.2882H68.8933V13.88C69.3338 12.6862 70.6993 12.0229 71.9559 12.0229C73.4535 12.0229 74.6661 12.7955 75.2828 14.1011C76.0965 12.486 77.7055 12.0229 78.7418 12.0229C81.3199 12.0229 82.6854 13.8148 82.6854 16.8214Z\" fill=\"black\"/>\\n<path d=\"M94.795 22.616H92.241V8.97477H90.0866C88.3317 8.97477 87.8223 9.95382 87.8434 11.2233V12.2258H90.152V14.2729H87.8434V22.6183H85.2683V14.2729H83.2915V12.2258H85.2683V11.3592C85.2683 8.3775 86.689 6.57397 89.5748 6.57397H94.7926V22.6183L94.795 22.616Z\" fill=\"black\"/>\\n<path d=\"M96.0054 17.4615C96.0054 14.1769 98.5279 12.0229 101.443 12.0229C104.358 12.0229 106.903 14.1769 106.903 17.4615C106.903 20.746 104.36 22.921 101.443 22.921C98.5256 22.921 96.0054 20.746 96.0054 17.4615ZM104.337 17.4615C104.337 15.686 103.021 14.4198 101.443 14.4198C99.8642 14.4198 98.5695 15.686 98.5695 17.4615C98.5695 19.2369 99.8642 20.5241 101.443 20.5241C103.021 20.5241 104.337 19.2813 104.337 17.4615Z\" fill=\"black\"/>\\n<path d=\"M120.472 12.3257H123.251L119.518 22.6183H117.34L114.916 15.5872L112.605 22.6183H110.448L106.602 12.3257H109.381L111.582 18.9601L113.781 12.3257H116.072L118.271 18.9601L120.472 12.3257Z\" fill=\"black\"/>\\n<defs>\\n<filter id=\"filter0_f_4223_68712\" x=\"-9.28823\" y=\"-7.98989\" width=\"45.4749\" height=\"45.4746\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"6.56501\" result=\"effect1_foregroundBlur_4223_68712\"/>\\n</filter>\\n<filter id=\"filter1_bd_4223_68712\" x=\"8.4966\" y=\"0.326967\" width=\"18.5334\" height=\"28.5049\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.38597\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_4223_68712\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.231582\" dy=\"0.308776\"/>\\n<feGaussianBlur stdDeviation=\"0.926329\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_4223_68712\" result=\"effect2_dropShadow_4223_68712\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_4223_68712\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_4223_68712\" x=\"0.0594054\" y=\"0.881518\" width=\"18.9888\" height=\"28.968\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.733344\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_4223_68712\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.154388\" dy=\"0.308776\"/>\\n<feGaussianBlur stdDeviation=\"1.04212\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_4223_68712\" result=\"effect2_dropShadow_4223_68712\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_4223_68712\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_4223_68712\" x1=\"13.6723\" y1=\"8.80805\" x2=\"20.3569\" y2=\"32.0829\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C814\"/>\\n<stop offset=\"1\" stop-color=\"#00C814\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint1_radial_4223_68712\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(10.1996 12.3416) rotate(21.3102) scale(12.7038 6.31765)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<linearGradient id=\"paint2_linear_4223_68712\" x1=\"5.54387\" y1=\"9.59418\" x2=\"12.2285\" y2=\"32.869\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C814\"/>\\n<stop offset=\"1\" stop-color=\"#00C814\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint3_radial_4223_68712\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(2.07118 13.1278) rotate(21.3102) scale(12.7038 6.31765)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19.99px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"inventory\"})}),className:\"framer-15gp71v\",\"data-framer-name\":\"inventory\",fonts:[\"CUSTOM;Geist Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 13, 13)\"},children:\"Stay up to date \"}),\"around the clock.\"]})})},qUSJzXXOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 13, 13)\"},children:\"Stay up to date \"}),\"around the clock.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 13, 13)\"},children:\"Stay up to date \"}),\"around the clock.\"]})}),className:\"framer-1yrszcx\",\"data-framer-name\":\"Know exactly what\u2019s happening\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"We understand the importance of knowing what is happening when, get direct access to your stock at any time of the day. Ecomflow is actively building software solutions synced with our warehouse activities.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"We understand the importance of knowing what is happening when, get direct access to your stock at any time of the day. Ecomflow is actively building software solutions synced with our warehouse activities.\"})}),className:\"framer-17b09d2\",\"data-framer-name\":\"Experience the undeniable advantage fulfilling your e-commerce orders directly from China to the doorstep.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nx673p\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11l5vta\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1au6jq2\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xilvct\",\"data-framer-name\":\"graphic\",fill:\"rgb(1, 162, 15)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-user\"><path d=\"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\"/><circle cx=\"12\" cy=\"7\" r=\"4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10qctpb\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Brand account with 24/7 access\"})}),className:\"framer-157jvp2\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jvtv11\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b2rntx\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1385ail\",\"data-framer-name\":\"graphic\",fill:\"rgb(1, 162, 15)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-bell-ring\"><path d=\"M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9m4.3 13a1.94 1.94 0 0 0 3.4 0M4 2C2.8 3.7 2 5.7 2 8m20 0c0-2.3-.8-4.3-2-6\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6iuv6u\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Live stock count with low-stock alert\"})}),className:\"framer-1jc6l6z\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjas9u\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wli6gq\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1945to2\",\"data-framer-name\":\"graphic\",fill:\"rgb(1, 162, 15)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-x\"><path d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17agn0f\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Say goodby to clumsy Excel sheets\"})}),className:\"framer-unyktx\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ul3y1e\",\"data-framer-name\":\"How it works - Top\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5669.8+0),pixelHeight:1071,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4237.8+0),pixelHeight:1071,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"},className:\"framer-m0fy61 hidden-yygsas\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-y393xo hidden-yygsas\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nkbieh\",\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pxhifr hidden-yygsas\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4u24cr\",\"data-framer-name\":\"Text CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wmtve2\",\"data-framer-name\":\"Frame 1000002411\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ncpsf0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(0, 192, 19)\"},children:\"How it works\"})}),className:\"framer-15glce2\",\"data-framer-name\":\"How it works\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-style\":\"italic\"},children:\"Worldwide, \"}),\"Seamless &  Fast.\"]})}),className:\"framer-1118veo\",\"data-framer-name\":\"Worldwide, Seamless & Fast.\",fonts:[\"Inter-SemiBold\",\"Inter-SemiBoldItalic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hjcalk\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"By locating our fulfillment center near manufacturing facilities, we are able to dramatically speed up and simplify your fulfillment process.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"By locating our fulfillment center near manufacturing facilities, we are able to dramatically speed up and simplify your fulfillment process.\"})}),className:\"framer-19il30e\",\"data-framer-name\":\"By locating our fulfillment center near manufacturing facilities, we are able to dramatically speed up and simplify your fulfillment process.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{y:(componentViewport?.y||0)+0+5669.8+96+0+0+0+0+442}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+4237.8+96+0+0+0+0+442,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vjd99y-container\",nodeId:\"Tg5DAkch7\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Button,{djcEJNgMi:\"rgb(1, 162, 15)\",height:\"100%\",i0TWNlN_q:\"https://ecomflow-3pl.typeform.com/to/m0lbQOpV#utm=website\",id:\"Tg5DAkch7\",layoutId:\"Tg5DAkch7\",nQH_kmKNi:\"Get in touch\",variant:\"x42FH767c\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-42f40 hidden-yygsas\",\"data-framer-name\":\"Steps\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ramh7e\",\"data-framer-name\":\"Frame 1000002409\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mzemqa\",\"data-framer-name\":\"Frame 1000002412\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c28zj6\",\"data-framer-name\":\"Frame 1000002414\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17dqcxc\",\"data-framer-name\":\"Frame 1000002417\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddi_9298_6622)\">\\n<rect width=\"48\" height=\"48\" rx=\"8\" fill=\"white\" fill-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"white\" stroke-opacity=\"0.06\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"url(#paint0_linear_9298_6622)\" stroke-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M26.668 21.3337V19.307C26.668 18.3603 25.7213 17.7203 24.8413 18.067L20.0013 20.0003V19.3603C20.0013 18.4003 19.028 17.747 18.148 18.1337L12.2813 20.6403C11.308 21.067 10.668 22.027 10.668 23.0937V34.667C10.668 36.1337 11.868 37.3337 13.3346 37.3337H34.668C36.1346 37.3337 37.3346 36.1337 37.3346 34.667V21.3337H26.668ZM20.0013 30.667C20.0013 31.4003 19.4013 32.0003 18.668 32.0003C17.9346 32.0003 17.3346 31.4003 17.3346 30.667V28.0003C17.3346 27.267 17.9346 26.667 18.668 26.667C19.4013 26.667 20.0013 27.267 20.0013 28.0003V30.667ZM25.3346 30.667C25.3346 31.4003 24.7346 32.0003 24.0013 32.0003C23.268 32.0003 22.668 31.4003 22.668 30.667V28.0003C22.668 27.267 23.268 26.667 24.0013 26.667C24.7346 26.667 25.3346 27.267 25.3346 28.0003V30.667ZM30.668 30.667C30.668 31.4003 30.068 32.0003 29.3346 32.0003C28.6013 32.0003 28.0013 31.4003 28.0013 30.667V28.0003C28.0013 27.267 28.6013 26.667 29.3346 26.667C30.068 26.667 30.668 27.267 30.668 28.0003V30.667ZM34.828 10.667H33.188C32.508 10.667 31.948 11.1737 31.868 11.8403L30.9346 19.3337H37.068L36.148 11.8403C36.068 11.1737 35.4946 10.667 34.828 10.667Z\" fill=\"#EAFFEC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ddi_9298_6622\" x=\"-20\" y=\"-20\" width=\"96\" height=\"96\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"7\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_9298_6622\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"4\" dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_9298_6622\" result=\"effect2_dropShadow_9298_6622\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_9298_6622\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"2\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"4.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_9298_6622\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_9298_6622\" x1=\"11.5\" y1=\"2.43386e-07\" x2=\"33.5\" y2=\"48\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your factory in China\"})}),className:\"framer-1m2wpn7\",\"data-framer-name\":\"Your factory in China\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-142qq85\",\"data-framer-name\":\"Arrow 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:92,svg:'<svg width=\"92\" height=\"2\" viewBox=\"0 0 92 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 1H91\" stroke=\"url(#paint0_linear_9298_6626)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"8 8\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_9298_6626\" x1=\"1\" y1=\"1.5\" x2=\"91\" y2=\"1.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.25\" stop-color=\"white\"/>\\n<stop offset=\"0.745\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w7ontf\",\"data-framer-name\":\"Frame 1000002416\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13ojxxv\",\"data-framer-name\":\"Frame 1000002417\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddi_9298_6628)\">\\n<rect width=\"48\" height=\"48\" rx=\"8\" fill=\"white\" fill-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"white\" stroke-opacity=\"0.06\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"url(#paint0_linear_9298_6628)\" stroke-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M37.3346 33.333V19.133C37.3346 18.0396 36.668 17.0663 35.6546 16.653L24.988 12.3863C24.348 12.133 23.6413 12.133 23.0013 12.3863L12.3346 16.653C11.3346 17.0663 10.668 18.053 10.668 19.133V33.333C10.668 34.7996 11.868 35.9996 13.3346 35.9996H17.3346V23.9996H30.668V35.9996H34.668C36.1346 35.9996 37.3346 34.7996 37.3346 33.333ZM22.668 33.333H20.0013V35.9996H22.668V33.333ZM25.3346 29.333H22.668V31.9996H25.3346V29.333ZM28.0013 33.333H25.3346V35.9996H28.0013V33.333Z\" fill=\"#EAFFEC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ddi_9298_6628\" x=\"-20\" y=\"-20\" width=\"96\" height=\"96\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"7\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_9298_6628\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"4\" dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_9298_6628\" result=\"effect2_dropShadow_9298_6628\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_9298_6628\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"2\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"4.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_9298_6628\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_9298_6628\" x1=\"11.5\" y1=\"2.43386e-07\" x2=\"33.5\" y2=\"48\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our fulfillment center in China\"})}),className:\"framer-10icqmv\",\"data-framer-name\":\"Our fulfillment center in China\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xfg5ty\",\"data-framer-name\":\"Frame 1000002414\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Air Shipment\"})}),className:\"framer-7gxitq\",\"data-framer-name\":\"Air Shipment\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p7ilzs\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.58 44H19.37L32 28H40C41.0609 28 42.0783 27.5786 42.8284 26.8284C43.5786 26.0783 44 25.0609 44 24C44 22.9391 43.5786 21.9217 42.8284 21.1716C42.0783 20.4214 41.0609 20 40 20H31.79L19.16 4H15.582L21.202 20L12 20L8 14H4L8 24L4 34H8L12 28L21.37 28L15.58 44Z\" fill=\"#D0FFD4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13bheeu\",\"data-framer-name\":\"Arrow 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:360,svg:'<svg width=\"360\" height=\"44\" viewBox=\"0 0 360 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 43.1396L3.019 42.5395C120.394 14.5769 242.72 14.7826 360 43.1396V43.1396\" stroke=\"url(#paint0_linear_9298_6632)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"8 8\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_9298_6632\" x1=\"0.5\" y1=\"43.6396\" x2=\"360\" y2=\"43.6396\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.2\"/>\\n<stop offset=\"0.41\" stop-color=\"#00A911\"/>\\n<stop offset=\"0.59\" stop-color=\"#00A911\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yic5pg\",\"data-framer-name\":\"Frame 1000002414\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2weuwz\",\"data-framer-name\":\"Frame 1000002416\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-unzv8i\",\"data-framer-name\":\"Frame 1000002417\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddi_9298_6635)\">\\n<rect width=\"48\" height=\"48\" rx=\"8\" fill=\"white\" fill-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"white\" stroke-opacity=\"0.06\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"url(#paint0_linear_9298_6635)\" stroke-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M14.6641 17.333H17.3307V30.6663H14.6641V17.333ZM26.6641 17.333H27.9974V30.6663H26.6641V17.333ZM21.3307 17.333H25.3307V30.6663H21.3307V17.333ZM18.6641 17.333H19.9974V30.6663H18.6641V17.333ZM29.3307 17.333H33.3307V30.6663H29.3307V17.333Z\" fill=\"#EAFFEC\"/>\\n<path d=\"M13.3307 14.6667H18.6641V12H13.3307C11.8601 12 10.6641 13.196 10.6641 14.6667V20H13.3307V14.6667ZM13.3307 36H18.6641V33.3333H13.3307V28H10.6641V33.3333C10.6641 34.804 11.8601 36 13.3307 36ZM34.6641 12H29.3307V14.6667H34.6641V20H37.3307V14.6667C37.3307 13.196 36.1347 12 34.6641 12ZM34.6641 33.3333H29.3307V36H34.6641C36.1347 36 37.3307 34.804 37.3307 33.3333V28H34.6641V33.3333Z\" fill=\"#EAFFEC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ddi_9298_6635\" x=\"-20\" y=\"-20\" width=\"96\" height=\"96\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"7\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_9298_6635\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"4\" dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_9298_6635\" result=\"effect2_dropShadow_9298_6635\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_9298_6635\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"2\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"4.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_9298_6635\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_9298_6635\" x1=\"11.5\" y1=\"2.43386e-07\" x2=\"33.5\" y2=\"48\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Last-mile \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"fulfillment center\"})]}),className:\"framer-1qymplu\",\"data-framer-name\":\"Last-mile fulfillment center\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bzthd\",\"data-framer-name\":\"Arrow 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:86,svg:'<svg width=\"86\" height=\"2\" viewBox=\"0 0 86 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 1L85 1\" stroke=\"url(#paint0_linear_9298_6640)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"8 8\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_9298_6640\" x1=\"1\" y1=\"1.5\" x2=\"85\" y2=\"1.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.25\" stop-color=\"white\"/>\\n<stop offset=\"0.745\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1juj0dq\",\"data-framer-name\":\"Frame 1000002417\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1sf6e4a\",\"data-framer-name\":\"Frame 1000002417\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddi_9298_6642)\">\\n<rect width=\"48\" height=\"48\" rx=\"8\" fill=\"white\" fill-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"white\" stroke-opacity=\"0.06\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"47\" height=\"47\" rx=\"7.5\" stroke=\"url(#paint0_linear_9298_6642)\" stroke-opacity=\"0.1\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M33.5307 18.6663C33.298 18.2633 32.9639 17.9282 32.5616 17.6943C32.1593 17.4604 31.7028 17.3358 31.2374 17.333H27.9974V14.6663C27.9974 14.3127 27.8569 13.9736 27.6069 13.7235C27.3568 13.4735 27.0177 13.333 26.6641 13.333H13.3307C12.6235 13.333 11.9452 13.614 11.4451 14.1141C10.945 14.6142 10.6641 15.2924 10.6641 15.9997V29.333C10.6645 29.8006 10.788 30.2599 11.022 30.6648C11.256 31.0697 11.5924 31.4059 11.9974 31.6397C11.9497 32.8774 12.3955 34.0833 13.237 34.9922C14.0784 35.9012 15.2464 36.4386 16.4841 36.4863C17.7217 36.5341 18.9277 36.0882 19.8366 35.2468C20.7455 34.4054 21.283 33.2374 21.3307 31.9997H25.4641C25.6115 33.1153 26.1593 34.1393 27.0056 34.881C27.8518 35.6228 28.9388 36.0317 30.0641 36.0317C31.1894 36.0317 32.2763 35.6228 33.1226 34.881C33.9688 34.1393 34.5166 33.1153 34.6641 31.9997C35.3713 31.9997 36.0496 31.7187 36.5497 31.2186C37.0498 30.7185 37.3307 30.0403 37.3307 29.333V25.333C37.3286 25.0898 37.2644 24.8511 37.1441 24.6397L33.5307 18.6663ZM27.9974 19.9997H31.2374L33.6374 23.9997H27.9974V19.9997ZM16.6641 33.333C16.2685 33.333 15.8818 33.2157 15.5529 32.9959C15.224 32.7762 14.9677 32.4638 14.8163 32.0984C14.6649 31.7329 14.6253 31.3308 14.7025 30.9428C14.7797 30.5549 14.9701 30.1985 15.2498 29.9188C15.5296 29.6391 15.8859 29.4486 16.2739 29.3714C16.6618 29.2943 17.064 29.3339 17.4294 29.4853C17.7949 29.6366 18.1072 29.893 18.327 30.2219C18.5468 30.5508 18.6641 30.9374 18.6641 31.333C18.6641 31.8634 18.4533 32.3721 18.0783 32.7472C17.7032 33.1223 17.1945 33.333 16.6641 33.333ZM29.9974 33.333C29.6018 33.333 29.2152 33.2157 28.8863 32.9959C28.5574 32.7762 28.301 32.4638 28.1496 32.0984C27.9983 31.7329 27.9587 31.3308 28.0358 30.9428C28.113 30.5549 28.3035 30.1985 28.5832 29.9188C28.8629 29.6391 29.2193 29.4486 29.6072 29.3714C29.9952 29.2943 30.3973 29.3339 30.7628 29.4853C31.1282 29.6366 31.4406 29.893 31.6603 30.2219C31.8801 30.5508 31.9974 30.9374 31.9974 31.333C31.9974 31.8634 31.7867 32.3721 31.4116 32.7472C31.0365 33.1223 30.5278 33.333 29.9974 33.333Z\" fill=\"#EAFFEC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ddi_9298_6642\" x=\"-20\" y=\"-20\" width=\"96\" height=\"96\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"7\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_9298_6642\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"4\" dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_9298_6642\" result=\"effect2_dropShadow_9298_6642\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_9298_6642\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"2\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"4.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.917647 0 0 0 0 1 0 0 0 0 0.92549 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_9298_6642\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_9298_6642\" x1=\"11.5\" y1=\"2.43386e-07\" x2=\"33.5\" y2=\"48\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Domestic delivery to customer\"})}),className:\"framer-1h89yma\",\"data-framer-name\":\"Domestic delivery to customer\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dytwry hidden-1jnwpjt hidden-i9ofkk\",\"data-framer-name\":\"Frame 1000002403\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 32px)`,y:(componentViewport?.y||0)+0+3732+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1324,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fou4t5-container\",nodeId:\"w8Vsyt5Nr\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(SLIDERWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"ARb1BBg7e\"},{ref:ref2,target:\"rnwr1Hipc\"},{ref:ref3,target:\"LsaLM9rtB\"},{ref:ref4,target:\"zNQk8glx5\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"w8Vsyt5Nr\",layoutId:\"w8Vsyt5Nr\",style:{width:\"100%\"},variant:\"ARb1BBg7e\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9guq71 hidden-yygsas\",\"data-framer-name\":\"1\",id:elementId,ref:ref1}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12fe3qv hidden-yygsas\",\"data-framer-name\":\"2\",id:elementId1,ref:ref2}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xylu9i hidden-yygsas\",\"data-framer-name\":\"3\",id:elementId2,ref:ref3}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oemoxy hidden-yygsas\",\"data-framer-name\":\"4\",id:elementId3,ref:ref4})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1upp61a\",\"data-framer-name\":\"Bottom Part\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q097rb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wdtxuy\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xi76oe\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(0, 192, 19)\"},children:\"Our process\"})}),className:\"framer-jy88q2\",\"data-framer-name\":\"Our process\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 28, 2)\"},children:\"Get started in a few easy steps\"})}),className:\"framer-11b1vgl\",\"data-framer-name\":\"Get started in a couple of steps\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+5156+50+0+0+0+0+353.6},qUSJzXXOP:{y:(componentViewport?.y||0)+0+6744.8+96+0+0+0+0+353.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5312.8+96+0+0+0+0+353.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-axfn4b-container\",nodeId:\"dpRLbahyc\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Button,{djcEJNgMi:\"rgb(0, 47, 4)\",height:\"100%\",i0TWNlN_q:\"https://ecomflow-3pl.typeform.com/to/m0lbQOpV#utm=website\",id:\"dpRLbahyc\",layoutId:\"dpRLbahyc\",nQH_kmKNi:\"Get started\",variant:\"x42FH767c\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ldj89g\",\"data-framer-name\":\"Steps\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13sycnn\",\"data-framer-name\":\"Step\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14tqa9r\",\"data-framer-name\":\"Frame 1000002427\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"\uD83D\uDC4B Tell us about yourself\"})}),className:\"framer-7l517n\",\"data-framer-name\":\"\uD83D\uDC4B Tell us a little bit more about yourself\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:\"Start by filling out our quick form so we can understand your needs and how we can best support you.\"})}),className:\"framer-sptt3\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+5156+50+0+0+403.6+0+0+32+272},qUSJzXXOP:{y:(componentViewport?.y||0)+0+6744.8+96+0+0+443.6+0+32+272}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5312.8+96+0+0+443.6+0+32+272,children:/*#__PURE__*/_jsx(Container,{className:\"framer-184mtab-container\",nodeId:\"vkI_uEAl1\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Button,{djcEJNgMi:\"rgb(0, 47, 4)\",height:\"100%\",i0TWNlN_q:\"https://ecomflow-3pl.typeform.com/to/m0lbQOpV#utm=website\",id:\"vkI_uEAl1\",layoutId:\"vkI_uEAl1\",nQH_kmKNi:\"Get started\",variant:\"vGC4Wj4Np\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a68o6b\",\"data-framer-name\":\"Step\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w1ec7e\",\"data-framer-name\":\"Frame 1000002427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"\uD83D\uDC68\u200D\uD83D\uDCBB We\u2019ll help you get set up seamlessly\"})}),className:\"framer-ptftz1\",\"data-framer-name\":\"\uD83D\uDC4B Tell us a little bit more about yourself\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:\"Our team will help set up your Shopify store, prepare inbound stock, and align your systems with ours.\"})}),className:\"framer-9hkzru\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8p6x48\",\"data-framer-name\":\"Step\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xxe0ge\",\"data-framer-name\":\"Frame 1000002427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"\uD83D\uDCE6 Inbound your stock to our warehouse\"})}),className:\"framer-ukkc3l\",\"data-framer-name\":\"\uD83D\uDC4B Tell us a little bit more about yourself\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:\"Send your inventory to our warehouse, and we\u2019ll ensure it\u2019s ready for seamless fulfillment.\"})}),className:\"framer-1r5ip03\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u89fxf\",\"data-framer-name\":\"Step\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qj09ix\",\"data-framer-name\":\"Frame 1000002427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\"},children:\"\u2708\uFE0F Ship globally to 65+ countries\"})}),className:\"framer-tcupc5\",\"data-framer-name\":\"\uD83D\uDC4B Tell us a little bit more about yourself\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:\"We\u2019ll fulfill your orders to 65+ countries, offering customers a seamless domestic delivery experience.\"})}),className:\"framer-wo07lh\",\"data-framer-name\":\"Start by filling out our quick form so we can understand your needs and how we can best support you.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ium69 hidden-yygsas\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19mjrl6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oua4vb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 138, 2)\"},children:\"Testimonials\"})}),className:\"framer-ie4nne\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-SemiBoldItalic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"What other brands say about working with Ecomflow\"})}),className:\"framer-15v1fqn\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vig95e-container\",isModuleExternal:true,nodeId:\"wgZkTmKMm\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0)\",arrowGap:10,arrowPadding:35,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:28,leftArrow:\"https://framerusercontent.com/images/IGdmjoT1wtqdz7bO5qChUqDnTvo.svg\",rightArrow:\"https://framerusercontent.com/images/oLRBzCMPbacUYzbI7De2Izc8pHI.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:100,height:\"100%\",id:\"wgZkTmKMm\",intervalControl:3.9,itemAmount:1,layoutId:\"wgZkTmKMm\",padding:50,paddingBottom:0,paddingLeft:100,paddingPerSide:true,paddingRight:100,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 23, 3, 0)\",dotsBlur:0,dotsFill:\"rgb(0, 23, 3)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"939px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxpoht-container\",inComponentSlot:true,nodeId:\"IlnykYCHY\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"IlnykYCHY\",ktIgnsRLr:\"Date: 11 October 2024\",layoutId:\"IlnykYCHY\",rxaVUbZBa:\"\u201COne of the best decisions we made this year\u201D\",style:{width:\"100%\"},UXOMg7hE1:\"Musa, Co- Founder at\",variant:\"Uub8r3GMH\",wEGDKSe69:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. Packages are shipped faster and more reliably, which has made a massive difference for us. Our account manager is always super responsive and helpful whenever we have questions or need something. They really understand sourcing, supply chain improvements, and offer great advice on how to grow.\",width:\"100%\",wYMEuBCPy:\"BqhAuf9E8\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"939px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wckm81-container\",inComponentSlot:true,nodeId:\"vvP2lUgHB\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/yCkq98DroWgUTvFAEbUInNMsiMY.png\",height:\"100%\",id:\"vvP2lUgHB\",ktIgnsRLr:\"Date: 26 October 2024\",layoutId:\"vvP2lUgHB\",lU_IMJMmO:addImageAlt({pixelHeight:880,pixelWidth:958,src:\"https://framerusercontent.com/images/VDDBLNvnI71Kjr9cgkkBlYv0.jpg\",srcSet:\"https://framerusercontent.com/images/VDDBLNvnI71Kjr9cgkkBlYv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VDDBLNvnI71Kjr9cgkkBlYv0.jpg 958w\"},\"\"),rxaVUbZBa:\"\u201CWe\u2019ve got only good things to say about Ecomflow!\u201D\",style:{width:\"100%\"},UXOMg7hE1:\"Zack Chislett, Ceo at\",variant:\"Uub8r3GMH\",wEGDKSe69:\"We have been working with them for over 6 months now, and have been able to scale our business to new heights.   Personally, as a founder, I appreciate how pro-active the team is\u2026 they spot issues arising even before we see them, and it almost feels like they are an extension of our company.   We have also been able to put products to market at an extremely fast rate, and our supply chain is becoming more optimized month on month.\",width:\"100%\",wYMEuBCPy:\"BqhAuf9E8\",yF_3Uny0g:addImageAlt({pixelHeight:51,pixelWidth:191,src:\"https://framerusercontent.com/images/Pmw2xqNDaprtsn4k8CTOzFHCwE.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"939px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wdfjqo-container\",inComponentSlot:true,nodeId:\"CymPiV9AT\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/kdPlqJG6oMjjcucJsnjXpShPOHQ.jpg\",height:\"100%\",id:\"CymPiV9AT\",ktIgnsRLr:\"Date: 11 September 2024\",layoutId:\"CymPiV9AT\",lU_IMJMmO:addImageAlt({pixelHeight:976,pixelWidth:958,src:\"https://framerusercontent.com/images/mR1BoEj3kXqFknu6x8gtNSHHciA.jpg\",srcSet:\"https://framerusercontent.com/images/mR1BoEj3kXqFknu6x8gtNSHHciA.jpg 958w\"},\"\"),rxaVUbZBa:\"\u201CGenius supply-chain system\u201D\",style:{width:\"100%\"},UXOMg7hE1:\"Rai, COO at\",variant:\"Uub8r3GMH\",wEGDKSe69:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. What stands out most is how much the team actually cares about our brand's success, which is rare to find in the e-commerce space. They were the only ones who could handle our increasing order volume this summer, all while keeping everything running smoothly.\",width:\"100%\",wYMEuBCPy:\"absAgWQi2\",yF_3Uny0g:addImageAlt({pixelHeight:66,pixelWidth:326,src:\"https://framerusercontent.com/images/bCBKm5gpij8LIUSFjQRMB4an5cc.svg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"939px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q1lp6t-container\",inComponentSlot:true,nodeId:\"Edgtnu1Ic\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/Gks7sxOkEQf4myLA5lycy8yLI.png\",height:\"100%\",id:\"Edgtnu1Ic\",ktIgnsRLr:\"Date of experience: 10 July, 2024\",layoutId:\"Edgtnu1Ic\",lU_IMJMmO:addImageAlt({pixelHeight:1058,pixelWidth:958,src:\"https://framerusercontent.com/images/WgAcTGHQbrdULfe5cbD6Ob8Knn8.jpg\",srcSet:\"https://framerusercontent.com/images/WgAcTGHQbrdULfe5cbD6Ob8Knn8.jpg?scale-down-to=1024 927w,https://framerusercontent.com/images/WgAcTGHQbrdULfe5cbD6Ob8Knn8.jpg 958w\"},\"\"),rxaVUbZBa:\"\u201CThe support is great, we get responses within minutes.\u201C\",style:{width:\"100%\"},UXOMg7hE1:\"Willem Neelissen, Co-Founder at\",variant:\"Uub8r3GMH\",wEGDKSe69:\"In today\u2019s market, most brands like ours produce at least partly in China, but often don\u2019t want to acknowledge this due to false perceptions of bad quality.   With Ecomflow, we can discreetly manage this by hiding the Chinese origin. This has significantly improved our worldwide shipping since there is no long and expensive stock shipments needed to Europe.  The 24/7 support is also a great, we get responses within minutes, even on a Saturday night.\",width:\"100%\",wYMEuBCPy:\"BqhAuf9E8\",yF_3Uny0g:addImageAlt({pixelHeight:46,pixelWidth:400,src:\"https://framerusercontent.com/images/sTJBrgvPOgI9xvL45JinnaOig.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"939px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17psif5-container\",inComponentSlot:true,nodeId:\"Ht2p7DPFt\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/PAPGs8KnbaLB4JmIq5ZJxile4Rg.png\",height:\"100%\",id:\"Ht2p7DPFt\",ktIgnsRLr:\"Date: 21 September 2024\",layoutId:\"Ht2p7DPFt\",lU_IMJMmO:addImageAlt({pixelHeight:823,pixelWidth:1050,src:\"https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png\",srcSet:\"https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png 1050w\"},\"\"),rxaVUbZBa:'\"Ecomflow makes my business fundamentally more powerful\"',style:{width:\"100%\"},UXOMg7hE1:\"Monish, managing partner at\",variant:\"Uub8r3GMH\",wEGDKSe69:\"Ecomflow unlocked several things for us, most notably faster transit times from our factory to customer shipment, less capital tied up in sea freight, shorter lead time planning, and global shipping from one hub. If you combine all of these things, you have a fundamentally more powerful business.\",width:\"100%\",wYMEuBCPy:\"EILJh2uKb\",yF_3Uny0g:addImageAlt({pixelHeight:477,pixelWidth:1356,src:\"https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png\",srcSet:\"https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png 1356w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"939px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jrrsdg-container\",inComponentSlot:true,nodeId:\"lF76YdmaT\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/Jy5FAjPiM3ueXtUiCih9tFGw.png\",height:\"100%\",id:\"lF76YdmaT\",ktIgnsRLr:\"Date: 11 September 2024\",layoutId:\"lF76YdmaT\",lU_IMJMmO:addImageAlt({pixelHeight:2010,pixelWidth:2008,src:\"https://framerusercontent.com/images/P8hsyTvsx2Sk6MRfCDKAHujXbG0.png\",srcSet:\"https://framerusercontent.com/images/P8hsyTvsx2Sk6MRfCDKAHujXbG0.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/P8hsyTvsx2Sk6MRfCDKAHujXbG0.png 2008w\"},\"\"),rxaVUbZBa:\"\u201CPartnering with Ecomflow has been an absolute game-changer for our brand.\u201C\",style:{width:\"100%\"},UXOMg7hE1:\"Dylano Netscher, CEO at\",variant:\"Uub8r3GMH\",wEGDKSe69:\"Not only have we been able to cut down landed costs and improve our margins, but we can now operate on a worldwide scale while benefiting from fast shipping lines. Overall, they have brought more efficiency, transparency, and scalability to our supply chain, allowing us to focus more on growth and less on logistics. Additionally, they are always eager to offer advice and are ready to help out at any time or day.\",width:\"100%\",wYMEuBCPy:\"BqhAuf9E8\",yF_3Uny0g:addImageAlt({pixelHeight:180,pixelWidth:1287,src:\"https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png\",srcSet:\"https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png?scale-down-to=512 512w,https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png 1287w\"},\"\")})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uj2zca\",\"data-framer-name\":\"Stops\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jhzk3f\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hj0891\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zphknr\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11tbqf4\",\"data-framer-name\":\"Frame 1000002167\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13up52a\",\"data-framer-name\":\"Heading and subheading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\"},children:\"Turn 7 stops to 1 stop.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\"},children:\"Turn 7 stops to 1 stop.\"})}),className:\"framer-1dtd3cf\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Say goodbye to traditional old-fashioned fulfillment. With Ecomflow fulfillment you are able to scale worldwide based on actual demand instead of sales forecasts without having to wait 60 days with 7 stops.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Say goodbye to traditional old-fashioned fulfillment. With Ecomflow fulfillment you are able to scale worldwide based on actual demand instead of sales forecasts without having to wait 60 days with 7 stops.\"})}),className:\"framer-1vjzj04\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x173kv\",\"data-framer-name\":\"Frame 1000002168\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s644cp hidden-yygsas\",\"data-framer-name\":\"Frame 1000002126\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-unplwb\",\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxtcot\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqe7zy-container\",isAuthoredByUser:true,nodeId:\"Qx4q6Vq2o\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{amount:\"some\",replay:true,transition:{damping:60,delay:0,mass:1,stiffness:220,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:65,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"64px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"var(--token-1071fece-0429-4081-9d20-d0fff5063da5, rgb(0, 0, 0))\",endColor:\"rgb(13, 61, 0)\",mode:\"gradient\",startColor:\"rgb(6, 171, 0)\"},height:\"100%\",id:\"Qx4q6Vq2o\",layoutId:\"Qx4q6Vq2o\",prefix:\"\",start:0,suffix:\"+\",textSelect:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(15, 23, 40)\"},children:\"Countries\"})}),className:\"framer-6zjwdg\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-anabzx\",\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gw5ph4\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-55hisy-container\",isAuthoredByUser:true,nodeId:\"iPlMtgdzX\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{amount:\"some\",replay:true,transition:{damping:60,delay:0,mass:1,stiffness:220,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:98,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"64px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"var(--token-1071fece-0429-4081-9d20-d0fff5063da5, rgb(0, 0, 0))\",endColor:\"rgb(13, 61, 0)\",mode:\"gradient\",startColor:\"rgb(6, 171, 0)\"},height:\"100%\",id:\"iPlMtgdzX\",layoutId:\"iPlMtgdzX\",prefix:\"\",start:0,suffix:\"%\",textSelect:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(15, 23, 40)\"},children:\"On-Time Delivery\"})}),className:\"framer-ujqe69\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+9244.6+32+0+0+0+0+0+0+645.6+0+0},qUSJzXXOP:{y:(componentViewport?.y||0)+0+9070.4+96+0+0+0+0+0+0+467+0+144}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+7638.4+96+0+0+0+0+0+467+0+144,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhe5ut-container\",nodeId:\"lK3gjt2jI\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{BRqIxk47H:resolvedLinks1[2]},qUSJzXXOP:{BRqIxk47H:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(EmptyButton,{BRqIxk47H:resolvedLinks1[0],height:\"100%\",id:\"lK3gjt2jI\",layoutId:\"lK3gjt2jI\",PwKd2LW3f:\"Pricing & benefits\",width:\"100%\"})})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2hu0s hidden-1jnwpjt hidden-i9ofkk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-il851d\",\"data-border\":true,\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pbjgaf\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3z512o-container\",isAuthoredByUser:true,nodeId:\"qc4MGVkPf\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{amount:\"some\",replay:true,transition:{damping:60,delay:0,mass:1,stiffness:220,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:65,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"50px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"rgb(10, 39, 9)\",endColor:\"rgb(24, 117, 21)\",mode:\"gradient\",startColor:\"rgb(1, 162, 15)\"},height:\"100%\",id:\"qc4MGVkPf\",layoutId:\"qc4MGVkPf\",prefix:\"\",start:0,suffix:\"+\",textSelect:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\"},children:\"Countries\"})}),className:\"framer-wkesg4\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k3kxkc\",\"data-border\":true,\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-109qvd4\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\"},children:\"On-Time Delivery\"})}),className:\"framer-1o65q52\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kvclr4-container\",isAuthoredByUser:true,nodeId:\"ClfvBzGbW\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{amount:\"some\",replay:true,transition:{damping:60,delay:0,mass:1,stiffness:220,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:98,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"50px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"rgb(10, 39, 9)\",endColor:\"rgb(24, 117, 21)\",mode:\"gradient\",startColor:\"rgb(1, 162, 15)\"},height:\"100%\",id:\"ClfvBzGbW\",layoutId:\"ClfvBzGbW\",prefix:\"\",start:0,suffix:\"%\",textSelect:false,width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9244.6+32+0+0+0+0+698.6),pixelHeight:4256,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px)`,src:\"https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg\",srcSet:\"https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=1024 985w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=2048 1971w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=4096 3942w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg 4096w\"}},qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9070.4+96+0+0+0+0+664),pixelHeight:4256,pixelWidth:4096,sizes:\"616px\",src:\"https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg\",srcSet:\"https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=1024 985w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=2048 1971w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=4096 3942w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7638.4+96+0+0+0+1),pixelHeight:4256,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:\"616px\",src:\"https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg\",srcSet:\"https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=1024 985w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=2048 1971w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg?scale-down-to=4096 3942w,https://framerusercontent.com/images/GfG9EPuz8nWbkfxtMitQKWjKhgk.jpg 4096w\"},className:\"framer-aarqq7\",\"data-framer-name\":\"Image\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kkgklz\",\"data-framer-name\":\"Cashflow USP\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nys9p5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m9ycur\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10313.2+32+0+0+0+0+616),pixelHeight:1844,pixelWidth:2176,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px)`,src:\"https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png\",srcSet:\"https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png?scale-down-to=512 512w,https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png 2176w\"}},qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10580.4+40+0+0+0+0+0),pixelHeight:1498,pixelWidth:2176,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 64px)`,src:\"https://framerusercontent.com/images/i5h4wgf4FaKZT8ctXpW4Hto1nnM.png\",srcSet:\"https://framerusercontent.com/images/i5h4wgf4FaKZT8ctXpW4Hto1nnM.png?scale-down-to=512 512w,https://framerusercontent.com/images/i5h4wgf4FaKZT8ctXpW4Hto1nnM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i5h4wgf4FaKZT8ctXpW4Hto1nnM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i5h4wgf4FaKZT8ctXpW4Hto1nnM.png 2176w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8462.4+96+0+0+0+157.5),pixelHeight:1844,pixelWidth:2176,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 128px) / 2, 1px)`,src:\"https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png\",srcSet:\"https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png?scale-down-to=512 512w,https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yQ4XZwXrV6SDVJHsBumk0seJiic.png 2176w\"},className:\"framer-k2u4n\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vxbnj2\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m1u3lc\",\"data-framer-name\":\"Frame 1000002165\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13r4jd1\",\"data-framer-name\":\"Heading and subheading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\"},children:\"Go more lean and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:\"turn cashflow into profit\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\"},children:\"Go more lean and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:\"turn cashflow into profit\"})]}),className:\"framer-6ktzzt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"No more overstock or under stock; with us, your cash isn't tied up in transit for weeks on end. Instead, it's quickly converted back into accessible funds. We remove inventory risk by ensuring you have just the right amount of stock, always.\"})}),className:\"framer-ibcdgo\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yo5j19\",\"data-framer-name\":\"Frame 1000002166\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+10313.2+32+0+0+0+0+0+0+563+0+0},qUSJzXXOP:{y:(componentViewport?.y||0)+0+10580.4+40+0+0+0+0+352+0+755+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+8462.4+96+0+0+0+0+0+755+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i04aiv-container\",nodeId:\"eDTjQTK1d\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{BRqIxk47H:resolvedLinks2[2]},qUSJzXXOP:{BRqIxk47H:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(EmptyButton,{BRqIxk47H:resolvedLinks2[0],height:\"100%\",id:\"eDTjQTK1d\",layoutId:\"eDTjQTK1d\",PwKd2LW3f:\"Pricing & benefits\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.5,intrinsicWidth:438,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10313.2+32+0+867-311),pixelHeight:791,pixelWidth:876,sizes:\"183px\",src:\"https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png 876w\"}},qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.5,intrinsicWidth:438,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10580.4+40+0+415.627),pixelHeight:791,pixelWidth:876,sizes:\"266px\",src:\"https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png 876w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.5,intrinsicWidth:438,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8462.4+96+0+-38.5),pixelHeight:791,pixelWidth:876,sizes:\"266px\",src:\"https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/yq9hwFRSL9snYG8zZQI0ajFZ4D4.png 876w\"},className:\"framer-1viavw5\",\"data-framer-name\":\"koerfkfrferkfe\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:222,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10313.2+32+0+867-105),pixelHeight:469,pixelWidth:444,src:\"https://framerusercontent.com/images/LLstEa7XcgYmZO1zWD0X9ADNJU.png\"}},qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:222,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10580.4+40+0+58),pixelHeight:469,pixelWidth:444,src:\"https://framerusercontent.com/images/LLstEa7XcgYmZO1zWD0X9ADNJU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:222,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8462.4+96+0+776-134),pixelHeight:469,pixelWidth:444,src:\"https://framerusercontent.com/images/LLstEa7XcgYmZO1zWD0X9ADNJU.png\"},className:\"framer-1uc9ihc\",\"data-framer-name\":\"edkmmwdkeew\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15tnzq4\",\"data-framer-name\":\"Pricing Sheet\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mmgha3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6tcjzj\",\"data-framer-name\":\"Frame 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ccrvez\",\"data-framer-name\":\"Frame 1000002173\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wf0ow\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7t7e2w\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fubd01\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y8wjtz\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.13 17.5H19.8333C19.2145 17.5 18.621 17.7458 18.1834 18.1834C17.7458 18.621 17.5 19.2145 17.5 19.8333V25.13\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.16699 3.89667V5.83333C8.16699 6.76159 8.53574 7.65183 9.19212 8.30821C9.8485 8.96459 10.7387 9.33333 11.667 9.33333C12.2858 9.33333 12.8793 9.57917 13.3169 10.0168C13.7545 10.4543 14.0003 11.0478 14.0003 11.6667C14.0003 12.95 15.0503 14 16.3337 14C16.9525 14 17.546 13.7542 17.9836 13.3166C18.4212 12.879 18.667 12.2855 18.667 11.6667C18.667 10.3833 19.717 9.33333 21.0003 9.33333H24.6987\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M12.8333 25.6083V21C12.8333 20.3811 12.5874 19.7876 12.1498 19.3501C11.7123 18.9125 11.1188 18.6666 10.4999 18.6666C9.8811 18.6666 9.2876 18.4208 8.85002 17.9832C8.41243 17.5456 8.1666 16.9522 8.1666 16.3333V15.1666C8.1666 14.5478 7.92077 13.9543 7.48318 13.5167C7.0456 13.0791 6.45211 12.8333 5.83327 12.8333H2.3916\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M13.9997 25.6666C20.443 25.6666 25.6663 20.4433 25.6663 14C25.6663 7.55666 20.443 2.33331 13.9997 2.33331C7.55635 2.33331 2.33301 7.55666 2.33301 14C2.33301 20.4433 7.55635 25.6666 13.9997 25.6666Z\" stroke=\"#00A210\" stroke-width=\"2.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uj876s\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"Get 50% in savings\"})}),className:\"framer-1nxs77h\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k4lnka\",\"data-framer-name\":\"_Assets/Feature section/Feature item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jp8jd2\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bgrzn7\",\"data-framer-name\":\"graphic\",fill:\"rgb(1, 162, 15)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-send\"><path d=\"m22 2-7 20-4-9-9-4Zm0 0L11 13\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yo3zk1\",\"data-framer-name\":\"Heading and description text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(13, 16, 23)\"},children:\"No hidden fees\"})}),className:\"framer-16z0u1u\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\"},children:\"The benefits are endless\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\"},children:\"The benefits are endless\"})}),className:\"framer-1bzr4q3\",\"data-framer-name\":\"The benefits are endless\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"Experience the undeniable advantage fulfilling your e-commerce orders directly from China to the doorstep of your customers instead of  the outdated, time-consuming and costly steps of traditional supply chains.\"})}),className:\"framer-1maufzn\",\"data-framer-name\":\"Experience the undeniable advantage fulfilling your e-commerce orders directly from China to the doorstep of your customers instead of the outdated, time-consuming and costly steps of traditional supply chains.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5k76pk\",\"data-framer-name\":\"Frame 1000002126\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+11244.2+32+0+0+0+0+0+0+375+0},qUSJzXXOP:{y:(componentViewport?.y||0)+0+11788.4+56+0+0+0+0+0+0+599+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+9430.4+56+0+0+0+0+599+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-196o8z2-container\",nodeId:\"S8QTJjAtm\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(GreenButton,{height:\"100%\",id:\"S8QTJjAtm\",layoutId:\"S8QTJjAtm\",variant:\"Zk2uct0lg\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uzycwh\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined},{href:{webPageId:\"gAfj7JmhY\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+11244.2+32+0+0+0+0+0+0+375+12.5+0+0},qUSJzXXOP:{y:(componentViewport?.y||0)+0+11788.4+56+0+0+0+0+0+0+599+12.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+9430.4+56+0+0+0+0+599+12.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhzc31-container\",nodeId:\"PI7JhgFN2\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{BRqIxk47H:resolvedLinks3[2]},qUSJzXXOP:{BRqIxk47H:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(EmptyButton,{BRqIxk47H:resolvedLinks3[0],height:\"100%\",id:\"PI7JhgFN2\",layoutId:\"PI7JhgFN2\",PwKd2LW3f:\"Pricing & benefits\",width:\"100%\"})})})})})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jevi79 hidden-1jnwpjt hidden-i9ofkk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fo4obu\",\"data-border\":true,\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3hxs35\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ibhl2-container\",isAuthoredByUser:true,nodeId:\"WNVaLG5_o\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{amount:\"some\",replay:true,transition:{damping:60,delay:0,mass:1,stiffness:220,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:65,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"50px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"rgb(10, 39, 9)\",endColor:\"rgb(24, 117, 21)\",mode:\"gradient\",startColor:\"rgb(1, 162, 15)\"},height:\"100%\",id:\"WNVaLG5_o\",layoutId:\"WNVaLG5_o\",prefix:\"\",start:0,suffix:\"+\",textSelect:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\"},children:\"Countries\"})}),className:\"framer-qfemg4\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jl0qoc\",\"data-border\":true,\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ec7irb\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\"},children:\"On-Time Delivery\"})}),className:\"framer-1g42c1p\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tll2w5-container\",isAuthoredByUser:true,nodeId:\"lO1WQxtR1\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{amount:\"some\",replay:true,transition:{damping:60,delay:0,mass:1,stiffness:220,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:98,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"50px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"rgb(10, 39, 9)\",endColor:\"rgb(24, 117, 21)\",mode:\"gradient\",startColor:\"rgb(1, 162, 15)\"},height:\"100%\",id:\"lO1WQxtR1\",layoutId:\"lO1WQxtR1\",prefix:\"\",start:0,suffix:\"%\",textSelect:false,width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x0j04\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11244.2+32+0+0+984.6+0+0),pixelHeight:2364,pixelWidth:2712,src:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png\",srcSet:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png 2712w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2364,pixelWidth:2712,src:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png\",srcSet:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png 2712w\"},className:\"framer-4cxumj hidden-1jnwpjt hidden-i9ofkk\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11788.4+56+0+0+705+0+0),pixelHeight:2364,pixelWidth:2712,sizes:\"418px\",src:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png\",srcSet:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png 2712w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2364,pixelWidth:2712,src:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png\",srcSet:\"https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H6ihCOPwTvJZXq6zDNXU3FW5k.png 2712w\"},className:\"framer-1k88lp1 hidden-1jnwpjt hidden-yygsas\"})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1andcl8 hidden-i9ofkk hidden-yygsas\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h5r83o\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17efbv9\",\"data-border\":true,\"data-framer-name\":\"Table header cell\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aai0is\",\"data-framer-name\":\"Table header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Costs\"})}),className:\"framer-ms0ty9\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19915hi\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Ocean Freight\"})}),className:\"framer-1mprf4j\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dn14l2\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Handling & Processing\"})}),className:\"framer-tdgraj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o63afw\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Drayage & Fuel\"})}),className:\"framer-jo6cta\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15otb01\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Customs & Tariffs\"})}),className:\"framer-1wwln7p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kaaopq\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Storage & Warehousing\"})}),className:\"framer-1ilgk6e\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7uhux5\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Pick & Pack\"})}),className:\"framer-1xh7qt4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d24qvn\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Shipping\"})}),className:\"framer-x7hv2c\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1khpcnq\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Inventory Costs\"})}),className:\"framer-qtb46u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ru701\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Total Costs\"})}),className:\"framer-880jwq\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbhd91\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpx1z7\",\"data-border\":true,\"data-framer-name\":\"Table header cell\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16tg1ul\",\"data-framer-name\":\"Table header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"Traditional Costs\"})}),className:\"framer-hrdxw3\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qfbl9u\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$0.67\"})}),className:\"framer-b4cen2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1326oxm\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$0.64 (Total)\"})}),className:\"framer-1wxy031\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ohhg4a\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$0.47 (Total)\"})}),className:\"framer-19xl6ja\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpz8pu\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$1.30\"})}),className:\"framer-aueya8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m5tvgy\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$0.27\"})}),className:\"framer-18smmj3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjec19\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$2.00\"})}),className:\"framer-12jovy5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9dv7\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$5.12\"})}),className:\"framer-o36dak\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yhxxyr\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"$1.80 (Total)\"})}),className:\"framer-1h79sc6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a7zsme\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(188, 6, 6)\"},children:\"$11.86\"})}),className:\"framer-1owuyvr\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4oivs9\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lz2qnw\",\"data-framer-name\":\"Table header cell\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:159,svg:'<svg width=\"159\" height=\"51\" viewBox=\"0 0 159 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_4262_44917\" fill=\"white\">\\n<path d=\"M0.529297 0.736816H159V50.7368H0.529297V0.736816Z\"/>\\n</mask>\\n<path d=\"M159 49.7368H0.529297V51.7368H159V49.7368Z\" fill=\"#F2F2F2\" mask=\"url(#path-1-inside-1_4262_44917)\"/>\\n<g filter=\"url(#filter0_f_4262_44917)\">\\n<circle cx=\"34.3372\" cy=\"25.7366\" r=\"7.00565\" fill=\"black\" fill-opacity=\"0.1\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_4262_44917)\">\\n<path d=\"M42.3226 25.4378L35.7222 34.179C35.4218 34.5768 34.8008 34.4869 34.6255 34.0203L32.0188 27.0799C31.8043 26.5087 31.9048 25.8669 32.2836 25.3886L39.28 16.5565C39.5514 16.2139 40.0943 16.3065 40.2368 16.7197L42.6128 23.6082C42.8267 24.2284 42.7179 24.9143 42.3226 25.4378Z\" fill=\"url(#paint0_linear_4262_44917)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M42.1878 25.3361L35.5874 34.0772C35.3672 34.3688 34.912 34.3029 34.7836 33.9609L32.1769 27.0205C31.9832 26.5048 32.0739 25.9253 32.416 25.4935L39.4124 16.6614C39.6009 16.4233 39.9781 16.4876 40.0772 16.7747L42.4532 23.6633C42.6487 24.2303 42.5492 24.8574 42.1878 25.3361Z\" stroke=\"black\" stroke-opacity=\"0.1\" stroke-width=\"0.337739\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M42.1878 25.3361L35.5874 34.0772C35.3672 34.3688 34.912 34.3029 34.7836 33.9609L32.1769 27.0205C31.9832 26.5048 32.0739 25.9253 32.416 25.4935L39.4124 16.6614C39.6009 16.4233 39.9781 16.4876 40.0772 16.7747L42.4532 23.6633C42.6487 24.2303 42.5492 24.8574 42.1878 25.3361Z\" stroke=\"url(#paint1_radial_4262_44917)\" stroke-opacity=\"0.4\" stroke-width=\"0.337739\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_4262_44917)\">\\n<path d=\"M36.3803 26.0309L29.7949 34.7523C29.4946 35.15 28.8735 35.0601 28.6983 34.5935L26.0915 27.6531C25.877 27.0819 25.9775 26.4401 26.3564 25.9619L33.3527 17.1298C33.6242 16.7871 34.167 16.8797 34.3095 17.2929L36.6774 24.1579C36.8964 24.7928 36.785 25.495 36.3803 26.0309Z\" fill=\"url(#paint2_linear_4262_44917)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M36.2456 25.9292L29.6601 34.6505C29.44 34.942 28.9848 34.8762 28.8564 34.5342L26.2496 27.5937C26.0559 27.078 26.1467 26.4985 26.4887 26.0667L33.4851 17.2346C33.6737 16.9966 34.0509 17.0609 34.1499 17.348L36.5178 24.213C36.7184 24.7947 36.6164 25.4381 36.2456 25.9292Z\" stroke=\"black\" stroke-opacity=\"0.1\" stroke-width=\"0.337739\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M36.2456 25.9292L29.6601 34.6505C29.44 34.942 28.9848 34.8762 28.8564 34.5342L26.2496 27.5937C26.0559 27.078 26.1467 26.4985 26.4887 26.0667L33.4851 17.2346C33.6737 16.9966 34.0509 17.0609 34.1499 17.348L36.5178 24.213C36.7184 24.7947 36.6164 25.4381 36.2456 25.9292Z\" stroke=\"url(#paint3_radial_4262_44917)\" stroke-opacity=\"0.4\" stroke-width=\"0.337739\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<path d=\"M58.5657 28.0104H51.8465C52.0888 29.2321 53.0168 29.8885 54.3161 29.8885C55.2442 29.8885 56.1547 29.4753 56.6548 28.7616L58.1026 29.8707C57.3035 31.1477 55.7639 31.8614 54.1852 31.8614C51.6042 31.8614 49.6367 29.9834 49.6367 27.2414C49.6367 24.4994 51.698 22.6392 54.1852 22.6392C56.6724 22.6392 58.6028 24.4243 58.6028 27.1663C58.6028 27.4094 58.5833 27.6921 58.5657 28.0124V28.0104ZM56.4673 26.4882C56.3364 25.2862 55.4103 24.5726 54.2028 24.5726C52.9953 24.5726 52.1044 25.1558 51.8445 26.4882H56.4673Z\" fill=\"black\"/>\\n<path d=\"M59.1147 27.2414C59.1147 24.4619 61.3128 22.6392 63.8043 22.6392C65.3008 22.6392 66.5194 23.3153 67.3123 24.3294L65.7983 25.5511C65.3552 25.0055 64.6167 24.6675 63.8413 24.6675C62.3467 24.6675 61.2739 25.7567 61.2739 27.2414C61.2739 28.726 62.3448 29.8331 63.8413 29.8331C64.6167 29.8331 65.3552 29.4951 65.7983 28.9494L67.3123 30.1712C66.5174 31.1853 65.2989 31.8614 63.8043 31.8614C61.3128 31.8614 59.1147 30.0209 59.1147 27.2414Z\" fill=\"black\"/>\\n<path d=\"M67.5684 27.2414C67.5684 24.4619 69.703 22.6392 72.1697 22.6392C74.6364 22.6392 76.7906 24.4619 76.7906 27.2414C76.7906 30.0209 74.6384 31.8614 72.1697 31.8614C69.7011 31.8614 67.5684 30.0209 67.5684 27.2414ZM74.6188 27.2414C74.6188 25.7389 73.5056 24.6675 72.1697 24.6675C70.8338 24.6675 69.7382 25.7389 69.7382 27.2414C69.7382 28.7438 70.8338 29.8331 72.1697 29.8331C73.5056 29.8331 74.6188 28.7814 74.6188 27.2414Z\" fill=\"black\"/>\\n<path d=\"M91.9052 26.6998V31.6013H89.7608V26.812C89.7608 25.408 89.0349 24.6793 88.0265 24.6793C86.7767 24.6793 86.0685 25.5399 86.0685 27.2807V31.6033H83.9065V26.814C83.9065 25.4296 83.1806 24.6813 82.2467 24.6813C81.2403 24.6813 80.2338 25.2799 80.2338 26.9459V31.6052H78.0718V22.8637H80.2338V24.2106C80.6066 23.2004 81.7621 22.6392 82.8255 22.6392C84.0929 22.6392 85.1189 23.293 85.6408 24.3977C86.3294 23.031 87.691 22.6392 88.568 22.6392C90.7496 22.6392 91.9052 24.1555 91.9052 26.6998Z\" fill=\"black\"/>\\n<path d=\"M102.152 31.6035H99.9903V20.0599H98.1672C96.6822 20.0599 96.2511 20.8885 96.2689 21.9627V22.8111H98.2226V24.5434H96.2689V31.6055H94.0899V24.5434H92.417V22.8111H94.0899V22.0777C94.0899 19.5545 95.2921 18.0283 97.7341 18.0283H102.15V31.6055L102.152 31.6035Z\" fill=\"black\"/>\\n<path d=\"M103.177 27.2414C103.177 24.4619 105.311 22.6392 107.778 22.6392C110.245 22.6392 112.399 24.4619 112.399 27.2414C112.399 30.0209 110.247 31.8614 107.778 31.8614C105.309 31.8614 103.177 30.0209 103.177 27.2414ZM110.227 27.2414C110.227 25.7389 109.114 24.6675 107.778 24.6675C106.442 24.6675 105.347 25.7389 105.347 27.2414C105.347 28.7438 106.442 29.8331 107.778 29.8331C109.114 29.8331 110.227 28.7814 110.227 27.2414Z\" fill=\"black\"/>\\n<path d=\"M123.88 22.8955H126.232L123.073 31.6054H121.229L119.178 25.6555L117.223 31.6054H115.397L112.143 22.8955H114.494L116.357 28.5097L118.218 22.8955H120.156L122.017 28.5097L123.88 22.8955Z\" fill=\"black\"/>\\n<defs>\\n<filter id=\"filter0_f_4262_44917\" x=\"17.7572\" y=\"9.15657\" width=\"33.16\" height=\"33.16\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"4.78719\" result=\"effect1_foregroundBlur_4262_44917\"/>\\n</filter>\\n<filter id=\"filter1_bd_4262_44917\" x=\"30.7256\" y=\"15.2209\" width=\"13.5149\" height=\"20.7859\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.281449\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_4262_44917\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.168869\" dy=\"0.225159\"/>\\n<feGaussianBlur stdDeviation=\"0.675477\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_4262_44917\" result=\"effect2_dropShadow_4262_44917\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_4262_44917\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_4262_44917\" x=\"24.5732\" y=\"15.6253\" width=\"13.8468\" height=\"21.1236\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.534753\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_4262_44917\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.11258\" dy=\"0.225159\"/>\\n<feGaussianBlur stdDeviation=\"0.759912\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_4262_44917\" result=\"effect2_dropShadow_4262_44917\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_4262_44917\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_4262_44917\" x1=\"34.4998\" y1=\"21.4052\" x2=\"39.3743\" y2=\"38.3772\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C614\"/>\\n<stop offset=\"1\" stop-color=\"#155B1C\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint1_radial_4262_44917\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(31.9676 23.9819) rotate(21.3102) scale(9.26356 4.60682)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<linearGradient id=\"paint2_linear_4262_44917\" x1=\"28.5726\" y1=\"21.9785\" x2=\"33.447\" y2=\"38.9504\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C614\"/>\\n<stop offset=\"1\" stop-color=\"#155B1C\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint3_radial_4262_44917\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(26.0403 24.5552) rotate(21.3102) scale(9.26356 4.60682)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xcesoi\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"-\"})}),className:\"framer-xs6hc4\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ywz8aa\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"-\"})}),className:\"framer-agbgo5\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ck1q8\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"-\"})}),className:\"framer-1s0qfa0\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oin1mp\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"-\"})}),className:\"framer-ddjywm\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2lttnb\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"$0.00\"})}),className:\"framer-z5xdf3\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xblwkx\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"$1.00\"})}),className:\"framer-16tt443\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5hfaua\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"$6.06\"})}),className:\"framer-1mbwzfr\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14u8pc5\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(21, 21, 21)\"},children:\"-\"})}),className:\"framer-16svwn6\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l3uies\",\"data-border\":true,\"data-framer-name\":\"Table cell\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:\"$7.06\"})}),className:\"framer-bqd2a2\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"*Shipment of a fashion product to the US with a weight of 200g\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"*Shipment of a fashion product to the US with a weight of 200g\"})}),className:\"framer-qfcc8d\",\"data-framer-name\":\"*Shipment of a fashion product to the US\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rnxt8v hidden-yygsas\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12996.4+0),pixelHeight:1071,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10201.4+0),pixelHeight:1071,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"},className:\"framer-rpd0mu\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-101nkwj\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1epiast\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16nue21\",\"data-framer-name\":\"Frame 1000002358\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Why Ecomflow is the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:\"Right Choice?\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Why Ecomflow is the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:\"Right Choice?\"})]})}),className:\"framer-1olrstq\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ecomflow brings all the benefits of China fulfillment without the downsides. Transparency, communication & trust are our core pillars within our company and reflect in everything we do.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Ecomflow brings all the benefits of China fulfillment without the downsides. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Transparency, communication & trust are our core pillars within our company and reflect in everything we do.\"]})}),className:\"framer-19r2vst\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{y:(componentViewport?.y||0)+0+12996.4+96+0+0+0+471}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+10201.4+96+95.25+0+471,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hxqot4-container\",nodeId:\"GhjJ0GWLj\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(GreenButton,{height:\"100%\",id:\"GhjJ0GWLj\",layoutId:\"GhjJ0GWLj\",variant:\"Zk2uct0lg\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vvatcs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9zy5y\",\"data-framer-name\":\"Table Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5c47f\",\"data-border\":true,\"data-framer-name\":\"Frame 1000002355\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jl4k5j\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We speak your language\"})}),className:\"framer-pfo62c\",\"data-framer-name\":\"\uD83E\uDD1D\uD83C\uDFFC \u2060Your trusted partner in China\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fi6rrd\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"24/7 global support\"})}),className:\"framer-13uvvh2\",\"data-framer-name\":\"\uD83D\uDDE3\uFE0F \u2060\u2060No language barrier\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vfolz5\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sell 1 day post production\"})}),className:\"framer-s5t8jg\",\"data-framer-name\":\"\uD83D\uDD17 \u2060\u2060Last-mile domestic tracking\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lw1qxp\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"99.8% pick and pack accuracy\"})}),className:\"framer-1ubcumb\",\"data-framer-name\":\"\u2060\u2060\uD83D\uDCE6 Premium inventory management\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8i6ylb\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Streamlined inventory management\"})}),className:\"framer-13r7ezr\",\"data-framer-name\":\"\u2060\u2060\uD83D\uDCC6 Same day stock- in bound\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yngkkg\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Same-day stock processing\"})}),className:\"framer-pv9uz4\",\"data-framer-name\":\"\uD83D\uDECD\uFE0F Sell 1 day post production\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8cmffq\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hide the china origin\"})}),className:\"framer-10ebscq\",\"data-framer-name\":\"\u2705 99.9% pick & pack accuracy\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6otamu\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"99.9% successful delivery rate\"})}),className:\"framer-1mlwc2w\",\"data-framer-name\":\"\uD83D\uDCBB Organized systems and software\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a19wcj\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Built for growth and scalability\"})}),className:\"framer-b7tupr\",\"data-framer-name\":\"\u2708\uFE0F 99% succesfull deliveries\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vttmpc\",\"data-framer-name\":\"Frame 1000002355\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-34jiiu\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g2lkfj\",\"data-framer-name\":\"Frame 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:182,svg:'<svg width=\"182\" height=\"34\" viewBox=\"0 0 182 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_bd_6670_4008)\">\\n<path d=\"M29.3187 16.5079L18.4445 30.9089C17.9497 31.5642 16.9266 31.4161 16.6378 30.6474L12.3433 19.2132C11.9899 18.2722 12.1555 17.2148 12.7796 16.4269L24.306 1.87611C24.7532 1.31163 25.6475 1.46413 25.8824 2.14491L29.7968 13.4937C30.1492 14.5154 29.9699 15.6454 29.3187 16.5079Z\" fill=\"url(#paint0_linear_6670_4008)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M29.0966 16.3403L18.2225 30.7412C17.8598 31.2216 17.1099 31.113 16.8983 30.5496L12.6038 19.1154C12.2847 18.2657 12.4341 17.311 12.9977 16.5996L24.5241 2.04887C24.8348 1.65666 25.4562 1.76262 25.6193 2.23563L29.5338 13.5844C29.856 14.5185 29.6921 15.5517 29.0966 16.3403Z\" stroke=\"url(#paint1_radial_6670_4008)\" stroke-opacity=\"0.4\" stroke-width=\"0.55642\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_6670_4008)\">\\n<path d=\"M19.5244 17.484L8.67501 31.8523C8.18018 32.5076 7.15704 32.3595 6.86832 31.5908L2.57378 20.1565C2.22036 19.2155 2.38593 18.1582 3.01008 17.3702L14.5365 2.81947C14.9837 2.25499 15.878 2.40749 16.1128 3.08827L20.0139 14.3983C20.3746 15.4442 20.1911 16.6011 19.5244 17.484Z\" fill=\"url(#paint2_linear_6670_4008)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M19.3024 17.3164L8.45299 31.6846C8.0903 32.1649 7.34038 32.0564 7.12876 31.4929L2.83423 20.0587C2.51512 19.2091 2.66462 18.2544 3.22816 17.543L14.7546 2.99223C15.0653 2.60002 15.6867 2.70598 15.8498 3.17899L19.7509 14.489C20.0814 15.4473 19.9133 16.5073 19.3024 17.3164Z\" stroke=\"url(#paint3_radial_6670_4008)\" stroke-opacity=\"0.4\" stroke-width=\"0.55642\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<path d=\"M56.0775 20.7455H45.0077C45.4069 22.7583 46.9359 23.8396 49.0764 23.8396C50.6054 23.8396 52.1054 23.1589 52.9294 21.9832L55.3146 23.8103C53.9981 25.9143 51.4616 27.09 48.8608 27.09C44.6086 27.09 41.3672 23.9959 41.3672 19.4786C41.3672 14.9612 44.7631 11.8965 48.8608 11.8965C52.9584 11.8965 56.1387 14.8375 56.1387 19.3548C56.1387 19.7554 56.1065 20.2212 56.0775 20.7488V20.7455ZM52.6204 18.2377C52.4048 16.2575 50.879 15.0818 48.8897 15.0818C46.9005 15.0818 45.4326 16.0425 45.0045 18.2377H52.6204Z\" fill=\"white\"/>\\n<path d=\"M56.9844 19.4786C56.9844 14.8994 60.6057 11.8965 64.7104 11.8965C67.1758 11.8965 69.1834 13.0104 70.4897 14.6812L67.9955 16.6939C67.2655 15.795 66.0488 15.2381 64.7712 15.2381C62.309 15.2381 60.5416 17.0326 60.5416 19.4786C60.5416 21.9245 62.3058 23.7484 64.7712 23.7484C66.0488 23.7484 67.2655 23.1915 67.9955 22.2926L70.4897 24.3053C69.1802 25.9761 67.1726 27.09 64.7104 27.09C60.6057 27.09 56.9844 24.0578 56.9844 19.4786Z\" fill=\"white\"/>\\n<path d=\"M70.9102 19.4786C70.9102 14.8994 74.427 11.8965 78.4908 11.8965C82.5547 11.8965 86.1037 14.8994 86.1037 19.4786C86.1037 24.0578 82.5579 27.09 78.4908 27.09C74.4238 27.09 70.9102 24.0578 70.9102 19.4786ZM82.5257 19.4786C82.5257 17.0033 80.6917 15.2381 78.4908 15.2381C76.29 15.2381 74.4849 17.0033 74.4849 19.4786C74.4849 21.9538 76.29 23.7484 78.4908 23.7484C80.6917 23.7484 82.5257 22.0157 82.5257 19.4786Z\" fill=\"white\"/>\\n<path d=\"M111.005 18.5863V26.6615H107.472V18.7712C107.472 16.458 106.276 15.2576 104.615 15.2576C102.556 15.2576 101.389 16.6754 101.389 19.5434V26.6647H97.8274V18.7745C97.8274 16.4937 96.6315 15.2609 95.093 15.2609C93.4349 15.2609 91.7767 16.2471 91.7767 18.9919V26.668H88.2148V12.2663H91.7767V14.4855C92.3909 12.8211 94.2946 11.8965 96.0465 11.8965C98.1345 11.8965 99.8249 12.9736 100.685 14.7937C101.819 12.5421 104.062 11.8965 105.507 11.8965C109.101 11.8965 111.005 14.3946 111.005 18.5863Z\" fill=\"white\"/>\\n<path d=\"M127.881 26.6658H124.321V7.64785H121.317C118.871 7.64785 118.16 9.01281 118.19 10.7827V12.1803H121.408V15.0343H118.19V26.669H114.6V15.0343H111.844V12.1803H114.6V10.9721C114.6 6.81517 116.58 4.30078 120.604 4.30078H127.878V26.669L127.881 26.6658Z\" fill=\"white\"/>\\n<path d=\"M129.574 19.4786C129.574 14.8994 133.091 11.8965 137.155 11.8965C141.219 11.8965 144.768 14.8994 144.768 19.4786C144.768 24.0578 141.222 27.09 137.155 27.09C133.088 27.09 129.574 24.0578 129.574 19.4786ZM141.19 19.4786C141.19 17.0033 139.356 15.2381 137.155 15.2381C134.954 15.2381 133.149 17.0033 133.149 19.4786C133.149 21.9538 134.954 23.7484 137.155 23.7484C139.356 23.7484 141.19 22.0157 141.19 19.4786Z\" fill=\"white\"/>\\n<path d=\"M163.685 12.3203H167.56L162.355 26.6698H159.318L155.939 16.8674L152.717 26.6698H149.71L144.348 12.3203H148.222L151.291 21.5697L154.357 12.3203H157.55L160.616 21.5697L163.685 12.3203Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_bd_6670_4008\" x=\"10.2127\" y=\"-0.324459\" width=\"22.2639\" height=\"34.2443\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.463683\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_6670_4008\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.27821\" dy=\"0.370947\"/>\\n<feGaussianBlur stdDeviation=\"1.11284\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_6670_4008\" result=\"effect2_dropShadow_6670_4008\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_6670_4008\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_6670_4008\" x=\"0.0722094\" y=\"0.340691\" width=\"22.8125\" height=\"34.8007\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.880998\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_6670_4008\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.185473\" dy=\"0.370947\"/>\\n<feGaussianBlur stdDeviation=\"1.25194\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_6670_4008\" result=\"effect2_dropShadow_6670_4008\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_6670_4008\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_6670_4008\" x1=\"16.4308\" y1=\"9.86426\" x2=\"24.4614\" y2=\"37.8253\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C614\"/>\\n<stop offset=\"1\" stop-color=\"#005508\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint1_radial_6670_4008\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(12.2589 14.1093) rotate(21.3102) scale(15.2616 7.58967)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<linearGradient id=\"paint2_linear_6670_4008\" x1=\"6.66126\" y1=\"10.8076\" x2=\"14.6918\" y2=\"38.7687\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C614\"/>\\n<stop offset=\"1\" stop-color=\"#005508\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint3_radial_6670_4008\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(2.48937 15.0527) rotate(21.3102) scale(15.2616 7.58967)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1te4njd\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fnwkcv\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bmag2f\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sud53o\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j9erii\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tibtzd\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ao1k29\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pbqmyb\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-azwxae\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2fp1ym\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cdq3t2\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16fln5r\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hvfvy4\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10qpcbj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ak3cjz\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vts6m6\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177yva6\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3g7fye\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wxxewy\",\"data-framer-name\":\"Templates\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nk2qus\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18zugo4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bz349e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"Blogs by Ecomflow\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\"},children:\"Blogs by Ecomflow\"})}),className:\"framer-18ysa3o\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:\"Read on the latest news in the space, announcements and educational articles.\"})}),className:\"framer-5oz77q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+13941.3342+60+0+0+0+0+386},qUSJzXXOP:{y:(componentViewport?.y||0)+0+14462.9+40+0+0+0+0+229.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+11100.9+100+0+0+0+0+229.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7b9scj-container\",nodeId:\"Orweh4ytO\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(GreenButton,{height:\"100%\",id:\"Orweh4ytO\",layoutId:\"Orweh4ytO\",variant:\"NsOBlOaIn\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-60xyp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EmoBXjvGg\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"EmoBXjvGg\",name:\"Ux7aNOG_N\",type:\"Identifier\"},{collection:\"EmoBXjvGg\",name:\"TZHdlBujy\",type:\"Identifier\"},{collection:\"EmoBXjvGg\",name:\"Ryc8_IZbw\",type:\"Identifier\"},{collection:\"EmoBXjvGg\",name:\"F88gpzWEt\",type:\"Identifier\"},{collection:\"EmoBXjvGg\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({F88gpzWEt:F88gpzWEtEmoBXjvGg,id:idEmoBXjvGg,Ryc8_IZbw:Ryc8_IZbwEmoBXjvGg,TZHdlBujy:TZHdlBujyEmoBXjvGg,Ux7aNOG_N:Ux7aNOG_NEmoBXjvGg},index)=>{Ux7aNOG_NEmoBXjvGg??=\"\";Ryc8_IZbwEmoBXjvGg??=\"\";F88gpzWEtEmoBXjvGg??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EmoBXjvGg-${idEmoBXjvGg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Ux7aNOG_N:Ux7aNOG_NEmoBXjvGg},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Ux7aNOG_N:Ux7aNOG_NEmoBXjvGg},webPageId:\"nwQnhrxZX\"},motionChild:true,nodeId:\"rQvtNIS_l\",openInNewTab:false,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-5o93wz framer-xiwoan\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Ux7aNOG_N:Ux7aNOG_Nmnd1XUjra},webPageId:\"nwQnhrxZX\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1280px)`,y:(componentViewport?.y||0)+0+13941.3342+60+0+0+456+0+0+0+0},qUSJzXXOP:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 64px, 1px)`,y:(componentViewport?.y||0)+0+14462.9+40+0+0+325.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:221.5,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1280px) - 112px) / 3, 1px)`,y:(componentViewport?.y||0)+0+11100.9+100+0+0+325.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mwg62w-container\",nodeId:\"j9dO5qJHn\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qUSJzXXOP:{YMZt0Beto:resolvedLinks4[0]}},children:/*#__PURE__*/_jsx(BlogImage,{height:\"100%\",id:\"j9dO5qJHn\",layoutId:\"j9dO5qJHn\",style:{height:\"100%\",width:\"100%\"},v98O_eQnM:toResponsiveImage(TZHdlBujyEmoBXjvGg),width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17hg9ht\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18sqkl8\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Ux7aNOG_N:Ux7aNOG_Nmnd1XUjra},webPageId:\"nwQnhrxZX\"},implicitPathVariables:undefined},{href:{pathVariables:{Ux7aNOG_N:Ux7aNOG_Nmnd1XUjra},webPageId:\"nwQnhrxZX\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1280px)`,y:(componentViewport?.y||0)+0+13941.3342+60+0+0+456+0+0+0+238.5+0+0+0+0},qUSJzXXOP:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 64px, 1px)`,y:(componentViewport?.y||0)+0+14462.9+40+0+0+325.2+0+0+238.5+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1280px) - 112px) / 3, 1px)`,y:(componentViewport?.y||0)+0+11100.9+100+0+0+325.2+0+0+238.5+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-is6p33-container\",nodeId:\"x3C3B_512\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{d7W7X278s:\"Section 321: Shipments duty-free to the US\",jJvS0UREy:resolvedLinks5[1]},qUSJzXXOP:{d7W7X278s:\"Section 321: Shipments duty-free to the US\",jJvS0UREy:resolvedLinks5[0]}},children:/*#__PURE__*/_jsx(BlogTitle,{d7W7X278s:Ryc8_IZbwEmoBXjvGg,height:\"100%\",id:\"x3C3B_512\",layoutId:\"x3C3B_512\",style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-line-height\":\"150%\"},children:\"How section 321 enables brands to ship duty-free to the US below a certain treshhold.\"})}),className:\"framer-a78s6z\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:F88gpzWEtEmoBXjvGg,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})},idEmoBXjvGg);})})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o6v269 hidden-1jnwpjt hidden-i9ofkk\",\"data-framer-name\":\"Header + Navigation\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1071,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1071,pixelWidth:1440,src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"},className:\"framer-1s2piym\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k8iqvy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u8lpze\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1myk8hc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nem22y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrqhbf\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y05qi\",\"data-framer-name\":\"Badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(209, 255, 213)\"},children:\"The 3PL in China trusted by 150+ Brands\"})}),className:\"framer-1420qae\",\"data-framer-name\":\"Label\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o4hekm\",\"data-framer-name\":\"Heading and badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The future of supply-chain has arrived.\"})}),className:\"framer-wl2yuf\",\"data-framer-name\":\"Heading\",effect:textEffect2,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:[\"Ship globally within\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"1 day post-production, increase margins, and turn cash flow into profit with smart fulfillment. \"]})}),className:\"framer-1ehdxvi\",\"data-framer-name\":\"Supporting text\",effect:textEffect3,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-emz06f\",\"data-framer-name\":\"Frame 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) - 48px)`,y:(componentViewport?.y||0)+0+0+0+0+116+0+0+0+424+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3untgy-container\",nodeId:\"ccf6Yu5Pc\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(GreenButton,{height:\"100%\",id:\"ccf6Yu5Pc\",layoutId:\"ccf6Yu5Pc\",style:{width:\"100%\"},variant:\"Zk2uct0lg\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivff4s-container hidden-yygsas\",nodeId:\"uZ2TUAEEd\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(GreenButton,{height:\"100%\",id:\"uZ2TUAEEd\",layoutId:\"uZ2TUAEEd\",style:{width:\"100%\"},variant:\"LkCGvS5pp\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yv91t7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hBSvPE6kn\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(46, 17, 17, 0)\",baseColor:\"rgb(57, 199, 52)\",dark:.9,diffuse:3.45,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(143, 143, 143)\",height:\"100%\",id:\"hBSvPE6kn\",isDraggable:false,layoutId:\"hBSvPE6kn\",mapBrightness:5.23,markerArray:[],markerColor:\"rgba(173, 38, 38, 0)\",markerSize:0,maxSamples:4522,maxWidth:902,offset:{offsetX:0,offsetY:0},phi:0,scale:1,speed:.5,style:{height:\"100%\",width:\"100%\"},theta:.26,width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"390px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6iet1v-container\",nodeId:\"ziE0PFB2W\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TransperantNavigation,{height:\"100%\",id:\"ziE0PFB2W\",layoutId:\"ziE0PFB2W\",style:{width:\"100%\"},variant:\"YNEXqUKIX\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m0m08u hidden-1jnwpjt hidden-i9ofkk\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hgg9la\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hldwhj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 138, 2)\"},children:\"Testimonials\"})}),className:\"framer-arp6ib\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-SemiBoldItalic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"What other brands say about us.\"})}),className:\"framer-bikihr\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-19v2iq2\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b6f86p-container\",isModuleExternal:true,nodeId:\"Q9SwaztKy\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:-50,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:.8,fadeContent:false,fadeInset:0,fadeWidth:29,overflow:true},gap:12,height:\"100%\",id:\"Q9SwaztKy\",intervalControl:5,itemAmount:1,layoutId:\"Q9SwaztKy\",padding:0,paddingBottom:0,paddingLeft:32,paddingPerSide:true,paddingRight:32,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"362px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-140tpj3-container\",inComponentSlot:true,nodeId:\"UDArJnfkx\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"UDArJnfkx\",ktIgnsRLr:\"Date: 11 October 2024\",layoutId:\"UDArJnfkx\",rxaVUbZBa:\"\u201COne of the best decisions we made this year\u201D\",style:{width:\"100%\"},UXOMg7hE1:\"Musa, Co- Founder at\",variant:\"lqG98G1Zd\",wEGDKSe69:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. Packages are shipped faster and more reliably, which has made a massive difference for us. Our account manager is always super responsive and helpful whenever we have questions or need something. They really understand sourcing, supply chain improvements, and offer great advice on how to grow.\",width:\"100%\",wYMEuBCPy:\"mnqaqBMzF\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"362px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-89ubz2-container\",inComponentSlot:true,nodeId:\"ZC6s9F2j5\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/yCkq98DroWgUTvFAEbUInNMsiMY.png\",height:\"100%\",id:\"ZC6s9F2j5\",ktIgnsRLr:\"Date: 26 October 2024\",layoutId:\"ZC6s9F2j5\",lU_IMJMmO:addImageAlt({pixelHeight:880,pixelWidth:958,src:\"https://framerusercontent.com/images/VDDBLNvnI71Kjr9cgkkBlYv0.jpg\",srcSet:\"https://framerusercontent.com/images/VDDBLNvnI71Kjr9cgkkBlYv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VDDBLNvnI71Kjr9cgkkBlYv0.jpg 958w\"},\"\"),rxaVUbZBa:\"\u201CWe\u2019ve got only good things to say about Ecomflow!\u201D\",style:{width:\"100%\"},UXOMg7hE1:\"Zack, CEO at\",variant:\"lqG98G1Zd\",wEGDKSe69:\"We\u2019ve got only good things to say about Ecomflow! We have been working with them for over 6 months now, and have been able to scale our business to new heights.   Personally, as a founder, I appreciate how pro-active the team is\u2026 they spot issues arising even before we see them, and it almost feels like they are an extension of our company.   We have also been able to put products to market at an extremely fast rate, and our supply chain is becoming more optimized month on month.\",width:\"100%\",wYMEuBCPy:\"mnqaqBMzF\",yF_3Uny0g:addImageAlt({pixelHeight:51,pixelWidth:191,src:\"https://framerusercontent.com/images/Pmw2xqNDaprtsn4k8CTOzFHCwE.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"362px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10v1l7o-container\",inComponentSlot:true,nodeId:\"ZCr1PiRFK\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/kdPlqJG6oMjjcucJsnjXpShPOHQ.jpg\",height:\"100%\",id:\"ZCr1PiRFK\",ktIgnsRLr:\"Date: 26 October 2024\",layoutId:\"ZCr1PiRFK\",lU_IMJMmO:addImageAlt({pixelHeight:976,pixelWidth:958,src:\"https://framerusercontent.com/images/mR1BoEj3kXqFknu6x8gtNSHHciA.jpg\",srcSet:\"https://framerusercontent.com/images/mR1BoEj3kXqFknu6x8gtNSHHciA.jpg 958w\"},\"\"),rxaVUbZBa:\"\u201CGenius supply-chain system\u201D\",style:{width:\"100%\"},UXOMg7hE1:\"Rai, COO at\",variant:\"lqG98G1Zd\",wEGDKSe69:\"We've been working with Ecomflow since March 2024, and honestly, our supply chain has never been better. What stands out most is how much the team actually cares about our brand's success, which is rare to find in the e-commerce space. They were the only ones who could handle our increasing order volume this summer, all while keeping everything running smoothly.\",width:\"100%\",wYMEuBCPy:\"hL6RIVn6h\",yF_3Uny0g:addImageAlt({pixelHeight:66,pixelWidth:326,src:\"https://framerusercontent.com/images/bCBKm5gpij8LIUSFjQRMB4an5cc.svg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"362px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xpswq-container\",inComponentSlot:true,nodeId:\"dizaQp4pM\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/Gks7sxOkEQf4myLA5lycy8yLI.png\",height:\"100%\",id:\"dizaQp4pM\",ktIgnsRLr:\"Date of experience: 10 July, 2024\",layoutId:\"dizaQp4pM\",lU_IMJMmO:addImageAlt({pixelHeight:1058,pixelWidth:958,src:\"https://framerusercontent.com/images/WgAcTGHQbrdULfe5cbD6Ob8Knn8.jpg\",srcSet:\"https://framerusercontent.com/images/WgAcTGHQbrdULfe5cbD6Ob8Knn8.jpg?scale-down-to=1024 927w,https://framerusercontent.com/images/WgAcTGHQbrdULfe5cbD6Ob8Knn8.jpg 958w\"},\"\"),rxaVUbZBa:\"\u201CThe support is great, we get responses within minutes.\",style:{width:\"100%\"},UXOMg7hE1:\"Willem, Co-Founder at\",variant:\"lqG98G1Zd\",wEGDKSe69:\"In today\u2019s market, most brands like ours produce at least partly in China, but often don\u2019t want to acknowledge this due to false perceptions of bad quality.   With Ecomflow, we can discreetly manage this by hiding the Chinese origin. This has significantly improved our worldwide shipping since there is no long and expensive stock shipments needed to Europe.  The 24/7 support is also a great, we get responses within minutes, even on a Saturday night.\",width:\"100%\",wYMEuBCPy:\"mnqaqBMzF\",yF_3Uny0g:addImageAlt({pixelHeight:46,pixelWidth:400,src:\"https://framerusercontent.com/images/sTJBrgvPOgI9xvL45JinnaOig.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"362px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1by8drb-container\",inComponentSlot:true,nodeId:\"bOoWzN1_H\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/PAPGs8KnbaLB4JmIq5ZJxile4Rg.png\",height:\"100%\",id:\"bOoWzN1_H\",ktIgnsRLr:\"Date: 21 September 2024\",layoutId:\"bOoWzN1_H\",lU_IMJMmO:addImageAlt({pixelHeight:823,pixelWidth:1050,src:\"https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png\",srcSet:\"https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png 1050w\"},\"\"),rxaVUbZBa:'\"Ecomflow makes my business funamentally more powerfull\"',style:{width:\"100%\"},UXOMg7hE1:\"Monish, managing partner at\",variant:\"lqG98G1Zd\",wEGDKSe69:\"Ecomflow unlocked several things for us, most notably faster transit times from our factory to customer shipment, less capital tied up in sea freight, shorter lead time planning, and global shipping from one hub. If you combine all of these things, you have a fundamentally more powerful business.\",width:\"100%\",wYMEuBCPy:\"KO_ylSbNI\",yF_3Uny0g:addImageAlt({pixelHeight:477,pixelWidth:1356,src:\"https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png\",srcSet:\"https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png 1356w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"362px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqojm1-container\",inComponentSlot:true,nodeId:\"vsqeRr62a\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/Jy5FAjPiM3ueXtUiCih9tFGw.png\",height:\"100%\",id:\"vsqeRr62a\",ktIgnsRLr:\"Date: 21 September 2024\",layoutId:\"vsqeRr62a\",lU_IMJMmO:addImageAlt({pixelHeight:2010,pixelWidth:2008,src:\"https://framerusercontent.com/images/P8hsyTvsx2Sk6MRfCDKAHujXbG0.png\",srcSet:\"https://framerusercontent.com/images/P8hsyTvsx2Sk6MRfCDKAHujXbG0.png?scale-down-to=1024 1022w,https://framerusercontent.com/images/P8hsyTvsx2Sk6MRfCDKAHujXbG0.png 2008w\"},\"\"),rxaVUbZBa:\"Partnering with Ecomflow has been an absolute game-changer for our brand.\",style:{width:\"100%\"},UXOMg7hE1:\"Dylano Netscher, CEO at\",variant:\"lqG98G1Zd\",wEGDKSe69:\"Not only have we been able to cut down landed costs and improve our margins, but we can now operate on a worldwide scale while benefiting from fast shipping lines. Overall, they have brought more efficiency, transparency, and scalability to our supply chain, allowing us to focus more on growth and less on logistics. Additionally, they are always eager to offer advice and are ready to help out at any time or day.\",width:\"100%\",wYMEuBCPy:\"mnqaqBMzF\",yF_3Uny0g:addImageAlt({pixelHeight:180,pixelWidth:1287,src:\"https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png\",srcSet:\"https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png?scale-down-to=512 512w,https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HfnDTFRTmyr8fOZdIvGIAsuSnqc.png 1287w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"362px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1by8drb-container\",inComponentSlot:true,nodeId:\"bOoWzN1_H\",rendersWithMotion:true,scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKys9TdIN:\"https://framerusercontent.com/assets/PAPGs8KnbaLB4JmIq5ZJxile4Rg.png\",height:\"100%\",id:\"bOoWzN1_H\",ktIgnsRLr:\"Date: 21 September 2024\",layoutId:\"bOoWzN1_H\",lU_IMJMmO:addImageAlt({pixelHeight:823,pixelWidth:1050,src:\"https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png\",srcSet:\"https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZNC2HJA8Cr8pgBmEz3VSsgCE0o.png 1050w\"},\"\"),rxaVUbZBa:'\"Ecomflow makes my business funamentally more powerfull\"',style:{width:\"100%\"},UXOMg7hE1:\"Monish, managing partner at\",variant:\"lqG98G1Zd\",wEGDKSe69:\"Ecomflow unlocked several things for us, most notably faster transit times from our factory to customer shipment, less capital tied up in sea freight, shorter lead time planning, and global shipping from one hub. If you combine all of these things, you have a fundamentally more powerful business.\",width:\"100%\",wYMEuBCPy:\"KO_ylSbNI\",yF_3Uny0g:addImageAlt({pixelHeight:477,pixelWidth:1356,src:\"https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png\",srcSet:\"https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vdbsXGpEtX9DmHVqR4qISY336U.png 1356w\"},\"\")})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d7x1cg hidden-1jnwpjt hidden-i9ofkk\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8256.6+0),pixelHeight:1071,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1071,pixelWidth:1440,src:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg\",srcSet:\"https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VEnU0PCs42KNN54cyFxyVZj0PoM.svg 1440w\"},className:\"framer-v4pjj5\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pgjyf8\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1rq9g\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zwt2gk\",\"data-framer-name\":\"Frame 1000002358\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Why Ecomflow is the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 162, 16)\"},children:\"Right Choice?\"})]})}),className:\"framer-1g4gtn3\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ecomflow brings all the benefits of China fulfillment without the downsides. Transparency, communication & trust are our core pillars within our company and reflect in everything we do.\"})}),className:\"framer-14rrja8\",\"data-framer-name\":\"Why is Ecomflow the Right Choice?\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+8256.6+50+0+0+0+360}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-184by0d-container\",nodeId:\"FjUoquVYx\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(GreenButton,{height:\"100%\",id:\"FjUoquVYx\",layoutId:\"FjUoquVYx\",variant:\"Zk2uct0lg\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ensvh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-knv5ft\",\"data-framer-name\":\"Table Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ulyrn\",\"data-border\":true,\"data-framer-name\":\"Frame 1000002355\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l8uwng\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We speak your language\"})}),className:\"framer-p0o6nr\",\"data-framer-name\":\"\uD83E\uDD1D\uD83C\uDFFC \u2060Your trusted partner in China\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vrw24w\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"24/7 global support\"})}),className:\"framer-1wyw4vx\",\"data-framer-name\":\"\uD83D\uDDE3\uFE0F \u2060\u2060No language barrier\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12w9gxc\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sell 1 day post production\"})}),className:\"framer-zj735o\",\"data-framer-name\":\"\uD83D\uDD17 \u2060\u2060Last-mile domestic tracking\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n5nyq3\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"99.9% pick and pack accuracy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"99.9% pick and pack accuracy\"})}),className:\"framer-iy025p\",\"data-framer-name\":\"\u2060\u2060\uD83D\uDCE6 Premium inventory management\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qwgi5p\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Streamlined inventory management\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Streamlined inventory management\"})}),className:\"framer-oojkoq\",\"data-framer-name\":\"\u2060\u2060\uD83D\uDCC6 Same day stock- in bound\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lztwz\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Same-day stock processing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Same-day stock processing\"})}),className:\"framer-zw1qzo\",\"data-framer-name\":\"\uD83D\uDECD\uFE0F Sell 1 day post production\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d2cqzr\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hide the china origin\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hide the china origin\"})}),className:\"framer-194e2bc\",\"data-framer-name\":\"\u2705 99.9% pick & pack accuracy\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dev6ui\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"99% successful delivery rate\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"99% successful delivery rate\"})}),className:\"framer-rtfkko\",\"data-framer-name\":\"\uD83D\uDCBB Organized systems and software\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vfpbyo\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Built for growth and scalability\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Built for growth and scalability\"})}),className:\"framer-13v9ep0\",\"data-framer-name\":\"\u2708\uFE0F 99% succesfull deliveries\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ic30bn\",\"data-framer-name\":\"Frame 1000002355\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ijiymy hidden-yygsas\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mk93yb\",\"data-framer-name\":\"Frame 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:182,svg:'<svg width=\"182\" height=\"34\" viewBox=\"0 0 182 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_bd_6670_4008)\">\\n<path d=\"M29.3187 16.5079L18.4445 30.9089C17.9497 31.5642 16.9266 31.4161 16.6378 30.6474L12.3433 19.2132C11.9899 18.2722 12.1555 17.2148 12.7796 16.4269L24.306 1.87611C24.7532 1.31163 25.6475 1.46413 25.8824 2.14491L29.7968 13.4937C30.1492 14.5154 29.9699 15.6454 29.3187 16.5079Z\" fill=\"url(#paint0_linear_6670_4008)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M29.0966 16.3403L18.2225 30.7412C17.8598 31.2216 17.1099 31.113 16.8983 30.5496L12.6038 19.1154C12.2847 18.2657 12.4341 17.311 12.9977 16.5996L24.5241 2.04887C24.8348 1.65666 25.4562 1.76262 25.6193 2.23563L29.5338 13.5844C29.856 14.5185 29.6921 15.5517 29.0966 16.3403Z\" stroke=\"url(#paint1_radial_6670_4008)\" stroke-opacity=\"0.4\" stroke-width=\"0.55642\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_6670_4008)\">\\n<path d=\"M19.5244 17.484L8.67501 31.8523C8.18018 32.5076 7.15704 32.3595 6.86832 31.5908L2.57378 20.1565C2.22036 19.2155 2.38593 18.1582 3.01008 17.3702L14.5365 2.81947C14.9837 2.25499 15.878 2.40749 16.1128 3.08827L20.0139 14.3983C20.3746 15.4442 20.1911 16.6011 19.5244 17.484Z\" fill=\"url(#paint2_linear_6670_4008)\" fill-opacity=\"0.8\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M19.3024 17.3164L8.45299 31.6846C8.0903 32.1649 7.34038 32.0564 7.12876 31.4929L2.83423 20.0587C2.51512 19.2091 2.66462 18.2544 3.22816 17.543L14.7546 2.99223C15.0653 2.60002 15.6867 2.70598 15.8498 3.17899L19.7509 14.489C20.0814 15.4473 19.9133 16.5073 19.3024 17.3164Z\" stroke=\"url(#paint3_radial_6670_4008)\" stroke-opacity=\"0.4\" stroke-width=\"0.55642\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<path d=\"M56.0775 20.7455H45.0077C45.4069 22.7583 46.9359 23.8396 49.0764 23.8396C50.6054 23.8396 52.1054 23.1589 52.9294 21.9832L55.3146 23.8103C53.9981 25.9143 51.4616 27.09 48.8608 27.09C44.6086 27.09 41.3672 23.9959 41.3672 19.4786C41.3672 14.9612 44.7631 11.8965 48.8608 11.8965C52.9584 11.8965 56.1387 14.8375 56.1387 19.3548C56.1387 19.7554 56.1065 20.2212 56.0775 20.7488V20.7455ZM52.6204 18.2377C52.4048 16.2575 50.879 15.0818 48.8897 15.0818C46.9005 15.0818 45.4326 16.0425 45.0045 18.2377H52.6204Z\" fill=\"white\"/>\\n<path d=\"M56.9844 19.4786C56.9844 14.8994 60.6057 11.8965 64.7104 11.8965C67.1758 11.8965 69.1834 13.0104 70.4897 14.6812L67.9955 16.6939C67.2655 15.795 66.0488 15.2381 64.7712 15.2381C62.309 15.2381 60.5416 17.0326 60.5416 19.4786C60.5416 21.9245 62.3058 23.7484 64.7712 23.7484C66.0488 23.7484 67.2655 23.1915 67.9955 22.2926L70.4897 24.3053C69.1802 25.9761 67.1726 27.09 64.7104 27.09C60.6057 27.09 56.9844 24.0578 56.9844 19.4786Z\" fill=\"white\"/>\\n<path d=\"M70.9102 19.4786C70.9102 14.8994 74.427 11.8965 78.4908 11.8965C82.5547 11.8965 86.1037 14.8994 86.1037 19.4786C86.1037 24.0578 82.5579 27.09 78.4908 27.09C74.4238 27.09 70.9102 24.0578 70.9102 19.4786ZM82.5257 19.4786C82.5257 17.0033 80.6917 15.2381 78.4908 15.2381C76.29 15.2381 74.4849 17.0033 74.4849 19.4786C74.4849 21.9538 76.29 23.7484 78.4908 23.7484C80.6917 23.7484 82.5257 22.0157 82.5257 19.4786Z\" fill=\"white\"/>\\n<path d=\"M111.005 18.5863V26.6615H107.472V18.7712C107.472 16.458 106.276 15.2576 104.615 15.2576C102.556 15.2576 101.389 16.6754 101.389 19.5434V26.6647H97.8274V18.7745C97.8274 16.4937 96.6315 15.2609 95.093 15.2609C93.4349 15.2609 91.7767 16.2471 91.7767 18.9919V26.668H88.2148V12.2663H91.7767V14.4855C92.3909 12.8211 94.2946 11.8965 96.0465 11.8965C98.1345 11.8965 99.8249 12.9736 100.685 14.7937C101.819 12.5421 104.062 11.8965 105.507 11.8965C109.101 11.8965 111.005 14.3946 111.005 18.5863Z\" fill=\"white\"/>\\n<path d=\"M127.881 26.6658H124.321V7.64785H121.317C118.871 7.64785 118.16 9.01281 118.19 10.7827V12.1803H121.408V15.0343H118.19V26.669H114.6V15.0343H111.844V12.1803H114.6V10.9721C114.6 6.81517 116.58 4.30078 120.604 4.30078H127.878V26.669L127.881 26.6658Z\" fill=\"white\"/>\\n<path d=\"M129.574 19.4786C129.574 14.8994 133.091 11.8965 137.155 11.8965C141.219 11.8965 144.768 14.8994 144.768 19.4786C144.768 24.0578 141.222 27.09 137.155 27.09C133.088 27.09 129.574 24.0578 129.574 19.4786ZM141.19 19.4786C141.19 17.0033 139.356 15.2381 137.155 15.2381C134.954 15.2381 133.149 17.0033 133.149 19.4786C133.149 21.9538 134.954 23.7484 137.155 23.7484C139.356 23.7484 141.19 22.0157 141.19 19.4786Z\" fill=\"white\"/>\\n<path d=\"M163.685 12.3203H167.56L162.355 26.6698H159.318L155.939 16.8674L152.717 26.6698H149.71L144.348 12.3203H148.222L151.291 21.5697L154.357 12.3203H157.55L160.616 21.5697L163.685 12.3203Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_bd_6670_4008\" x=\"10.2127\" y=\"-0.324459\" width=\"22.2639\" height=\"34.2443\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.463683\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_6670_4008\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.27821\" dy=\"0.370947\"/>\\n<feGaussianBlur stdDeviation=\"1.11284\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_6670_4008\" result=\"effect2_dropShadow_6670_4008\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_6670_4008\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_6670_4008\" x=\"0.0722094\" y=\"0.340691\" width=\"22.8125\" height=\"34.8007\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"0.880998\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_6670_4008\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.185473\" dy=\"0.370947\"/>\\n<feGaussianBlur stdDeviation=\"1.25194\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_6670_4008\" result=\"effect2_dropShadow_6670_4008\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_6670_4008\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_6670_4008\" x1=\"16.4308\" y1=\"9.86426\" x2=\"24.4614\" y2=\"37.8253\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C614\"/>\\n<stop offset=\"1\" stop-color=\"#005508\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint1_radial_6670_4008\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(12.2589 14.1093) rotate(21.3102) scale(15.2616 7.58967)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<linearGradient id=\"paint2_linear_6670_4008\" x1=\"6.66126\" y1=\"10.8076\" x2=\"14.6918\" y2=\"38.7687\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00C614\"/>\\n<stop offset=\"1\" stop-color=\"#005508\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<radialGradient id=\"paint3_radial_6670_4008\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(2.48937 15.0527) rotate(21.3102) scale(15.2616 7.58967)\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-brn7j5 hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gsko4v\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3w3acs hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tx3pjm\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dxf6xp hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12qrq74\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gdokog hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kgauv5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-133tj6s hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12q6i9g\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gqe49v hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f384w0\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1raiuq2 hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s58kd8\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-esvbpb hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1691awp\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5n49ac hidden-1jnwpjt\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-btl7tk\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 2.375C15.7119 2.375 12.4976 3.35004 9.76365 5.17682C7.02968 7.0036 4.89882 9.60007 3.64051 12.6379C2.3822 15.6757 2.05297 19.0184 2.69445 22.2434C3.33593 25.4683 4.91931 28.4306 7.24436 30.7556C9.5694 33.0807 12.5317 34.6641 15.7566 35.3056C18.9816 35.947 22.3243 35.6178 25.3621 34.3595C28.3999 33.1012 30.9964 30.9703 32.8232 28.2364C34.65 25.5024 35.625 22.2881 35.625 19C35.625 14.5908 33.8734 10.3621 30.7557 7.24435C27.6379 4.12656 23.4092 2.375 19 2.375ZM16.625 25.6381L10.6875 19.7006L12.5756 17.8125L16.625 21.8619L25.4244 13.0625L27.3196 14.9459L16.625 25.6381Z\" fill=\"#E6FFE9\"/>\\n<path d=\"M16.9786 22.2154L25.4255 13.7685L26.6114 14.9469L16.625 24.9311L11.3946 19.7006L12.5756 18.5196L16.2715 22.2154L16.625 22.569L16.9786 22.2154ZM19 1.875C15.613 1.875 12.3021 2.87936 9.48587 4.76108C6.66967 6.6428 4.47472 9.31736 3.17857 12.4465C1.88242 15.5757 1.54329 19.019 2.20406 22.3409C2.86483 25.6628 4.49583 28.7142 6.8908 31.1092C9.28578 33.5042 12.3372 35.1352 15.6591 35.7959C18.981 36.4567 22.4243 36.1176 25.5535 34.8214C28.6826 33.5253 31.3572 31.3303 33.2389 28.5141C35.1206 25.6979 36.125 22.387 36.125 19C36.125 14.4582 34.3208 10.1024 31.1092 6.8908C27.8976 3.67924 23.5418 1.875 19 1.875Z\" stroke=\"white\" stroke-opacity=\"0.18\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{y:(componentViewport?.y||0)+0+14810.8342},qUSJzXXOP:{y:(componentViewport?.y||0)+0+15161.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:356,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+11919.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yiwbfe-container\",nodeId:\"CnYmwmPTi\",scopeId:\"o0_jSGowk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pVkaWDKMx:{variant:\"mZhXsT16c\"},qUSJzXXOP:{variant:\"eOvf5Sile\"}},children:/*#__PURE__*/_jsx(EFFooter,{height:\"100%\",id:\"CnYmwmPTi\",layoutId:\"CnYmwmPTi\",style:{width:\"100%\"},variant:\"qkDXCucqB\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t2dBs.framer-xiwoan, .framer-t2dBs .framer-xiwoan { display: block; }\",\".framer-t2dBs.framer-1jnwpjt { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-t2dBs .framer-48lfpl, .framer-t2dBs .framer-1o6v269 { align-content: center; align-items: center; background-color: #001f04; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1ygz629, .framer-t2dBs .framer-m0fy61, .framer-t2dBs .framer-rpd0mu, .framer-t2dBs .framer-1s2piym, .framer-t2dBs .framer-v4pjj5 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-t2dBs .framer-bbon7q, .framer-t2dBs .framer-y393xo, .framer-t2dBs .framer-1k8iqvy, .framer-t2dBs .framer-1pgjyf8 { background-color: rgba(0, 31, 4, 0.98); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-t2dBs .framer-1dr073k-container { flex: none; height: 64px; position: relative; width: 100%; z-index: 10; }\",\".framer-t2dBs .framer-1qd008p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-vurk2k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: 538px; justify-content: flex-start; max-width: 1024px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-2z65kf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-b0od20 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-t91oub { align-content: center; align-items: center; background-color: #003104; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 6px 14px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t2dBs .framer-ukw03l, .framer-t2dBs .framer-gsvuq9, .framer-t2dBs .framer-1emoqpl, .framer-t2dBs .framer-102kstp, .framer-t2dBs .framer-11a2s7z, .framer-t2dBs .framer-18fal7x, .framer-t2dBs .framer-1f897up, .framer-t2dBs .framer-1vrkes9, .framer-t2dBs .framer-u3dxuo, .framer-t2dBs .framer-1upzozh, .framer-t2dBs .framer-179dpld, .framer-t2dBs .framer-b8rjun, .framer-t2dBs .framer-1rrd7ru, .framer-t2dBs .framer-juvbfu, .framer-t2dBs .framer-qtmldf, .framer-t2dBs .framer-xpinfs, .framer-t2dBs .framer-jy88q2, .framer-t2dBs .framer-wkesg4, .framer-t2dBs .framer-1o65q52, .framer-t2dBs .framer-qfemg4, .framer-t2dBs .framer-1g42c1p, .framer-t2dBs .framer-1mprf4j, .framer-t2dBs .framer-tdgraj, .framer-t2dBs .framer-jo6cta, .framer-t2dBs .framer-1wwln7p, .framer-t2dBs .framer-1ilgk6e, .framer-t2dBs .framer-1xh7qt4, .framer-t2dBs .framer-x7hv2c, .framer-t2dBs .framer-qtb46u, .framer-t2dBs .framer-880jwq, .framer-t2dBs .framer-b4cen2, .framer-t2dBs .framer-1wxy031, .framer-t2dBs .framer-19xl6ja, .framer-t2dBs .framer-aueya8, .framer-t2dBs .framer-18smmj3, .framer-t2dBs .framer-12jovy5, .framer-t2dBs .framer-o36dak, .framer-t2dBs .framer-1h79sc6, .framer-t2dBs .framer-1owuyvr, .framer-t2dBs .framer-xs6hc4, .framer-t2dBs .framer-agbgo5, .framer-t2dBs .framer-1s0qfa0, .framer-t2dBs .framer-ddjywm, .framer-t2dBs .framer-16tt443, .framer-t2dBs .framer-1mbwzfr, .framer-t2dBs .framer-16svwn6, .framer-t2dBs .framer-bqd2a2, .framer-t2dBs .framer-qfcc8d, .framer-t2dBs .framer-pfo62c, .framer-t2dBs .framer-13uvvh2, .framer-t2dBs .framer-s5t8jg, .framer-t2dBs .framer-1ubcumb, .framer-t2dBs .framer-13r7ezr, .framer-t2dBs .framer-pv9uz4, .framer-t2dBs .framer-10ebscq, .framer-t2dBs .framer-1mlwc2w, .framer-t2dBs .framer-b7tupr, .framer-t2dBs .framer-1420qae, .framer-t2dBs .framer-p0o6nr, .framer-t2dBs .framer-1wyw4vx, .framer-t2dBs .framer-zj735o, .framer-t2dBs .framer-iy025p, .framer-t2dBs .framer-oojkoq, .framer-t2dBs .framer-zw1qzo, .framer-t2dBs .framer-194e2bc, .framer-t2dBs .framer-rtfkko, .framer-t2dBs .framer-13v9ep0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t2dBs .framer-t3p9yf, .framer-t2dBs .framer-1nx673p, .framer-t2dBs .framer-1o4hekm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1cfjsq8, .framer-t2dBs .framer-wl2yuf { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-2hef94 { --framer-paragraph-spacing: 20px; 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-t2dBs .framer-bg8m5d, .framer-t2dBs .framer-5wf0ow { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-o68lbb-container, .framer-t2dBs .framer-tsvigz-container, .framer-t2dBs .framer-vjd99y-container, .framer-t2dBs .framer-axfn4b-container, .framer-t2dBs .framer-184mtab-container, .framer-t2dBs .framer-aqe7zy-container, .framer-t2dBs .framer-55hisy-container, .framer-t2dBs .framer-hhe5ut-container, .framer-t2dBs .framer-3z512o-container, .framer-t2dBs .framer-kvclr4-container, .framer-t2dBs .framer-i04aiv-container, .framer-t2dBs .framer-196o8z2-container, .framer-t2dBs .framer-dhzc31-container, .framer-t2dBs .framer-9ibhl2-container, .framer-t2dBs .framer-tll2w5-container, .framer-t2dBs .framer-1hxqot4-container, .framer-t2dBs .framer-7b9scj-container, .framer-t2dBs .framer-184by0d-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-t2dBs .framer-vzqk8x { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; gap: 0px; height: 560px; overflow: visible; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1vf10fd-container { bottom: -84px; flex: none; left: -14px; position: absolute; right: -27px; top: -90px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t2dBs .framer-1mrkvhq { --border-bottom-width: 1.1219512224197388px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1.1219512224197388px; --border-right-width: 1.1219512224197388px; --border-style: solid; --border-top-width: 1.1219512224197388px; -webkit-backdrop-filter: blur(13.463415145874023px); align-content: center; align-items: center; backdrop-filter: blur(13.463415145874023px); background-color: rgba(255, 255, 255, 0.2); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 0px 26.926830291748047px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26.926830291748047px; height: min-content; justify-content: flex-start; left: 14px; overflow: visible; padding: 26.926830291748047px; position: absolute; top: 61px; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-t2dBs .framer-kpoaxu, .framer-t2dBs .framer-rdhvyf, .framer-t2dBs .framer-1fnx22b, .framer-t2dBs .framer-18n8ary { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8.97560977935791px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-k50m0c { --border-bottom-width: 1.1219512224197388px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1.1219512224197388px; --border-right-width: 1.1219512224197388px; --border-style: solid; --border-top-width: 1.1219512224197388px; -webkit-backdrop-filter: blur(13.463415145874023px); align-content: center; align-items: center; backdrop-filter: blur(13.463415145874023px); background-color: rgba(255, 255, 255, 0.2); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 0px 26.926830291748047px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26.926830291748047px; height: min-content; justify-content: flex-start; left: 54%; overflow: visible; padding: 26.926830291748047px; position: absolute; top: 69px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-t2dBs .framer-13q7xya { --border-bottom-width: 1.1219512224197388px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1.1219512224197388px; --border-right-width: 1.1219512224197388px; --border-style: solid; --border-top-width: 1.1219512224197388px; -webkit-backdrop-filter: blur(13.463415145874023px); align-content: center; align-items: center; backdrop-filter: blur(13.463415145874023px); background-color: rgba(255, 255, 255, 0.2); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 0px 26.926830291748047px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26.926830291748047px; height: min-content; justify-content: flex-start; overflow: visible; padding: 26.926830291748047px; position: absolute; right: 41px; top: 69px; width: min-content; z-index: 1; }\",\".framer-t2dBs .framer-1sye693 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(12px); align-content: center; align-items: center; backdrop-filter: blur(12px); background-color: rgba(255, 255, 255, 0.2); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 371px; overflow: visible; padding: 24px; position: absolute; top: 50%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-t2dBs .framer-1i1hvaw { align-content: center; align-items: center; 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: min-content; }\",\".framer-t2dBs .framer-r7iyn0 { --border-bottom-width: 1.296296238899231px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1.296296238899231px; --border-right-width: 1.296296238899231px; --border-style: solid; --border-top-width: 1.296296238899231px; -webkit-backdrop-filter: blur(15.55555534362793px); align-content: center; align-items: center; backdrop-filter: blur(15.55555534362793px); background-color: rgba(255, 255, 255, 0.2); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 27px; box-shadow: 0px 0px 31.11111068725586px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31.11111068725586px; height: min-content; justify-content: flex-start; left: 77px; overflow: visible; padding: 31.11111068725586px; position: absolute; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-t2dBs .framer-1jxjaz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10.370369911193848px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-4qdz3q { --border-bottom-width: 1.1219512224197388px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1.1219512224197388px; --border-right-width: 1.1219512224197388px; --border-style: solid; --border-top-width: 1.1219512224197388px; -webkit-backdrop-filter: blur(13.463415145874023px); align-content: center; align-items: center; backdrop-filter: blur(13.463415145874023px); background-color: rgba(255, 255, 255, 0.2); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 0px 26.926830291748047px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26.926830291748047px; height: min-content; justify-content: flex-start; overflow: visible; padding: 26.926830291748047px; position: absolute; right: -833px; top: -423px; width: min-content; z-index: 1; }\",\".framer-t2dBs .framer-vlopr2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 62px 32px 62px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1hngn6h, .framer-t2dBs .framer-1n346c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1mmdh6l, .framer-t2dBs .framer-deli0q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-4qgfpt-container, .framer-t2dBs .framer-8sldpb-container { flex: none; height: 67px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1csoubf { height: 37px; overflow: hidden; position: relative; width: 171px; }\",\".framer-t2dBs .framer-178piup, .framer-t2dBs .framer-1mvhny2 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-t2dBs .framer-1lmwtgu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 139px; }\",\".framer-t2dBs .framer-i0wuix { aspect-ratio: 2.8958333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); position: relative; width: 100%; }\",\".framer-t2dBs .framer-10ir0b8 { height: 44px; overflow: hidden; position: relative; width: 121px; }\",\".framer-t2dBs .framer-189o0ho { aspect-ratio: 2.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-t2dBs .framer-9m06dp, .framer-t2dBs .framer-g8q0lz { aspect-ratio: 7.725714206695557 / 1; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 200px; }\",\".framer-t2dBs .framer-1sp7vsh { height: 48px; overflow: hidden; position: relative; width: 160px; }\",\".framer-t2dBs .framer-1s30whd { aspect-ratio: 3.3333333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-t2dBs .framer-d5fzyh { height: 33px; overflow: hidden; position: relative; width: 162px; }\",\".framer-t2dBs .framer-18jgqqi { height: 42px; overflow: hidden; position: relative; width: 166px; }\",\".framer-t2dBs .framer-1xz4gxo { aspect-ratio: 3.9523809523809526 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-t2dBs .framer-w3m2uv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-jx7eum { 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: 1280px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-z1bfm4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-17wlitr, .framer-t2dBs .framer-1jl1rz6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1sjrcfo, .framer-t2dBs .framer-1h02cpg, .framer-t2dBs .framer-e58rs7, .framer-t2dBs .framer-19ktce1, .framer-t2dBs .framer-70a03j, .framer-t2dBs .framer-1ej5ijq, .framer-t2dBs .framer-1fubd01, .framer-t2dBs .framer-1jp8jd2 { --border-bottom-width: 4px; --border-color: #ebf6ea; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; background-color: #f5faf3; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; flex: none; height: 54px; overflow: hidden; position: relative; width: 54px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-1xgkqqb, .framer-t2dBs .framer-1b9eynq, .framer-t2dBs .framer-1jnlti7 { flex: none; height: 29px; left: calc(50.00000000000002% - 28px / 2); position: absolute; top: calc(48.14814814814817% - 29px / 2); width: 28px; }\",\".framer-t2dBs .framer-m4fu22, .framer-t2dBs .framer-1vsoakk, .framer-t2dBs .framer-t8pqpn { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-nu2d6u, .framer-t2dBs .framer-1yyiuj0, .framer-t2dBs .framer-b89xxn, .framer-t2dBs .framer-1ac1v9a, .framer-t2dBs .framer-1kz3v1d, .framer-t2dBs .framer-16fap5p, .framer-t2dBs .framer-qb8sw9, .framer-t2dBs .framer-1yrszcx, .framer-t2dBs .framer-17b09d2, .framer-t2dBs .framer-157jvp2, .framer-t2dBs .framer-1jc6l6z, .framer-t2dBs .framer-unyktx, .framer-t2dBs .framer-19il30e, .framer-t2dBs .framer-7l517n, .framer-t2dBs .framer-sptt3, .framer-t2dBs .framer-9hkzru, .framer-t2dBs .framer-1r5ip03, .framer-t2dBs .framer-wo07lh, .framer-t2dBs .framer-1dtd3cf, .framer-t2dBs .framer-1vjzj04, .framer-t2dBs .framer-ibcdgo, .framer-t2dBs .framer-1nxs77h, .framer-t2dBs .framer-16z0u1u, .framer-t2dBs .framer-1bzr4q3, .framer-t2dBs .framer-1maufzn, .framer-t2dBs .framer-1olrstq, .framer-t2dBs .framer-19r2vst, .framer-t2dBs .framer-1g4gtn3, .framer-t2dBs .framer-14rrja8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-eyqoh6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1s8i2e2 { --border-bottom-width: 1px; --border-color: #dedede; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background-color: #f9f9f9; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-1vsmfqk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-6lqzdn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 857px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-1bv6p2m { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 670px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-1nv3ati { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-8dxw6g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 60px 32px 10px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1nk3rd2 { --border-bottom-width: 1px; --border-color: #e5e5e5; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 30px 96px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-q4sd0q { bottom: -38px; flex: none; position: absolute; right: -350px; top: -41px; width: 1361px; z-index: 0; }\",\".framer-t2dBs .framer-11dbf68 { background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80.0000011920929%); bottom: 0px; flex: none; gap: 0px; left: 257px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-t2dBs .framer-1fe89bz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1i57sie { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 599px; }\",\".framer-t2dBs .framer-1l1ys1, .framer-t2dBs .framer-11tbqf4, .framer-t2dBs .framer-1m1u3lc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-16kircc { align-content: center; align-items: center; background-color: #d5f9d8; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 6px 14px 6px 12px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-19revfj { flex: none; height: 17px; position: relative; width: 16px; }\",\".framer-t2dBs .framer-ygzw9e, .framer-t2dBs .framer-13up52a, .framer-t2dBs .framer-13r4jd1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1cwyqvp, .framer-t2dBs .framer-oj7i9i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 599px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-19xw35d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-is4oc3, .framer-t2dBs .framer-1v4t6c4, .framer-t2dBs .framer-fjvztf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1lck1y1, .framer-t2dBs .framer-1y8wjtz { flex: none; height: 28px; left: calc(50.00000000000002% - 28px / 2); position: absolute; top: calc(50.00000000000002% - 28px / 2); width: 28px; }\",\".framer-t2dBs .framer-yc748h, .framer-t2dBs .framer-uu0nip, .framer-t2dBs .framer-1exfeep, .framer-t2dBs .framer-10qctpb, .framer-t2dBs .framer-6iuv6u, .framer-t2dBs .framer-17agn0f, .framer-t2dBs .framer-uj876s, .framer-t2dBs .framer-1yo3zk1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1tjg06c, .framer-t2dBs .framer-u0xyp4, .framer-t2dBs .framer-czln3f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 122px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-obp3l8, .framer-t2dBs .framer-1bgrzn7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 48%; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 28px; }\",\".framer-t2dBs .framer-1ib84gv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; position: absolute; top: 48%; transform: translate(-50%, -50%); width: 28px; }\",\".framer-t2dBs .framer-1wxfobb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 32px 50px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1s57hq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 184px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-t2dBs .framer-hh1a9z { aspect-ratio: 1.8202247191011236 / 1; height: var(--framer-aspect-ratio-supported, 89px); overflow: visible; position: relative; width: 200px; }\",\".framer-t2dBs .framer-163zqzf { aspect-ratio: 2.085714285714286 / 1; height: var(--framer-aspect-ratio-supported, 96px); overflow: visible; position: relative; width: 200px; }\",\".framer-t2dBs .framer-1hrqsol { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 200px; }\",\".framer-t2dBs .framer-8e8zlt { aspect-ratio: 1.4257425742574257 / 1; height: var(--framer-aspect-ratio-supported, 253px); overflow: visible; position: relative; width: 200px; }\",\".framer-t2dBs .framer-ebip9 { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-1ac8w0f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 40px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1o7uj4z { --border-bottom-width: 1px; --border-color: #e5e5e5; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-c0jbd0 { align-content: center; align-items: center; background: linear-gradient(180deg, #00a210 0%, rgb(0, 115, 11) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 572px; justify-content: center; overflow: hidden; padding: 140px 40px 85px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-kwr6q3 { aspect-ratio: 1.5 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 541px); left: 50px; overflow: hidden; position: absolute; right: -338px; top: 50px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-t2dBs .framer-fnc4m4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-14liyqx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 460px; }\",\".framer-t2dBs .framer-99ghdn { flex: none; gap: 4.442551136016846px; height: 28px; overflow: visible; position: relative; width: 202px; }\",\".framer-t2dBs .framer-omwy9n { flex: none; height: 29px; left: 0px; position: absolute; top: 0px; width: 124px; }\",\".framer-t2dBs .framer-15gp71v { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 125px; position: absolute; top: 4px; white-space: pre; width: auto; }\",\".framer-t2dBs .framer-11l5vta, .framer-t2dBs .framer-jvtv11, .framer-t2dBs .framer-1kjas9u, .framer-t2dBs .framer-1w1ec7e, .framer-t2dBs .framer-xxe0ge, .framer-t2dBs .framer-qj09ix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1au6jq2, .framer-t2dBs .framer-b2rntx, .framer-t2dBs .framer-1wli6gq { --border-bottom-width: 2px; --border-color: #ebf6ea; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1 / 1; background-color: #f5faf3; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 38px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-1xilvct, .framer-t2dBs .framer-1385ail, .framer-t2dBs .framer-1945to2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 16px; }\",\".framer-t2dBs .framer-ul3y1e { align-content: center; align-items: center; background-color: #002204; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 83px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1nkbieh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-pxhifr, .framer-t2dBs .framer-wmtve2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-4u24cr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1ncpsf0, .framer-t2dBs .framer-vvatcs, .framer-t2dBs .framer-19ensvh { 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: min-content; }\",\".framer-t2dBs .framer-15glce2, .framer-t2dBs .framer-1118veo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 377px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-hjcalk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 618px; }\",\".framer-t2dBs .framer-42f40 { -webkit-backdrop-filter: blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-ramh7e { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1mzemqa, .framer-t2dBs .framer-1yic5pg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-c28zj6, .framer-t2dBs .framer-w7ontf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 111px; }\",\".framer-t2dBs .framer-17dqcxc, .framer-t2dBs .framer-13ojxxv, .framer-t2dBs .framer-1p7ilzs, .framer-t2dBs .framer-unzv8i, .framer-t2dBs .framer-1sf6e4a { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-t2dBs .framer-1m2wpn7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-142qq85 { flex: none; height: 2px; position: relative; width: 92px; }\",\".framer-t2dBs .framer-10icqmv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 135px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-xfg5ty { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 60px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-t2dBs .framer-7gxitq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 153px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-13bheeu { flex: none; height: 44px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-2weuwz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 128px; }\",\".framer-t2dBs .framer-1qymplu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 150px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-1bzthd { flex: none; height: 2px; position: relative; width: 86px; }\",\".framer-t2dBs .framer-1juj0dq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 161px; }\",\".framer-t2dBs .framer-1h89yma { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-dytwry { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 300px; height: 1959px; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 50px; width: 100%; z-index: 1; }\",\".framer-t2dBs .framer-fou4t5-container { flex: none; height: auto; position: sticky; top: 250px; width: 100%; z-index: 1; }\",\".framer-t2dBs .framer-9guq71, .framer-t2dBs .framer-12fe3qv, .framer-t2dBs .framer-xylu9i, .framer-t2dBs .framer-1oemoxy { flex: none; height: 61px; overflow: hidden; position: relative; width: 871px; }\",\".framer-t2dBs .framer-1upp61a { align-content: center; align-items: center; background-color: #f2f7f2; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1q097rb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-wdtxuy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 355px; }\",\".framer-t2dBs .framer-xi76oe, .framer-t2dBs .framer-1jrqhbf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-11b1vgl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 483px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-1ldj89g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 95%; }\",\".framer-t2dBs .framer-13sycnn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-14tqa9r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-a68o6b, .framer-t2dBs .framer-8p6x48, .framer-t2dBs .framer-u89fxf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-ptftz1, .framer-t2dBs .framer-ukkc3l, .framer-t2dBs .framer-tcupc5 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-14ium69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-19mjrl6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-oua4vb { 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-t2dBs .framer-ie4nne, .framer-t2dBs .framer-arp6ib, .framer-t2dBs .framer-bikihr, .framer-t2dBs .framer-19v2iq2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 527px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-15v1fqn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 793px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-vig95e-container { flex: none; height: 609px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1oxpoht-container, .framer-t2dBs .framer-1wckm81-container, .framer-t2dBs .framer-1wdfjqo-container, .framer-t2dBs .framer-1q1lp6t-container, .framer-t2dBs .framer-17psif5-container, .framer-t2dBs .framer-1jrrsdg-container { height: auto; position: relative; width: 939px; }\",\".framer-t2dBs .framer-1uj2zca, .framer-t2dBs .framer-kkgklz { 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: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-jhzk3f, .framer-t2dBs .framer-nys9p5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1hj0891, .framer-t2dBs .framer-m9ycur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-zphknr, .framer-t2dBs .framer-vxbnj2, .framer-t2dBs .framer-16nue21 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-x173kv, .framer-t2dBs .framer-yo5j19 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-s644cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-unplwb, .framer-t2dBs .framer-anabzx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 112px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1nxtcot, .framer-t2dBs .framer-gw5ph4 { 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-t2dBs .framer-6zjwdg, .framer-t2dBs .framer-ujqe69 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-m2hu0s, .framer-t2dBs .framer-1jevi79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-il851d, .framer-t2dBs .framer-k3kxkc, .framer-t2dBs .framer-1fo4obu, .framer-t2dBs .framer-jl0qoc { --border-bottom-width: 0.623869776725769px; --border-color: #d4d4d4; --border-left-width: 0.623869776725769px; --border-right-width: 0.623869776725769px; --border-style: solid; --border-top-width: 0.623869776725769px; -webkit-backdrop-filter: blur(6px); align-content: center; align-items: center; backdrop-filter: blur(6px); background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12.477395057678223px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1pbjgaf, .framer-t2dBs .framer-109qvd4, .framer-t2dBs .framer-3hxs35, .framer-t2dBs .framer-ec7irb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-aarqq7 { aspect-ratio: 0.9774436090225563 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 631px); overflow: hidden; position: relative; width: 616px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-k2u4n { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; gap: 0px; height: 461px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-6ktzzt { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 544px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-1viavw5 { aspect-ratio: 1.1074589127686474 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 315px; overflow: visible; position: absolute; top: -38px; width: 266px; z-index: 1; }\",\".framer-t2dBs .framer-1uc9ihc { aspect-ratio: 0.9466950959488273 / 1; bottom: -26px; flex: none; height: var(--framer-aspect-ratio-supported, 161px); left: 13px; overflow: visible; position: absolute; width: 152px; z-index: 1; }\",\".framer-t2dBs .framer-15tnzq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 56px 50px 70px 50px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-mmgha3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-6tcjzj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 466px; }\",\".framer-t2dBs .framer-1ccrvez { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-7t7e2w, .framer-t2dBs .framer-k4lnka { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-5k76pk { 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: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-uzycwh { 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 12px 0px 12px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-1x0j04 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-4cxumj { align-self: stretch; aspect-ratio: 1.146131805157593 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 175px); position: relative; width: auto; }\",\".framer-t2dBs .framer-1k88lp1 { flex: none; height: 366px; position: relative; width: 418px; }\",\".framer-t2dBs .framer-1andcl8 { --border-bottom-width: 1px; --border-color: #e5e5e5; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 536px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-h5r83o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-17efbv9, .framer-t2dBs .framer-wpx1z7 { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 50px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-aai0is, .framer-t2dBs .framer-16tg1ul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-ms0ty9, .framer-t2dBs .framer-hrdxw3 { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t2dBs .framer-19915hi, .framer-t2dBs .framer-dn14l2, .framer-t2dBs .framer-o63afw, .framer-t2dBs .framer-15otb01, .framer-t2dBs .framer-7uhux5, .framer-t2dBs .framer-1d24qvn, .framer-t2dBs .framer-1khpcnq, .framer-t2dBs .framer-15ru701, .framer-t2dBs .framer-1qfbl9u, .framer-t2dBs .framer-1326oxm, .framer-t2dBs .framer-1ohhg4a, .framer-t2dBs .framer-lpz8pu, .framer-t2dBs .framer-1rjec19, .framer-t2dBs .framer-1o9dv7, .framer-t2dBs .framer-yhxxyr, .framer-t2dBs .framer-1a7zsme, .framer-t2dBs .framer-xcesoi, .framer-t2dBs .framer-ywz8aa, .framer-t2dBs .framer-8ck1q8, .framer-t2dBs .framer-1oin1mp, .framer-t2dBs .framer-1xblwkx, .framer-t2dBs .framer-5hfaua, .framer-t2dBs .framer-14u8pc5, .framer-t2dBs .framer-1l3uies { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 60px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1kaaopq, .framer-t2dBs .framer-1m5tvgy, .framer-t2dBs .framer-2lttnb { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 60px; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-dbhd91, .framer-t2dBs .framer-4oivs9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-1lz2qnw { flex: none; height: 51px; position: relative; width: 159px; }\",\".framer-t2dBs .framer-z5xdf3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 53px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-1rnxt8v { align-content: flex-start; align-items: flex-start; background-color: #001703; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-101nkwj { background-color: rgba(0, 23, 3, 0.98); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-t2dBs .framer-1epiast { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1j9zy5y, .framer-t2dBs .framer-knv5ft { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-1f5c47f, .framer-t2dBs .framer-12ulyrn { --border-bottom-width: 1px; --border-color: rgba(227, 227, 227, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-jl4k5j, .framer-t2dBs .framer-1l8uwng { --border-bottom-width: 1px; --border-color: rgba(239, 239, 239, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: flex-start; overflow: visible; padding: 24px 20px 24px 20px; position: relative; width: 329px; }\",\".framer-t2dBs .framer-fi6rrd, .framer-t2dBs .framer-vfolz5, .framer-t2dBs .framer-lw1qxp, .framer-t2dBs .framer-8i6ylb, .framer-t2dBs .framer-8cmffq, .framer-t2dBs .framer-6otamu, .framer-t2dBs .framer-1a19wcj, .framer-t2dBs .framer-1vrw24w, .framer-t2dBs .framer-12w9gxc, .framer-t2dBs .framer-1n5nyq3, .framer-t2dBs .framer-qwgi5p, .framer-t2dBs .framer-1d2cqzr, .framer-t2dBs .framer-dev6ui, .framer-t2dBs .framer-1vfpbyo { --border-bottom-width: 1px; --border-color: rgba(239, 239, 239, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 20px 24px 20px; position: relative; width: 329px; }\",\".framer-t2dBs .framer-1yngkkg, .framer-t2dBs .framer-10lztwz { --border-bottom-width: 1px; --border-color: rgba(239, 239, 239, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 20px 24px 20px; position: relative; width: auto; }\",\".framer-t2dBs .framer-1vttmpc, .framer-t2dBs .framer-ic30bn { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, rgba(0, 120, 12, 0.8) 0%, rgb(0, 182, 18) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 288px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2dBs .framer-34jiiu, .framer-t2dBs .framer-ijiymy { --border-bottom-width: 1px; --border-color: rgba(239, 239, 239, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 82px; justify-content: center; overflow: visible; padding: 24px 20px 24px 20px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-g2lkfj, .framer-t2dBs .framer-mk93yb { flex: none; height: 29px; position: relative; width: 155px; }\",\".framer-t2dBs .framer-1te4njd, .framer-t2dBs .framer-bmag2f, .framer-t2dBs .framer-1j9erii, .framer-t2dBs .framer-1ao1k29, .framer-t2dBs .framer-azwxae, .framer-t2dBs .framer-1cdq3t2, .framer-t2dBs .framer-hvfvy4, .framer-t2dBs .framer-ak3cjz, .framer-t2dBs .framer-177yva6 { --border-bottom-width: 1px; --border-color: rgba(239, 239, 239, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; overflow: visible; padding: 24px 20px 24px 20px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-fnwkcv, .framer-t2dBs .framer-1sud53o, .framer-t2dBs .framer-1tibtzd, .framer-t2dBs .framer-pbqmyb, .framer-t2dBs .framer-2fp1ym, .framer-t2dBs .framer-16fln5r, .framer-t2dBs .framer-10qpcbj, .framer-t2dBs .framer-vts6m6, .framer-t2dBs .framer-3g7fye { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 34px; }\",\".framer-t2dBs .framer-wxxewy { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-nk2qus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-18zugo4, .framer-t2dBs .framer-zwt2gk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-bz349e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-18ysa3o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t2dBs .framer-5oz77q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 423px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-60xyp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-5o93wz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-t2dBs .framer-1mwg62w-container { aspect-ratio: 1.7124463519313304 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 173px); position: relative; width: 100%; }\",\".framer-t2dBs .framer-17hg9ht { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-18sqkl8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-is6p33-container, .framer-t2dBs .framer-3untgy-container, .framer-t2dBs .framer-1ivff4s-container, .framer-t2dBs .framer-1yiwbfe-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-t2dBs .framer-a78s6z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-u8lpze { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 116px 0px 136px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1myk8hc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-1nem22y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1y05qi { align-content: center; align-items: center; background-color: #003104; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 6px 14px 6px 12px; position: relative; width: min-content; }\",\".framer-t2dBs .framer-1ehdxvi { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t2dBs .framer-emz06f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-yv91t7-container { bottom: -573px; flex: none; height: 606px; left: -102px; position: absolute; right: -102px; z-index: 0; }\",\".framer-t2dBs .framer-6iet1v-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 390px; z-index: 1; }\",\".framer-t2dBs .framer-1m0m08u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1hgg9la { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-hldwhj { 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 16px 0px 16px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-b6f86p-container { flex: none; height: 879px; position: relative; width: 390px; }\",\".framer-t2dBs .framer-140tpj3-container, .framer-t2dBs .framer-89ubz2-container, .framer-t2dBs .framer-10v1l7o-container, .framer-t2dBs .framer-1xpswq-container, .framer-t2dBs .framer-1by8drb-container, .framer-t2dBs .framer-bqojm1-container { height: auto; position: relative; width: 362px; }\",\".framer-t2dBs .framer-1d7x1cg { align-content: flex-start; align-items: flex-start; background-color: #011700; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1u1rq9g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 16px 0px 26px; position: relative; width: 1px; }\",\".framer-t2dBs .framer-brn7j5, .framer-t2dBs .framer-3w3acs, .framer-t2dBs .framer-dxf6xp, .framer-t2dBs .framer-gdokog, .framer-t2dBs .framer-133tj6s, .framer-t2dBs .framer-gqe49v, .framer-t2dBs .framer-1raiuq2, .framer-t2dBs .framer-esvbpb, .framer-t2dBs .framer-5n49ac { --border-bottom-width: 1px; --border-color: rgba(213, 240, 216, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 24px 20px 24px 20px; position: relative; width: 100%; }\",\".framer-t2dBs .framer-1gsko4v, .framer-t2dBs .framer-1tx3pjm, .framer-t2dBs .framer-12qrq74, .framer-t2dBs .framer-1kgauv5, .framer-t2dBs .framer-12q6i9g, .framer-t2dBs .framer-f384w0, .framer-t2dBs .framer-s58kd8, .framer-t2dBs .framer-1691awp, .framer-t2dBs .framer-btl7tk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-t2dBs[data-border=\"true\"]::after, .framer-t2dBs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-t2dBs.framer-1jnwpjt { width: 810px; } .framer-t2dBs .framer-48lfpl { height: 831px; } .framer-t2dBs .framer-1dr073k-container { height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 810px; } .framer-t2dBs .framer-1qd008p, .framer-t2dBs .framer-z1bfm4, .framer-t2dBs .framer-1epiast { flex-direction: column; } .framer-t2dBs .framer-vurk2k { flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-t2dBs .framer-2z65kf { align-content: center; align-items: center; flex: none; order: 1; padding: 0px 0px 200px 0px; width: 100%; } .framer-t2dBs .framer-b0od20, .framer-t2dBs .framer-1x0j04 { align-content: center; align-items: center; } .framer-t2dBs .framer-1cfjsq8 { --framer-paragraph-spacing: 0px; } .framer-t2dBs .framer-2hef94 { max-width: 600px; } .framer-t2dBs .framer-bg8m5d { justify-content: center; width: min-content; } .framer-t2dBs .framer-vzqk8x { align-content: center; align-items: center; bottom: -320px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 491px; justify-content: center; left: calc(50.00000000000002% - 746px / 2); order: 0; padding: 0px; position: absolute; width: 746px; z-index: 0; } .framer-t2dBs .framer-1vf10fd-container { bottom: unset; height: 638px; left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-t2dBs .framer-1mrkvhq { left: 39px; top: 69px; } .framer-t2dBs .framer-vlopr2, .framer-t2dBs .framer-1wxfobb { width: 778px; } .framer-t2dBs .framer-17wlitr, .framer-t2dBs .framer-1jl1rz6 { flex: none; height: min-content; width: 100%; } .framer-t2dBs .framer-eyqoh6, .framer-t2dBs .framer-1vsmfqk, .framer-t2dBs .framer-zphknr, .framer-t2dBs .framer-vxbnj2 { flex: none; width: 100%; } .framer-t2dBs .framer-1s8i2e2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; } .framer-t2dBs .framer-6lqzdn, .framer-t2dBs .framer-1bv6p2m, .framer-t2dBs .framer-6tcjzj, .framer-t2dBs .framer-vvatcs, .framer-t2dBs .framer-1j9zy5y { width: 100%; } .framer-t2dBs .framer-11dbf68 { background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 43.738739930831635%); left: 0px; right: -82px; top: -16px; } .framer-t2dBs .framer-ebip9, .framer-t2dBs .framer-kkgklz { padding: 40px 0px 40px 0px; } .framer-t2dBs .framer-1ac8w0f, .framer-t2dBs .framer-1hj0891, .framer-t2dBs .framer-m9ycur { flex-direction: column; gap: 32px; } .framer-t2dBs .framer-1o7uj4z { align-content: flex-start; align-items: flex-start; flex: none; order: 0; width: 100%; } .framer-t2dBs .framer-c0jbd0 { align-content: flex-start; align-items: flex-start; height: 618px; order: 0; } .framer-t2dBs .framer-kwr6q3 { height: var(--framer-aspect-ratio-supported, 576px); left: 57px; right: -591px; top: 58px; } .framer-t2dBs .framer-fnc4m4, .framer-t2dBs .framer-1yrszcx, .framer-t2dBs .framer-1nx673p, .framer-t2dBs .framer-xfg5ty, .framer-t2dBs .framer-1bzthd { order: 1; } .framer-t2dBs .framer-14liyqx { order: 0; width: 100%; } .framer-t2dBs .framer-99ghdn, .framer-t2dBs .framer-2weuwz, .framer-t2dBs .framer-1k88lp1, .framer-t2dBs .framer-nk2qus { order: 0; } .framer-t2dBs .framer-17b09d2, .framer-t2dBs .framer-1juj0dq { order: 2; } .framer-t2dBs .framer-19il30e { order: 0; width: 374px; } .framer-t2dBs .framer-1mzemqa { gap: 0px; order: 0; } .framer-t2dBs .framer-1yic5pg { gap: 0px; order: 2; } .framer-t2dBs .framer-vig95e-container { z-index: 1; } .framer-t2dBs .framer-1uj2zca { padding: 96px 0px 40px 0px; } .framer-t2dBs .framer-aarqq7 { aspect-ratio: 1.0056338028169014 / 1; height: var(--framer-aspect-ratio-supported, 613px); } .framer-t2dBs .framer-k2u4n { flex: none; height: 320px; width: 100%; } .framer-t2dBs .framer-1viavw5 { left: 495px; top: 47%; transform: translateY(-50%); } .framer-t2dBs .framer-1uc9ihc { bottom: unset; top: 58px; } .framer-t2dBs .framer-15tnzq4 { flex-direction: column; padding: 56px 50px 50px 50px; } .framer-t2dBs .framer-mmgha3 { flex: none; flex-direction: column; order: 0; width: 100%; } .framer-t2dBs .framer-qfcc8d { order: 3; } .framer-t2dBs .framer-16nue21 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-t2dBs .framer-1f5c47f, .framer-t2dBs .framer-1vttmpc { flex: 1 0 0px; width: 1px; } .framer-t2dBs .framer-1yngkkg { align-self: unset; width: 100%; } .framer-t2dBs .framer-wxxewy { padding: 40px; } .framer-t2dBs .framer-1mwg62w-container { height: var(--framer-aspect-ratio-supported, 121px); }}\",\"@media (max-width: 809px) { .framer-t2dBs.framer-1jnwpjt { width: 390px; } .framer-t2dBs .framer-vlopr2 { flex-direction: column; order: 2; padding: 32px 0px 32px 0px; } .framer-t2dBs .framer-1hngn6h, .framer-t2dBs .framer-1n346c { flex: none; padding: 0px; width: 100%; } .framer-t2dBs .framer-juvbfu, .framer-t2dBs .framer-xpinfs, .framer-t2dBs .framer-18ysa3o { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-t2dBs .framer-w3m2uv { order: 3; padding: 16px 0px 16px 0px; } .framer-t2dBs .framer-jx7eum, .framer-t2dBs .framer-1nkbieh { gap: 32px; padding: 0px 16px 0px 16px; } .framer-t2dBs .framer-z1bfm4, .framer-t2dBs .framer-1hj0891, .framer-t2dBs .framer-m9ycur { flex-direction: column; gap: 32px; } .framer-t2dBs .framer-17wlitr, .framer-t2dBs .framer-1jl1rz6 { flex: none; gap: 14px; height: min-content; padding: 0px; width: 100%; } .framer-t2dBs .framer-eyqoh6 { flex: none; gap: 14px; padding: 0px; width: 100%; } .framer-t2dBs .framer-1s8i2e2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; padding: 24px; } .framer-t2dBs .framer-1vsmfqk { flex: none; gap: 9px; width: 100%; } .framer-t2dBs .framer-6lqzdn, .framer-t2dBs .framer-1bv6p2m, .framer-t2dBs .framer-tsvigz-container, .framer-t2dBs .framer-1cwyqvp, .framer-t2dBs .framer-oj7i9i, .framer-t2dBs .framer-6ktzzt, .framer-t2dBs .framer-5oz77q, .framer-t2dBs .framer-arp6ib, .framer-t2dBs .framer-bikihr, .framer-t2dBs .framer-19v2iq2 { width: 100%; } .framer-t2dBs .framer-1nv3ati { order: 5; } .framer-t2dBs .framer-8dxw6g { padding: 16px; } .framer-t2dBs .framer-1nk3rd2 { background-color: unset; padding: 50px 24px 50px 24px; } .framer-t2dBs .framer-q4sd0q { -webkit-mask: linear-gradient(179deg, rgba(0, 0, 0, 0.04) 53.27984234234234%, rgba(0, 0, 0, 0.9) 100%) add; bottom: -40px; left: -446px; mask: linear-gradient(179deg, rgba(0, 0, 0, 0.04) 53.27984234234234%, rgba(0, 0, 0, 0.9) 100%) add; right: -454px; top: -32px; width: unset; } .framer-t2dBs .framer-1fe89bz { padding: 0px; } .framer-t2dBs .framer-1i57sie { flex: 1 0 0px; width: 1px; } .framer-t2dBs .framer-1l1ys1, .framer-t2dBs .framer-kvclr4-container, .framer-t2dBs .framer-1ccrvez, .framer-t2dBs .framer-1bzr4q3, .framer-t2dBs .framer-tll2w5-container, .framer-t2dBs .framer-1o6v269, .framer-t2dBs .framer-1s2piym, .framer-t2dBs .framer-1jrqhbf, .framer-t2dBs .framer-hldwhj, .framer-t2dBs .framer-zwt2gk { order: 0; } .framer-t2dBs .framer-19xw35d { flex-direction: column; order: 1; } .framer-t2dBs .framer-is4oc3, .framer-t2dBs .framer-1v4t6c4, .framer-t2dBs .framer-fjvztf, .framer-t2dBs .framer-13sycnn, .framer-t2dBs .framer-a68o6b, .framer-t2dBs .framer-8p6x48, .framer-t2dBs .framer-u89fxf, .framer-t2dBs .framer-zphknr, .framer-t2dBs .framer-7t7e2w, .framer-t2dBs .framer-k4lnka, .framer-t2dBs .framer-5o93wz { flex: none; width: 100%; } .framer-t2dBs .framer-1wxfobb { flex-direction: column; order: 4; padding: 32px 0px 32px 0px; } .framer-t2dBs .framer-1s57hq4 { order: 0; padding: 24px; width: 100%; } .framer-t2dBs .framer-deli0q, .framer-t2dBs .framer-m2hu0s, .framer-t2dBs .framer-1o65q52, .framer-t2dBs .framer-1maufzn, .framer-t2dBs .framer-1jevi79, .framer-t2dBs .framer-1k8iqvy, .framer-t2dBs .framer-yv91t7-container, .framer-t2dBs .framer-b6f86p-container { order: 1; } .framer-t2dBs .framer-ebip9 { order: 8; padding: 16px 0px 16px 0px; } .framer-t2dBs .framer-1ac8w0f { flex-direction: column; gap: 32px; order: 0; padding: 0px 16px 40px 16px; } .framer-t2dBs .framer-1o7uj4z { flex: none; flex-direction: column; padding: 24px; width: 100%; } .framer-t2dBs .framer-c0jbd0 { flex: none; height: 308px; width: 100%; } .framer-t2dBs .framer-kwr6q3 { height: var(--framer-aspect-ratio-supported, 308px); left: 24px; right: unset; top: 24px; width: 462px; } .framer-t2dBs .framer-fnc4m4 { flex: none; justify-content: flex-start; padding: 0px; width: 100%; } .framer-t2dBs .framer-14liyqx { gap: 16px; width: 100%; } .framer-t2dBs .framer-1nx673p { gap: 24px; } .framer-t2dBs .framer-ul3y1e { align-content: flex-end; align-items: flex-end; order: 6; padding: 50px 0px 50px 0px; z-index: 1; } .framer-t2dBs .framer-dytwry { gap: 150px; height: min-content; } .framer-t2dBs .framer-fou4t5-container { position: relative; top: unset; } .framer-t2dBs .framer-1upp61a { order: 7; padding: 50px 0px 50px 0px; } .framer-t2dBs .framer-1q097rb { gap: 10px; padding: 0px 16px 0px 16px; } .framer-t2dBs .framer-11b1vgl { width: 361px; } .framer-t2dBs .framer-1ldj89g { flex-direction: column; width: 100%; } .framer-t2dBs .framer-1uj2zca { order: 10; padding: 32px 0px 32px 0px; } .framer-t2dBs .framer-jhzk3f, .framer-t2dBs .framer-nys9p5 { padding: 0px 16px 0px 16px; } .framer-t2dBs .framer-11tbqf4 { gap: 12px; order: 0; } .framer-t2dBs .framer-x173kv, .framer-t2dBs .framer-5k76pk, .framer-t2dBs .framer-1g42c1p, .framer-t2dBs .framer-emz06f, .framer-t2dBs .framer-6iet1v-container { order: 2; } .framer-t2dBs .framer-aarqq7 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 358px); width: 100%; } .framer-t2dBs .framer-kkgklz { order: 11; padding: 32px 0px 32px 0px; } .framer-t2dBs .framer-k2u4n { flex: none; height: 251px; order: 1; width: 100%; } .framer-t2dBs .framer-vxbnj2 { flex: none; order: 0; width: 100%; } .framer-t2dBs .framer-1viavw5 { bottom: 146px; height: var(--framer-aspect-ratio-supported, 166px); left: unset; right: 0px; top: unset; width: 183px; } .framer-t2dBs .framer-1uc9ihc { bottom: 10px; height: var(--framer-aspect-ratio-supported, 96px); width: 90px; } .framer-t2dBs .framer-15tnzq4 { flex-direction: column; gap: 24px; order: 12; padding: 32px 0px 32px 0px; } .framer-t2dBs .framer-mmgha3 { flex: none; flex-direction: column; gap: 24px; order: 0; padding: 0px 16px 0px 16px; width: 100%; } .framer-t2dBs .framer-6tcjzj { gap: 24px; width: 100%; } .framer-t2dBs .framer-5wf0ow { flex-direction: column; order: 3; } .framer-t2dBs .framer-4cxumj { height: var(--framer-aspect-ratio-supported, 315px); } .framer-t2dBs .framer-wxxewy { order: 14; padding: 60px 16px 60px 16px; } .framer-t2dBs .framer-nk2qus { gap: 24px; padding: 0px; } .framer-t2dBs .framer-60xyp { flex-direction: column; } .framer-t2dBs .framer-1mwg62w-container { height: var(--framer-aspect-ratio-supported, 209px); } .framer-t2dBs .framer-u8lpze { order: 3; } .framer-t2dBs .framer-1m0m08u { order: 13; } .framer-t2dBs .framer-1d7x1cg { order: 9; } .framer-t2dBs .framer-1u1rq9g { gap: 32px; } .framer-t2dBs .framer-19ensvh { gap: 17px; order: 1; width: 100%; } .framer-t2dBs .framer-knv5ft { gap: 4px; width: 100%; } .framer-t2dBs .framer-12ulyrn { box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05); } .framer-t2dBs .framer-1l8uwng, .framer-t2dBs .framer-1vrw24w, .framer-t2dBs .framer-12w9gxc, .framer-t2dBs .framer-qwgi5p, .framer-t2dBs .framer-1d2cqzr, .framer-t2dBs .framer-1vfpbyo { align-self: stretch; height: 50px; padding: 16px 14px 16px 14px; width: auto; } .framer-t2dBs .framer-1n5nyq3, .framer-t2dBs .framer-dev6ui { height: 50px; padding: 16px 14px 16px 14px; width: min-content; } .framer-t2dBs .framer-10lztwz { height: 50px; padding: 16px 14px 16px 14px; } .framer-t2dBs .framer-ic30bn { box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.02); flex: 1 0 0px; width: 1px; } .framer-t2dBs .framer-1yiwbfe-container { order: 20; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10218\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qUSJzXXOP\":{\"layout\":[\"fixed\",\"auto\"]},\"pVkaWDKMx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Op1drjMiP\":{\"pattern\":\":Op1drjMiP\",\"name\":\"1\"},\"uRdU5Foal\":{\"pattern\":\":uRdU5Foal\",\"name\":\"2\"},\"rUi51T468\":{\"pattern\":\":rUi51T468\",\"name\":\"3\"},\"Hf877J7TU\":{\"pattern\":\":Hf877J7TU\",\"name\":\"4\"},\"t1LSfZZk8\":{\"pattern\":\":t1LSfZZk8\",\"name\":\"blogs\"}}\n * @framerResponsiveScreen\n */const Framero0_jSGowk=withCSS(Component,css,\"framer-t2dBs\");export default Framero0_jSGowk;Framero0_jSGowk.displayName=\"Home\";Framero0_jSGowk.defaultProps={height:10218,width:1200};addFonts(Framero0_jSGowk,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/fmgcvoo7Pvi75XN7wkBOp5g4i4s.woff2\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]},...TransperantNavigationFonts,...ButtonFonts,...GlobeFonts,...TickerFonts,...Button1Fonts,...SLIDERFonts,...TestimonialCardFonts,...SlideshowFonts,...AnimatedNumberCounterFonts,...EmptyButtonFonts,...GreenButtonFonts,...BlogImageFonts,...BlogTitleFonts,...EFFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero0_jSGowk\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"Op1drjMiP\\\":{\\\"pattern\\\":\\\":Op1drjMiP\\\",\\\"name\\\":\\\"1\\\"},\\\"uRdU5Foal\\\":{\\\"pattern\\\":\\\":uRdU5Foal\\\",\\\"name\\\":\\\"2\\\"},\\\"rUi51T468\\\":{\\\"pattern\\\":\\\":rUi51T468\\\",\\\"name\\\":\\\"3\\\"},\\\"Hf877J7TU\\\":{\\\"pattern\\\":\\\":Hf877J7TU\\\",\\\"name\\\":\\\"4\\\"},\\\"t1LSfZZk8\\\":{\\\"pattern\\\":\\\":t1LSfZZk8\\\",\\\"name\\\":\\\"blogs\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"10218\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qUSJzXXOP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pVkaWDKMx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "t", "e", "r", "n", "s", "a", "o", "h", "u", "f", "c", "l", "p", "m", "i", "window", "phenomenon_default", "a", "o", "t", "i", "f", "r", "l", "c", "n", "A", "g", "v", "s", "d", "u", "m", "x", "U", "e", "D", "_", "y", "phenomenon_default", "Globe", "props", "background", "baseColor", "glowColor", "isDraggable", "dragOptions", "speed", "theta", "phi", "dark", "diffuse", "maxSamples", "mapBrightness", "markerSize", "markerArray", "markerColor", "scale", "alignment", "maxWidth", "offset", "offsetX", "offsetY", "stiffness", "damping", "mass", "canvasRef", "pe", "pointerInteracting", "pointerInteractionMovement", "isCanvas", "RenderTarget", "r", "useSpring", "fadeMask", "ue", "phiValue", "width", "onResize", "window", "baseConvert", "convertRGB", "glowConvert", "markerConvert", "globe", "D", "marker", "state", "p", "flexStyles", "e", "delta", "dp", "dpOffset", "dpDrag", "addPropertyControls", "ControlType", "color", "Color", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SrcType", "baseUrl", "getLogoUrl", "company", "Logo", "props", "radius", "isSearch", "srcType", "srcUrl", "srcFile", "style", "logoURL", "se", "emptyState", "RenderTarget", "p", "NullState", "baseStyles", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "v65wuOwPb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapodo35h", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText", "css", "FramerRUxSJbzco", "withCSS", "RUxSJbzco_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "RUxSJbzco_default", "LogoFonts", "Logo", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "LogoControls", "getPropertyControls", "TagControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "brandImage", "brandLogo", "date", "file", "height", "id", "person", "quote", "tag2", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "_humanReadableEnumMap_tag2", "_ref7", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yF_3Uny0g", "wEGDKSe69", "ktIgnsRLr", "lU_IMJMmO", "UXOMg7hE1", "CKys9TdIN", "rxaVUbZBa", "wYMEuBCPy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "v65wuOwPbr2zo2a", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerA0OqvjNwM", "withCSS", "A0OqvjNwM_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerFzBZqYka4", "withCSS", "FzBZqYka4_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "FzBZqYka4_default", "ButtonFonts", "t_qVchGUt_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c0b3ux", "args", "onTapp1cy4a", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerDKyyJ4mvg", "withCSS", "DKyyJ4mvg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "v98O_eQnM", "YMZt0Beto", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntert682wp", "overlay", "paginationInfo", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "l", "Link", "Image2", "getLoadingLazyAtYPosition", "cx", "css", "FramerfZ5nUt1GC", "withCSS", "fZ5nUt1GC_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "WGi3OC8vx_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "ComponentViewportProvider", "SVG", "css", "FramersF4vzf8sO", "withCSS", "sF4vzf8sO_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kW5U6sy4Y", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "SVG", "css", "FramerUVGMjvD_A", "withCSS", "UVGMjvD_A_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "d7W7X278s", "jJvS0UREy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText", "Link", "css", "FramerZZDsH024J", "withCSS", "ZZDsH024J_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NumberAnimator", "props", "ref", "pe", "isInView", "useInView", "numberText", "setNumberText", "ye", "start", "end", "decimals", "commas", "rounding", "fontColor", "animation", "currentAnimation", "setCurrentAnimation", "isCanvas", "RenderTarget", "formatNumber", "value", "numberString", "runAnimation", "animate", "latest", "ue", "u", "motion", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "TransperantNavigationFonts", "getFonts", "DKyyJ4mvg_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText", "ButtonFonts", "WGi3OC8vx_default", "GlobeFonts", "Globe", "ContainerWithOptimizedAppearEffect", "Container", "TickerFonts", "Ticker", "Button1Fonts", "UVGMjvD_A_default", "SLIDERFonts", "sF4vzf8sO_default", "SLIDERWithVariantAppearEffect", "withVariantAppearEffect", "TestimonialCardFonts", "A0OqvjNwM_default", "SlideshowFonts", "Slideshow", "AnimatedNumberCounterFonts", "NumberAnimator", "EmptyButtonFonts", "O4m9WwkcW_default", "GreenButtonFonts", "cNvjRd9sF_default", "BlogImageFonts", "fZ5nUt1GC_default", "BlogTitleFonts", "ZZDsH024J_default", "EFFooterFonts", "Mwwmrjdn6_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "textEffect", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transformTemplate1", "_", "t", "transition5", "animation7", "transition6", "animation8", "animation9", "transition7", "textEffect1", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation10", "textEffect2", "transition8", "textEffect3", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Ux7aNOG_NEmoBXjvGg", "TZHdlBujyEmoBXjvGg", "Ux7aNOG_Nmnd1XUjra", "Ryc8_IZbwEmoBXjvGg", "F88gpzWEtEmoBXjvGg", "idEmoBXjvGg", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "ref1", "ref2", "ref3", "ref4", "elementId", "useRouteElementId", "elementId1", "elementId2", "elementId3", "isDisplayed4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "ComponentViewportProvider", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "ChildrenCanSuspend", "NiXhsZ_y_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks4", "resolvedLinks5", "css", "Framero0_jSGowk", "withCSS", "o0_jSGowk_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
