{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/SZpCM71jgXIYda3e5MQE/BLXnIZRXEB3bnJSuNfVH/c0yMhKGYv.js"],
  "sourcesContent": ["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", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX}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{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Navbar from\"#framer/local/canvasComponent/NIjlt483b/NIjlt483b.js\";import Footer from\"#framer/local/canvasComponent/sPWv5v6MB/sPWv5v6MB.js\";import metadataProvider from\"#framer/local/webPageMetadata/c0yMhKGYv/c0yMhKGYv.js\";const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const MotionAWithFX=withFX(motion.a);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const SlideshowFonts=getFonts(Slideshow);const NavbarFonts=getFonts(Navbar);const FooterFonts=getFonts(Footer);const breakpoints={dMqMUK6pp:\"(max-width: 1199px)\",QpNcQf8U6:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-vrGnf\";const variantClassNames={dMqMUK6pp:\"framer-v-1d2pnq0\",QpNcQf8U6:\"framer-v-7eopbs\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.075,duration:.5,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const transition2={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect1={effect:animation,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.2,delay:.2,duration:.3,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition4};const transition5={bounce:.2,delay:0,duration:.1,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.2,delay:.1,duration:.1,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={bounce:.2,delay:.2,duration:.1,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={bounce:.2,delay:.3,duration:.4,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={bounce:.2,delay:.1,duration:.3,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition10={bounce:.2,delay:.5,duration:.3,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={bounce:.2,delay:.5,duration:.1,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={bounce:.2,delay:.1,duration:.4,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition14,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const transition15={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:6};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:9};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:8};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:7};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition16={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition16,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"QpNcQf8U6\",Phone:\"dMqMUK6pp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QpNcQf8U6\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"dMqMUK6pp\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"dMqMUK6pp\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"QpNcQf8U6\",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-7eopbs\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y990ug\",\"data-framer-name\":\"NavBar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua3li2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxhqsz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bujrri-container\",isModuleExternal:true,nodeId:\"StMqztb2n\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"StMqztb2n\",isMixedBorderRadius:false,layoutId:\"StMqztb2n\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/VWF9sqtUYTxH2ML39AQaEBW3j1g.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kdbxhu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zce8pw\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"64px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MEET ECOLINK AI\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MEET ECOLINK AI\"})}),className:\"framer-iueid5\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Where product transparency meets rewards\u2014for consumers who care and brands that deliver.\"})}),className:\"framer-21hhws\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-we9pkm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0l1o\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Merchants:\"})}),className:\"framer-1b0nhx4\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qimiK6LGz\"},motionChild:true,nodeId:\"UGLZGMFQy\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-chkkhg framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation3,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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Get Verified\"})}),className:\"framer-1cmsjy2\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oehtgq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Af8l5gSuZ\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"Af8l5gSuZ\",layoutId:\"Af8l5gSuZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uw4ao1\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Consumers:\"})}),className:\"framer-1ljr6gb\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/ecolink-ai/id6740466800\",motionChild:true,nodeId:\"d09VPZ0Qn\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1inalbc framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation3,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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Download for iOS\"})}),className:\"framer-i4fgqm\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g0y1on-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YMTzizFPt\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"YMTzizFPt\",layoutId:\"YMTzizFPt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.ecolinkai.android\",motionChild:true,nodeId:\"ES8r2lHyj\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1omy038 framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation3,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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Download for Android\"})}),className:\"framer-x5e9nt\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qvjz09-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HZvp58_hR\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"HZvp58_hR\",layoutId:\"HZvp58_hR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4z0k3x\",\"data-framer-name\":\"Featured in\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqr8ha\",\"data-framer-name\":\"Frame 15\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Owners TRIAL Wide Regular\", \"Owners TRIAL Wide Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Featured in\"})}),className:\"framer-34qtb1\",\"data-framer-name\":\"Featured in\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ot23o7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"u3XJci7FZ\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"u3XJci7FZ\",layoutId:\"u3XJci7FZ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1naldsx\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/PqT2m7pPMfmrhpXO1ZV68HVSx8.png\"},className:\"framer-kvso21\",\"data-framer-name\":\"nasdaq\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9641fb\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/yPKEubshR553nojGjpqZ07NxoQw.png\"},className:\"framer-c13w27\",\"data-framer-name\":\"Blockworks\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r9dwm5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/Xh9iN4h04GrgbW1ggZ2KN6ZLSU.png\"},className:\"framer-74fi3i\",\"data-framer-name\":\"Fortune\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13gcnei\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/zXQHGtdVN464S2T2lIo73P06vbM.png\"},className:\"framer-zb1hqj\",\"data-framer-name\":\"decrypt\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k59y05\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/hyGDnvPHqLHGNbIZnXhVUDxO5ZA.png\"},className:\"framer-o6ng28\",\"data-framer-name\":\"on37\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sdu8pb\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/t85aXTJQ7c6E7XysxmVIEiJIlxA.png\"},className:\"framer-1uxc4yb\",\"data-framer-name\":\"axios\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hr7jem\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d8dkyr\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"In a Sea of Claims, How Do You Know What's True?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"In a Sea of Claims, How Do You Know What's True?\"})}),className:\"framer-1amigbx\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Bold\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhxsy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1702gzj\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dfdmin\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1349yae\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dsybuk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Merchants\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Merchants\"})}),className:\"framer-10h1zyt\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Stand Out Through Transparency\"})}),className:\"framer-1aue9cr\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ogapmg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+48+64+0+0+16+0+0+0+0+16),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/4tB416NjozYVQY3YfI4bkkfU0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+48+72+0+16+0+0+0+0+16),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/4tB416NjozYVQY3YfI4bkkfU0.png\"},className:\"framer-d3lulq\",\"data-framer-name\":\"Marketplace-icon\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f2u6uq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:[\"Get \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Ecosapiens Verified \u2122\"}),\", create digital labels that tell the whole story, and connect with millions of conscious consumers. Turn product claims into trusted proof that drives growth. Add an interactive layer of commerce into your physical products.\"]})}),className:\"framer-pnphnc\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-175npf1-container\",isModuleExternal:true,nodeId:\"O3Z7a03Rf\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"O3Z7a03Rf\",isMixedBorderRadius:false,layoutId:\"O3Z7a03Rf\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/nJBDUdaylKBx34MwhZHZuiq6YIY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v4c8xv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tweg7s\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lcrr1j\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Verified Badge\"})})}),className:\"framer-1e6gbhx\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7nh0ik\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ozs4mo\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Standardized Ecolink Label\"})})}),className:\"framer-6i4lfw\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13hxdwy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1343v5u\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"1M+ built-in audience\"})})}),className:\"framer-1jl2cp2\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v07pu5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wdqqxt\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Commerce and growth stack\"})})}),className:\"framer-j5itpg\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xdy6ot\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://form.typeform.com/to/Wlvzd1JO\",motionChild:true,nodeId:\"edeoV5sIN\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oubpp0 framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation4,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-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Apply for Verification\"})}),className:\"framer-1wn9poo\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l8chag-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IId3YOV67\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"IId3YOV67\",layoutId:\"IId3YOV67\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mksvzi\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qimiK6LGz\"},motionChild:true,nodeId:\"tY0GhLuBn\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iwlgl4 framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation4,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-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\",\"--framer-text-decoration\":\"underline\"},children:\"Learn About Verified\"})}),className:\"framer-9y6vj0\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qs6fqYV29\"},motionChild:true,nodeId:\"Z3_q4jO3g\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h426ki framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation4,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-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\",\"--framer-text-decoration\":\"underline\"},children:\"Learn About Ecolink\"})}),className:\"framer-rv5jag\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e3r588\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h04k01\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1flk4du\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd3m6t\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4mrqe9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Consumers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Consumers\"})}),className:\"framer-18i36hq\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Shop with Confidence, Not Confusion\"})}),className:\"framer-8waihc\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a9jcw2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+48+64+0+1342+16+0+0+0+0+0+0+16),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/zuM6YKEfrxkRwEmtnNgL63bQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+48+72+0+16+0+0+0+0+0+0+16),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/zuM6YKEfrxkRwEmtnNgL63bQ.png\"},className:\"framer-lnli52\",\"data-framer-name\":\"User-icon\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-175w3rd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Cut through vague claims to see what's really in your products. Earn rewards for contributing insights and data \u2014while supporting brands that prove their impact.\"})}),className:\"framer-10rdgm0\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n7aw9w-container\",isModuleExternal:true,nodeId:\"t2oZg6plC\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"t2oZg6plC\",isMixedBorderRadius:false,layoutId:\"t2oZg6plC\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/wQcorOQ9B5laK66OlowH0QCH280.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5yykpg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19p1b42\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1aut6hg\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,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-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Learn the truth behind any product\"})}),className:\"framer-8i98ke\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-afbzrx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-spl87y\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,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-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Earn ECO AI Token points\"})}),className:\"framer-nszyjc\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b88ce0\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19kja0s\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,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-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Shape the network\"})}),className:\"framer-bjmi6b\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j5fbgx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-awf0bg\",\"data-framer-name\":\"Star icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(222, 243, 88)\"></path><path d=\"M 12.6 3.225 L 14.475 8.25 C 14.55 8.475 14.775 8.7 15.075 8.7 L 20.4 8.925 C 21 8.925 21.225 9.75 20.775 10.125 L 16.65 13.425 C 16.425 13.575 16.35 13.875 16.425 14.1 L 17.85 19.275 C 18 19.875 17.325 20.325 16.875 20.025 L 12.45 17.1 C 12.225 16.95 11.925 16.95 11.7 17.1 L 7.275 20.025 C 6.75 20.325 6.075 19.875 6.3 19.275 L 7.725 14.1 C 7.725 13.875 7.725 13.575 7.5 13.425 L 3.375 10.125 C 2.925 9.75 3.15 9 3.75 8.925 L 9.075 8.7 C 9.375 8.7 9.6 8.55 9.675 8.25 L 11.55 3.225 C 11.775 2.625 12.6 2.625 12.825 3.225 Z\" fill=\"rgb(41,41,41)\"></path></svg>',svgContentId:8770989413,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-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Gain health and sustainability insights\"})}),className:\"framer-2mn91n\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-clsjss\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/ecolink-ai/id6740466800\",motionChild:true,nodeId:\"xbomZmZJC\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1faf877 framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation4,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-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Download the Ecolink App\"})}),className:\"framer-bcgb6l\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6i5vum-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uwVs8DFvh\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"uwVs8DFvh\",layoutId:\"uwVs8DFvh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ac1f9f\",\"data-framer-name\":\"Frame 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{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\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(125, 125, 122)\"},children:\"Instant access to eco-friendly solutions right at your fingertips.\"})})}},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-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(125, 125, 122)\"},children:\"Instant access to eco-friendly solutions right at your fingertips.\"})}),className:\"framer-17naiye\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5fybjt\",\"data-framer-name\":\"The people have spoken - Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t3lm2w\",\"data-framer-name\":\"Frame 21\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:[\"The People\",/*#__PURE__*/_jsx(\"br\",{}),\"Have Spoken\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"The People Have Spoken\"})}),className:\"framer-cxzwl5\",\"data-framer-name\":\"The people have spoken\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dnezop\",\"data-framer-name\":\"Frame 20\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15x6un0\",\"data-framer-name\":\"Frame 16\",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\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"96px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"1M+\"})}),className:\"framer-597n8u\",\"data-framer-name\":\"1M+\",fonts:[\"Inter-Medium\"],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\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(41, 41, 41, 0.6)\"},children:\"Social Media Following\"})}),className:\"framer-vnpxk2\",\"data-framer-name\":\"Social media following\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sg6czx\",\"data-framer-name\":\"Frame 17\",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\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"96px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"240k+\"})}),className:\"framer-b909fu\",\"data-framer-name\":\"240k+\",fonts:[\"Inter-Medium\"],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\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(41, 41, 41, 0.6)\"},children:\"Trees Planted\"})}),className:\"framer-mou1pt\",\"data-framer-name\":\"Trees planted\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rehsi6\",\"data-framer-name\":\"Frame 18\",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\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"96px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"400k+\"})}),className:\"framer-1kqprq9\",\"data-framer-name\":\"150k+\",fonts:[\"Inter-Medium\"],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\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(41, 41, 41, 0.6)\"},children:\"Users\"})}),className:\"framer-1st8u63\",\"data-framer-name\":\"Platform users\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kfgi97\",\"data-framer-name\":\"Frame 19\",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\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"96px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"1M+\"})}),className:\"framer-hvg8k6\",\"data-framer-name\":\"1M+\",fonts:[\"Inter-Medium\"],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\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(41, 41, 41, 0.6)\"},children:\"Digital Tokens Issued\"})}),className:\"framer-1sim4d7\",\"data-framer-name\":\"Digital goods collected\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hgtq2r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xpgai6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fpmm1f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Join the Fastest Growing Product Label\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"and Merchant Network\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Join the Fastest Growing Product Label\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"and Merchant Network\"})]}),className:\"framer-m0xlyn\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Merchants are thriving with verification and consumer trust.\"})}),className:\"framer-1h87n83\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kpjolg\",\"data-framer-name\":\"Frame 156\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylxb1l\",\"data-framer-name\":\"Frame 147\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e70fig\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4852+64+240+0+0+0+26),pixelHeight:496,pixelWidth:704,sizes:\"181px\",src:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png\",srcSet:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png 704w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+0+0+40),pixelHeight:496,pixelWidth:704,sizes:\"227px\",src:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png\",srcSet:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png 704w\"},className:\"framer-1vpoq9o\",\"data-framer-name\":\"tentree\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o7sga3\",\"data-framer-name\":\"Frame 152\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4852+64+240+0+0+0+-58),pixelHeight:3017,pixelWidth:2474,sizes:\"200.5px\",src:\"https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg\",srcSet:\"https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg?scale-down-to=1024 839w,https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg?scale-down-to=2048 1679w,https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg 2474w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+0+0+-58),pixelHeight:3017,pixelWidth:2474,sizes:\"250px\",src:\"https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg\",srcSet:\"https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg?scale-down-to=1024 839w,https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg?scale-down-to=2048 1679w,https://framerusercontent.com/images/gJdfDGapp0ZosbGzrMgkGj47U8.jpg 2474w\"},className:\"framer-rpjxn6\",\"data-framer-name\":\"CC_Houseplant_0000670800076x7_2474\u200A\\xd7\u200A3017 1\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17ghfbg hidden-1d2pnq0\",\"data-framer-name\":\"Frame 151\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:385,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+0+0+0),pixelHeight:385,pixelWidth:800,sizes:\"498px\",src:\"https://framerusercontent.com/images/vBJUbffwV0QY6xlneo9lpTat4MM.png\",srcSet:\"https://framerusercontent.com/images/vBJUbffwV0QY6xlneo9lpTat4MM.png?scale-down-to=512 512w,https://framerusercontent.com/images/vBJUbffwV0QY6xlneo9lpTat4MM.png 800w\"},className:\"framer-1cv3agu\",\"data-framer-name\":\"01\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tpwjq2\",\"data-framer-name\":\"Frame 150\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6vz9i9\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4852+64+240+0+188+0+180-182),pixelHeight:1080,pixelWidth:1920,sizes:\"331.6px\",src:\"https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png\",srcSet:\"https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png?scale-down-to=512 512w,https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+248+0+-2),pixelHeight:1080,pixelWidth:1920,sizes:\"434px\",src:\"https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png\",srcSet:\"https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png?scale-down-to=512 512w,https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sEzLPTSxd75nXJD1deGtwX4ziVY.png 1920w\"},className:\"framer-l7twdb\",\"data-framer-name\":\"Soulfoods Amsterdam product 2\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p70hn8\",\"data-border\":true,\"data-framer-name\":\"Frame 152\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236,intrinsicWidth:737,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4852+64+240+0+188+0+64),pixelHeight:236,pixelWidth:737,sizes:\"170px\",src:\"https://framerusercontent.com/images/Cys7CeN9k7gPnNzgdA6FzlwWAU.png\",srcSet:\"https://framerusercontent.com/images/Cys7CeN9k7gPnNzgdA6FzlwWAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cys7CeN9k7gPnNzgdA6FzlwWAU.png 737w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236,intrinsicWidth:737,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+248+0+88),pixelHeight:236,pixelWidth:737,sizes:\"206px\",src:\"https://framerusercontent.com/images/Cys7CeN9k7gPnNzgdA6FzlwWAU.png\",srcSet:\"https://framerusercontent.com/images/Cys7CeN9k7gPnNzgdA6FzlwWAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cys7CeN9k7gPnNzgdA6FzlwWAU.png 737w\"},className:\"framer-1ymsg4z\",\"data-framer-name\":\"Logo rootless_\",transformTemplate:transformTemplate1})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vilc9v hidden-1d2pnq0\",\"data-framer-name\":\"Frame 153\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+248+0+-2),pixelHeight:800,pixelWidth:800,sizes:\"244px\",src:\"https://framerusercontent.com/images/yaw4EFA7CHF3ZMQf2KTZxh7lJ8.png\",srcSet:\"https://framerusercontent.com/images/yaw4EFA7CHF3ZMQf2KTZxh7lJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yaw4EFA7CHF3ZMQf2KTZxh7lJ8.png 800w\"},className:\"framer-wic5w3\",\"data-framer-name\":\"Testimonials square\"})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-npgnmz hidden-1d2pnq0\",\"data-border\":true,\"data-framer-name\":\"Frame 154\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+248+0+89.5),pixelHeight:208,pixelWidth:640,sizes:\"190px\",src:\"https://framerusercontent.com/images/e5WJkgcr3brrnGsSSfm0HQgWhUM.png\",srcSet:\"https://framerusercontent.com/images/e5WJkgcr3brrnGsSSfm0HQgWhUM.png?scale-down-to=512 512w,https://framerusercontent.com/images/e5WJkgcr3brrnGsSSfm0HQgWhUM.png 640w\"},className:\"framer-iv63zo\",\"data-framer-name\":\"Rosy-soil\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pba62y\",\"data-framer-name\":\"Frame 151\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hdaqbd hidden-1d2pnq0\",\"data-framer-name\":\"Frame 155\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:385,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+496+0+0),pixelHeight:385,pixelWidth:800,sizes:\"498px\",src:\"https://framerusercontent.com/images/O30X1L0I4QqYNWffvWQw6rDUMQ.png\",srcSet:\"https://framerusercontent.com/images/O30X1L0I4QqYNWffvWQw6rDUMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/O30X1L0I4QqYNWffvWQw6rDUMQ.png 800w\"},className:\"framer-gkkqy6\",\"data-framer-name\":\"02\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vpoja5\",\"data-framer-name\":\"Frame 153\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4852+64+240+0+376+0+24.5),pixelHeight:496,pixelWidth:704,sizes:\"186.5px\",src:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png\",srcSet:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png 704w\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+496+0+40),pixelHeight:496,pixelWidth:704,sizes:\"227px\",src:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png\",srcSet:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png 704w\"},className:\"framer-11p1h9h\",\"data-framer-name\":\"girlfriend-collective\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d99mbx\",\"data-border\":true,\"data-framer-name\":\"Frame 154\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4852+64+240+0+376+0+-2.5),pixelHeight:1080,pixelWidth:1920,sizes:\"373.5px\",src:\"https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png\",srcSet:\"https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+496+0+-2.5),pixelHeight:1080,pixelWidth:1920,sizes:\"435px\",src:\"https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png\",srcSet:\"https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nbVtFe0gC0Fl7nCXFbUw9IqQ.png 1920w\"},className:\"framer-12ektwq\",\"data-framer-name\":\"Geschwister Product\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:198,intrinsicWidth:792,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4852+64+240+0+376+0+69),pixelHeight:198,pixelWidth:792,sizes:\"168px\",src:\"https://framerusercontent.com/images/8uPeZjzMJx1qxQEuDJVedzDIufg.png\",srcSet:\"https://framerusercontent.com/images/8uPeZjzMJx1qxQEuDJVedzDIufg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8uPeZjzMJx1qxQEuDJVedzDIufg.png 792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:198,intrinsicWidth:792,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3178+64+232+0+496+0+94),pixelHeight:198,pixelWidth:792,sizes:\"206px\",src:\"https://framerusercontent.com/images/8uPeZjzMJx1qxQEuDJVedzDIufg.png\",srcSet:\"https://framerusercontent.com/images/8uPeZjzMJx1qxQEuDJVedzDIufg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8uPeZjzMJx1qxQEuDJVedzDIufg.png 792w\"},className:\"framer-u2j2dc\",\"data-framer-name\":\"Geschwister-Logo\",transformTemplate:transformTemplate1})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sj05di\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsizs1\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ewo1k8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Be Seen by Our 1M+ Community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Be Seen by Our 1M+ Community\"})}),className:\"framer-1hh759u\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Our mission is to drive action through commerce. That\u2019s why we highlight each Ecolink brand to our #1 trusted community of over 1M followers. With Ecolink, you become a community member, expand your reach, and get instant visibility.\"})}),className:\"framer-v94j4x\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z4zjyz\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com/ecosapiens\",motionChild:true,nodeId:\"xm66kwVIB\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11mr8a1 framer-8xjh2i\",\"data-border\":true,\"data-framer-name\":\"Frame 2\",whileHover:animation3,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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\",\"--framer-text-decoration\":\"underline\"},children:\"Instagram\"})}),className:\"framer-1c6jccs\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/ecosapiensxyz\",motionChild:true,nodeId:\"abjNg3318\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wxcr75 framer-8xjh2i\",\"data-border\":true,\"data-framer-name\":\"Frame 2\",whileHover:animation3,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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\",\"--framer-text-decoration\":\"underline\"},children:\"Twitter\"})}),className:\"framer-v9803s\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zoltth\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:654,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+26),pixelHeight:816,pixelWidth:654,sizes:\"274px\",src:\"https://framerusercontent.com/images/1qTFtoLvOf8i3iXeZ4b7M4nXOTM.png\",srcSet:\"https://framerusercontent.com/images/1qTFtoLvOf8i3iXeZ4b7M4nXOTM.png 654w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:654,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+0),pixelHeight:816,pixelWidth:654,sizes:\"551.4118px\",src:\"https://framerusercontent.com/images/1qTFtoLvOf8i3iXeZ4b7M4nXOTM.png\",srcSet:\"https://framerusercontent.com/images/1qTFtoLvOf8i3iXeZ4b7M4nXOTM.png 654w\"},className:\"framer-i1m3uz\",\"data-framer-name\":\"Mobile\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:83,intrinsicWidth:188,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+202),pixelHeight:83,pixelWidth:188,src:\"https://framerusercontent.com/images/yYEGJUQOZ15BVa2JVzR7LuLe2LU.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation15,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:83,intrinsicWidth:188,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+688-330),pixelHeight:83,pixelWidth:188,src:\"https://framerusercontent.com/images/yYEGJUQOZ15BVa2JVzR7LuLe2LU.png\"},className:\"framer-sy124k\",\"data-framer-name\":\"05-Axios\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:123,intrinsicWidth:281,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+169),pixelHeight:123,pixelWidth:281,src:\"https://framerusercontent.com/images/zlTBatMj3ZJkXHgDLqS8A4cs7zY.png\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation16,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:123,intrinsicWidth:281,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+289),pixelHeight:123,pixelWidth:281,src:\"https://framerusercontent.com/images/zlTBatMj3ZJkXHgDLqS8A4cs7zY.png\"},className:\"framer-1lqfun9\",\"data-framer-name\":\"04-Nasdaq\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:67,intrinsicWidth:154,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+134),pixelHeight:67,pixelWidth:154,src:\"https://framerusercontent.com/images/9KCsw54KodTqg7JJg3SdYqcJ9HA.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation17,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:67,intrinsicWidth:154,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+185),pixelHeight:67,pixelWidth:154,src:\"https://framerusercontent.com/images/9KCsw54KodTqg7JJg3SdYqcJ9HA.png\"},className:\"framer-1tfhyuf\",\"data-framer-name\":\"01-CoinDesk1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:182,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+146),pixelHeight:80,pixelWidth:182,src:\"https://framerusercontent.com/images/vgje6MxZlNvhpz8FuyNwcQpp4fk.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation18,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:182,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+209),pixelHeight:80,pixelWidth:182,src:\"https://framerusercontent.com/images/vgje6MxZlNvhpz8FuyNwcQpp4fk.png\"},className:\"framer-csuxuh\",\"data-framer-name\":\"02-Fortune\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:231,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+148),pixelHeight:101,pixelWidth:231,src:\"https://framerusercontent.com/images/YqXTq3lvuDwhqKukFWG70M13tSo.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation19,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:231,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+243),pixelHeight:101,pixelWidth:231,src:\"https://framerusercontent.com/images/YqXTq3lvuDwhqKukFWG70M13tSo.png\"},className:\"framer-vht11h\",\"data-framer-name\":\"03-Decrypt\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:242,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+188),pixelHeight:97,pixelWidth:242,src:\"https://framerusercontent.com/images/6f1hzJd2hmpJ42xJ4pNKwtmOVY.png\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation17,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:242,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+326.5701),pixelHeight:97,pixelWidth:242,src:\"https://framerusercontent.com/images/6f1hzJd2hmpJ42xJ4pNKwtmOVY.png\"},className:\"framer-1nq6cxr\",\"data-framer-name\":\"Grimes\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112,intrinsicWidth:281,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+228),pixelHeight:112,pixelWidth:281,src:\"https://framerusercontent.com/images/OaXli50BJsTBf5VQTlPY6XsKs.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation19,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:112,intrinsicWidth:281,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+688-248.68),pixelHeight:112,pixelWidth:281,src:\"https://framerusercontent.com/images/OaXli50BJsTBf5VQTlPY6XsKs.png\"},className:\"framer-v5bhfw\",\"data-framer-name\":\"Ludacris\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+258),pixelHeight:124,pixelWidth:310,src:\"https://framerusercontent.com/images/4o19wk80j9Ztf0WlEh3OXE6PwYE.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation16,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+688-188.7362),pixelHeight:124,pixelWidth:310,src:\"https://framerusercontent.com/images/4o19wk80j9Ztf0WlEh3OXE6PwYE.png\"},className:\"framer-ldynix\",\"data-framer-name\":\"Candice\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:135,intrinsicWidth:338,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5776+64+256+197),pixelHeight:135,pixelWidth:338,src:\"https://framerusercontent.com/images/PaAKUkUU5eV3kR4ZCIu8JvesWx0.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation18,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:135,intrinsicWidth:338,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4274+64+296+688-309.7924),pixelHeight:135,pixelWidth:338,src:\"https://framerusercontent.com/images/PaAKUkUU5eV3kR4ZCIu8JvesWx0.png\"},className:\"framer-17wtkft\",\"data-framer-name\":\"Drake\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Followed by:\"})}),transformTemplate:transformTemplate3}},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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Followed by:\"})}),className:\"framer-2tk7oy\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Featured in:\"})}),transformTemplate:transformTemplate3}},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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Featured in:\"})}),className:\"framer-137mu9k\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation20,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ktx35s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{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\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"650K\"})})}},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-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"650K\"})}),className:\"framer-4u5ygo\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"followers\"})})}},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\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"followers\"})}),className:\"framer-frqzzj\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{style:{scale:.7}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-jds4wm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fla0nxRFm\",rendersWithMotion:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"fla0nxRFm\",layoutId:\"fla0nxRFm\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-89d0ab\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Verified Merchants\"})}),className:\"framer-2kz2ya\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{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\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"50+\"})}),className:\"framer-1mqgyj2\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Shop smarter and earn rewards for supporting verified brands.\"})}),className:\"framer-12i5p39\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kj8ih3\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Social Media Followers\"})}),className:\"framer-2ve1jj\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{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\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"1M+\"})}),className:\"framer-1mihqkg\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"A massive audience to connect with.\"})}),className:\"framer-1gc652e\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rjx1e8\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Trees Planted\"})}),className:\"framer-1tun1vg\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{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\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"240k+\"})}),className:\"framer-1jwi4dh\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Making a tangible environmental impact.\"})}),className:\"framer-1a39gck\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v6gba2\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Active Users\"})}),className:\"framer-bp2llb\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{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\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"400k+\"})}),className:\"framer-efq98q\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Engaged consumers driving the ecosystem.\"})}),className:\"framer-1klrh3h\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q3ol2p\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Digital Tokens Issued\"})}),className:\"framer-1i4d0gu\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{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\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"1M+\"})}),className:\"framer-1mf6w74\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"A thriving rewards system empowering users.\"})}),className:\"framer-1pdjlaq\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j5vbqi\",\"data-framer-name\":\"Our climate tech\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ju34v5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pqj89s\",\"data-framer-name\":\"Frame 21\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Shop, Contribute and Earn with ECO AI Token\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Shop, Contribute and Earn with ECO AI Token\"})}),className:\"framer-mrjr3u\",\"data-framer-name\":\"Our climate tech\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{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\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.6)\"},children:\"A token ecosystem that benefits merchants, consumers, and the planet.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,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\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.6)\"},children:\"A token ecosystem that benefits merchants, consumers, and the planet.\"})}),className:\"framer-kb4jpq\",\"data-framer-name\":\"Our cutting-edge technology underpins real world carbon assets to digital collectibles, unlocking a number of unique ways for consumers and enterprises to make an impact and get rewarded for it.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://ecosapiens.gitbook.io/ecolink-ai-whitepaper/\",motionChild:true,nodeId:\"u1cCINK1K\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nnu3qm framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation3,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-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Read whitepaper\"})}),className:\"framer-ygu389\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w7q41n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sHyFxHvSO\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"sHyFxHvSO\",layoutId:\"sHyFxHvSO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qofoxp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ovhdu7-container\",isModuleExternal:true,nodeId:\"WHgLURiB1\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"WHgLURiB1\",isMixedBorderRadius:false,layoutId:\"WHgLURiB1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/xUNPyr7zKHi8svYIxqL2SyDEDM.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asrdr1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jd4ro1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"See How Ecosapiens Verified Is Changing Commerce\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIEJvbGQ=\",\"--framer-font-family\":'\"Owners TRIAL Wide Bold\", \"Owners TRIAL Wide Bold Placeholder\", sans-serif',\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"See How Ecosapiens Verified is\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Changing Commerce\"})]})}),className:\"framer-56nebr\",\"data-framer-name\":\"The New Standard in Sustainability\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Merchants are thriving with verification and consumer trust.\"})}),className:\"framer-1rxq9wl\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-azsj7f-container hidden-1d2pnq0\",isModuleExternal:true,nodeId:\"sxkJJrppH\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,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:false},gap:10,height:\"100%\",id:\"sxkJJrppH\",intervalControl:1.5,itemAmount:1,layoutId:\"sxkJJrppH\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,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:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-atsdjd\",\"data-framer-name\":\"Frame 184\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.allbirds.com/\",motionChild:true,nodeId:\"IC6RLFWRL\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-prj4hq framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"192px\",src:\"https://framerusercontent.com/images/oPP2aqrwRx4GE5jhYVaVjQCLXI.png\",srcSet:\"https://framerusercontent.com/images/oPP2aqrwRx4GE5jhYVaVjQCLXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPP2aqrwRx4GE5jhYVaVjQCLXI.png 704w\"},className:\"framer-1nbxl0i\",\"data-framer-name\":\"Allbirds\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://atoms.com/\",motionChild:true,nodeId:\"hDOvrLJkd\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-a9nqu9 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"240px\",src:\"https://framerusercontent.com/images/Pf0C8mLCLP1VNG405L2UqX13LU.png\",srcSet:\"https://framerusercontent.com/images/Pf0C8mLCLP1VNG405L2UqX13LU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pf0C8mLCLP1VNG405L2UqX13LU.png 704w\"},className:\"framer-1plqfqv\",\"data-framer-name\":\"Atoms\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.avocadogreenmattress.com/\",motionChild:true,nodeId:\"a3TP44sGy\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1f5b9h9 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"170px\",src:\"https://framerusercontent.com/images/aUT6EhOe8h1fqc2wHqtfFopx90.png\",srcSet:\"https://framerusercontent.com/images/aUT6EhOe8h1fqc2wHqtfFopx90.png?scale-down-to=512 512w,https://framerusercontent.com/images/aUT6EhOe8h1fqc2wHqtfFopx90.png 704w\"},className:\"framer-ag7o33\",\"data-framer-name\":\"Avocado\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://celo.org/\",motionChild:true,nodeId:\"XSJtVIBOw\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1m0xxet framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"170px\",src:\"https://framerusercontent.com/images/GQiwCS2KzfzKncQ26djhw4lXS4.png\",srcSet:\"https://framerusercontent.com/images/GQiwCS2KzfzKncQ26djhw4lXS4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GQiwCS2KzfzKncQ26djhw4lXS4.png 704w\"},className:\"framer-1y09jry\",\"data-framer-name\":\"Celo\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://cyber.co/\",motionChild:true,nodeId:\"SnYrcYfmw\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4tb1r1 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"200px\",src:\"https://framerusercontent.com/images/IJ7bLVoZTR7EbfsRnk3EIzxDUc.png\",srcSet:\"https://framerusercontent.com/images/IJ7bLVoZTR7EbfsRnk3EIzxDUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IJ7bLVoZTR7EbfsRnk3EIzxDUc.png 704w\"},className:\"framer-we56fr\",\"data-framer-name\":\"Cyber\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ethdenver.com/\",motionChild:true,nodeId:\"BvduK0ZL8\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fu9dx2 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"124px\",src:\"https://framerusercontent.com/images/HC5sxTyI8lBa7ZQFz9tsMGlYtA.png\",srcSet:\"https://framerusercontent.com/images/HC5sxTyI8lBa7ZQFz9tsMGlYtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/HC5sxTyI8lBa7ZQFz9tsMGlYtA.png 704w\"},className:\"framer-1b1wr89\",\"data-framer-name\":\"Ethdenver\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://futurehorizon.to/\",motionChild:true,nodeId:\"qScimtReA\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19jsboe framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"170px\",src:\"https://framerusercontent.com/images/VlOG48Df7my2BVEyDlTmjwQPw.png\",srcSet:\"https://framerusercontent.com/images/VlOG48Df7my2BVEyDlTmjwQPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/VlOG48Df7my2BVEyDlTmjwQPw.png 704w\"},className:\"framer-v4442i\",\"data-framer-name\":\"Future-horizon\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://girlfriend.com/\",motionChild:true,nodeId:\"qCOHzDVtX\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-872yfh framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"178px\",src:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png\",srcSet:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png 704w\"},className:\"framer-1r2nprc\",\"data-framer-name\":\"Girlfriend-collective\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://harlowskinco.com/\",motionChild:true,nodeId:\"d4cJiXoe7\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cefn8f framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"178px\",src:\"https://framerusercontent.com/images/Xw9VuVEaV8EKwVsbHWYn5Be6Y4.png\",srcSet:\"https://framerusercontent.com/images/Xw9VuVEaV8EKwVsbHWYn5Be6Y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xw9VuVEaV8EKwVsbHWYn5Be6Y4.png 704w\"},className:\"framer-1gqe2yy\",\"data-framer-name\":\"Harlow\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.invisible.house/\",motionChild:true,nodeId:\"hpZa0RHp5\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dsjm6h framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"170px\",src:\"https://framerusercontent.com/images/RuwK88GAWzXYxYRQ7aozMwFhamg.png\",srcSet:\"https://framerusercontent.com/images/RuwK88GAWzXYxYRQ7aozMwFhamg.png?scale-down-to=512 512w,https://framerusercontent.com/images/RuwK88GAWzXYxYRQ7aozMwFhamg.png 704w\"},className:\"framer-1ntuh5z\",\"data-framer-name\":\"Invisible-house\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://komrads.world/\",motionChild:true,nodeId:\"QIwBBVvu7\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cnf9pr framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"174px\",src:\"https://framerusercontent.com/images/R7ps47lcki4pgwwrLTRyHoc6I.png\",srcSet:\"https://framerusercontent.com/images/R7ps47lcki4pgwwrLTRyHoc6I.png?scale-down-to=512 512w,https://framerusercontent.com/images/R7ps47lcki4pgwwrLTRyHoc6I.png 704w\"},className:\"framer-yn2hlo\",\"data-framer-name\":\"Komrads\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://kyotoprotocol.io/\",motionChild:true,nodeId:\"PnsVPmTE_\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fcr502 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"185px\",src:\"https://framerusercontent.com/images/krtmwdwepB8k7j6jjNI57pobUc.png\",srcSet:\"https://framerusercontent.com/images/krtmwdwepB8k7j6jjNI57pobUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/krtmwdwepB8k7j6jjNI57pobUc.png 704w\"},className:\"framer-1o3xke0\",\"data-framer-name\":\"Kyoto\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://mableclothing.com/\",motionChild:true,nodeId:\"BsS9GwNHo\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bz7e88 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"182px\",src:\"https://framerusercontent.com/images/n3dBqV8BFKK4ME3dVlXnNyoV4.png\",srcSet:\"https://framerusercontent.com/images/n3dBqV8BFKK4ME3dVlXnNyoV4.png?scale-down-to=512 512w,https://framerusercontent.com/images/n3dBqV8BFKK4ME3dVlXnNyoV4.png 704w\"},className:\"framer-196me1o\",\"data-framer-name\":\"Mable\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://harlowskinco.com/\",motionChild:true,nodeId:\"FUsXldLVY\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pkp4n4 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"186px\",src:\"https://framerusercontent.com/images/jyoZElQWiBdOFLFVgbXzv3Sk36g.png\",srcSet:\"https://framerusercontent.com/images/jyoZElQWiBdOFLFVgbXzv3Sk36g.png?scale-down-to=512 512w,https://framerusercontent.com/images/jyoZElQWiBdOFLFVgbXzv3Sk36g.png 704w\"},className:\"framer-tz8j65\",\"data-framer-name\":\"Match\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://kotn.com/\",motionChild:true,nodeId:\"ZFvFBKLp6\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fxettq framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/gqpitpEWDrpLUIa3wMlLHLEbUc.png\"},className:\"framer-zsjr4p\",\"data-framer-name\":\"Kotn\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://o2monde.com/\",motionChild:true,nodeId:\"nsM8ECALB\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qjlva framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"215px\",src:\"https://framerusercontent.com/images/xRvR4wEVcde1mBo0pbuHcMahOM.png\",srcSet:\"https://framerusercontent.com/images/xRvR4wEVcde1mBo0pbuHcMahOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/xRvR4wEVcde1mBo0pbuHcMahOM.png 704w\"},className:\"framer-6znp0h\",\"data-framer-name\":\"O2-monde\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://oceanfoam.com/\",motionChild:true,nodeId:\"DVMCr_uz1\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mbmvya framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"174px\",src:\"https://framerusercontent.com/images/pzxJozVhT4uvMj6PttuQO8qQEcg.png\",srcSet:\"https://framerusercontent.com/images/pzxJozVhT4uvMj6PttuQO8qQEcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/pzxJozVhT4uvMj6PttuQO8qQEcg.png 704w\"},className:\"framer-97xvrw\",\"data-framer-name\":\"Oceanfoam\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.originpink.com/\",motionChild:true,nodeId:\"awNYUq313\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15sgchm framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"194px\",src:\"https://framerusercontent.com/images/0FyAH1GJ1ThyfuCr7OYiwrjpw.png\",srcSet:\"https://framerusercontent.com/images/0FyAH1GJ1ThyfuCr7OYiwrjpw.png?scale-down-to=512 512w,https://framerusercontent.com/images/0FyAH1GJ1ThyfuCr7OYiwrjpw.png 704w\"},className:\"framer-5qyhgs\",\"data-framer-name\":\"Origin-pink\",transformTemplate:transformTemplate2})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b4qk1c\",\"data-framer-name\":\"Frame 184\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://pangaia.com/\",motionChild:true,nodeId:\"OTFmg2idy\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r3jb79 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"194px\",src:\"https://framerusercontent.com/images/f6PZ2wVyCZVmENOujFIopkuc5o.png\",srcSet:\"https://framerusercontent.com/images/f6PZ2wVyCZVmENOujFIopkuc5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/f6PZ2wVyCZVmENOujFIopkuc5o.png 704w\"},className:\"framer-6zchgn\",\"data-framer-name\":\"Pangaia\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.patagonia.com/home/\",motionChild:true,nodeId:\"c6j7u0V4x\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1f2q3di framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"185px\",src:\"https://framerusercontent.com/images/oAZ7rLj83FxiSwJpfUDizT9wCk.png\",srcSet:\"https://framerusercontent.com/images/oAZ7rLj83FxiSwJpfUDizT9wCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/oAZ7rLj83FxiSwJpfUDizT9wCk.png 704w\"},className:\"framer-wdwcf0\",\"data-framer-name\":\"Patagonia\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://plumenetwork.xyz/\",motionChild:true,nodeId:\"wblTRXYrx\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r8ccrs framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"181px\",src:\"https://framerusercontent.com/images/HlCeCNBbvODvK1C86fPr8CBrr4.png\",srcSet:\"https://framerusercontent.com/images/HlCeCNBbvODvK1C86fPr8CBrr4.png?scale-down-to=512 512w,https://framerusercontent.com/images/HlCeCNBbvODvK1C86fPr8CBrr4.png 704w\"},className:\"framer-1le47tt\",\"data-framer-name\":\"Plume\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://polygon.technology/\",motionChild:true,nodeId:\"wDEAosS6A\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ipjqfz framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"177px\",src:\"https://framerusercontent.com/images/xPstkD1ypiUNQXLFZGsaOIB6qYc.png\",srcSet:\"https://framerusercontent.com/images/xPstkD1ypiUNQXLFZGsaOIB6qYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xPstkD1ypiUNQXLFZGsaOIB6qYc.png 704w\"},className:\"framer-1b14id1\",\"data-framer-name\":\"Polygon-labs\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.thereformation.com/?srsltid=AfmBOorGuK3U_lfq7PiqppgEZma9fyiDPtcQ13lm0E6fohNyqA9g9gcj\",motionChild:true,nodeId:\"r9RsIy1A8\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-et0mg4 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"186px\",src:\"https://framerusercontent.com/images/NvWKikIIdSvuzA57z8kAFkNA.png\",srcSet:\"https://framerusercontent.com/images/NvWKikIIdSvuzA57z8kAFkNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NvWKikIIdSvuzA57z8kAFkNA.png 704w\"},className:\"framer-qd91a\",\"data-framer-name\":\"Reformation\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://rosysoil.com/?srsltid=AfmBOopOXn2Tist1JKgJxKXVNOUG_wM0s3XAeWzSdjUjott__-C1ocpW\",motionChild:true,nodeId:\"EqR_m6nal\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13hqi06 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"190px\",src:\"https://framerusercontent.com/images/bYG4jcfKNlPGVorBiwdHI0eQ.png\",srcSet:\"https://framerusercontent.com/images/bYG4jcfKNlPGVorBiwdHI0eQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bYG4jcfKNlPGVorBiwdHI0eQ.png 704w\"},className:\"framer-67onr3\",\"data-framer-name\":\"Rosy-soil\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://singapurastore.com/?srsltid=AfmBOorohM2NvLC9Sodobj_5QEcPJw1-UEt1UU1APlQLEvpUMzswFs-l\",motionChild:true,nodeId:\"i5N2XDFn0\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-te67e9 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"181px\",src:\"https://framerusercontent.com/images/BUM3POj5aWTsYOLjc2n30DHeuyA.png\",srcSet:\"https://framerusercontent.com/images/BUM3POj5aWTsYOLjc2n30DHeuyA.png?scale-down-to=512 512w,https://framerusercontent.com/images/BUM3POj5aWTsYOLjc2n30DHeuyA.png 704w\"},className:\"framer-1hlujes\",\"data-framer-name\":\"Singa\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.soulfoodsams.com/\",motionChild:true,nodeId:\"jr71BhKyJ\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sad3p8 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"170px\",src:\"https://framerusercontent.com/images/SZfSfwCatXjqmVVzno7DUm8RMU.png\",srcSet:\"https://framerusercontent.com/images/SZfSfwCatXjqmVVzno7DUm8RMU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SZfSfwCatXjqmVVzno7DUm8RMU.png 704w\"},className:\"framer-lg4g1z\",\"data-framer-name\":\"Soul-foods\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.stellamccartney.com/us/en/?srsltid=AfmBOoqtAcg21JWizxRAiRT-o6A8-F7erUuHnvWVioaKEd7swrTanzp4\",motionChild:true,nodeId:\"XliDDxw7f\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17ft6m7 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"172px\",src:\"https://framerusercontent.com/images/jP2i4Bz5XRUzgn6GOCHAD4nOSU0.png\",srcSet:\"https://framerusercontent.com/images/jP2i4Bz5XRUzgn6GOCHAD4nOSU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/jP2i4Bz5XRUzgn6GOCHAD4nOSU0.png 704w\"},className:\"framer-1t1fo91\",\"data-framer-name\":\"Stella-maccartney\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tentree.com/?srsltid=AfmBOooeBfgrojdI9JEBMyUpK1YPh8iRMp_KnvHNSAczvLSFWa2yHfy3\",motionChild:true,nodeId:\"G26Jhhzu4\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ehrng1 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"182px\",src:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png\",srcSet:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png 704w\"},className:\"framer-omf0kw\",\"data-framer-name\":\"Tentree\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://tokenproof.xyz/\",motionChild:true,nodeId:\"Z5rNv76nT\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-111xme9 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"175px\",src:\"https://framerusercontent.com/images/R8dd4K9ycZGPenVCSPlynDmsrw.png\",srcSet:\"https://framerusercontent.com/images/R8dd4K9ycZGPenVCSPlynDmsrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/R8dd4K9ycZGPenVCSPlynDmsrw.png 704w\"},className:\"framer-zq5b9p\",\"data-framer-name\":\"Token-proof\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.veja-store.com/en_eu/\",motionChild:true,nodeId:\"QqeQFbeNO\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1knpood framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"178px\",src:\"https://framerusercontent.com/images/kE4s5K6W25gW11Wp0E5COz8gLDY.png\",srcSet:\"https://framerusercontent.com/images/kE4s5K6W25gW11Wp0E5COz8gLDY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kE4s5K6W25gW11Wp0E5COz8gLDY.png 704w\"},className:\"framer-m0vlma\",\"data-framer-name\":\"Veja\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.smartswimsuits.us/\",motionChild:true,nodeId:\"ZNdztc4rU\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1a138xe framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/Abf8Qxerc4VDSN58TqX3uLEXA70.png\"},className:\"framer-1dhb22i\",\"data-framer-name\":\"Smart-swimsuits\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"http://truppifruit.com/\",motionChild:true,nodeId:\"RlbueZc5W\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-auce26 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/pJai5zUFAk76PDtFsqSmYMTILg.png\"},className:\"framer-1vy8fnu\",\"data-framer-name\":\"Id-geneve\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://getrootless.com/\",motionChild:true,nodeId:\"lxWV1jRIZ\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10gv3bk framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/4FLdU6DlcwW0YPNq5bV2wQJg.png\"},className:\"framer-ctjpu1\",\"data-framer-name\":\"Rootless\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://torrain.org/\",motionChild:true,nodeId:\"yh5zdRivc\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-917vlh framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/jqtrxzC0h6k4LR7IlVskvjYKpjA.png\"},className:\"framer-pqvvu9\",\"data-framer-name\":\"Torrain\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://disruptor.london/uk\",motionChild:true,nodeId:\"vRJzrLQBO\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-pr1e80 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/XR23mTWlM8jMU319ckMsaF4phiQ.png\"},className:\"framer-16fy9xu\",\"data-framer-name\":\"Disruptor-london\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.go-dogood.com/\",motionChild:true,nodeId:\"ObLXSvEZC\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1iirl7r framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/AJM6dkaWK6MNONRzpmXN7rormV8.png\"},className:\"framer-1qguob9\",\"data-framer-name\":\"Go-do-good\",transformTemplate:transformTemplate2})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5ax010\",\"data-framer-name\":\"Frame 184\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://mover.eu/\",motionChild:true,nodeId:\"IWXDyaXoC\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10a3u6g framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/T2batf6VS0ibfrau2PnfxUip5Ts.png\"},className:\"framer-1vpdlb\",\"data-framer-name\":\"Mover\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://nationbotanics.com/\",motionChild:true,nodeId:\"ZP5TKB27Q\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8s6xwf framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/NrYvZqMboDRmaaQAwCb6qSTxsG4.png\"},className:\"framer-1tiyymw\",\"data-framer-name\":\"Nation-botanics\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.8000kicks.com/\",motionChild:true,nodeId:\"oVFRKcUtw\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-qi9ro2 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/N4apZxfAoAIRn5OXnRDKBiNghU.png\"},className:\"framer-hmxg2c\",\"data-framer-name\":\"8000kicks\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://wrappr.com/\",motionChild:true,nodeId:\"wz_pZK43X\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14lm73s framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/s4pKqkivsxVk1KP8aQRlpSYqykw.png\"},className:\"framer-l2cppo\",\"data-framer-name\":\"Wrappr\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.rewilder.com/\",motionChild:true,nodeId:\"VnBwCQ1yk\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1p7je7r framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:325,pixelHeight:150,pixelWidth:325,src:\"https://framerusercontent.com/images/B3KZ896rB8um3XKblDW0gnKg58.jpg\"},className:\"framer-gq964d\",\"data-framer-name\":\"Rewilder Logo_-oz7911ukjwdttzkqjxyvw7oltnxd4zpxhkjc4r757g\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.haystraws.com/\",motionChild:true,nodeId:\"Bk5Jozsn4\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-104aowt framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/e4wThhjvsfHPUYz8EynxULJpio.png\"},className:\"framer-g0e2y2\",\"data-framer-name\":\"Hay-straws\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://zerobarracento.com/\",motionChild:true,nodeId:\"bFKTUrscI\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dcmmc framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/F1Hzy5gx2RGu00RjdMmKBshp2I8.png\"},className:\"framer-1tkz3nt\",\"data-framer-name\":\"Zerobarracento\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.yourban2030.org/index.html\",motionChild:true,nodeId:\"Rc6gPlk7s\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i0nr06 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/eYJmwyESvALxcG87p4CXWBdWM.png\"},className:\"framer-wlsimi\",\"data-framer-name\":\"Yourban\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.hessbyhess.com/\",motionChild:true,nodeId:\"nqCrJm1Eu\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ol19zc framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/tA2VNcxegrBl6CCa04WWnlw.png\"},className:\"framer-fu7yih\",\"data-framer-name\":\"Hess\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://ducktail.eu/\",motionChild:true,nodeId:\"fniKAzEEb\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hqku41 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/fVA47MlX8f9svSAGmhvCQIZeOE.png\"},className:\"framer-ewb7xp\",\"data-framer-name\":\"Ducktail-rainwear\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.shoddythreads.com/\",motionChild:true,nodeId:\"OVKbKr7HF\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ry7a4v framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/NPPF4iwAswYa6vXQuTzqXMEDu4Y.png\"},className:\"framer-1kkwydv\",\"data-framer-name\":\"Shoddy-threads\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.bamboozlehome.com/\",motionChild:true,nodeId:\"jFFx6nUeE\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-99rt74 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/fcUOIXcE4WlkgvznLC89U5ZZQ.png\"},className:\"framer-gp8kzz\",\"data-framer-name\":\"Bamboozle\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://setmefreehemp.com/\",motionChild:true,nodeId:\"TwqcojEVW\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ooi4u framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/ewQyXNkSQv4TA1TZ9BM4isgMWU.png\"},className:\"framer-6dynq5\",\"data-framer-name\":\"Set-me-free\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://altrofoodusa.com/\",motionChild:true,nodeId:\"epylciW5o\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-qufzke framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/neRn7JWvzjN79IxOwmjvBw7jKk.png\"},className:\"framer-p5twwf\",\"data-framer-name\":\"Altro-foods\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://seed2shirt.com/\",motionChild:true,nodeId:\"THQfNKQLI\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ts54eh framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/NtIB8pCCEU3oSapEZjR1EEigbtE.png\"},className:\"framer-1ajnfpn\",\"data-framer-name\":\"Seed-two-shirt\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://geschwister.com/\",motionChild:true,nodeId:\"xhgWxtFEQ\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11dzsgg framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/sK0O9qwdDEI3K09RegYVo5RYISs.png\"},className:\"framer-1vq7fn\",\"data-framer-name\":\"Geschwister\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.idwatch.ch/\",motionChild:true,nodeId:\"qeRph1URc\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lijnoh framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/gAiyVW4gWLhFSLfHFP5Cy52Po.png\"},className:\"framer-knghqr\",\"data-framer-name\":\"Id-geneve\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ananas-anam.com/\",motionChild:true,nodeId:\"k2tOUnnJe\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1e5v43j framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/T5TlP0tboGIP1Fk5F4taZwODT4.png\"},className:\"framer-1mudusz\",\"data-framer-name\":\"Ananas-anam\",transformTemplate:transformTemplate2})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jn53ah-container hidden-7eopbs\",isModuleExternal:true,nodeId:\"kWC8SdcYm\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"kWC8SdcYm\",intervalControl:1.5,itemAmount:1,layoutId:\"kWC8SdcYm\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,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:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xkvmuk\",\"data-framer-name\":\"Frame 184\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.allbirds.com/\",motionChild:true,nodeId:\"MjbOZH4ko\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ly695 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"126px\",src:\"https://framerusercontent.com/images/oPP2aqrwRx4GE5jhYVaVjQCLXI.png\",srcSet:\"https://framerusercontent.com/images/oPP2aqrwRx4GE5jhYVaVjQCLXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPP2aqrwRx4GE5jhYVaVjQCLXI.png 704w\"},className:\"framer-15sklvi\",\"data-framer-name\":\"Allbirds\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://atoms.com/\",motionChild:true,nodeId:\"RSv5gZ_n9\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vmampa framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"174px\",src:\"https://framerusercontent.com/images/Pf0C8mLCLP1VNG405L2UqX13LU.png\",srcSet:\"https://framerusercontent.com/images/Pf0C8mLCLP1VNG405L2UqX13LU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pf0C8mLCLP1VNG405L2UqX13LU.png 704w\"},className:\"framer-fgbcr7\",\"data-framer-name\":\"Atoms\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.avocadogreenmattress.com/\",motionChild:true,nodeId:\"QQ0faidJI\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dlgbn4 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"104px\",src:\"https://framerusercontent.com/images/aUT6EhOe8h1fqc2wHqtfFopx90.png\",srcSet:\"https://framerusercontent.com/images/aUT6EhOe8h1fqc2wHqtfFopx90.png?scale-down-to=512 512w,https://framerusercontent.com/images/aUT6EhOe8h1fqc2wHqtfFopx90.png 704w\"},className:\"framer-sig9ua\",\"data-framer-name\":\"Avocado\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://celo.org/\",motionChild:true,nodeId:\"w4CwSmIkE\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-chdk2w framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"104px\",src:\"https://framerusercontent.com/images/GQiwCS2KzfzKncQ26djhw4lXS4.png\",srcSet:\"https://framerusercontent.com/images/GQiwCS2KzfzKncQ26djhw4lXS4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GQiwCS2KzfzKncQ26djhw4lXS4.png 704w\"},className:\"framer-145ooz4\",\"data-framer-name\":\"Celo\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://cyber.co/\",motionChild:true,nodeId:\"cL1k7q7us\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cwwrby framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"134px\",src:\"https://framerusercontent.com/images/IJ7bLVoZTR7EbfsRnk3EIzxDUc.png\",srcSet:\"https://framerusercontent.com/images/IJ7bLVoZTR7EbfsRnk3EIzxDUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IJ7bLVoZTR7EbfsRnk3EIzxDUc.png 704w\"},className:\"framer-1suagw6\",\"data-framer-name\":\"Cyber\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ethdenver.com/\",motionChild:true,nodeId:\"jtgG8MErT\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mgr9kx framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"124px\",src:\"https://framerusercontent.com/images/HC5sxTyI8lBa7ZQFz9tsMGlYtA.png\",srcSet:\"https://framerusercontent.com/images/HC5sxTyI8lBa7ZQFz9tsMGlYtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/HC5sxTyI8lBa7ZQFz9tsMGlYtA.png 704w\"},className:\"framer-c6d2oo\",\"data-framer-name\":\"Ethdenver\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://futurehorizon.to/\",motionChild:true,nodeId:\"oXpNw4lSN\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gganog framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"104px\",src:\"https://framerusercontent.com/images/VlOG48Df7my2BVEyDlTmjwQPw.png\",srcSet:\"https://framerusercontent.com/images/VlOG48Df7my2BVEyDlTmjwQPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/VlOG48Df7my2BVEyDlTmjwQPw.png 704w\"},className:\"framer-1hydpkf\",\"data-framer-name\":\"Future-horizon\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://girlfriend.com/\",motionChild:true,nodeId:\"Z8SX_TO4N\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cy3a01 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"112px\",src:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png\",srcSet:\"https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbA5kqbnwhK8PuRNqRtCoqys.png 704w\"},className:\"framer-7mjn75\",\"data-framer-name\":\"Girlfriend-collective\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://harlowskinco.com/\",motionChild:true,nodeId:\"YO87IzeLG\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-167ouga framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"112px\",src:\"https://framerusercontent.com/images/Xw9VuVEaV8EKwVsbHWYn5Be6Y4.png\",srcSet:\"https://framerusercontent.com/images/Xw9VuVEaV8EKwVsbHWYn5Be6Y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xw9VuVEaV8EKwVsbHWYn5Be6Y4.png 704w\"},className:\"framer-3uxfvq\",\"data-framer-name\":\"Harlow\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.invisible.house/\",motionChild:true,nodeId:\"QGa2lSSYC\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rkmg4j framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"104px\",src:\"https://framerusercontent.com/images/RuwK88GAWzXYxYRQ7aozMwFhamg.png\",srcSet:\"https://framerusercontent.com/images/RuwK88GAWzXYxYRQ7aozMwFhamg.png?scale-down-to=512 512w,https://framerusercontent.com/images/RuwK88GAWzXYxYRQ7aozMwFhamg.png 704w\"},className:\"framer-1smzrec\",\"data-framer-name\":\"Invisible-house\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://komrads.world/\",motionChild:true,nodeId:\"cnmVUncqd\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kbgrma framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"108px\",src:\"https://framerusercontent.com/images/R7ps47lcki4pgwwrLTRyHoc6I.png\",srcSet:\"https://framerusercontent.com/images/R7ps47lcki4pgwwrLTRyHoc6I.png?scale-down-to=512 512w,https://framerusercontent.com/images/R7ps47lcki4pgwwrLTRyHoc6I.png 704w\"},className:\"framer-1ctnt39\",\"data-framer-name\":\"Komrads\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://kyotoprotocol.io/\",motionChild:true,nodeId:\"VEH3l4mMd\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1s9qjp3 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"119px\",src:\"https://framerusercontent.com/images/krtmwdwepB8k7j6jjNI57pobUc.png\",srcSet:\"https://framerusercontent.com/images/krtmwdwepB8k7j6jjNI57pobUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/krtmwdwepB8k7j6jjNI57pobUc.png 704w\"},className:\"framer-vu64jx\",\"data-framer-name\":\"Kyoto\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://mableclothing.com/\",motionChild:true,nodeId:\"TXJChB6da\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uwac6i framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"116px\",src:\"https://framerusercontent.com/images/n3dBqV8BFKK4ME3dVlXnNyoV4.png\",srcSet:\"https://framerusercontent.com/images/n3dBqV8BFKK4ME3dVlXnNyoV4.png?scale-down-to=512 512w,https://framerusercontent.com/images/n3dBqV8BFKK4ME3dVlXnNyoV4.png 704w\"},className:\"framer-1ul68a0\",\"data-framer-name\":\"Mable\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://harlowskinco.com/\",motionChild:true,nodeId:\"bK5pgKwEU\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kzt9n5 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"120px\",src:\"https://framerusercontent.com/images/jyoZElQWiBdOFLFVgbXzv3Sk36g.png\",srcSet:\"https://framerusercontent.com/images/jyoZElQWiBdOFLFVgbXzv3Sk36g.png?scale-down-to=512 512w,https://framerusercontent.com/images/jyoZElQWiBdOFLFVgbXzv3Sk36g.png 704w\"},className:\"framer-akpghw\",\"data-framer-name\":\"Match\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://kotn.com/\",motionChild:true,nodeId:\"Tn4ylFBBA\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bvvocl framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/gqpitpEWDrpLUIa3wMlLHLEbUc.png\"},className:\"framer-1xan0cu\",\"data-framer-name\":\"Kotn\",transformTemplate:transformTemplate1})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lwwwpm\",\"data-framer-name\":\"Frame 184\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://o2monde.com/\",motionChild:true,nodeId:\"C0OgquySU\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1f02k74 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"149px\",src:\"https://framerusercontent.com/images/xRvR4wEVcde1mBo0pbuHcMahOM.png\",srcSet:\"https://framerusercontent.com/images/xRvR4wEVcde1mBo0pbuHcMahOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/xRvR4wEVcde1mBo0pbuHcMahOM.png 704w\"},className:\"framer-wvv6wx\",\"data-framer-name\":\"O2-monde\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://oceanfoam.com/\",motionChild:true,nodeId:\"HbPfMh3nk\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vumlvn framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"108px\",src:\"https://framerusercontent.com/images/pzxJozVhT4uvMj6PttuQO8qQEcg.png\",srcSet:\"https://framerusercontent.com/images/pzxJozVhT4uvMj6PttuQO8qQEcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/pzxJozVhT4uvMj6PttuQO8qQEcg.png 704w\"},className:\"framer-1xz2t0h\",\"data-framer-name\":\"Oceanfoam\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.originpink.com/\",motionChild:true,nodeId:\"AwaezV15J\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cokoni framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"128px\",src:\"https://framerusercontent.com/images/0FyAH1GJ1ThyfuCr7OYiwrjpw.png\",srcSet:\"https://framerusercontent.com/images/0FyAH1GJ1ThyfuCr7OYiwrjpw.png?scale-down-to=512 512w,https://framerusercontent.com/images/0FyAH1GJ1ThyfuCr7OYiwrjpw.png 704w\"},className:\"framer-4o58hq\",\"data-framer-name\":\"Origin-pink\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://pangaia.com/\",motionChild:true,nodeId:\"eDHvhpXqP\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fi1hr3 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"128px\",src:\"https://framerusercontent.com/images/f6PZ2wVyCZVmENOujFIopkuc5o.png\",srcSet:\"https://framerusercontent.com/images/f6PZ2wVyCZVmENOujFIopkuc5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/f6PZ2wVyCZVmENOujFIopkuc5o.png 704w\"},className:\"framer-7my0xd\",\"data-framer-name\":\"Pangaia\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.patagonia.com/home/\",motionChild:true,nodeId:\"SYKkloVKi\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19k4x27 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"119px\",src:\"https://framerusercontent.com/images/oAZ7rLj83FxiSwJpfUDizT9wCk.png\",srcSet:\"https://framerusercontent.com/images/oAZ7rLj83FxiSwJpfUDizT9wCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/oAZ7rLj83FxiSwJpfUDizT9wCk.png 704w\"},className:\"framer-rjek1n\",\"data-framer-name\":\"Patagonia\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://plumenetwork.xyz/\",motionChild:true,nodeId:\"Vc4T3VVWR\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xyrd5p framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"115px\",src:\"https://framerusercontent.com/images/HlCeCNBbvODvK1C86fPr8CBrr4.png\",srcSet:\"https://framerusercontent.com/images/HlCeCNBbvODvK1C86fPr8CBrr4.png?scale-down-to=512 512w,https://framerusercontent.com/images/HlCeCNBbvODvK1C86fPr8CBrr4.png 704w\"},className:\"framer-cx7ny2\",\"data-framer-name\":\"Plume\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://polygon.technology/\",motionChild:true,nodeId:\"G61G23Txt\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fxnkzq framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"111px\",src:\"https://framerusercontent.com/images/xPstkD1ypiUNQXLFZGsaOIB6qYc.png\",srcSet:\"https://framerusercontent.com/images/xPstkD1ypiUNQXLFZGsaOIB6qYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xPstkD1ypiUNQXLFZGsaOIB6qYc.png 704w\"},className:\"framer-1tn2jik\",\"data-framer-name\":\"Polygon-labs\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.thereformation.com/?srsltid=AfmBOorGuK3U_lfq7PiqppgEZma9fyiDPtcQ13lm0E6fohNyqA9g9gcj\",motionChild:true,nodeId:\"DugV_TFeA\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-oa4ql7 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"120px\",src:\"https://framerusercontent.com/images/NvWKikIIdSvuzA57z8kAFkNA.png\",srcSet:\"https://framerusercontent.com/images/NvWKikIIdSvuzA57z8kAFkNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NvWKikIIdSvuzA57z8kAFkNA.png 704w\"},className:\"framer-15yk2o\",\"data-framer-name\":\"Reformation\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://rosysoil.com/?srsltid=AfmBOopOXn2Tist1JKgJxKXVNOUG_wM0s3XAeWzSdjUjott__-C1ocpW\",motionChild:true,nodeId:\"LSBSvv_TS\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9p0npc framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"124px\",src:\"https://framerusercontent.com/images/bYG4jcfKNlPGVorBiwdHI0eQ.png\",srcSet:\"https://framerusercontent.com/images/bYG4jcfKNlPGVorBiwdHI0eQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bYG4jcfKNlPGVorBiwdHI0eQ.png 704w\"},className:\"framer-ea6bts\",\"data-framer-name\":\"Rosy-soil\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://singapurastore.com/?srsltid=AfmBOorohM2NvLC9Sodobj_5QEcPJw1-UEt1UU1APlQLEvpUMzswFs-l\",motionChild:true,nodeId:\"pFbu4tJur\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lnsecg framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"115px\",src:\"https://framerusercontent.com/images/BUM3POj5aWTsYOLjc2n30DHeuyA.png\",srcSet:\"https://framerusercontent.com/images/BUM3POj5aWTsYOLjc2n30DHeuyA.png?scale-down-to=512 512w,https://framerusercontent.com/images/BUM3POj5aWTsYOLjc2n30DHeuyA.png 704w\"},className:\"framer-cmyahe\",\"data-framer-name\":\"Singa\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.soulfoodsams.com/\",motionChild:true,nodeId:\"c_xiV2GhM\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ihm607 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"104px\",src:\"https://framerusercontent.com/images/SZfSfwCatXjqmVVzno7DUm8RMU.png\",srcSet:\"https://framerusercontent.com/images/SZfSfwCatXjqmVVzno7DUm8RMU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SZfSfwCatXjqmVVzno7DUm8RMU.png 704w\"},className:\"framer-1nzb62f\",\"data-framer-name\":\"Soul-foods\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.stellamccartney.com/us/en/?srsltid=AfmBOoqtAcg21JWizxRAiRT-o6A8-F7erUuHnvWVioaKEd7swrTanzp4\",motionChild:true,nodeId:\"V9Ct0CAf6\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3y4k9k framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"106px\",src:\"https://framerusercontent.com/images/jP2i4Bz5XRUzgn6GOCHAD4nOSU0.png\",srcSet:\"https://framerusercontent.com/images/jP2i4Bz5XRUzgn6GOCHAD4nOSU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/jP2i4Bz5XRUzgn6GOCHAD4nOSU0.png 704w\"},className:\"framer-1krij38\",\"data-framer-name\":\"Stella-maccartney\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tentree.com/?srsltid=AfmBOooeBfgrojdI9JEBMyUpK1YPh8iRMp_KnvHNSAczvLSFWa2yHfy3\",motionChild:true,nodeId:\"zI0STE0Ep\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-s0rsgd framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"116px\",src:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png\",srcSet:\"https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WqaK7CY7EetoIc2r5fnYB4W5KY8.png 704w\"},className:\"framer-1p17pwl\",\"data-framer-name\":\"Tentree\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://tokenproof.xyz/\",motionChild:true,nodeId:\"kBI8QHf8m\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-156srja framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"109px\",src:\"https://framerusercontent.com/images/R8dd4K9ycZGPenVCSPlynDmsrw.png\",srcSet:\"https://framerusercontent.com/images/R8dd4K9ycZGPenVCSPlynDmsrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/R8dd4K9ycZGPenVCSPlynDmsrw.png 704w\"},className:\"framer-mflwdq\",\"data-framer-name\":\"Token-proof\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.veja-store.com/en_eu/\",motionChild:true,nodeId:\"U4IaiowaU\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-142jb3u framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:704,pixelHeight:496,pixelWidth:704,sizes:\"112px\",src:\"https://framerusercontent.com/images/kE4s5K6W25gW11Wp0E5COz8gLDY.png\",srcSet:\"https://framerusercontent.com/images/kE4s5K6W25gW11Wp0E5COz8gLDY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kE4s5K6W25gW11Wp0E5COz8gLDY.png 704w\"},className:\"framer-12uue9l\",\"data-framer-name\":\"Veja\",transformTemplate:transformTemplate2})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vev2k3\",\"data-framer-name\":\"Frame 184\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.smartswimsuits.us/\",motionChild:true,nodeId:\"nHfJqNc71\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-scrp9f framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/Abf8Qxerc4VDSN58TqX3uLEXA70.png\"},className:\"framer-21g96v\",\"data-framer-name\":\"Smart-swimsuits\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"http://truppifruit.com/\",motionChild:true,nodeId:\"lcaI5y9SQ\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14wsayq framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/pJai5zUFAk76PDtFsqSmYMTILg.png\"},className:\"framer-1b9vgf\",\"data-framer-name\":\"Id-geneve\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://getrootless.com/\",motionChild:true,nodeId:\"wjZfNLoXr\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gefc8i framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/4FLdU6DlcwW0YPNq5bV2wQJg.png\"},className:\"framer-1dt0nod\",\"data-framer-name\":\"Rootless\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://torrain.org/\",motionChild:true,nodeId:\"A5gd6YHw2\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jd8iu0 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/jqtrxzC0h6k4LR7IlVskvjYKpjA.png\"},className:\"framer-18ujnhz\",\"data-framer-name\":\"Torrain\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://disruptor.london/uk\",motionChild:true,nodeId:\"qzius4egY\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i24dxq framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/XR23mTWlM8jMU319ckMsaF4phiQ.png\"},className:\"framer-1i2h7bg\",\"data-framer-name\":\"Disruptor-london\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.go-dogood.com/\",motionChild:true,nodeId:\"TDSd3_h0o\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9r9uja framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/AJM6dkaWK6MNONRzpmXN7rormV8.png\"},className:\"framer-13vitv5\",\"data-framer-name\":\"Go-do-good\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://mover.eu/\",motionChild:true,nodeId:\"J5G67rsB6\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tv4czt framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/T2batf6VS0ibfrau2PnfxUip5Ts.png\"},className:\"framer-1yt19i\",\"data-framer-name\":\"Mover\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://nationbotanics.com/\",motionChild:true,nodeId:\"rPqyu1DAV\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yf9wnl framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/NrYvZqMboDRmaaQAwCb6qSTxsG4.png\"},className:\"framer-1fyxjek\",\"data-framer-name\":\"Nation-botanics\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.8000kicks.com/\",motionChild:true,nodeId:\"vbLHq_a1_\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1y61d0x framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/N4apZxfAoAIRn5OXnRDKBiNghU.png\"},className:\"framer-1acimop\",\"data-framer-name\":\"8000kicks\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://wrappr.com/\",motionChild:true,nodeId:\"F35h1XO5w\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1z0pgtp framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/s4pKqkivsxVk1KP8aQRlpSYqykw.png\"},className:\"framer-o16lwf\",\"data-framer-name\":\"Wrappr\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.rewilder.com/\",motionChild:true,nodeId:\"H83kJFGcV\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wd0ch2 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:325,pixelHeight:150,pixelWidth:325,src:\"https://framerusercontent.com/images/B3KZ896rB8um3XKblDW0gnKg58.jpg\"},className:\"framer-179zjq2\",\"data-framer-name\":\"Rewilder Logo_-oz7911ukjwdttzkqjxyvw7oltnxd4zpxhkjc4r757g\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.haystraws.com/\",motionChild:true,nodeId:\"wvwDFzwpc\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9jpzgh framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/e4wThhjvsfHPUYz8EynxULJpio.png\"},className:\"framer-yf271s\",\"data-framer-name\":\"Hay-straws\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://zerobarracento.com/\",motionChild:true,nodeId:\"RL5epGq5i\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7ygbe8 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/F1Hzy5gx2RGu00RjdMmKBshp2I8.png\"},className:\"framer-1c7pq4g\",\"data-framer-name\":\"Zerobarracento\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.yourban2030.org/index.html\",motionChild:true,nodeId:\"buavxt9zs\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sn61uk framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/eYJmwyESvALxcG87p4CXWBdWM.png\"},className:\"framer-p1lv19\",\"data-framer-name\":\"Yourban\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.hessbyhess.com/\",motionChild:true,nodeId:\"s41zax3_W\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1evk20d framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/tA2VNcxegrBl6CCa04WWnlw.png\"},className:\"framer-ou6pic\",\"data-framer-name\":\"Hess\",transformTemplate:transformTemplate1})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mvfixc\",\"data-framer-name\":\"Frame 184\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://ducktail.eu/\",motionChild:true,nodeId:\"Ye94fK5HF\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-omrhoe framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/fVA47MlX8f9svSAGmhvCQIZeOE.png\"},className:\"framer-c32kyy\",\"data-framer-name\":\"Ducktail-rainwear\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.shoddythreads.com/\",motionChild:true,nodeId:\"TQatG4iGo\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cuug4r framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/NPPF4iwAswYa6vXQuTzqXMEDu4Y.png\"},className:\"framer-1ohayzp\",\"data-framer-name\":\"Shoddy-threads\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.bamboozlehome.com/\",motionChild:true,nodeId:\"SaQU722W8\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1n7tplc framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/fcUOIXcE4WlkgvznLC89U5ZZQ.png\"},className:\"framer-1o2bld2\",\"data-framer-name\":\"Bamboozle\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://setmefreehemp.com/\",motionChild:true,nodeId:\"xpy6fjEyB\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-viybgd framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/ewQyXNkSQv4TA1TZ9BM4isgMWU.png\"},className:\"framer-10w2clu\",\"data-framer-name\":\"Set-me-free\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://altrofoodusa.com/\",motionChild:true,nodeId:\"JMqCnwXJ9\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zx3e3u framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/neRn7JWvzjN79IxOwmjvBw7jKk.png\"},className:\"framer-cnh7xg\",\"data-framer-name\":\"Altro-foods\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://seed2shirt.com/\",motionChild:true,nodeId:\"a63pYxW3g\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-eqld1v framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/NtIB8pCCEU3oSapEZjR1EEigbtE.png\"},className:\"framer-re3ea1\",\"data-framer-name\":\"Seed-two-shirt\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://geschwister.com/\",motionChild:true,nodeId:\"h5NP6AzS4\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jgo4j9 framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/sK0O9qwdDEI3K09RegYVo5RYISs.png\"},className:\"framer-1obqu23\",\"data-framer-name\":\"Geschwister\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.idwatch.ch/\",motionChild:true,nodeId:\"VW8X4I8QR\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1x3ovat framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/gAiyVW4gWLhFSLfHFP5Cy52Po.png\"},className:\"framer-y4kslp\",\"data-framer-name\":\"Id-geneve\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ananas-anam.com/\",motionChild:true,nodeId:\"qozyW4BTa\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lfm5pt framer-8xjh2i\",\"data-framer-name\":\"Brand_Card\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/T5TlP0tboGIP1Fk5F4taZwODT4.png\"},className:\"framer-myicvp\",\"data-framer-name\":\"Ananas-anam\",transformTemplate:transformTemplate2})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ioiaf\",\"data-framer-name\":\"Frame 15\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO093bmVycyBUUklBTCBXaWRlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Owners TRIAL Wide Regular\", \"Owners TRIAL Wide Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Investors\"})}),className:\"framer-1orh7h4\",\"data-framer-name\":\"Backed by\",effect:textEffect,fonts:[\"CUSTOM;Owners TRIAL Wide Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{style:{scale:.7}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-zyiw6t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ReAFaGteO\",rendersWithMotion:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"ReAFaGteO\",layoutId:\"ReAFaGteO\",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:52,intrinsicWidth:110,pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/UHU0hg0wjjcYqTfnxNugJjQ1nEQ.png\"},className:\"framer-10hg0qb\",\"data-framer-name\":\"boostvc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:52,intrinsicWidth:110,pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/DZLpReOWDZXRFm5M37NuREdVuA8.png\"},className:\"framer-tkojbj\",\"data-framer-name\":\"Climate_Capital_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:52,intrinsicWidth:110,pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/3FyJi6ie4u4k5VlOTYhHclCMGI8.png\"},className:\"framer-188ubzu\",\"data-framer-name\":\"Collab_Currency\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:52,intrinsicWidth:110,pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/XTZKebO0UOlqtWhQg2kAtgPo.png\"},className:\"framer-1gnnv4l\",\"data-framer-name\":\"crv_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:52,intrinsicWidth:110,pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/yvuuD5nGvwAQvcQsmWF7EGMY.png\"},className:\"framer-1simhkn\",\"data-framer-name\":\"Menlo_Ventures\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:52,intrinsicWidth:110,pixelHeight:52,pixelWidth:110,src:\"https://framerusercontent.com/images/q7xx6NFGojDUKqaEbXpXwQWkQA.png\"},className:\"framer-iriipz\",\"data-framer-name\":\"Slow_ventures\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zm12of\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brajgs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cc25zb\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Merchants:\"})}),className:\"framer-olbthz\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qimiK6LGz\"},motionChild:true,nodeId:\"XNHrRpwYy\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wzqsjw framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation3,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\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Get Verified\"})}),className:\"framer-pml0a3\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9b7hq6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nkJ0EIj0r\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"nkJ0EIj0r\",layoutId:\"nkJ0EIj0r\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvj5xj\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"For Consumers:\"})}),className:\"framer-c14gp5\",\"data-framer-name\":\"We're building the world's most trusted network of sustainable brands. Get verified, get connected, and get growing\u2014because impact is better together.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/ecolink-ai/id6740466800\",motionChild:true,nodeId:\"kLhIhFhm2\",openInNewTab:true,scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19hd1m3 framer-8xjh2i\",\"data-framer-name\":\"Frame 2\",whileHover:animation3,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\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Download the Ecolink App\"})}),className:\"framer-1ug66up\",\"data-framer-name\":\"Get Verified\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h1794j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VGtEtCjCV\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(41, 41, 41)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"VGtEtCjCV\",layoutId:\"VGtEtCjCV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{width:\"360px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"1152px\",y:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2ff6o-container\",layoutScroll:true,nodeId:\"cHcuW_0Eu\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{style:{width:\"100%\"},variant:\"unGKzZpJN\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"cHcuW_0Eu\",layoutId:\"cHcuW_0Eu\",style:{height:\"100%\",width:\"100%\"},variant:\"ydD7o8iM5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{height:520,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9023}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:204,width:\"1200px\",y:(componentViewport?.y||0)+0+7518,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dx56t-container\",nodeId:\"k3bunHjOj\",scopeId:\"c0yMhKGYv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dMqMUK6pp:{variant:\"ewIfiWzZM\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"k3bunHjOj\",layoutId:\"k3bunHjOj\",style:{height:\"100%\",width:\"100%\"},variant:\"o6nLZA7zy\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vrGnf.framer-8xjh2i, .framer-vrGnf .framer-8xjh2i { display: block; }\",\".framer-vrGnf.framer-7eopbs { 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: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-y990ug { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; gap: 10px; height: 88px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-1ua3li2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: 720px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-zxhqsz { flex: none; height: 680px; overflow: hidden; position: relative; width: 1160px; }\",\".framer-vrGnf .framer-1bujrri-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-vrGnf .framer-1kdbxhu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-vrGnf .framer-zce8pw { 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: 720px; }\",\".framer-vrGnf .framer-iueid5, .framer-vrGnf .framer-21hhws, .framer-vrGnf .framer-1amigbx, .framer-vrGnf .framer-10h1zyt, .framer-vrGnf .framer-pnphnc, .framer-vrGnf .framer-18i36hq, .framer-vrGnf .framer-8waihc, .framer-vrGnf .framer-m0xlyn, .framer-vrGnf .framer-1h87n83, .framer-vrGnf .framer-1hh759u, .framer-vrGnf .framer-2kz2ya, .framer-vrGnf .framer-1mqgyj2, .framer-vrGnf .framer-12i5p39, .framer-vrGnf .framer-2ve1jj, .framer-vrGnf .framer-1mihqkg, .framer-vrGnf .framer-1gc652e, .framer-vrGnf .framer-1tun1vg, .framer-vrGnf .framer-1jwi4dh, .framer-vrGnf .framer-1a39gck, .framer-vrGnf .framer-bp2llb, .framer-vrGnf .framer-efq98q, .framer-vrGnf .framer-1klrh3h, .framer-vrGnf .framer-1i4d0gu, .framer-vrGnf .framer-1mf6w74, .framer-vrGnf .framer-1pdjlaq, .framer-vrGnf .framer-mrjr3u, .framer-vrGnf .framer-kb4jpq, .framer-vrGnf .framer-56nebr, .framer-vrGnf .framer-1rxq9wl { --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-vrGnf .framer-we9pkm, .framer-vrGnf .framer-1brajgs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vrGnf .framer-1c0l1o, .framer-vrGnf .framer-uw4ao1, .framer-vrGnf .framer-1cc25zb, .framer-vrGnf .framer-wvj5xj { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2px 2px 2px 16px; position: relative; width: min-content; }\",\".framer-vrGnf .framer-1b0nhx4, .framer-vrGnf .framer-1cmsjy2, .framer-vrGnf .framer-1ljr6gb, .framer-vrGnf .framer-i4fgqm, .framer-vrGnf .framer-x5e9nt, .framer-vrGnf .framer-34qtb1, .framer-vrGnf .framer-1aue9cr, .framer-vrGnf .framer-1wn9poo, .framer-vrGnf .framer-9y6vj0, .framer-vrGnf .framer-rv5jag, .framer-vrGnf .framer-bcgb6l, .framer-vrGnf .framer-17naiye, .framer-vrGnf .framer-cxzwl5, .framer-vrGnf .framer-597n8u, .framer-vrGnf .framer-vnpxk2, .framer-vrGnf .framer-b909fu, .framer-vrGnf .framer-mou1pt, .framer-vrGnf .framer-1kqprq9, .framer-vrGnf .framer-1st8u63, .framer-vrGnf .framer-hvg8k6, .framer-vrGnf .framer-1sim4d7, .framer-vrGnf .framer-1c6jccs, .framer-vrGnf .framer-v9803s, .framer-vrGnf .framer-ygu389, .framer-vrGnf .framer-1orh7h4, .framer-vrGnf .framer-olbthz, .framer-vrGnf .framer-pml0a3, .framer-vrGnf .framer-c14gp5, .framer-vrGnf .framer-1ug66up { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vrGnf .framer-chkkhg, .framer-vrGnf .framer-1inalbc, .framer-vrGnf .framer-1omy038, .framer-vrGnf .framer-wzqsjw, .framer-vrGnf .framer-19hd1m3 { align-content: center; align-items: center; background-color: #dffb60; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: visible; padding: 0px 16px 0px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-vrGnf .framer-oehtgq-container, .framer-vrGnf .framer-g0y1on-container, .framer-vrGnf .framer-qvjz09-container, .framer-vrGnf .framer-1lcrr1j, .framer-vrGnf .framer-1ozs4mo, .framer-vrGnf .framer-1343v5u, .framer-vrGnf .framer-1wdqqxt, .framer-vrGnf .framer-l8chag-container, .framer-vrGnf .framer-1aut6hg, .framer-vrGnf .framer-spl87y, .framer-vrGnf .framer-19kja0s, .framer-vrGnf .framer-awf0bg, .framer-vrGnf .framer-6i5vum-container, .framer-vrGnf .framer-1w7q41n-container, .framer-vrGnf .framer-9b7hq6-container, .framer-vrGnf .framer-h1794j-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-vrGnf .framer-4z0k3x { 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: 60px 0px 60px 0px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-1xqr8ha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1ot23o7-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1naldsx, .framer-vrGnf .framer-9641fb, .framer-vrGnf .framer-r9dwm5, .framer-vrGnf .framer-13gcnei, .framer-vrGnf .framer-1k59y05, .framer-vrGnf .framer-sdu8pb { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vrGnf .framer-kvso21, .framer-vrGnf .framer-c13w27, .framer-vrGnf .framer-74fi3i, .framer-vrGnf .framer-zb1hqj, .framer-vrGnf .framer-o6ng28, .framer-vrGnf .framer-1uxc4yb { aspect-ratio: 2.1153846153846154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); mix-blend-mode: difference; position: relative; width: 110px; }\",\".framer-vrGnf .framer-hr7jem { 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: hidden; padding: 48px 16px 64px 16px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-d8dkyr { 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: 100%; }\",\".framer-vrGnf .framer-1dhxsy { 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; overflow: visible; padding: 0px; position: relative; width: 1168px; }\",\".framer-vrGnf .framer-1702gzj { align-content: center; align-items: center; background-color: #e2e1dc; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 16px 24px 16px; position: relative; width: 1px; }\",\".framer-vrGnf .framer-1dfdmin, .framer-vrGnf .framer-1flk4du { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1349yae, .framer-vrGnf .framer-cd3m6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 8px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1dsybuk { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-vrGnf .framer-1ogapmg, .framer-vrGnf .framer-1a9jcw2 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 96px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-d3lulq, .framer-vrGnf .framer-lnli52 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 64px; }\",\".framer-vrGnf .framer-f2u6uq { 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: hidden; padding: 8px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-175npf1-container, .framer-vrGnf .framer-n7aw9w-container { flex: none; height: 560px; position: relative; width: 100%; z-index: 0; }\",\".framer-vrGnf .framer-v4c8xv { 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 24px 0px 24px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1tweg7s, .framer-vrGnf .framer-7nh0ik, .framer-vrGnf .framer-13hxdwy, .framer-vrGnf .framer-1v07pu5, .framer-vrGnf .framer-19p1b42, .framer-vrGnf .framer-afbzrx, .framer-vrGnf .framer-b88ce0, .framer-vrGnf .framer-j5fbgx { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1e6gbhx, .framer-vrGnf .framer-6i4lfw, .framer-vrGnf .framer-1jl2cp2, .framer-vrGnf .framer-j5itpg, .framer-vrGnf .framer-8i98ke, .framer-vrGnf .framer-nszyjc, .framer-vrGnf .framer-bjmi6b, .framer-vrGnf .framer-2mn91n { --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-vrGnf .framer-xdy6ot, .framer-vrGnf .framer-clsjss { 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: 16px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1oubpp0, .framer-vrGnf .framer-1faf877 { align-content: center; align-items: center; background-color: #dffb60; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 48px; justify-content: space-between; overflow: visible; padding: 0px 16px 0px 24px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-vrGnf .framer-1mksvzi, .framer-vrGnf .framer-1ylxb1l, .framer-vrGnf .framer-1tpwjq2, .framer-vrGnf .framer-1pba62y { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1iwlgl4, .framer-vrGnf .framer-h426ki { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 0px 56px 0px 56px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-vrGnf .framer-e3r588 { align-content: center; align-items: center; align-self: stretch; background-color: #e2e1dc; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 16px 16px 24px 16px; position: relative; width: 1px; }\",\".framer-vrGnf .framer-h04k01 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-4mrqe9 { 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: 0px; position: relative; width: 1px; }\",\".framer-vrGnf .framer-175w3rd { 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: hidden; padding: 8px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-10rdgm0 { --framer-paragraph-spacing: 0px; flex: none; height: 96px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vrGnf .framer-5yykpg { 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: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-ac1f9f { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 0px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-5fybjt { 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: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-t3lm2w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vrGnf .framer-1dnezop { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vrGnf .framer-15x6un0, .framer-vrGnf .framer-1sg6czx, .framer-vrGnf .framer-rehsi6, .framer-vrGnf .framer-1kfgi97 { align-content: center; align-items: center; background-color: #e2e1dc; 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: column; flex-wrap: nowrap; gap: 0px; height: 172px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 272px; }\",\".framer-vrGnf .framer-hgtq2r, .framer-vrGnf .framer-asrdr1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 16px 64px 16px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-xpgai6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1168px; }\",\".framer-vrGnf .framer-1fpmm1f, .framer-vrGnf .framer-1jd4ro1 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1kpjolg { 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: 1256px; }\",\".framer-vrGnf .framer-e70fig { aspect-ratio: 1.019444465637207 / 1; background-color: #e2e1dc; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 241px); mix-blend-mode: multiply; overflow: hidden; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-1vpoq9o, .framer-vrGnf .framer-11p1h9h { aspect-ratio: 1.41875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 160px); left: 9px; mix-blend-mode: difference; position: absolute; top: 40px; width: 227px; }\",\".framer-vrGnf .framer-o7sga3 { aspect-ratio: 1.0194444020589193 / 1; background-color: #131016; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 244px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-rpjxn6 { aspect-ratio: 0.819672131147541 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 305px); left: -3px; position: absolute; top: -58px; width: 250px; }\",\".framer-vrGnf .framer-17ghfbg, .framer-vrGnf .framer-hdaqbd { background-color: #e2e1dc; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: 240px; overflow: hidden; position: relative; width: 498px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-1cv3agu, .framer-vrGnf .framer-gkkqy6 { aspect-ratio: 2.0779220779220777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-vrGnf .framer-6vz9i9 { aspect-ratio: 1.0200000127156577 / 1; background-color: #131016; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-l7twdb { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 244px); left: -94px; overflow: visible; position: absolute; right: -94px; top: -2px; }\",\".framer-vrGnf .framer-1p70hn8 { --border-bottom-width: 1px; --border-color: #e2e1dc; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.0200000127156577 / 1; background-color: #e2e1dc; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-1ymsg4z { aspect-ratio: 3.1228813559322033 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); left: 50%; mix-blend-mode: difference; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 206px; }\",\".framer-vrGnf .framer-1vilc9v { aspect-ratio: 1.0200000127156577 / 1; background-color: #e2e1dc; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 239px); overflow: hidden; position: relative; width: 244px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-wic5w3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 244px); left: 0px; overflow: visible; position: absolute; right: 0px; top: -2px; }\",\".framer-vrGnf .framer-npgnmz { --border-bottom-width: 1px; --border-color: #e2e1dc; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.0200000762939454 / 1; background-color: #e2e1dc; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-iv63zo { aspect-ratio: 3.076923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); left: 50%; mix-blend-mode: difference; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 190px; }\",\".framer-vrGnf .framer-1vpoja5 { aspect-ratio: 1.0194444020589193 / 1; background-color: #e2e1dc; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 244px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-d99mbx { --border-bottom-width: 1px; --border-color: #4a3953; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.0194444020589193 / 1; background-color: #131016; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 241px); overflow: hidden; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-12ektwq { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 245px); left: -95px; opacity: 0.56; overflow: visible; position: absolute; right: -95px; top: -2px; }\",\".framer-vrGnf .framer-u2j2dc { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 206px; }\",\".framer-vrGnf .framer-sj05di { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 16px 64px 16px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-1vsizs1 { align-content: center; align-items: center; 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-vrGnf .framer-ewo1k8 { 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: hidden; padding: 0px; position: relative; width: 1168px; }\",\".framer-vrGnf .framer-v94j4x { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 696px; word-break: break-word; word-wrap: break-word; }\",\".framer-vrGnf .framer-z4zjyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vrGnf .framer-11mr8a1, .framer-vrGnf .framer-wxcr75 { --border-bottom-width: 1px; --border-color: #bfbfbf; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px 56px 0px 56px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-vrGnf .framer-zoltth { flex: none; height: 688px; overflow: hidden; position: relative; width: 950px; }\",\".framer-vrGnf .framer-i1m3uz { aspect-ratio: 0.8014705882352942 / 1; bottom: 0px; flex: none; left: 46%; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 552px); }\",\".framer-vrGnf .framer-sy124k { aspect-ratio: 2.2650602409638556 / 1; bottom: 271px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 566px; overflow: visible; position: absolute; width: 134px; }\",\".framer-vrGnf .framer-1lqfun9 { aspect-ratio: 2.2845528455284554 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); left: 642px; overflow: visible; position: absolute; top: 48%; transform: translateY(-50%); width: 201px; }\",\".framer-vrGnf .framer-1tfhyuf { aspect-ratio: 2.298507462686567 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 558px; overflow: visible; position: absolute; top: 185px; width: 111px; }\",\".framer-vrGnf .framer-csuxuh { aspect-ratio: 2.275 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: 638px; overflow: visible; position: absolute; top: 209px; width: 130px; }\",\".framer-vrGnf .framer-vht11h { aspect-ratio: 2.287128712871287 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 531px; overflow: visible; position: absolute; top: 243px; width: 165px; }\",\".framer-vrGnf .framer-1nq6cxr { aspect-ratio: 2.4948453608247423 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 191px; overflow: visible; position: absolute; top: 52%; transform: translateY(-50%); width: 151px; }\",\".framer-vrGnf .framer-v5bhfw { aspect-ratio: 2.5089285714285716 / 1; bottom: 179px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 191px; overflow: visible; position: absolute; width: 175px; }\",\".framer-vrGnf .framer-ldynix { aspect-ratio: 2.5 / 1; bottom: 112px; flex: none; height: var(--framer-aspect-ratio-supported, 77px); left: 111px; overflow: visible; position: absolute; width: 191px; }\",\".framer-vrGnf .framer-17wtkft { aspect-ratio: 2.5037037037037035 / 1; bottom: 226px; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: 54px; overflow: visible; position: absolute; width: 210px; }\",\".framer-vrGnf .framer-2tk7oy { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 70px; position: absolute; top: 276px; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-vrGnf .framer-137mu9k { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 667px; position: absolute; top: 148px; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-vrGnf .framer-1ktx35s { align-content: center; align-items: center; background-color: #dffb60; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 454px; overflow: hidden; padding: 16px; position: absolute; top: 27px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-4u5ygo, .framer-vrGnf .framer-frqzzj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-vrGnf .framer-jds4wm-container, .framer-vrGnf .framer-dx56t-container { flex: none; height: 204px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-89d0ab, .framer-vrGnf .framer-kj8ih3, .framer-vrGnf .framer-rjx1e8, .framer-vrGnf .framer-1v6gba2, .framer-vrGnf .framer-q3ol2p { align-content: center; align-items: center; background-color: #e2e1dc; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 204px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-j5vbqi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-1ju34v5 { 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: 1000px; }\",\".framer-vrGnf .framer-1pqj89s { 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-vrGnf .framer-1nnu3qm { align-content: center; align-items: center; background-color: #dffb60; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: visible; padding: 0px 16px 0px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-vrGnf .framer-qofoxp { flex: none; height: 509px; overflow: hidden; position: relative; width: 545px; }\",\".framer-vrGnf .framer-1ovhdu7-container { flex: none; height: 509px; left: 0px; position: absolute; top: 0px; width: 545px; }\",\".framer-vrGnf .framer-azsj7f-container { flex: none; height: 580px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-atsdjd, .framer-vrGnf .framer-b4qk1c, .framer-vrGnf .framer-5ax010 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-vrGnf .framer-prj4hq, .framer-vrGnf .framer-a9nqu9, .framer-vrGnf .framer-1f5b9h9, .framer-vrGnf .framer-1m0xxet, .framer-vrGnf .framer-4tb1r1, .framer-vrGnf .framer-1fu9dx2, .framer-vrGnf .framer-19jsboe, .framer-vrGnf .framer-872yfh, .framer-vrGnf .framer-1cefn8f, .framer-vrGnf .framer-1dsjm6h, .framer-vrGnf .framer-1cnf9pr, .framer-vrGnf .framer-1fcr502, .framer-vrGnf .framer-bz7e88, .framer-vrGnf .framer-1pkp4n4, .framer-vrGnf .framer-fxettq, .framer-vrGnf .framer-1qjlva, .framer-vrGnf .framer-mbmvya, .framer-vrGnf .framer-15sgchm, .framer-vrGnf .framer-r3jb79, .framer-vrGnf .framer-1f2q3di, .framer-vrGnf .framer-r8ccrs, .framer-vrGnf .framer-1ipjqfz, .framer-vrGnf .framer-et0mg4, .framer-vrGnf .framer-13hqi06, .framer-vrGnf .framer-te67e9, .framer-vrGnf .framer-sad3p8, .framer-vrGnf .framer-17ft6m7, .framer-vrGnf .framer-ehrng1, .framer-vrGnf .framer-111xme9, .framer-vrGnf .framer-1knpood, .framer-vrGnf .framer-1a138xe, .framer-vrGnf .framer-auce26, .framer-vrGnf .framer-10gv3bk, .framer-vrGnf .framer-917vlh, .framer-vrGnf .framer-pr1e80, .framer-vrGnf .framer-1iirl7r, .framer-vrGnf .framer-10a3u6g, .framer-vrGnf .framer-8s6xwf, .framer-vrGnf .framer-qi9ro2, .framer-vrGnf .framer-14lm73s, .framer-vrGnf .framer-1p7je7r, .framer-vrGnf .framer-104aowt, .framer-vrGnf .framer-dcmmc, .framer-vrGnf .framer-1i0nr06, .framer-vrGnf .framer-1ol19zc, .framer-vrGnf .framer-1hqku41, .framer-vrGnf .framer-ry7a4v, .framer-vrGnf .framer-99rt74, .framer-vrGnf .framer-1ooi4u, .framer-vrGnf .framer-qufzke, .framer-vrGnf .framer-ts54eh, .framer-vrGnf .framer-11dzsgg, .framer-vrGnf .framer-1lijnoh, .framer-vrGnf .framer-1e5v43j { background-color: #e2e1dc; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; gap: 0px; height: 170px; overflow: hidden; position: relative; text-decoration: none; width: 170px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-1nbxl0i, .framer-vrGnf .framer-15sklvi { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 109px); left: -11px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -11px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1plqfqv, .framer-vrGnf .framer-fgbcr7 { aspect-ratio: 1.4193548387096775 / 1; bottom: -6px; flex: none; height: var(--framer-aspect-ratio-supported, 142px); left: -35px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -35px; }\",\".framer-vrGnf .framer-ag7o33, .framer-vrGnf .framer-1y09jry, .framer-vrGnf .framer-v4442i, .framer-vrGnf .framer-lg4g1z, .framer-vrGnf .framer-sig9ua, .framer-vrGnf .framer-145ooz4, .framer-vrGnf .framer-1hydpkf, .framer-vrGnf .framer-1nzb62f { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 93px); left: 0px; mix-blend-mode: difference; overflow: visible; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-we56fr, .framer-vrGnf .framer-1suagw6 { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 114px); left: -15px; overflow: visible; position: absolute; right: -15px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1b1wr89, .framer-vrGnf .framer-c6d2oo { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); left: 50%; mix-blend-mode: difference; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 124px; }\",\".framer-vrGnf .framer-1r2nprc, .framer-vrGnf .framer-1gqe2yy, .framer-vrGnf .framer-7mjn75, .framer-vrGnf .framer-3uxfvq { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 99px); left: -4px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -4px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1ntuh5z, .framer-vrGnf .framer-1smzrec { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 93px); left: 0px; mix-blend-mode: difference; overflow: visible; position: absolute; right: 0px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-yn2hlo, .framer-vrGnf .framer-1ctnt39 { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); left: -2px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -2px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1o3xke0, .framer-vrGnf .framer-vu64jx { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); left: -7px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -8px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-196me1o, .framer-vrGnf .framer-1ul68a0 { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: -6px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -6px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-tz8j65, .framer-vrGnf .framer-qd91a, .framer-vrGnf .framer-akpghw, .framer-vrGnf .framer-15yk2o { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); left: -8px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -8px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-zsjr4p, .framer-vrGnf .framer-1xan0cu { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 128px; }\",\".framer-vrGnf .framer-6znp0h, .framer-vrGnf .framer-wvv6wx { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 125px); left: -22px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -23px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-97xvrw, .framer-vrGnf .framer-1xz2t0h { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); left: -2px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -2px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-5qyhgs, .framer-vrGnf .framer-4o58hq { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 110px); left: -9px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -15px; top: 51%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-6zchgn, .framer-vrGnf .framer-7my0xd { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 110px); left: -12px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-wdwcf0, .framer-vrGnf .framer-rjek1n { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); left: -7px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1le47tt, .framer-vrGnf .framer-cx7ny2 { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: -5px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -6px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1b14id1, .framer-vrGnf .framer-1tn2jik { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 98px); left: -3px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -4px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-67onr3, .framer-vrGnf .framer-ea6bts { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); left: -10px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -10px; top: 49%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1hlujes, .framer-vrGnf .framer-cmyahe { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: -5px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1t1fo91, .framer-vrGnf .framer-1krij38 { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); left: -1px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-omf0kw, .framer-vrGnf .framer-1p17pwl { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: -6px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-zq5b9p, .framer-vrGnf .framer-mflwdq { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); left: -2px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -3px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-m0vlma, .framer-vrGnf .framer-12uue9l { aspect-ratio: 1.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 99px); left: -4px; mix-blend-mode: difference; overflow: visible; position: absolute; right: -4px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1dhb22i, .framer-vrGnf .framer-21g96v { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: -4px; overflow: visible; position: absolute; right: -4px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1vy8fnu, .framer-vrGnf .framer-l2cppo, .framer-vrGnf .framer-knghqr, .framer-vrGnf .framer-o16lwf, .framer-vrGnf .framer-y4kslp { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 112px; }\",\".framer-vrGnf .framer-ctjpu1 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 129px; }\",\".framer-vrGnf .framer-pqvvu9, .framer-vrGnf .framer-18ujnhz { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: -35px; overflow: visible; position: absolute; right: -35px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-16fy9xu, .framer-vrGnf .framer-1i2h7bg { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); left: -21px; overflow: visible; position: absolute; right: -21px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1qguob9, .framer-vrGnf .framer-hmxg2c, .framer-vrGnf .framer-6dynq5, .framer-vrGnf .framer-13vitv5, .framer-vrGnf .framer-1acimop, .framer-vrGnf .framer-10w2clu { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: -8px; overflow: visible; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1vpdlb, .framer-vrGnf .framer-1yt19i { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); left: 0px; overflow: visible; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1tiyymw, .framer-vrGnf .framer-1fyxjek { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 73px); left: -7px; overflow: visible; position: absolute; right: -7px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-gq964d, .framer-vrGnf .framer-179zjq2 { aspect-ratio: 2.1666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); left: 50%; mix-blend-mode: multiply; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 106px; }\",\".framer-vrGnf .framer-g0e2y2, .framer-vrGnf .framer-yf271s { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); left: -15px; overflow: visible; position: absolute; right: -15px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1tkz3nt, .framer-vrGnf .framer-1c7pq4g { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); left: -30px; overflow: visible; position: absolute; right: -30px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-wlsimi, .framer-vrGnf .framer-1kkwydv, .framer-vrGnf .framer-p1lv19, .framer-vrGnf .framer-1ohayzp { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: -18px; overflow: visible; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-fu7yih, .framer-vrGnf .framer-1b9vgf, .framer-vrGnf .framer-ou6pic { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 94px; }\",\".framer-vrGnf .framer-ewb7xp, .framer-vrGnf .framer-c32kyy { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 93px); left: -27px; overflow: visible; position: absolute; right: -27px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-gp8kzz, .framer-vrGnf .framer-1o2bld2 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 124px; }\",\".framer-vrGnf .framer-p5twwf, .framer-vrGnf .framer-1vq7fn, .framer-vrGnf .framer-1mudusz, .framer-vrGnf .framer-cnh7xg, .framer-vrGnf .framer-1obqu23, .framer-vrGnf .framer-myicvp { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); }\",\".framer-vrGnf .framer-1ajnfpn, .framer-vrGnf .framer-re3ea1 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 122px; }\",\".framer-vrGnf .framer-jn53ah-container { flex: none; height: 616px; position: relative; width: 368px; }\",\".framer-vrGnf .framer-1xkvmuk, .framer-vrGnf .framer-lwwwpm, .framer-vrGnf .framer-vev2k3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 368px; }\",\".framer-vrGnf .framer-1ly695, .framer-vrGnf .framer-1vmampa, .framer-vrGnf .framer-1dlgbn4, .framer-vrGnf .framer-chdk2w, .framer-vrGnf .framer-cwwrby, .framer-vrGnf .framer-1mgr9kx, .framer-vrGnf .framer-gganog, .framer-vrGnf .framer-cy3a01, .framer-vrGnf .framer-167ouga, .framer-vrGnf .framer-rkmg4j, .framer-vrGnf .framer-1kbgrma, .framer-vrGnf .framer-1s9qjp3, .framer-vrGnf .framer-1uwac6i, .framer-vrGnf .framer-1kzt9n5, .framer-vrGnf .framer-bvvocl, .framer-vrGnf .framer-1f02k74, .framer-vrGnf .framer-vumlvn, .framer-vrGnf .framer-cokoni, .framer-vrGnf .framer-fi1hr3, .framer-vrGnf .framer-19k4x27, .framer-vrGnf .framer-xyrd5p, .framer-vrGnf .framer-1fxnkzq, .framer-vrGnf .framer-oa4ql7, .framer-vrGnf .framer-9p0npc, .framer-vrGnf .framer-lnsecg, .framer-vrGnf .framer-ihm607, .framer-vrGnf .framer-3y4k9k, .framer-vrGnf .framer-s0rsgd, .framer-vrGnf .framer-156srja, .framer-vrGnf .framer-142jb3u, .framer-vrGnf .framer-scrp9f, .framer-vrGnf .framer-14wsayq, .framer-vrGnf .framer-1gefc8i, .framer-vrGnf .framer-1jd8iu0, .framer-vrGnf .framer-i24dxq, .framer-vrGnf .framer-9r9uja, .framer-vrGnf .framer-tv4czt, .framer-vrGnf .framer-yf9wnl, .framer-vrGnf .framer-1y61d0x, .framer-vrGnf .framer-1z0pgtp, .framer-vrGnf .framer-1wd0ch2, .framer-vrGnf .framer-9jpzgh, .framer-vrGnf .framer-7ygbe8, .framer-vrGnf .framer-sn61uk, .framer-vrGnf .framer-1evk20d, .framer-vrGnf .framer-omrhoe, .framer-vrGnf .framer-cuug4r, .framer-vrGnf .framer-1n7tplc, .framer-vrGnf .framer-viybgd, .framer-vrGnf .framer-zx3e3u, .framer-vrGnf .framer-eqld1v, .framer-vrGnf .framer-1jgo4j9, .framer-vrGnf .framer-1x3ovat, .framer-vrGnf .framer-1lfm5pt { background-color: #e2e1dc; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; gap: 0px; height: 104px; overflow: hidden; position: relative; text-decoration: none; width: 104px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrGnf .framer-1dt0nod { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 49%; overflow: visible; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 102px; }\",\".framer-vrGnf .framer-1mvfixc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 4px; height: 536px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 368px; }\",\".framer-vrGnf .framer-2ioiaf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-vrGnf .framer-zyiw6t-container { flex: none; height: 99px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-10hg0qb, .framer-vrGnf .framer-tkojbj, .framer-vrGnf .framer-188ubzu, .framer-vrGnf .framer-1gnnv4l, .framer-vrGnf .framer-1simhkn, .framer-vrGnf .framer-iriipz { aspect-ratio: 2.1153846153846154 / 1; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 110px; }\",\".framer-vrGnf .framer-zm12of { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 16px 64px 16px; position: relative; width: 1200px; }\",\".framer-vrGnf .framer-1f2ff6o-container { flex: none; height: 48px; left: calc(50.00000000000002% - 1152px / 2); position: fixed; top: 24px; width: 1152px; z-index: 1; }\",'.framer-vrGnf[data-border=\"true\"]::after, .framer-vrGnf [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 (max-width: 1199px) { .framer-vrGnf.framer-7eopbs, .framer-vrGnf .framer-1ua3li2, .framer-vrGnf .framer-4z0k3x { width: 393px; } .framer-vrGnf .framer-zxhqsz { width: 368px; } .framer-vrGnf .framer-zce8pw { width: 336px; } .framer-vrGnf .framer-we9pkm, .framer-vrGnf .framer-1dnezop, .framer-vrGnf .framer-1brajgs { flex-direction: column; } .framer-vrGnf .framer-chkkhg, .framer-vrGnf .framer-wzqsjw, .framer-vrGnf .framer-19hd1m3 { padding: 0px 8px 0px 16px; } .framer-vrGnf .framer-uw4ao1 { flex-direction: column; padding: 9px 27px 9px 27px; } .framer-vrGnf .framer-1ljr6gb { order: 0; } .framer-vrGnf .framer-1inalbc { order: 1; padding: 0px 8px 0px 16px; } .framer-vrGnf .framer-1omy038 { order: 2; padding: 0px 8px 0px 16px; } .framer-vrGnf .framer-hr7jem { align-content: center; align-items: center; width: 393px; } .framer-vrGnf .framer-1dhxsy { align-content: center; align-items: center; flex-direction: column; width: 368px; } .framer-vrGnf .framer-1702gzj { flex: none; width: 368px; } .framer-vrGnf .framer-175npf1-container, .framer-vrGnf .framer-n7aw9w-container { height: 320px; } .framer-vrGnf .framer-v4c8xv, .framer-vrGnf .framer-5yykpg { padding: 0px; } .framer-vrGnf .framer-xdy6ot, .framer-vrGnf .framer-clsjss { padding: 16px 0px 0px 0px; } .framer-vrGnf .framer-e3r588 { align-self: unset; flex: none; gap: 32px; height: min-content; justify-content: center; width: 368px; } .framer-vrGnf .framer-ac1f9f { height: min-content; padding: 0px; } .framer-vrGnf .framer-17naiye { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-vrGnf .framer-t3lm2w, .framer-vrGnf .framer-ewo1k8, .framer-vrGnf .framer-v94j4x, .framer-vrGnf .framer-zm12of { width: 100%; } .framer-vrGnf .framer-xpgai6 { height: min-content; width: 368px; } .framer-vrGnf .framer-e70fig, .framer-vrGnf .framer-6vz9i9, .framer-vrGnf .framer-1p70hn8 { height: var(--framer-aspect-ratio-supported, 180px); width: 184px; } .framer-vrGnf .framer-1vpoq9o { height: var(--framer-aspect-ratio-supported, 128px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 181px; } .framer-vrGnf .framer-o7sga3, .framer-vrGnf .framer-1vpoja5, .framer-vrGnf .framer-d99mbx { height: var(--framer-aspect-ratio-supported, 180px); width: 183px; } .framer-vrGnf .framer-rpjxn6 { height: var(--framer-aspect-ratio-supported, 245px); left: -3px; right: -14px; width: unset; } .framer-vrGnf .framer-l7twdb { bottom: -5px; height: var(--framer-aspect-ratio-supported, 187px); left: -74px; right: -73px; top: unset; } .framer-vrGnf .framer-1ymsg4z { height: var(--framer-aspect-ratio-supported, 55px); left: 50%; top: 51%; width: 170px; } .framer-vrGnf .framer-11p1h9h { height: var(--framer-aspect-ratio-supported, 132px); left: -1px; right: -2px; top: 50%; transform: translateY(-50%); width: unset; } .framer-vrGnf .framer-12ektwq { height: var(--framer-aspect-ratio-supported, 210px); } .framer-vrGnf .framer-u2j2dc { height: var(--framer-aspect-ratio-supported, 42px); left: 50%; width: 168px; } .framer-vrGnf .framer-sj05di { gap: 32px; padding: 64px 16px 4px 16px; width: 100%; } .framer-vrGnf .framer-1vsizs1 { width: 360px; } .framer-vrGnf .framer-zoltth { height: 376px; } .framer-vrGnf .framer-i1m3uz { aspect-ratio: unset; bottom: unset; height: 343px; left: calc(49.368421052631604% - 274px / 2); top: 26px; transform: unset; width: 274px; } .framer-vrGnf .framer-sy124k { aspect-ratio: unset; bottom: unset; height: 29px; left: calc(59.68421052631581% - 66px / 2); top: 202px; width: 66px; } .framer-vrGnf .framer-1lqfun9 { aspect-ratio: unset; height: 44px; left: calc(65.3684210526316% - 100px / 2); top: 169px; transform: unset; width: 100px; } .framer-vrGnf .framer-1tfhyuf { aspect-ratio: unset; height: 24px; left: calc(58.526315789473706% - 55px / 2); top: 134px; width: 55px; } .framer-vrGnf .framer-csuxuh { aspect-ratio: unset; height: 28px; left: calc(63.3684210526316% - 64px / 2); top: 146px; width: 64px; } .framer-vrGnf .framer-vht11h { aspect-ratio: unset; height: 36px; left: calc(58.631578947368446% - 82px / 2); top: 148px; width: 82px; } .framer-vrGnf .framer-1nq6cxr { aspect-ratio: unset; height: 30px; left: calc(40.315789473684234% - 75px / 2); top: 188px; transform: unset; width: 75px; } .framer-vrGnf .framer-v5bhfw { aspect-ratio: unset; bottom: unset; height: 34px; left: calc(40.84210526315792% - 85px / 2); top: 228px; width: 85px; } .framer-vrGnf .framer-ldynix { aspect-ratio: unset; bottom: unset; height: 38px; left: calc(37.263157894736864% - 95px / 2); top: 258px; width: 95px; } .framer-vrGnf .framer-17wtkft { aspect-ratio: unset; bottom: unset; height: 42px; left: calc(34.84210526315792% - 105px / 2); top: 197px; width: 105px; } .framer-vrGnf .framer-2tk7oy { left: 34%; top: 158px; transform: translateX(-50%); width: 92px; } .framer-vrGnf .framer-137mu9k { left: 64%; top: 110px; transform: translateX(-50%); width: 106px; } .framer-vrGnf .framer-1ktx35s { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; left: 51%; padding: 4px; top: 55px; transform: translateX(-50%); } .framer-vrGnf .framer-4u5ygo, .framer-vrGnf .framer-frqzzj { width: 72px; } .framer-vrGnf .framer-1ju34v5 { flex-direction: column; gap: 24px; padding: 0px 16px 0px 16px; width: 393px; } .framer-vrGnf .framer-1pqj89s { align-content: center; align-items: center; flex: none; width: 100%; } .framer-vrGnf .framer-qofoxp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-vrGnf .framer-1ovhdu7-container { height: 360px; left: unset; position: relative; top: unset; width: 360px; } .framer-vrGnf .framer-asrdr1 { padding: 64px 12px 64px 12px; width: 100%; } .framer-vrGnf .framer-1cc25zb, .framer-vrGnf .framer-wvj5xj { border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; flex-direction: column; padding: 4px; } .framer-vrGnf .framer-1f2ff6o-container { height: auto; left: 50%; transform: translateX(-50%); width: 360px; } .framer-vrGnf .framer-dx56t-container { height: 520px; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7235\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dMqMUK6pp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerc0yMhKGYv=withCSS(Component,css,\"framer-vrGnf\");export default Framerc0yMhKGYv;Framerc0yMhKGYv.displayName=\"Newecolinkai\";Framerc0yMhKGYv.defaultProps={height:7235,width:1200};addFonts(Framerc0yMhKGYv,[{explicitInter:true,fonts:[{family:\"Owners TRIAL Wide Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/p05qDYnanXg5vko4VYOT8p0ryMA.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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:\"Owners TRIAL Wide Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/K1xtGvY03lGx38NaKjKTRh6FfBc.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...VideoFonts,...FeatherFonts,...TickerFonts,...SlideshowFonts,...NavbarFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc0yMhKGYv\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dMqMUK6pp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"7235\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "VideoFonts", "getFonts", "Video", "FeatherFonts", "Icon", "MotionAWithFX", "withFX", "motion", "TickerFonts", "Ticker", "MotionDivWithFX", "ImageWithFX", "Image2", "RichTextWithFX", "RichText2", "SlideshowFonts", "Slideshow", "NavbarFonts", "NIjlt483b_default", "FooterFonts", "sPWv5v6MB_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "transition2", "textEffect1", "animation1", "transition3", "animation2", "transition4", "animation3", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "transition8", "animation8", "transition9", "animation9", "transformTemplate1", "_", "t", "transition10", "animation10", "transition11", "animation11", "transition12", "animation12", "transition13", "animation13", "transition14", "animation14", "transformTemplate2", "transformTemplate3", "transition15", "animation15", "animation16", "animation17", "animation18", "animation19", "animation20", "transition16", "animation21", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "Link", "getLoadingLazyAtYPosition", "SVG", "css", "Framerc0yMhKGYv", "withCSS", "c0yMhKGYv_default", "addFonts", "__FramerMetadata__"]
}
