{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js", "ssg:https://framerusercontent.com/modules/AuxHYEjKnmNJMD6vV9sr/uKBMBpvsxUwfIS4CSG8U/JirmpL2Sy.js", "ssg:https://framerusercontent.com/modules/0lEaVpyOYX39xOSNDnZB/XbKB86fhSSrUf1PxwLnU/GzeYXpO_8.js", "ssg:https://framerusercontent.com/modules/rmkXedJuSyH6oOlaGlGW/078p0OI4h4frXMefCM9s/zW4m2vAse.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/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;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\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=>({current:null}));},[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(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.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);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.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     */const 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     * */const 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.on(\"change\",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;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const 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\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (d2aa011)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/kVW2bFDnoUbMBTl7TwEU/dpdS1eAhU6RNk7Iie5qB/d9a2yNeez.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xZaXnf00uUeQpRn3qGie/duyqPXOwilrzAfL3YWYW/SVsFzoWgS.js\";import ComponentsLink from\"https://framerusercontent.com/modules/jbEiVmJi5byTQ67LMniC/34un7U74objqB0QwV31g/GqZUIJkbL.js\";const ComponentsLinkFonts=getFonts(ComponentsLink);const enabledGestures={\"I234:6737;234:8318\":{hover:true},boT4vKxCS:{hover:true},cWMsfDXoJ:{hover:true},j3ZqEAxaE:{hover:true},x4IZ95lOR:{hover:true}};const cycleOrder=[\"I234:6737;234:8318\",\"j3ZqEAxaE\",\"x4IZ95lOR\",\"cWMsfDXoJ\",\"boT4vKxCS\"];const serializationHash=\"framer-T3HTW\";const variantClassNames={\"I234:6737;234:8318\":\"framer-v-iissj3\",boT4vKxCS:\"framer-v-14jqj3m\",cWMsfDXoJ:\"framer-v-1ddja10\",j3ZqEAxaE:\"framer-v-1kd91ka\",x4IZ95lOR:\"framer-v-1da68d6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Carbon avoidance\":\"boT4vKxCS\",\"Carbon removal\":\"j3ZqEAxaE\",\"Habitat restoration\":\"cWMsfDXoJ\",Community:\"I234:6737;234:8318\",Reforestation:\"x4IZ95lOR\"};const getProps=({height,id,image,intro,link,title,width,...props})=>{return{...props,I7RxvH9rq:link??props.I7RxvH9rq,k5d_RkNKB:intro??props.k5d_RkNKB??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at volutpat mi. Inarcu neque, eleifend at sollicitudin vel ultrices.\",lMei1ARiY:title??props.lMei1ARiY??\"Title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"I234:6737;234:8318\",xJU3mark8:image??props.xJU3mark8};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,lMei1ARiY,k5d_RkNKB,xJU3mark8,I7RxvH9rq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I234:6737;234:8318\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"j3ZqEAxaE-hover\",\"x4IZ95lOR-hover\",\"cWMsfDXoJ-hover\",\"boT4vKxCS-hover\"].includes(gestureVariant))return false;if([\"j3ZqEAxaE\",\"x4IZ95lOR\",\"cWMsfDXoJ\",\"boT4vKxCS\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"x4IZ95lOR-hover\")return true;if(baseVariant===\"x4IZ95lOR\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"boT4vKxCS-hover\")return true;if(baseVariant===\"boT4vKxCS\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"j3ZqEAxaE-hover\")return true;if(baseVariant===\"j3ZqEAxaE\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"cWMsfDXoJ-hover\")return true;if(baseVariant===\"cWMsfDXoJ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-iissj3\",className,classNames),\"data-framer-name\":\"Community\",layoutDependency:layoutDependency,layoutId:\"I234:6737;234:8318\",ref:refBinding,style:{backgroundColor:\"var(--token-e0e1c6e3-692b-4aeb-b209-f806a6b8de10, rgb(88, 186, 146))\",borderBottomLeftRadius:17.59,borderBottomRightRadius:17.59,borderTopLeftRadius:17.59,borderTopRightRadius:17.59,...style},variants:{boT4vKxCS:{backgroundColor:\"var(--token-fb9a2f06-1195-4c14-a00a-f44b0462d660, rgb(29, 99, 103))\"},cWMsfDXoJ:{backgroundColor:\"var(--token-545e5559-4568-4d39-8fbe-330985b2e658, rgb(253, 209, 134))\"},j3ZqEAxaE:{backgroundColor:\"var(--token-17c6baec-78b5-476d-80db-6323656d41f6, rgb(250, 168, 140))\"},x4IZ95lOR:{backgroundColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\"}},...addPropertyOverrides({\"boT4vKxCS-hover\":{\"data-framer-name\":undefined},\"cWMsfDXoJ-hover\":{\"data-framer-name\":undefined},\"I234:6737;234:8318-hover\":{\"data-framer-name\":undefined},\"j3ZqEAxaE-hover\":{\"data-framer-name\":undefined},\"x4IZ95lOR-hover\":{\"data-framer-name\":undefined},boT4vKxCS:{\"data-framer-name\":\"Carbon avoidance\"},cWMsfDXoJ:{\"data-framer-name\":\"Habitat restoration\"},j3ZqEAxaE:{\"data-framer-name\":\"Carbon removal\"},x4IZ95lOR:{\"data-framer-name\":\"Reforestation\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17guyng\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"I234:6737;234:8319\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dglrd0\",\"data-framer-name\":\"Project tag\",layoutDependency:layoutDependency,layoutId:\"by7Ik_pUG\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yw9pce\",\"data-framer-name\":\"users\",layoutDependency:layoutDependency,layoutId:\"I234:6737;234:8321\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6cf1vs\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"umX3i1vJN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 18\"><path d=\"M 5.078 9.137 C 6.873 9.137 8.328 7.682 8.328 5.887 C 8.328 4.092 6.873 2.637 5.078 2.637 C 3.283 2.637 1.828 4.092 1.828 5.887 C 1.828 7.682 3.283 9.137 5.078 9.137 Z\" fill=\"var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42))\"></path><path d=\"M 15.078 10.887 C 11.338 10.887 8.358 13.697 8.098 17.367 C 8.078 17.647 8.318 17.887 8.598 17.887 L 21.558 17.887 C 21.838 17.887 22.078 17.647 22.058 17.367 C 21.798 13.707 18.818 10.887 15.078 10.887 Z\" fill=\"var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42))\"></path><path d=\"M 5.038 10.887 C 2.418 10.887 0.308 12.807 0.038 15.347 C 0.008 15.647 0.228 15.917 0.538 15.917 L 6.308 15.917 C 6.628 14.437 7.298 13.107 8.228 12.017 C 7.368 11.317 6.268 10.887 5.048 10.887 Z\" fill=\"var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42))\"></path><path d=\"M 15.078 9.137 C 17.425 9.137 19.328 7.234 19.328 4.887 C 19.328 2.54 17.425 0.637 15.078 0.637 C 12.731 0.637 10.828 2.54 10.828 4.887 C 10.828 7.234 12.731 9.137 15.078 9.137 Z\" fill=\"var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42))\"></path></svg>',svgContentId:9361226852,withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejhi6u\",\"data-framer-name\":\"tree-solid\",layoutDependency:layoutDependency,layoutId:\"zBMKsFC8E\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pdgwit\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"yLwu9GCJw\",svg:'<svg width=\"16\" height=\"19\" viewBox=\"0 0 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.5922 5.43031C12.3338 5.31364 12.1588 5.04697 12.1421 4.76364C12.0838 3.51364 11.4838 2.28864 10.3005 1.49697C8.92549 0.571973 7.06714 0.571973 5.70047 1.49697C4.5088 2.29697 3.90881 3.52197 3.85881 4.76364C3.84214 5.04697 3.67547 5.31364 3.4088 5.43031C1.55047 6.28864 0.30881 8.23864 0.525476 10.4636C0.742143 12.672 2.45881 14.522 4.64214 14.8886C5.22548 14.9886 5.80048 14.972 6.33381 14.8886V17.4636C6.33381 17.922 6.70881 18.297 7.16714 18.297C7.62548 18.297 8.00048 17.922 8.00048 17.4636V15.8803C8.00048 15.8803 8.00048 15.872 8.00048 15.8636V10.4136C8.00048 9.90531 8.75881 9.84697 8.83381 10.347L9.53381 14.8636C10.1088 14.9803 10.7255 14.997 11.3588 14.8886C13.5421 14.522 15.2671 12.6636 15.4755 10.4636C15.6921 8.23864 14.4505 6.28031 12.5922 5.43031Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y6q16k\",\"data-framer-name\":\"turbine\",layoutDependency:layoutDependency,layoutId:\"ZqheFQOPk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xzsnt1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"FNHe4TpWx\",svg:'<svg width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.0829 11.5L11.7412 8.12495C11.5995 7.98329 11.4079 7.89162 11.1995 7.88329L10.0079 7.80829C9.84119 7.19162 9.40785 6.68329 8.83285 6.42495V0.833288C8.83285 0.416621 8.52452 0.066621 8.10785 0.00828763C7.69952 -0.0417124 7.29952 0.208288 7.19119 0.616621L5.94119 5.19995C5.89119 5.39995 5.90785 5.60829 5.99952 5.79162L6.53285 6.85829C6.14952 7.23329 5.91619 7.75829 5.91619 8.34162C5.91619 8.41662 5.93285 8.49162 5.94119 8.56662L1.09119 11.3666C0.732854 11.575 0.574521 12.0166 0.741188 12.4083C0.874521 12.725 1.18285 12.925 1.50785 12.925C1.57452 12.925 1.64952 12.9166 1.71619 12.9L6.30785 11.6916C6.50785 11.6416 6.67452 11.5166 6.79119 11.3416L6.99952 11.025L6.33285 19.1C6.31619 19.3333 6.39119 19.5583 6.54952 19.7333C6.70785 19.9083 6.93285 20 7.16619 20H8.83285C9.06619 20 9.29119 19.9 9.44952 19.7333C9.60785 19.5666 9.68285 19.3333 9.66619 19.1L8.91619 10.2C9.02452 10.1416 9.13285 10.0833 9.23285 10.0083L14.0829 12.8083C14.2162 12.8833 14.3579 12.9166 14.4995 12.9166C14.7495 12.9166 14.9995 12.8 15.1579 12.5916C15.4162 12.2583 15.3829 11.7916 15.0912 11.5H15.0829ZM7.99952 9.16662C7.54119 9.16662 7.16619 8.79162 7.16619 8.33329C7.16619 7.87495 7.54119 7.49995 7.99952 7.49995C8.45785 7.49995 8.83285 7.87495 8.83285 8.33329C8.83285 8.79162 8.45785 9.16662 7.99952 9.16662Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-f06b4x\",\"data-framer-name\":\"removal\",layoutDependency:layoutDependency,layoutId:\"Qeccm6ky4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bsucrg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"aXbOXBoOC\",svg:'<svg width=\"20\" height=\"18\" viewBox=\"0 0 20 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.75 7.09712C16.9667 6.56379 17.0833 5.98879 17.0833 5.38045C17.0833 2.84712 15.0333 0.797119 12.5 0.797119C10.7083 0.797119 9.15833 1.83045 8.40833 3.33045C7.88333 3.05545 7.3 2.88045 6.66667 2.88045C4.59167 2.88045 2.91667 4.55545 2.91667 6.63045C2.91667 6.80545 2.94167 6.96379 2.96667 7.13045C1.275 7.48879 0 8.99712 0 10.7971C0 12.8305 1.61667 14.4721 3.63333 14.5388L5.75833 14.5471C6.41667 16.2555 8.05833 17.4638 10 17.4638C11.9417 17.4638 13.5833 16.2555 14.2417 14.5471H16.3667C18.3833 14.4721 20 12.8305 20 10.7971C20 8.89712 18.5833 7.34712 16.75 7.09712ZM13.0917 11.0388C13.4167 11.3638 13.4167 11.8888 13.0917 12.2138C12.925 12.3805 12.7167 12.4555 12.5 12.4555C12.2833 12.4555 12.075 12.3721 11.9083 12.2138L10 10.3055L8.09167 12.2138C7.925 12.3805 7.71667 12.4555 7.5 12.4555C7.28333 12.4555 7.075 12.3721 6.90833 12.2138C6.58333 11.8888 6.58333 11.3638 6.90833 11.0388L8.81667 9.13045L6.90833 7.22212C6.58333 6.89712 6.58333 6.37212 6.90833 6.04712C7.23333 5.72212 7.75833 5.72212 8.08333 6.04712L9.99167 7.95545L11.9 6.04712C12.225 5.72212 12.75 5.72212 13.075 6.04712C13.4 6.37212 13.4 6.89712 13.075 7.22212L11.1667 9.13045L13.075 11.0388H13.0917Z\" fill=\"#105246\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-56atif\",\"data-framer-name\":\"flower-solid\",layoutDependency:layoutDependency,layoutId:\"rEb1KONdQ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sux0zf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"G6491FZMF\",svg:'<svg width=\"18\" height=\"17\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.958 10.8221C16.758 10.2387 17.7497 8.29705 17.1663 6.49705C16.583 4.69705 14.6413 3.70539 12.8413 4.28872C12.683 4.33872 12.4413 4.16372 12.4413 3.99705C12.4413 2.09705 10.908 0.563721 9.008 0.563721C7.108 0.563721 5.57467 2.09705 5.57467 3.99705C5.57467 4.16372 5.33301 4.33872 5.17468 4.28872C3.37468 3.70539 1.43301 4.68872 0.849673 6.49705C0.26634 8.29705 1.24967 10.2387 3.058 10.8221C3.21633 10.8721 3.308 11.1637 3.21634 11.2971C2.09967 12.8304 2.44134 14.9804 3.97467 16.0971C5.50801 17.2137 7.658 16.8721 8.77467 15.3387C8.87467 15.2054 9.17467 15.2054 9.27467 15.3387C10.3913 16.8721 12.533 17.2137 14.0747 16.0971C15.608 14.9804 15.9497 12.8387 14.833 11.2971C14.733 11.1637 14.833 10.8721 14.983 10.8221H14.958ZM8.99967 12.0471C7.39134 12.0471 6.08301 10.7387 6.08301 9.13039C6.08301 7.52205 7.39134 6.21372 8.99967 6.21372C10.608 6.21372 11.9163 7.52205 11.9163 9.13039C11.9163 10.7387 10.608 12.0471 8.99967 12.0471Z\" fill=\"#105246\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42)))\"},children:\"Community\"})}),className:\"framer-4wup66\",\"data-framer-name\":\"Carbon avoidance\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zUvaEXOy0\",style:{\"--extracted-r6o4lv\":\"var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42))\",\"--framer-paragraph-spacing\":\"12px\"},variants:{boT4vKxCS:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},cWMsfDXoJ:{\"--extracted-r6o4lv\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},j3ZqEAxaE:{\"--extracted-r6o4lv\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},x4IZ95lOR:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({boT4vKxCS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Carbon avoidance\"})})},cWMsfDXoJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Habitat restoration\"})})},j3ZqEAxaE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Carbon removal\"})})},x4IZ95lOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Reforestation\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1c0e9fr\",\"data-styles-preset\":\"SVsFzoWgS\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42)))\"},children:\"Title\"})}),className:\"framer-cmu0dx\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I234:6737;234:8323\",style:{\"--extracted-1w1cjl5\":\"var(--token-4816ff0d-7e5c-4628-8982-3ccb160dd2fa, rgb(1, 56, 42))\"},text:lMei1ARiY,variants:{boT4vKxCS:{\"--extracted-1w1cjl5\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},cWMsfDXoJ:{\"--extracted-1w1cjl5\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},j3ZqEAxaE:{\"--extracted-1w1cjl5\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},x4IZ95lOR:{\"--extracted-1w1cjl5\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({boT4vKxCS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1c0e9fr\",\"data-styles-preset\":\"SVsFzoWgS\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Title\"})})},cWMsfDXoJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1c0e9fr\",\"data-styles-preset\":\"SVsFzoWgS\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Title\"})})},j3ZqEAxaE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1c0e9fr\",\"data-styles-preset\":\"SVsFzoWgS\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Title\"})})},x4IZ95lOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1c0e9fr\",\"data-styles-preset\":\"SVsFzoWgS\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at volutpat mi. Inarcu neque, eleifend at sollicitudin vel ultrices.\"})}),className:\"framer-1i4or4j\",\"data-framer-name\":\"Intro\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hvFdj8FFX\",style:{\"--extracted-r6o4lv\":\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\",\"--framer-paragraph-spacing\":\"12px\",opacity:0},text:k5d_RkNKB,variants:{\"boT4vKxCS-hover\":{opacity:1},\"cWMsfDXoJ-hover\":{opacity:1},\"I234:6737;234:8318-hover\":{opacity:1},\"j3ZqEAxaE-hover\":{opacity:1},\"x4IZ95lOR-hover\":{opacity:1},boT4vKxCS:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},x4IZ95lOR:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({boT4vKxCS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at volutpat mi. Inarcu neque, eleifend at sollicitudin vel ultrices.\"})})},x4IZ95lOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8h9eo\",\"data-styles-preset\":\"d9a2yNeez\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at volutpat mi. Inarcu neque, eleifend at sollicitudin vel ultrices.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lxs70g\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RLqT79nlw\",style:{opacity:1},variants:{\"boT4vKxCS-hover\":{opacity:.1},\"cWMsfDXoJ-hover\":{opacity:.1},\"I234:6737;234:8318-hover\":{opacity:.1},\"j3ZqEAxaE-hover\":{opacity:.1},\"x4IZ95lOR-hover\":{opacity:.1}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||200)-280+280-280),pixelHeight:700,pixelWidth:800,sizes:`max(${componentViewport?.width||\"100vw\"}, 300px)`,...toResponsiveImage(xJU3mark8),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-s564o0\",\"data-framer-name\":\"pic\",layoutDependency:layoutDependency,layoutId:\"d7YepLqK4\"}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bsutrt\",\"data-framer-name\":\"green-wave\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:370,layoutDependency:layoutDependency,layoutId:\"Z97MUFP5A\",svg:'<svg width=\"370\" height=\"100\" viewBox=\"0 0 370 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2449_9661)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M370 0H0V100C3.76645 99.7577 7.64396 99.5775 11.6446 99.3916C36.7383 98.2258 66.6767 96.8348 104.441 78.4578C118.073 73.6232 132.962 62.1379 149.366 49.4835C195.487 13.9051 253.589 -30.9151 329.441 36.8465C344.203 50.0339 357.822 64.3526 370 79.702V0Z\" fill=\"#59BA92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2449_9661\">\\n<rect width=\"370\" height=\"100\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n6afpd\",\"data-framer-name\":\"yellow-wave\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:370,layoutDependency:layoutDependency,layoutId:\"Lhx8uYpoH\",svg:'<svg width=\"370\" height=\"100\" viewBox=\"0 0 370 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M370 0H0V96.7788C20.1221 74.3009 44.8424 55.2164 72.5474 40.1702C175.805 -15.9078 283.755 -2.50015 370 45.6192V0Z\" fill=\"#FDD186\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lvdppf\",\"data-framer-name\":\"dark-green-wave\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:370,layoutDependency:layoutDependency,layoutId:\"UZF8iWbDR\",svg:'<svg width=\"370\" height=\"100\" viewBox=\"0 0 370 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2454_9709)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M370 0H0V100C3.76645 99.7577 7.64396 99.5775 11.6446 99.3916C36.7383 98.2258 66.6767 96.8348 104.441 78.4578C118.073 73.6232 132.962 62.1379 149.366 49.4835C195.487 13.9051 253.589 -30.9151 329.441 36.8465C344.203 50.0339 357.822 64.3526 370 79.702V0Z\" fill=\"#135E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2454_9709\">\\n<rect width=\"370\" height=\"100\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ev6fxu\",\"data-framer-name\":\"coral-wave\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:370,layoutDependency:layoutDependency,layoutId:\"wQaqj_0zL\",svg:'<svg width=\"370\" height=\"100\" viewBox=\"0 0 370 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M370 0H0V28.9481C107.442 -12.3211 223.767 -0.470612 321.017 46.622C338.551 55.1127 354.864 64.3371 370 74.2119V0Z\" fill=\"#FAA88C\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kb0q03\",\"data-framer-name\":\"blue-wave\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:370,layoutDependency:layoutDependency,layoutId:\"JLvL5S84t\",svg:'<svg width=\"370\" height=\"100\" viewBox=\"0 0 370 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M370 0H0V96.7788C20.1221 74.3009 44.8424 55.2164 72.5474 40.1702C175.805 -15.9078 283.755 -2.50015 370 45.6192V0Z\" fill=\"#1D6367\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kdpwbx\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"pFrufO8d1\",style:{background:'linear-gradient(180deg, rgba(88, 186, 146, 0) 0%, var(--token-e0e1c6e3-692b-4aeb-b209-f806a6b8de10, rgb(88, 186, 146)) /* {\"name\":\"Forest/40\"} */ 100%)',opacity:0},transformTemplate:transformTemplate1,variants:{\"boT4vKxCS-hover\":{opacity:1},\"cWMsfDXoJ-hover\":{opacity:1},\"I234:6737;234:8318-hover\":{opacity:1},\"j3ZqEAxaE-hover\":{opacity:1},\"x4IZ95lOR-hover\":{opacity:1},boT4vKxCS:{background:'linear-gradient(180deg, rgba(29, 99, 103, 0) 0%, var(--token-fb9a2f06-1195-4c14-a00a-f44b0462d660, rgb(29, 99, 103)) /* {\"name\":\"Arctic/85\"} */ 100%)'},cWMsfDXoJ:{background:'linear-gradient(180deg, rgba(253, 209, 134, 0) 0%, var(--token-545e5559-4568-4d39-8fbe-330985b2e658, rgb(253, 209, 134)) /* {\"name\":\"Buttercup/15\"} */ 100%)'},j3ZqEAxaE:{background:'linear-gradient(180deg, rgba(250, 168, 140, 0) 0%, var(--token-17c6baec-78b5-476d-80db-6323656d41f6, rgb(250, 168, 140)) /* {\"name\":\"Coral/25\"} */ 100%)'},x4IZ95lOR:{background:'linear-gradient(180deg, rgba(19, 94, 78, 0) 0%, var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78)) /* {\"name\":\"Forest/75\"} */ 100%)'}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(componentViewport?.height||200)-99+40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q662g0-container\",layoutDependency:layoutDependency,layoutId:\"vpPmFQxsO-container\",nodeId:\"vpPmFQxsO\",rendersWithMotion:true,scopeId:\"JirmpL2Sy\",children:/*#__PURE__*/_jsx(ComponentsLink,{height:\"100%\",id:\"vpPmFQxsO\",jBjc3qjU0:I7RxvH9rq,JpAXS0_X_:\"Visit\",layoutId:\"vpPmFQxsO\",variant:\"teBvT6r4R\",width:\"100%\",XWXZNx2qO:false,...addPropertyOverrides({boT4vKxCS:{variant:\"ZPweuqyaJ\"},x4IZ95lOR:{variant:\"ZPweuqyaJ\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T3HTW.framer-1ilba9e, .framer-T3HTW .framer-1ilba9e { display: block; }\",\".framer-T3HTW.framer-iissj3 { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 500px; overflow: hidden; padding: 0px 0px 400px 0px; position: relative; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-T3HTW .framer-17guyng { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 40px; position: absolute; top: 0px; width: 100%; z-index: 3; }\",\".framer-T3HTW .framer-1dglrd0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 4px 0px; position: relative; width: min-content; }\",\".framer-T3HTW .framer-yw9pce { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-T3HTW .framer-6cf1vs { flex: none; height: 18px; left: 0px; position: absolute; top: 3px; width: 23px; }\",\".framer-T3HTW .framer-1ejhi6u, .framer-T3HTW .framer-56atif { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-T3HTW .framer-pdgwit { bottom: 2px; flex: none; left: 2px; position: absolute; right: 3px; top: 1px; }\",\".framer-T3HTW .framer-1y6q16k, .framer-T3HTW .framer-f06b4x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-T3HTW .framer-1xzsnt1 { bottom: 0px; flex: none; left: 2px; position: absolute; right: 3px; top: 0px; }\",\".framer-T3HTW .framer-1bsucrg { bottom: 2px; flex: none; left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-T3HTW .framer-1sux0zf { bottom: 3px; flex: none; left: 1px; position: absolute; right: 2px; top: 1px; }\",\".framer-T3HTW .framer-4wup66 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-T3HTW .framer-cmu0dx, .framer-T3HTW .framer-1i4or4j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-T3HTW .framer-1lxs70g { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 280px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-T3HTW .framer-s564o0 { bottom: 0px; flex: none; height: 280px; left: calc(50.00000000000002% - max(300px, 100%) / 2); min-width: 300px; overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\".framer-T3HTW .framer-bsutrt, .framer-T3HTW .framer-n6afpd, .framer-T3HTW .framer-lvdppf, .framer-T3HTW .framer-1ev6fxu, .framer-T3HTW .framer-kb0q03 { flex: none; height: 100px; left: calc(50.00000000000002% - 101% / 2); position: absolute; top: -1px; width: 101%; z-index: 1; }\",\".framer-T3HTW .framer-kdpwbx { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 40px 40px 32px 40px; position: absolute; width: 100%; z-index: 3; }\",\".framer-T3HTW .framer-q662g0-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T3HTW.framer-iissj3, .framer-T3HTW .framer-17guyng, .framer-T3HTW .framer-1dglrd0, .framer-T3HTW .framer-1lxs70g, .framer-T3HTW .framer-kdpwbx { gap: 0px; } .framer-T3HTW.framer-iissj3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-T3HTW.framer-iissj3 > :first-child, .framer-T3HTW .framer-17guyng > :first-child { margin-top: 0px; } .framer-T3HTW.framer-iissj3 > :last-child, .framer-T3HTW .framer-17guyng > :last-child { margin-bottom: 0px; } .framer-T3HTW .framer-17guyng > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-T3HTW .framer-1dglrd0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-T3HTW .framer-1dglrd0 > :first-child, .framer-T3HTW .framer-1lxs70g > :first-child, .framer-T3HTW .framer-kdpwbx > :first-child { margin-left: 0px; } .framer-T3HTW .framer-1dglrd0 > :last-child, .framer-T3HTW .framer-1lxs70g > :last-child, .framer-T3HTW .framer-kdpwbx > :last-child { margin-right: 0px; } .framer-T3HTW .framer-1lxs70g > *, .framer-T3HTW .framer-kdpwbx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-T3HTW.framer-v-iissj3.hover .framer-q662g0-container { z-index: 5; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"j3ZqEAxaE\":{\"layout\":[\"fixed\",\"auto\"]},\"x4IZ95lOR\":{\"layout\":[\"fixed\",\"auto\"]},\"cWMsfDXoJ\":{\"layout\":[\"fixed\",\"auto\"]},\"boT4vKxCS\":{\"layout\":[\"fixed\",\"auto\"]},\"pVhcBkWVR\":{\"layout\":[\"fixed\",\"auto\"]},\"tJWJ5Se49\":{\"layout\":[\"fixed\",\"auto\"]},\"CtjwZp2_z\":{\"layout\":[\"fixed\",\"auto\"]},\"ciHY5n6Et\":{\"layout\":[\"fixed\",\"auto\"]},\"lwUNQHmpd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"lMei1ARiY\":\"title\",\"k5d_RkNKB\":\"intro\",\"xJU3mark8\":\"image\",\"I7RxvH9rq\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJirmpL2Sy=withCSS(Component,css,\"framer-T3HTW\");export default FramerJirmpL2Sy;FramerJirmpL2Sy.displayName=\"Components/Project\";FramerJirmpL2Sy.defaultProps={height:500,width:440};addPropertyControls(FramerJirmpL2Sy,{variant:{options:[\"I234:6737;234:8318\",\"j3ZqEAxaE\",\"x4IZ95lOR\",\"cWMsfDXoJ\",\"boT4vKxCS\"],optionTitles:[\"Community\",\"Carbon removal\",\"Reforestation\",\"Habitat restoration\",\"Carbon avoidance\"],title:\"Variant\",type:ControlType.Enum},lMei1ARiY:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},k5d_RkNKB:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris at volutpat mi. Inarcu neque, eleifend at sollicitudin vel ultrices.\",displayTextArea:true,title:\"Intro\",type:ControlType.String},xJU3mark8:{title:\"Image\",type:ControlType.ResponsiveImage},I7RxvH9rq:{title:\"Link\",type:ControlType.Link}});addFonts(FramerJirmpL2Sy,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ComponentsLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJirmpL2Sy\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j3ZqEAxaE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x4IZ95lOR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cWMsfDXoJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"boT4vKxCS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pVhcBkWVR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tJWJ5Se49\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CtjwZp2_z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ciHY5n6Et\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lwUNQHmpd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"lMei1ARiY\\\":\\\"title\\\",\\\"k5d_RkNKB\\\":\\\"intro\\\",\\\"xJU3mark8\\\":\\\"image\\\",\\\"I7RxvH9rq\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"500\",\"framerIntrinsicWidth\":\"440\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import ComponentsProject from\"https://framerusercontent.com/modules/AuxHYEjKnmNJMD6vV9sr/uKBMBpvsxUwfIS4CSG8U/JirmpL2Sy.js\";const ComponentsProjectFonts=getFonts(ComponentsProject);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"rvdsZejHw\",\"RkRgpUKJV\",\"ZX0UDFoNN\"];const serializationHash=\"framer-iNvPf\";const variantClassNames={RkRgpUKJV:\"framer-v-196qivg\",rvdsZejHw:\"framer-v-10bpsiu\",ZX0UDFoNN:\"framer-v-1pzak3l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Wide desktop\":\"rvdsZejHw\",Default:\"RkRgpUKJV\",Mobile:\"ZX0UDFoNN\"};const getProps=({height,id,items,width,...props})=>{return{...props,aZn_z_Nkv:items??props.aZn_z_Nkv??3.2,variant:humanReadableVariantMap[props.variant]??props.variant??\"rvdsZejHw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,aZn_z_Nkv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rvdsZejHw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10bpsiu\",className,classNames),\"data-framer-name\":\"Wide desktop\",layoutDependency:layoutDependency,layoutId:\"rvdsZejHw\",ref:ref??ref1,style:{...style},...addPropertyOverrides({RkRgpUKJV:{\"data-framer-name\":\"Default\"},ZX0UDFoNN:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-otqkid-container\",layoutDependency:layoutDependency,layoutId:\"Jz0RCiAjY-container\",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:56,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:56,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:4,overflow:false},gap:40,height:\"100%\",id:\"Jz0RCiAjY\",intervalControl:3,itemAmount:4,layoutId:\"Jz0RCiAjY\",padding:32,paddingBottom:0,paddingLeft:32,paddingPerSide:true,paddingRight:32,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p14od5-container\",\"data-framer-name\":\"Carbon removal: biochar\",layoutDependency:layoutDependency,layoutId:\"hmlM2_pwR-container\",name:\"Carbon removal: biochar\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/producing-biochar-using-waste-biomass-in-the-usa\",id:\"hmlM2_pwR\",k5d_RkNKB:\"Wakefield Biochar is a minority-owned American company dedicated to enhancing the planet\u2019s health through its mission of \u201CBetter Soil. Better World.\u201D The company focuses on transforming waste from pulp, paper, and sawmills into biochar.\",layoutId:\"hmlM2_pwR\",lMei1ARiY:\"Producing biochar using waste biomass in the USA\",name:\"Carbon removal: biochar\",style:{height:\"100%\",width:\"100%\"},variant:\"j3ZqEAxaE\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/W009kWCgvYRTqEYbFkVHu69bsmM.jpg\",srcSet:\"https://framerusercontent.com/images/W009kWCgvYRTqEYbFkVHu69bsmM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/W009kWCgvYRTqEYbFkVHu69bsmM.jpg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13nel65-container\",\"data-framer-name\":\"Carbon removal: undo\",layoutDependency:layoutDependency,layoutId:\"ROSqTyoiL-container\",name:\"Carbon removal: undo\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/boosting-crops-and-soil-whilst-permanently-locking-up-co2-with-undo\",id:\"ROSqTyoiL\",k5d_RkNKB:\"UNDO spreads its carbon-removing silicate rock on partner farmers\u2019 land free of charge. To date, they have spread 170k tonnes of basalt on 163 farms, totalling 8.6k hectares.\",layoutId:\"ROSqTyoiL\",lMei1ARiY:\"Boosting crops and soil whilst permanently locking up CO\u2082 with UNDO\",name:\"Carbon removal: undo\",style:{height:\"100%\",width:\"100%\"},variant:\"j3ZqEAxaE\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/Tss1TJZr1Z0MgiZL9r4Lxhyss.jpeg\",srcSet:\"https://framerusercontent.com/images/Tss1TJZr1Z0MgiZL9r4Lxhyss.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Tss1TJZr1Z0MgiZL9r4Lxhyss.jpeg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ukz54-container\",\"data-framer-name\":\"Carbon removal: cambodia\",layoutDependency:layoutDependency,layoutId:\"UAG71WEcu-container\",name:\"Carbon removal: cambodia\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/transforming-waste-into-biogas-in-cambodia\",id:\"UAG71WEcu\",k5d_RkNKB:\"The Biodigester Program was designed to address the gaps in access to electricity, whilst also providing local jobs, a reduction of GHG emissions and a number of other benefits for rural household users.\",layoutId:\"UAG71WEcu\",lMei1ARiY:\"Transforming waste into biogas in Cambodia\",name:\"Carbon removal: cambodia\",style:{height:\"100%\",width:\"100%\"},variant:\"j3ZqEAxaE\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/F83QVm9XEbWq8qCnq94g0NuP4U.jpg\",srcSet:\"https://framerusercontent.com/images/F83QVm9XEbWq8qCnq94g0NuP4U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F83QVm9XEbWq8qCnq94g0NuP4U.jpg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oshkf-container\",\"data-framer-name\":\"Reforestation: amazon\",layoutDependency:layoutDependency,layoutId:\"EwiEXY_JD-container\",name:\"Reforestation: amazon\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/conserving-the-amazon-in-brazil\",id:\"EwiEXY_JD\",k5d_RkNKB:\"Fazenda Manoa, situated in Rond\\xf4nia in southern Brazil. The main objective of the project is developing activities to mitigate climate change, reduce GHG emissions caused by deforestation and forest degradation, promoting social well-being and conserving local biodiversity.\",layoutId:\"EwiEXY_JD\",lMei1ARiY:\"Conserving the Amazon in Brazil\",name:\"Reforestation: amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"x4IZ95lOR\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/iMdxJV6VbJzRvMeUjoWhSOoceVw.jpg\",srcSet:\"https://framerusercontent.com/images/iMdxJV6VbJzRvMeUjoWhSOoceVw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iMdxJV6VbJzRvMeUjoWhSOoceVw.jpg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v0qf5b-container\",\"data-framer-name\":\"Community: stoves\",layoutDependency:layoutDependency,layoutId:\"M47y6WmJo-container\",name:\"Community: stoves\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/fuel-efficient-cookstoves-in-uganda\",id:\"M47y6WmJo\",k5d_RkNKB:\"UpEnergy, headquartered in Uganda, works in low income communities to fight climate change while providing affordable, life improving clean technologies that protect local environments.\",layoutId:\"M47y6WmJo\",lMei1ARiY:\"Fuel-efficient cookstoves in Uganda\",name:\"Community: stoves\",style:{height:\"100%\",width:\"100%\"},variant:\"I234:6737;234:8318\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/MiUKC9KiwK4cich7wUuAqRtw0.jpg\",srcSet:\"https://framerusercontent.com/images/MiUKC9KiwK4cich7wUuAqRtw0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MiUKC9KiwK4cich7wUuAqRtw0.jpg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13cpaug-container\",\"data-framer-name\":\"Reforestation: busoga\",layoutDependency:layoutDependency,layoutId:\"wzGkRZpYe-container\",name:\"Reforestation: busoga\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/planting-forest-gardens-in-busoga-uganda\",id:\"wzGkRZpYe\",k5d_RkNKB:\"Trees for the Future has planted more than 250 million trees since it was founded in 1989. In addition to enhancing ecological and environmental benefits at planting sites around the world, TREES\u2019 staff are experts in agroforestry.\",layoutId:\"wzGkRZpYe\",lMei1ARiY:\"Planting forest gardens in Busoga, Uganda\",name:\"Reforestation: busoga\",style:{height:\"100%\",width:\"100%\"},variant:\"x4IZ95lOR\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/bj1uGIOI9KdWjV4YoXzLOVT25T4.jpg\",srcSet:\"https://framerusercontent.com/images/bj1uGIOI9KdWjV4YoXzLOVT25T4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bj1uGIOI9KdWjV4YoXzLOVT25T4.jpg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rbutiv-container\",\"data-framer-name\":\"Carbon removal: blue carbon\",layoutDependency:layoutDependency,layoutId:\"aQx3Cuxck-container\",name:\"Carbon removal: blue carbon\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/restoring-blue-carbon-ecosystems\",id:\"aQx3Cuxck\",k5d_RkNKB:\"By funding blue carbon projects through Ecologi, you\u2019ll be supporting a range of projects around the world which contribute to locking up carbon in these incredible coastal ecosystems.\",layoutId:\"aQx3Cuxck\",lMei1ARiY:\"Restoring blue carbon ecosystems\",name:\"Carbon removal: blue carbon\",style:{height:\"100%\",width:\"100%\"},variant:\"j3ZqEAxaE\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/CnqXdQB0l5lZlSrbue7xoo8wAQ.png\",srcSet:\"https://framerusercontent.com/images/CnqXdQB0l5lZlSrbue7xoo8wAQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/CnqXdQB0l5lZlSrbue7xoo8wAQ.png 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j6yb6e-container\",\"data-framer-name\":\"Habitat: wildflowers\",layoutDependency:layoutDependency,layoutId:\"GALY7nqfD-container\",name:\"Habitat: wildflowers\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/wildflowers-wetlands-and-wildlife\",id:\"GALY7nqfD\",k5d_RkNKB:\"We will be funding the restoration and conservation of 4 types of habitats: wildflower meadows, wetlands (including peatland restoration), heathland, and woodland. \",layoutId:\"GALY7nqfD\",lMei1ARiY:\"Restoring Wildflowers, Wetlands and Wildlife\",name:\"Habitat: wildflowers\",style:{height:\"100%\",width:\"100%\"},variant:\"cWMsfDXoJ\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/RzBSSaZw9d3PlaTHTQ98pys2KSc.jpg\",srcSet:\"https://framerusercontent.com/images/RzBSSaZw9d3PlaTHTQ98pys2KSc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RzBSSaZw9d3PlaTHTQ98pys2KSc.jpg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:\"420px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eesdvl-container\",\"data-framer-name\":\"Carbon removal: biomass\",layoutDependency:layoutDependency,layoutId:\"VnIROOPch-container\",name:\"Carbon removal: biomass\",children:/*#__PURE__*/_jsx(ComponentsProject,{height:\"100%\",I7RxvH9rq:\"https://ecologi.com/projects/carbon-hill-biochar\",id:\"VnIROOPch\",k5d_RkNKB:\"Carbon Hill is a family-run farm with a 20-year history in the biomass industry, having transitioned to biochar production over the past three years.\",layoutId:\"VnIROOPch\",lMei1ARiY:\"Producing biochar from waste biomass in Wales\",name:\"Carbon removal: biomass\",style:{height:\"100%\",width:\"100%\"},variant:\"j3ZqEAxaE\",width:\"100%\",xJU3mark8:addImageAlt({src:\"https://framerusercontent.com/images/0cBdBKmLNwmXzdKJtttmCv1nQ.jpg\",srcSet:\"https://framerusercontent.com/images/0cBdBKmLNwmXzdKJtttmCv1nQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0cBdBKmLNwmXzdKJtttmCv1nQ.jpg 600w\"},\"\")})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({RkRgpUKJV:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:4,overflow:false},itemAmount:aZn_z_Nkv},ZX0UDFoNN:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:56,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:56,showMouseControls:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:4,overflow:false},itemAmount:1,paddingLeft:24,paddingRight:24}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iNvPf.framer-1m15qrx, .framer-iNvPf .framer-1m15qrx { display: block; }\",\".framer-iNvPf.framer-10bpsiu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-iNvPf .framer-otqkid-container { flex: 1 0 0px; height: 540px; position: relative; width: 1px; }\",\".framer-iNvPf .framer-1p14od5-container, .framer-iNvPf .framer-13nel65-container, .framer-iNvPf .framer-13ukz54-container, .framer-iNvPf .framer-oshkf-container, .framer-iNvPf .framer-1v0qf5b-container, .framer-iNvPf .framer-13cpaug-container, .framer-iNvPf .framer-rbutiv-container, .framer-iNvPf .framer-1j6yb6e-container, .framer-iNvPf .framer-eesdvl-container { height: 504px; position: relative; width: 420px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iNvPf.framer-10bpsiu { gap: 0px; } .framer-iNvPf.framer-10bpsiu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iNvPf.framer-10bpsiu > :first-child { margin-left: 0px; } .framer-iNvPf.framer-10bpsiu > :last-child { margin-right: 0px; } }\",\".framer-iNvPf.framer-v-1pzak3l.framer-10bpsiu { height: 540px; width: 360px; }\",\".framer-iNvPf.framer-v-1pzak3l .framer-otqkid-container { height: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 540\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RkRgpUKJV\":{\"layout\":[\"fixed\",\"auto\"]},\"ZX0UDFoNN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aZn_z_Nkv\":\"items\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGzeYXpO_8=withCSS(Component,css,\"framer-iNvPf\");export default FramerGzeYXpO_8;FramerGzeYXpO_8.displayName=\"Components/Climate project gallery\";FramerGzeYXpO_8.defaultProps={height:540,width:1440};addPropertyControls(FramerGzeYXpO_8,{variant:{options:[\"rvdsZejHw\",\"RkRgpUKJV\",\"ZX0UDFoNN\"],optionTitles:[\"Wide desktop\",\"Default\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},aZn_z_Nkv:{defaultValue:3.2,displayStepper:true,max:10,min:1,step:.1,title:\"Items\",type:ControlType.Number}});addFonts(FramerGzeYXpO_8,[{explicitInter:true,fonts:[]},...ComponentsProjectFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGzeYXpO_8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"aZn_z_Nkv\\\":\\\"items\\\"}\",\"framerIntrinsicHeight\":\"540\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RkRgpUKJV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZX0UDFoNN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/VHA35VnXX9I43smfEdAT/7P5rlXyqKWBZhUclApdf/O4LPz1FVm.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eQxPgoNG2W33Zj8kKLYm/KgU6NPNDjn5BNElSeddN/pOHqyNfxH.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/t6IYEPCwyvyoJRki6qwx/5nMVOL1okPLmh89ksiBh/RyKKj9LRD.js\";import ComponentsClimateProjectGallery from\"https://framerusercontent.com/modules/0lEaVpyOYX39xOSNDnZB/XbKB86fhSSrUf1PxwLnU/GzeYXpO_8.js\";const ComponentsClimateProjectGalleryFonts=getFonts(ComponentsClimateProjectGallery);const cycleOrder=[\"wjbsYwSRL\",\"QpDv65mfG\",\"mBjpWT7We\"];const serializationHash=\"framer-KM5sG\";const variantClassNames={mBjpWT7We:\"framer-v-1qjo7bm\",QpDv65mfG:\"framer-v-r0zslc\",wjbsYwSRL:\"framer-v-15x77z6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"wjbsYwSRL\",Mobile:\"mBjpWT7We\",Tablet:\"QpDv65mfG\"};const getProps=({background,height,id,intro,showIntro,showLogos,title,width,...props})=>{return{...props,b2W6nO3Tb:intro??props.b2W6nO3Tb??\"Support what matters most to you - choose from a range of projects across sea, land and air. From blue carbon removal, afforestation, tree planting across the world to renewables and nature-based carbon avoidance projects.\",fW_q1Oftc:title??props.fW_q1Oftc??\"Global projects with lasting impact\",QP6SuGQC5:background??props.QP6SuGQC5??\"var(--token-b3c6049f-527e-4f83-811b-aa6e9af8b566, rgb(255, 240, 212))\",uqGi7yivR:showLogos??props.uqGi7yivR??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"wjbsYwSRL\",Wg2rlcFfj:showIntro??props.Wg2rlcFfj??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fW_q1Oftc,Wg2rlcFfj,b2W6nO3Tb,QP6SuGQC5,uqGi7yivR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wjbsYwSRL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15x77z6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"wjbsYwSRL\",ref:ref??ref1,style:{backgroundColor:QP6SuGQC5,...style},...addPropertyOverrides({mBjpWT7We:{\"data-framer-name\":\"Mobile\"},QpDv65mfG:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uwj059\",\"data-framer-name\":\"Intro\",layoutDependency:layoutDependency,layoutId:\"V8E4JAsCU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ls7727\",\"data-styles-preset\":\"O4LPz1FVm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Global projects with lasting impact\"})}),className:\"framer-13s0fch\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sjXNGITCT\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:fW_q1Oftc,verticalAlignment:\"top\",withExternalLayout:true}),Wg2rlcFfj&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-92hp6t\",\"data-styles-preset\":\"pOHqyNfxH\",style:{\"--framer-text-alignment\":\"center\"},children:\"Support what matters most to you - choose from a range of projects across sea, land and air. From blue carbon removal, afforestation, tree planting across the world to renewables and nature-based carbon avoidance projects.\"})}),className:\"framer-1op1gly\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mZ4M0fonE\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:b2W6nO3Tb,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i2z96t-container\",layoutDependency:layoutDependency,layoutId:\"TXOQy9OTn-container\",children:/*#__PURE__*/_jsx(ComponentsClimateProjectGallery,{aZn_z_Nkv:3.2,height:\"100%\",id:\"TXOQy9OTn\",layoutId:\"TXOQy9OTn\",style:{width:\"100%\"},variant:\"RkRgpUKJV\",width:\"100%\",...addPropertyOverrides({mBjpWT7We:{aZn_z_Nkv:1,variant:\"ZX0UDFoNN\"},QpDv65mfG:{aZn_z_Nkv:2}},baseVariant,gestureVariant)})})}),uqGi7yivR&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bhw5s1\",\"data-framer-name\":\"Supported by\",layoutDependency:layoutDependency,layoutId:\"anTz1XtcF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qo8fdq\",\"data-styles-preset\":\"RyKKj9LRD\",style:{\"--framer-text-alignment\":\"center\"},children:\"We support industry leading certifications and quality standards\"})}),className:\"framer-1si6awz\",\"data-framer-name\":\"We support industry leading certifications and quality standards\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e8I_28Oqh\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wiorcr\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"JX_IAKpr8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-70nfa4\",\"data-framer-name\":\"layer\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:152,layoutDependency:layoutDependency,layoutId:\"dQn5a2iLR\",svg:'<svg width=\"152\" height=\"38\" viewBox=\"0 0 152 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1898_31528)\">\\n<path d=\"M47.595 5.86417H49.9264L52.0044 11.7261C52.1817 12.2967 52.4351 12.9711 52.6125 13.7233H52.6886C52.8659 12.9711 53.0687 12.3226 53.2967 11.752L55.3494 5.86417H57.7061L53.5248 16.5505H51.7763L47.595 5.86417ZM59.1252 12.3486C59.2519 11.4148 59.86 10.8701 60.671 10.8701C61.4819 10.8701 62.09 11.4148 62.1407 12.3486H59.1252ZM64.0413 13.3861C64.0666 13.2305 64.0666 13.1786 64.0666 13.1008C64.0666 10.8442 62.6475 9.44357 60.6203 9.44357C58.593 9.44357 57.0979 10.9479 57.0979 13.0748C57.0979 15.2017 58.4916 16.7061 60.671 16.7061C62.1914 16.7061 63.2811 16.0317 63.8892 14.8386L62.3688 14.2161L62.2421 14.268C61.862 14.8645 61.3805 15.2017 60.7216 15.2017C59.784 15.2017 59.0745 14.5273 59.0745 13.4639V13.3861H64.0413ZM65.283 16.3948H67.2089V13.3342C67.2089 11.9336 67.7664 11.1814 68.3493 11.1814C68.6533 11.1814 68.8307 11.3111 68.9828 11.6483L69.1095 11.7001L70.706 10.7923C70.4272 9.83263 69.8697 9.41763 69.1348 9.41763C68.3239 9.41763 67.6397 9.85857 67.0822 10.8961V9.677H65.283V16.3948ZM71.5422 16.3948H73.4681V9.70294H71.5422V16.3948ZM71.3395 6.8498C71.3395 7.52418 71.8463 7.99106 72.5305 7.99106C73.2147 7.99106 73.7215 7.52418 73.7215 6.8498C73.7215 6.17543 73.2147 5.70855 72.5305 5.70855C71.821 5.73449 71.3395 6.20136 71.3395 6.8498ZM79.9807 16.3948H81.9067V9.70294H79.9807V16.3948ZM79.778 6.8498C79.778 7.52418 80.2848 7.99106 80.969 7.99106C81.6532 7.99106 82.1601 7.52418 82.1601 6.8498C82.1601 6.17543 81.6532 5.70855 80.969 5.70855C80.2595 5.73449 79.778 6.20136 79.778 6.8498ZM78.3082 7.00543C78.4856 7.00543 78.7137 7.0573 78.9164 7.16105L79.0431 7.10918L79.1192 5.52699C78.739 5.42324 78.2829 5.34542 77.8775 5.34542C76.281 5.34542 75.5714 6.20136 75.5714 8.432V9.75482H74.3804V11.2851H75.5714V16.3948H77.4973V11.2333H78.9164V9.70294H77.4973V8.32825C77.548 7.31668 77.7761 7.00543 78.3082 7.00543ZM85.1756 12.3486C85.3023 11.4148 85.9105 10.8701 86.7214 10.8701C87.5323 10.8701 88.1405 11.4148 88.1912 12.3486H85.1756ZM90.1171 13.3861C90.1425 13.2305 90.1425 13.1786 90.1425 13.1008C90.1425 10.8442 88.7234 9.44357 86.6961 9.44357C84.6688 9.44357 83.1737 10.9479 83.1737 13.0748C83.1737 15.2017 84.5675 16.7061 86.7468 16.7061C88.2672 16.7061 89.3569 16.0317 89.9651 14.8386L88.4446 14.2161L88.3179 14.268C87.9378 14.8645 87.4563 15.2017 86.7975 15.2017C85.8598 15.2017 85.1503 14.5273 85.1503 13.4639V13.3861H90.1171ZM96.3003 13.0748C96.3003 14.242 95.5908 15.0202 94.5518 15.0202C93.5888 15.0202 92.9553 14.2939 92.9553 13.0748C92.9553 11.8558 93.6142 11.1036 94.5771 11.1036C95.5401 11.1036 96.3003 11.9336 96.3003 13.0748ZM91.0294 13.0489C91.0294 15.3055 92.2204 16.6802 93.9183 16.6802C94.8812 16.6802 95.8188 16.1614 96.3257 15.3055V16.3948H98.2009V5.47511H96.275V8.6395C96.275 9.39169 96.3003 10.1698 96.3003 10.7923C95.7681 9.8845 94.9066 9.41763 93.9943 9.41763C92.3218 9.44356 91.0294 10.8701 91.0294 13.0489ZM103.979 11.1295C103.979 14.3717 106.31 16.6802 109.402 16.6802C111.454 16.6802 113.051 15.7983 114.09 13.9567L112.595 12.9711L112.341 13.023C111.682 14.1642 110.795 14.683 109.478 14.683C107.602 14.683 106.183 13.1786 106.183 11.1036C106.183 9.02856 107.602 7.52418 109.452 7.52418C110.694 7.52418 111.606 8.04293 112.265 9.21013L112.519 9.262L114.039 8.27637C113.076 6.4348 111.429 5.55292 109.376 5.55292C106.335 5.57886 103.979 7.86137 103.979 11.1295ZM117.536 15.4611C117.029 15.4611 116.776 15.2017 116.776 14.7348C116.776 14.1123 117.308 13.7492 118.879 13.438V14.8386C118.448 15.2536 118.017 15.4611 117.536 15.4611ZM121.439 15.2017C121.286 15.2795 121.185 15.3055 121.084 15.3055C120.856 15.3055 120.78 15.2277 120.78 14.9164V11.9595C120.78 10.2995 119.867 9.44357 118.22 9.44357C116.826 9.44357 115.661 10.1698 115.027 11.2592L116.168 12.0633L116.294 12.0373C116.75 11.3889 117.308 11.0517 117.941 11.0517C118.575 11.0517 118.879 11.3889 118.879 12.167V12.5301C115.965 12.9711 114.926 13.7751 114.926 14.9942C114.926 16.0317 115.635 16.7061 116.852 16.7061C117.713 16.7061 118.398 16.4208 119.056 15.7464C119.183 16.2911 119.563 16.6542 120.4 16.6542C120.856 16.6542 121.21 16.5764 121.54 16.4727V15.2795L121.439 15.2017ZM122.579 16.3948H124.505V13.3342C124.505 11.9336 125.062 11.1814 125.645 11.1814C125.949 11.1814 126.127 11.3111 126.279 11.6483L126.405 11.7001L128.002 10.7923C127.723 9.83263 127.166 9.41763 126.431 9.41763C125.62 9.41763 124.936 9.85857 124.378 10.8961V9.677H122.579V16.3948ZM134.033 13.0489C134.033 14.268 133.399 15.0202 132.411 15.0202C131.423 15.0202 130.713 14.242 130.713 13.0748C130.713 11.9076 131.423 11.1036 132.436 11.1036C133.45 11.1036 134.033 11.8298 134.033 13.0489ZM130.713 15.3055C131.22 16.1614 132.107 16.6802 133.019 16.6802C134.743 16.6802 135.984 15.2017 135.984 12.997C135.984 10.7923 134.793 9.41763 133.121 9.41763C132.158 9.41763 131.296 9.8845 130.739 10.7923C130.764 10.1439 130.764 9.39169 130.764 8.6395V5.47511H128.838V16.3948H130.713V15.3055ZM142.319 13.0489C142.319 14.1383 141.559 14.9942 140.571 14.9942C139.583 14.9942 138.797 14.1642 138.797 13.0489C138.797 11.9336 139.532 11.1036 140.571 11.1036C141.61 11.1036 142.319 11.9595 142.319 13.0489ZM136.846 13.0489C136.846 15.098 138.442 16.6802 140.546 16.6802C142.649 16.6802 144.245 15.098 144.245 13.0489C144.245 10.9998 142.674 9.41763 140.546 9.41763C138.417 9.44356 136.846 10.9998 136.846 13.0489ZM145.462 16.3948H147.388V13.1267C147.388 11.9076 147.996 11.1295 148.883 11.1295C149.694 11.1295 150.074 11.5704 150.074 12.7376V16.3948H152V12.0633C152 10.3514 151.113 9.41763 149.618 9.41763C148.655 9.41763 147.894 9.8845 147.337 10.7923V9.677H145.462V16.3948ZM47.8991 29.5193C48.7607 31.0237 50.0278 31.698 51.7003 31.698C53.8289 31.698 55.3494 30.2715 55.3494 28.4818C55.3494 27.0552 54.6905 26.1474 52.5365 25.1618C50.712 24.3318 50.4079 24.0205 50.4079 23.4239C50.4079 22.8274 50.8893 22.3605 51.7256 22.3605C52.5112 22.3605 53.0433 22.7236 53.4488 23.3461L53.7022 23.398L55.0959 22.3605C54.3864 21.2192 53.2207 20.5708 51.7003 20.5708C49.6223 20.5708 48.2539 21.8158 48.2539 23.4239C48.2539 24.8764 48.9888 25.8102 51.0161 26.6661C52.8153 27.4443 53.1954 27.8852 53.1954 28.6115C53.1954 29.3377 52.5619 29.8824 51.6496 29.8824C50.7373 29.8824 50.1038 29.4674 49.5463 28.5336L49.2929 28.4558L47.8991 29.5193ZM60.6203 29.9083L60.4936 29.8305C60.2402 29.9602 60.0121 30.0121 59.784 30.0121C59.1252 30.0121 58.8717 29.7527 58.8717 28.9486V26.2771H60.671V24.7468H58.8717V22.0752H58.4663L56.9458 22.983V24.7468H55.7548V26.2771H56.9458V29.4415C56.9458 30.9199 57.7567 31.698 59.2519 31.698C59.784 31.698 60.3162 31.5943 60.671 31.4387L60.6203 29.9083ZM63.9906 30.479C63.4838 30.479 63.2304 30.2196 63.2304 29.7527C63.2304 29.1302 63.7625 28.7671 65.3337 28.4558V29.8565C64.9029 30.2715 64.4468 30.479 63.9906 30.479ZM67.8678 30.2196C67.7157 30.2974 67.6144 30.3233 67.513 30.3233C67.2849 30.3233 67.2089 30.2455 67.2089 29.9343V26.9774C67.2089 25.3174 66.2966 24.4614 64.6495 24.4614C63.2557 24.4614 62.09 25.1877 61.4565 26.2771L62.5969 27.0811L62.7236 27.0552C63.1797 26.4068 63.7372 26.0696 64.3707 26.0696C65.0043 26.0696 65.3083 26.4068 65.3083 27.1849V27.548C62.3941 27.989 61.3552 28.793 61.3552 30.0121C61.3552 31.0496 62.0647 31.724 63.2811 31.724C64.1427 31.724 64.8269 31.4387 65.4857 30.7643C65.6124 31.309 65.9926 31.6721 66.8288 31.6721C67.2849 31.6721 67.6397 31.5943 67.9691 31.4905V30.2974L67.8678 30.2196ZM69.0335 31.4387H70.9594V28.1705C70.9594 26.9515 71.5676 26.1733 72.4545 26.1733C73.2654 26.1733 73.6455 26.6143 73.6455 27.7815V31.4387H75.5714V27.1071C75.5714 25.3952 74.6845 24.4614 73.1894 24.4614C72.2264 24.4614 71.4662 24.9283 70.9087 25.8361V24.7208H69.0335V31.4387ZM82.084 28.0927C82.084 29.2599 81.3745 30.038 80.3355 30.038C79.3726 30.038 78.739 29.3118 78.739 28.0927C78.739 26.8736 79.3979 26.1214 80.3609 26.1214C81.3745 26.1214 82.084 26.9515 82.084 28.0927ZM76.8131 28.0668C76.8131 30.3233 78.0041 31.698 79.702 31.698C80.6649 31.698 81.6026 31.1793 82.1094 30.3233V31.4127H83.9846V20.493H82.0587V23.6574C82.0587 24.4096 82.084 25.1877 82.084 25.8102C81.5519 24.9024 80.6903 24.4355 79.778 24.4355C78.1309 24.4614 76.8131 25.888 76.8131 28.0668ZM87.7858 30.479C87.2789 30.479 87.0255 30.2196 87.0255 29.7527C87.0255 29.1302 87.5577 28.7671 89.1288 28.4558V29.8565C88.698 30.2715 88.2672 30.479 87.7858 30.479ZM91.6883 30.2196C91.5362 30.2974 91.4349 30.3233 91.3335 30.3233C91.1054 30.3233 91.0294 30.2455 91.0294 29.9343V26.9774C91.0294 25.3174 90.1171 24.4614 88.47 24.4614C87.0762 24.4614 85.9105 25.1877 85.277 26.2771L86.4173 27.0811L86.544 27.0552C87.0002 26.4068 87.5577 26.0696 88.1912 26.0696C88.8247 26.0696 89.1288 26.4068 89.1288 27.1849V27.548C86.2146 27.989 85.1756 28.793 85.1756 30.0121C85.1756 31.0496 85.8852 31.724 87.1015 31.724C87.9631 31.724 88.6473 31.4387 89.3062 30.7643C89.4329 31.309 89.813 31.6721 90.6493 31.6721C91.1054 31.6721 91.4602 31.5943 91.7896 31.4905V30.2974L91.6883 30.2196ZM92.8286 31.4387H94.7545V28.378C94.7545 26.9774 95.312 26.2252 95.8949 26.2252C96.1989 26.2252 96.3763 26.3549 96.5284 26.6921L96.6551 26.7439L98.2516 25.8361C97.9728 24.8764 97.4153 24.4614 96.6804 24.4614C95.8695 24.4614 95.1853 24.9024 94.6278 25.9399V24.7208H92.8286V31.4387ZM103.903 28.0927C103.903 29.2599 103.193 30.038 102.154 30.038C101.191 30.038 100.558 29.3118 100.558 28.0927C100.558 26.8736 101.216 26.1214 102.179 26.1214C103.193 26.1214 103.903 26.9515 103.903 28.0927ZM98.6317 28.0668C98.6317 30.3233 99.8227 31.698 101.521 31.698C102.483 31.698 103.421 31.1793 103.928 30.3233V31.4127H105.803V20.493H103.877V23.6574C103.877 24.4096 103.903 25.1877 103.903 25.8102C103.37 24.9024 102.509 24.4355 101.597 24.4355C99.9494 24.4614 98.6317 25.888 98.6317 28.0668Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M0.384865 0.261651C0.0807742 0.261651 -0.0966123 0.59884 0.0554333 0.858216L2.26009 4.74886H30.3378L32.8213 0.261651H0.384865Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M3.65385 7.23887L6.23862 11.7779H26.4353L28.9441 7.23887H3.65385Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M22.5328 18.833L25.0416 14.2939H7.65771L10.2425 18.833H22.5328Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M41.0317 0.183838L35.254 0.209776L20.8097 25.7843L17.9968 21.0636L11.5602 21.1933L20.5056 36.9893C20.6576 37.2487 21.0377 37.2487 21.1898 36.9893L41.3865 0.780403C41.5132 0.521027 41.3105 0.183838 41.0317 0.183838Z\" fill=\"#4E4E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1898_31528\">\\n<rect width=\"152\" height=\"37\" fill=\"white\" transform=\"translate(0 0.183838)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-33pa19\",\"data-framer-name\":\"svg948\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:163,layoutDependency:layoutDependency,layoutId:\"hmtkPaEaB\",svg:'<svg width=\"163\" height=\"20\" viewBox=\"0 0 163 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1898_31535)\">\\n<path d=\"M161.156 1.70194V2.26948H161.444C161.595 2.26948 161.704 2.2555 161.765 2.23034C161.863 2.1884 161.913 2.10173 161.913 1.97592C161.913 1.7942 161.782 1.70194 161.525 1.70194H161.156ZM160.876 3.25918V1.47828H161.564C161.98 1.47828 162.19 1.64602 162.19 1.98431C162.19 2.26389 162.033 2.42883 161.72 2.47357L162.229 3.25918H161.933L161.446 2.49314H161.153V3.25918H160.874H160.876ZM160.214 2.33657C160.214 2.714 160.329 3.02713 160.558 3.28154C160.795 3.54155 161.1 3.67015 161.472 3.67015C161.843 3.67015 162.134 3.54155 162.371 3.28713C162.603 3.03831 162.721 2.73078 162.721 2.36453C162.721 1.99829 162.603 1.69635 162.371 1.44752C162.134 1.1959 161.832 1.07009 161.472 1.07009C161.111 1.07009 160.823 1.19311 160.58 1.43914C160.337 1.68516 160.214 1.98431 160.214 2.33657ZM159.935 2.39249C159.935 1.95356 160.08 1.58731 160.374 1.29376C160.667 0.997405 161.033 0.849229 161.469 0.849229C161.905 0.849229 162.26 0.994609 162.553 1.28816C162.849 1.58172 162.997 1.94237 162.997 2.37012C162.997 2.79788 162.849 3.16132 162.553 3.45488C162.26 3.75123 161.896 3.89941 161.469 3.89941C161.041 3.89941 160.689 3.75123 160.388 3.46047C160.086 3.16692 159.935 2.81185 159.935 2.39529\" fill=\"#4E4E4E\"/>\\n<path d=\"M27.3767 15.1663C27.9215 14.4422 28.1954 13.4134 28.1954 12.0798C28.1954 10.7462 27.9215 9.71739 27.3767 8.99888C26.8318 8.28037 26.0495 7.91971 25.0324 7.91971C24.0154 7.91971 23.233 8.28037 22.6826 8.99888C22.1321 9.72018 21.8583 10.7462 21.8583 12.0798C21.8583 13.4134 22.1321 14.4422 22.6826 15.1663C23.233 15.8904 24.0154 16.2511 25.0324 16.2511C26.0495 16.2511 26.8318 15.8904 27.3767 15.1663ZM30.1596 17.0898C29.0364 18.4765 27.332 19.1727 25.0436 19.1727C22.7552 19.1727 21.0508 18.4793 19.9276 17.0898C18.8044 15.7031 18.2427 14.0312 18.2427 12.0798C18.2427 10.1284 18.8044 8.49564 19.9276 7.08658C21.0508 5.67751 22.7552 4.97298 25.0436 4.97298C27.332 4.97298 29.0364 5.67751 30.1596 7.08658C31.2829 8.49564 31.8445 10.1591 31.8445 12.0798C31.8445 14.0005 31.2829 15.7031 30.1596 17.0898Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M36.804 18.7197H33.3226V0.709441H36.804V18.7197Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M47.24 15.102C47.7541 14.3695 48.0112 13.419 48.0112 12.2559C48.0112 10.626 47.6005 9.46297 46.7762 8.76124C46.2705 8.33908 45.6865 8.1266 45.0159 8.1266C43.9989 8.1266 43.2528 8.51241 42.775 9.28125C42.3 10.0501 42.0597 11.0062 42.0597 12.1469C42.0597 13.377 42.3 14.3611 42.7862 15.0992C43.2696 15.8345 44.0044 16.2036 44.9908 16.2036C45.9771 16.2036 46.7259 15.8373 47.2372 15.1048M46.385 5.616C47.0137 5.97107 47.5222 6.46032 47.9134 7.08937V0.734603H51.4424V18.7197H48.0615V16.8745C47.5641 17.6629 46.9997 18.2389 46.3655 18.5967C45.7312 18.9546 44.9405 19.1363 43.9961 19.1363C42.4397 19.1363 41.1321 18.5073 40.0703 17.2492C39.0086 15.9911 38.4777 14.3751 38.4777 12.4041C38.4777 10.1312 39.0002 8.34467 40.048 7.03905C41.093 5.73622 42.4928 5.08481 44.2419 5.08481C45.0466 5.08481 45.7647 5.26094 46.3906 5.616\" fill=\"#4E4E4E\"/>\\n<path d=\"M62.3701 13.159C62.4875 13.9809 62.7166 14.596 63.0575 15.0042C63.6806 15.745 64.7479 16.1169 66.2623 16.1169C67.1676 16.1169 67.9053 16.019 68.4697 15.8233C69.5426 15.4487 70.0791 14.7526 70.0791 13.7349C70.0791 13.1394 69.8164 12.6809 69.2911 12.3538C68.7659 12.0379 67.9332 11.7555 66.7932 11.5095L64.8457 11.0817C62.929 10.6596 61.6157 10.1983 60.8976 9.70061C59.685 8.87027 59.0787 7.57024 59.0787 5.80332C59.0787 4.19017 59.671 2.851 60.8585 1.78301C62.0432 0.717828 63.7867 0.183838 66.0863 0.183838C68.0059 0.183838 69.646 0.687075 70.9983 1.69355C72.3535 2.70002 73.066 4.15941 73.1303 6.07451H69.5175C69.4504 4.99255 68.967 4.22092 68.0645 3.76521C67.4638 3.46327 66.7178 3.3123 65.8237 3.3123C64.8289 3.3123 64.0382 3.508 63.4431 3.89941C62.8507 4.29081 62.5545 4.83599 62.5545 5.53493C62.5545 6.17795 62.8451 6.65882 63.4319 6.97754C63.8063 7.19002 64.6054 7.43884 65.8237 7.72401L68.9838 8.47048C70.3697 8.79758 71.4063 9.23092 72.0964 9.77889C73.1694 10.626 73.7058 11.8533 73.7058 13.4553C73.7058 15.0573 73.0688 16.4664 71.7975 17.5539C70.5261 18.6415 68.7295 19.1838 66.4104 19.1838C64.0913 19.1838 62.1773 18.6498 60.8194 17.5763C59.4615 16.5055 58.7825 15.0321 58.7825 13.159H62.3701Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M74.2563 8.00358V5.52374H76.1116V1.80818H79.5539V5.52095H81.7165V8.00079H79.5539V15.0377C79.5539 15.5829 79.6238 15.924 79.7607 16.0582C79.8976 16.1924 80.3223 16.2595 81.032 16.2595C81.1382 16.2595 81.2499 16.2595 81.3673 16.2539C81.4846 16.2511 81.602 16.2427 81.7165 16.2343V18.8372L80.068 18.8987C78.4223 18.9546 77.2991 18.6694 76.6983 18.0432C76.3072 17.6434 76.1116 17.0283 76.1116 16.198V8.00079H74.2563V8.00358Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M91.0265 12.2448C90.803 12.3845 90.5795 12.4936 90.3531 12.5802C90.1268 12.6669 89.8139 12.7452 89.4171 12.8179L88.6236 12.9661C87.8804 13.0975 87.3467 13.254 87.0254 13.4413C86.4777 13.7601 86.2039 14.2521 86.2039 14.9203C86.2039 15.5158 86.3715 15.9435 86.7068 16.2091C87.0421 16.4747 87.4473 16.6061 87.9279 16.6061C88.6878 16.6061 89.3892 16.3853 90.029 15.9463C90.6689 15.5074 91.0014 14.7022 91.0265 13.5392V12.2448ZM88.8974 10.6176C89.5456 10.5365 90.0095 10.4331 90.2861 10.3129C90.7862 10.1004 91.0377 9.77051 91.0377 9.32318C91.0377 8.77801 90.8449 8.40058 90.4621 8.1937C90.0793 7.98681 89.5149 7.88337 88.7717 7.88337C87.939 7.88337 87.3467 8.08466 87.0002 8.49284C86.7515 8.79479 86.5867 9.20017 86.5057 9.71459H83.1471C83.2198 8.54876 83.5467 7.59261 84.1279 6.84334C85.0527 5.67192 86.637 5.08481 88.8862 5.08481C90.3503 5.08481 91.6496 5.37277 92.7868 5.9515C93.924 6.53022 94.4912 7.62057 94.4912 9.22533V15.3341C94.4912 15.759 94.4996 16.2707 94.5164 16.8745C94.5415 17.3302 94.6114 17.6406 94.7231 17.8027C94.8377 17.9649 95.0081 18.0991 95.2372 18.2053V18.7197H91.4512C91.345 18.4513 91.2724 18.1997 91.2305 17.9621C91.1914 17.7272 91.1578 17.4561 91.1327 17.1541C90.6493 17.6769 90.0933 18.1187 89.4618 18.4877C88.7102 18.9182 87.8552 19.1363 86.908 19.1363C85.6982 19.1363 84.6951 18.7924 83.9043 18.1047C83.1136 17.4169 82.7196 16.4412 82.7196 15.1775C82.7196 13.5392 83.3567 12.3538 84.628 11.6213C85.3237 11.2215 86.3492 10.9363 87.7015 10.7658L88.8946 10.6204L88.8974 10.6176Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M107.288 6.16397C108.16 6.88528 108.596 8.07907 108.596 9.75094V18.7197H105.031V10.6204C105.031 9.91868 104.938 9.38189 104.754 9.00726C104.413 8.3223 103.768 7.98122 102.815 7.98122C101.644 7.98122 100.839 8.48166 100.404 9.48534C100.177 10.0165 100.065 10.6903 100.065 11.5123V18.7225H96.584V5.42589H99.9537V7.36895C100.398 6.68399 100.82 6.19193 101.217 5.88999C101.929 5.3532 102.834 5.08481 103.93 5.08481C105.299 5.08481 106.422 5.44546 107.291 6.16677\" fill=\"#4E4E4E\"/>\\n<path d=\"M118.766 15.102C119.281 14.3695 119.538 13.419 119.538 12.2559C119.538 10.626 119.127 9.46297 118.305 8.76124C117.8 8.33908 117.213 8.1266 116.545 8.1266C115.528 8.1266 114.779 8.51241 114.304 9.28125C113.829 10.0501 113.589 11.0062 113.589 12.1469C113.589 13.377 113.829 14.3611 114.315 15.0992C114.799 15.8345 115.534 16.2036 116.52 16.2036C117.506 16.2036 118.252 15.8373 118.766 15.1048M117.911 5.616C118.537 5.97107 119.046 6.46032 119.437 7.08937V0.734603H122.966V18.7197H119.582V16.8745C119.088 17.6629 118.521 18.2389 117.886 18.5967C117.252 18.9546 116.461 19.1363 115.517 19.1363C113.961 19.1363 112.656 18.5073 111.591 17.2492C110.527 15.9911 109.999 14.3751 109.999 12.4041C109.999 10.1312 110.521 8.34467 111.566 7.03905C112.611 5.73622 114.011 5.08481 115.76 5.08481C116.567 5.08481 117.283 5.26094 117.911 5.616Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M132.55 12.2448C132.326 12.3845 132.103 12.4936 131.876 12.5802C131.65 12.6669 131.337 12.7452 130.943 12.8179L130.15 12.9661C129.406 13.0975 128.873 13.254 128.549 13.4413C128.001 13.7601 127.727 14.2521 127.727 14.9203C127.727 15.5158 127.895 15.9435 128.23 16.2091C128.565 16.4747 128.971 16.6061 129.451 16.6061C130.211 16.6061 130.912 16.3853 131.552 15.9463C132.192 15.5074 132.525 14.7022 132.55 13.5392V12.2448ZM130.421 10.6176C131.069 10.5365 131.53 10.4331 131.809 10.3129C132.309 10.1004 132.561 9.77051 132.561 9.32318C132.561 8.77801 132.368 8.40058 131.985 8.1937C131.6 7.98681 131.038 7.88337 130.295 7.88337C129.462 7.88337 128.87 8.08466 128.523 8.49284C128.278 8.79479 128.11 9.20017 128.029 9.71459H124.67C124.743 8.54876 125.07 7.59261 125.651 6.84334C126.576 5.67192 128.16 5.08481 130.41 5.08481C131.874 5.08481 133.173 5.37277 134.31 5.9515C135.447 6.53022 136.014 7.62057 136.014 9.22533V15.3341C136.014 15.759 136.023 16.2707 136.04 16.8745C136.065 17.3302 136.135 17.6406 136.249 17.8027C136.364 17.9649 136.534 18.0991 136.761 18.2053V18.7197H132.974C132.868 18.4513 132.796 18.1997 132.754 17.9621C132.712 17.7272 132.681 17.4561 132.656 17.1541C132.173 17.6769 131.617 18.1187 130.988 18.4877C130.233 18.9182 129.384 19.1363 128.431 19.1363C127.219 19.1363 126.218 18.7924 125.428 18.1047C124.637 17.4169 124.243 16.4412 124.243 15.1775C124.243 13.5392 124.88 12.3538 126.151 11.6213C126.847 11.2215 127.872 10.9363 129.228 10.7658L130.421 10.6204V10.6176Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M145.146 5.0904C145.19 5.09599 145.288 5.10158 145.445 5.10997V8.67736C145.224 8.6522 145.028 8.63543 144.858 8.62984C144.687 8.62145 144.548 8.61865 144.442 8.61865C143.042 8.61865 142.1 9.07436 141.619 9.98578C141.351 10.5002 141.217 11.2886 141.217 12.3566V18.7225H137.713V5.40073H141.036V7.72121C141.572 6.83216 142.041 6.22828 142.441 5.90117C143.092 5.356 143.939 5.08201 144.981 5.08201C145.045 5.08201 145.101 5.08201 145.146 5.08761\" fill=\"#4E4E4E\"/>\\n<path d=\"M154.419 15.102C154.933 14.3695 155.188 13.419 155.188 12.2559C155.188 10.626 154.777 9.46297 153.955 8.76124C153.45 8.33908 152.866 8.1266 152.198 8.1266C151.181 8.1266 150.435 8.51241 149.957 9.28125C149.479 10.0501 149.245 11.0062 149.245 12.1469C149.245 13.377 149.488 14.3611 149.971 15.0992C150.454 15.8345 151.189 16.2036 152.176 16.2036C153.162 16.2036 153.908 15.8373 154.422 15.1048M153.564 5.616C154.19 5.97107 154.702 6.46032 155.09 7.08937V0.734603H158.619V18.7197H155.235V16.8745C154.738 17.6629 154.173 18.2389 153.539 18.5967C152.905 18.9546 152.114 19.1363 151.17 19.1363C149.613 19.1363 148.306 18.5073 147.244 17.2492C146.182 15.9911 145.651 14.3751 145.651 12.4041C145.651 10.1312 146.174 8.34467 147.222 7.03905C148.267 5.73622 149.667 5.08481 151.416 5.08481C152.223 5.08481 152.938 5.26094 153.564 5.616Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M11.2686 15.376C10.5785 15.787 9.75703 15.9939 8.80424 15.9939C7.51895 15.9939 6.37057 15.5354 5.3619 14.6156C4.35322 13.6958 3.84749 12.1329 3.84749 9.92148C3.84749 7.71003 4.31411 6.0829 5.24454 4.98975C6.17778 3.89661 7.36807 3.34864 8.81542 3.34864C9.57262 3.34864 10.26 3.48284 10.8803 3.75123C11.9867 4.24049 12.6825 5.09879 12.9675 6.32892H16.6669C16.4629 4.59555 15.6666 3.14735 14.2807 1.9871C12.892 0.826863 11.0563 0.245345 8.76792 0.245345C6.13028 0.245345 4.00955 1.12321 2.40573 2.88175C0.80191 4.64028 0 6.97754 0 9.89072C0 12.8039 0.793528 15.0433 2.38058 16.704C3.90337 18.3563 5.85646 19.1838 8.24263 19.1838C9.39659 19.1838 10.4025 18.9881 11.2686 18.6023V15.376Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M8.80145 9.1163V12.4069H13.4872V17.0954H16.7758V9.1163H8.80145Z\" fill=\"#4E4E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1898_31535\">\\n<rect width=\"163\" height=\"19\" fill=\"white\" transform=\"translate(0 0.183838)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w2pq72\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"GO7tdtwNH\",svg:'<svg width=\"65\" height=\"36\" viewBox=\"0 0 65 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1898_31565)\">\\n<path d=\"M62.4354 9.5612C63.8518 9.5612 65 8.41797 65 7.00774C65 5.5975 63.8518 4.45428 62.4354 4.45428C61.019 4.45428 59.8707 5.5975 59.8707 7.00774C59.8707 8.41797 61.019 9.5612 62.4354 9.5612Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M34.8435 22.1524C34.8435 22.1524 34.5782 22.1524 34.3129 22.1964C33.9592 22.2404 33.6054 22.3285 33.2517 22.5046C32.8095 22.7247 32.4558 22.9889 32.102 23.3411C31.6599 23.8253 31.3503 24.3977 31.2619 25.0581C31.2177 25.4103 31.2177 26.0706 31.2177 26.0706V35.0958H34.534V24.97H38.0272V22.1084H34.8435V22.1524Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M0 28.5801C0 24.7939 2.78571 21.9763 6.76531 21.9763C10.7449 21.9763 13.4864 24.7499 13.4864 28.5801V29.6367H3.18367C3.58163 31.4417 4.9966 32.4103 6.76531 32.4103C8.13605 32.4103 9.10884 32.014 9.72789 31.2216H12.9558C12.0272 33.5989 9.72789 35.1398 6.76531 35.1398C2.78571 35.1398 0 32.3662 0 28.5801ZM10.3027 27.2153C9.81633 25.5423 8.44558 24.7059 6.80952 24.7059C5.08503 24.7059 3.7585 25.5864 3.31633 27.2153H10.3027Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M40.6361 30.0329V18.1901H43.6871V22.1524H47.932V24.8819H43.6871V29.9889C43.6871 31.6618 44.5714 32.3222 45.8095 32.3222C47.0476 32.3222 47.932 31.7058 47.932 29.9889V29.6807H50.983V29.9889C50.983 33.4669 48.9048 35.1398 45.8537 35.1398C42.7143 35.1398 40.6361 33.4669 40.6361 30.0329Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M64.5136 25.3222C64.2041 24.4417 63.6293 23.6933 62.8333 23.165C62.0374 22.6367 61.1088 22.3725 60.1803 22.2845C59.2959 22.1964 58.4116 22.1964 57.5272 22.2845C57.085 22.3285 56.6429 22.4606 56.2449 22.5926V18.1901H52.9286V35.1838H56.2449V25.3222H61.5952V35.1838H64.8673V27.7436C64.8673 26.9071 64.7789 26.1147 64.5136 25.3222Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M28.5646 28.536C28.5646 24.882 25.5578 21.8882 21.8878 21.8882C18.2177 21.8882 15.2109 24.882 15.2109 28.536C15.2109 32.1901 18.2177 35.1838 21.8878 35.1838C23.3469 35.1838 24.6735 34.6996 25.7789 33.9071V35.1838H28.5646V28.536ZM21.8878 32.014C19.9422 32.014 18.3946 30.4731 18.3946 28.536C18.3946 26.5989 19.9422 25.0581 21.8878 25.0581C23.8333 25.0581 25.381 26.5989 25.381 28.536C25.381 30.4731 23.8333 32.014 21.8878 32.014Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M34.0034 0.492014C34.0034 0.492014 33.7381 0.492014 33.4728 0.536039C33.119 0.580064 32.7653 0.668115 32.4116 0.844215C31.9694 1.06434 31.6156 1.32849 31.2619 1.68069C30.8197 2.16497 30.5102 2.7373 30.4218 3.39767C30.3776 3.74988 30.3776 4.41025 30.3776 4.41025V13.4354H33.6497V3.35365H37.1429V0.492014H34.0034Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M27.7687 0.492014H24.4524V10.3536H19.1463V0.492014H15.8742V7.93227C15.8742 8.76874 15.9626 9.60522 16.2279 10.3977C16.5374 11.2782 17.1122 12.0266 17.9082 12.5549C18.7041 13.0832 19.6327 13.3474 20.5612 13.4354C21.4456 13.5235 22.3299 13.5235 23.2143 13.4354C24.0986 13.3033 24.983 13.0392 25.7347 12.5549C26.5306 12.0266 27.1054 11.3222 27.415 10.3977C27.6803 9.60522 27.7687 8.76874 27.7687 7.93227C27.7687 5.46686 27.7687 0.492014 27.7687 0.492014Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M13.1769 5.86308C13.0884 5.15868 12.8673 4.54233 12.5578 3.88195C12.1599 3.04547 11.5408 2.34107 10.8333 1.72472C10.0374 1.06434 9.15306 0.624089 8.18027 0.403964C7.38435 0.227863 6.54422 0.139813 5.7483 0.271888C4.95238 0.315913 4.2449 0.580064 3.53742 0.976291C3.44898 1.02032 3.31633 1.10837 3.22789 1.19642C3.13946 1.24044 3.05102 1.28447 2.96259 1.37252V0.447989H0V18.7184H3.27211V12.3788C3.27211 12.3788 4.02381 12.9952 4.59864 13.1713C5.61565 13.4794 6.63265 13.5235 7.69388 13.3474C8.40136 13.2153 9.10884 12.9952 9.72789 12.643C10.6565 12.1147 11.4524 11.4103 12.0714 10.5738C12.602 9.82535 13 8.94484 13.1327 8.02032C13.2653 7.31591 13.2653 6.56749 13.1769 5.86308ZM9.72789 8.15239C9.68367 8.24044 9.68367 8.28447 9.63946 8.32849C9.59524 8.41654 9.55102 8.50459 9.5068 8.54862C9.5068 8.59264 9.46259 8.63667 9.46259 8.63667C9.28571 8.90082 9.10884 9.12094 8.88776 9.34107L8.84354 9.3851C8.71088 9.47315 8.62245 9.60522 8.4898 9.69327C8.35714 9.78132 8.26871 9.82535 8.13605 9.9134C8.09184 9.95742 8.04762 9.95742 7.95918 10.0014C7.87075 10.0455 7.78231 10.0895 7.69388 10.0895C7.60544 10.1335 7.56122 10.1335 7.47279 10.1775C7.38435 10.2216 7.2517 10.2216 7.16327 10.2656H7.03061C6.85374 10.2656 6.72109 10.3096 6.54422 10.3096C6.36735 10.3096 6.19048 10.3096 6.05782 10.2656C4.9966 10.0895 4.11225 9.51717 3.58163 8.63667V8.59264C3.53742 8.50459 3.44898 8.37252 3.40476 8.28447C3.40476 8.24044 3.36054 8.24044 3.36054 8.19642C3.18367 7.80019 3.09524 7.31591 3.09524 6.87566C3.09524 6.43541 3.09524 5.90711 3.27211 5.46686V5.42283L3.40476 5.15868L3.44898 5.11466C3.4932 5.07063 3.53742 4.98258 3.58163 4.93856C4.02381 4.23415 4.68708 3.74988 5.48299 3.48572C5.52721 3.48572 5.57143 3.48572 5.61565 3.4417C5.70408 3.39767 5.79252 3.39767 5.88095 3.39767C6.10204 3.35365 6.32313 3.30962 6.54422 3.30962C6.76531 3.30962 6.98639 3.35365 7.20748 3.39767H7.2517C7.38435 3.4417 7.51701 3.4417 7.60544 3.48572C7.7381 3.52975 7.82653 3.57378 7.95918 3.6178C7.95918 3.6178 8.0034 3.6178 8.0034 3.66183C8.57823 3.92598 9.06463 4.36623 9.41837 4.89453C9.55102 5.07063 9.63946 5.24673 9.72789 5.42283V5.46686C9.90476 5.86308 9.9932 6.34736 9.9932 6.78761C9.9932 7.22786 9.90476 7.75616 9.72789 8.15239Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M45.5 13.4354C41.8299 13.4354 38.8231 10.4417 38.8231 6.78761C38.8231 3.13352 41.8299 0.183838 45.5 0.183838C49.1701 0.183838 52.1769 3.17755 52.1769 6.83164C52.1769 10.4857 49.1701 13.4354 45.5 13.4354ZM45.5 3.35365C43.5544 3.35365 42.0068 4.89453 42.0068 6.83164C42.0068 8.76874 43.5544 10.3096 45.5 10.3096C47.4456 10.3096 48.9932 8.76874 48.9932 6.83164C48.9932 4.89453 47.4456 3.35365 45.5 3.35365Z\" fill=\"#4E4E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1898_31565\">\\n<rect width=\"65\" height=\"35\" fill=\"white\" transform=\"translate(0 0.183838)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tp2nn0\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:130,layoutDependency:layoutDependency,layoutId:\"jzcWXyXi5\",svg:'<svg width=\"130\" height=\"34\" viewBox=\"0 0 130 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1898_31578)\">\\n<path d=\"M35.7878 21.4596C38.0524 23.293 40.2427 24.2188 42.3495 24.2188C43.4725 24.2188 44.3635 23.9805 45.0225 23.5038C45.338 23.2838 45.5979 22.9905 45.765 22.6513C45.9413 22.3121 46.0248 21.9363 46.0063 21.5513C46.0156 21.0563 45.8578 20.5613 45.5422 20.1763C45.041 19.6538 44.4378 19.2321 43.7695 18.9388L40.2242 17.2705C38.6557 16.5463 37.5605 15.758 36.9294 14.9146C36.289 14.0438 35.9549 12.9805 35.9827 11.8988C35.9642 11.0463 36.1405 10.1938 36.5025 9.4238C36.8644 8.64464 37.4027 7.9663 38.0802 7.42547C38.7392 6.8938 39.491 6.49047 40.2984 6.25214C41.1616 5.99547 42.0525 5.85797 42.9528 5.86714C43.4911 5.86714 44.0201 5.91297 44.5492 6.0138C45.0782 6.10547 45.5979 6.24297 46.0991 6.4263C46.5817 6.60047 47.0458 6.82047 47.4912 7.0863C47.9089 7.3338 48.2894 7.62714 48.6514 7.94797V11.963C47.8254 11.1288 46.8509 10.4321 45.7928 9.90964C44.8647 9.44214 43.8345 9.19464 42.7857 9.1763C41.9876 9.13964 41.1894 9.3688 40.5304 9.81797C40.252 10.0196 40.0293 10.2855 39.8808 10.5971C39.7323 10.9088 39.658 11.248 39.6766 11.5871C39.6766 12.0455 39.8251 12.4946 40.1128 12.8521C40.549 13.3196 41.0873 13.6771 41.6813 13.9155L44.9946 15.4371C45.765 15.7855 46.4982 16.1888 47.2035 16.638C47.7511 16.9955 48.243 17.4263 48.6514 17.9305C49.0133 18.3705 49.2825 18.8838 49.4496 19.4246C49.6166 20.0021 49.7001 20.598 49.7001 21.203C49.7187 22.1105 49.5238 23.0088 49.134 23.8338C48.7349 24.6496 48.1502 25.3738 47.4263 25.9238C46.7116 26.4646 45.9042 26.868 45.041 27.1155C44.1315 27.3813 43.1848 27.5188 42.2382 27.5188C41.0316 27.5188 39.8344 27.3263 38.6928 26.9413C37.6348 26.6021 36.6417 26.0888 35.76 25.4196L35.7785 21.4596H35.7878Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M49.5516 12.4671H53.7189L57.9881 21.1296L62.2574 12.4671H66.3225L55.5472 33.1838H51.5656L55.9834 25.0071L49.5516 12.4671Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M67.4548 27.1613V5.34464H71.2879V27.1521H67.4548V27.1613Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M72.346 12.4671H76.5874L80.801 21.1021L85.0425 12.4671H89.0797L80.7175 27.9313L72.3552 12.4671H72.346Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M95.9013 12.1188C98.2402 12.1188 100.05 12.9163 101.331 14.5021C102.612 16.1246 103.15 18.2238 102.955 20.7905H91.8641C91.9383 21.313 92.1332 21.8171 92.4116 22.2663C92.6901 22.7155 93.0706 23.1005 93.5161 23.403C94.4256 24.0355 95.5765 24.3471 96.9687 24.3471C97.8689 24.3471 98.7692 24.1913 99.623 23.898C100.44 23.6321 101.201 23.2288 101.878 22.7063V26.0521C101.127 26.538 100.31 26.9046 99.4374 27.1246C98.4815 27.3813 97.4977 27.5096 96.5046 27.5096C95.4187 27.5096 94.3328 27.3263 93.3119 26.9688C92.3467 26.6296 91.4464 26.098 90.6854 25.4196C89.9336 24.7413 89.3303 23.9163 88.9127 22.9905C88.4672 22.0005 88.2444 20.928 88.263 19.8463C88.263 18.8196 88.4672 17.8113 88.8663 16.858C89.2468 15.9505 89.7851 15.1163 90.4812 14.4013C91.168 13.6955 91.994 13.1271 92.9035 12.733C93.8502 12.3205 94.8711 12.1005 95.9013 12.1005V12.1188ZM91.9754 18.2605H99.3817C99.3168 17.3988 98.9177 16.6013 98.2773 16.0238C97.609 15.4371 96.7366 15.1255 95.8364 15.1621C94.9547 15.1438 94.1008 15.4371 93.414 15.978C92.6994 16.5646 92.1889 17.3621 91.9754 18.2605Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M108.737 12.4671V14.7313C109.201 13.888 109.906 13.2096 110.77 12.7788C111.633 12.3388 112.607 12.1463 113.572 12.238V16.0238C112.06 15.8313 110.881 16.0788 110.027 16.7663C109.173 17.4538 108.746 18.5263 108.746 19.9838V27.1613H104.913L104.895 12.4671H108.737Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M121.276 12.1188C122.287 12.1096 123.28 12.3388 124.181 12.7971C124.988 13.1821 125.675 13.7871 126.167 14.5296V12.4671H130V27.1613H126.167V25.0988C125.675 25.8413 124.988 26.4463 124.181 26.8313C123.28 27.2805 122.287 27.5188 121.276 27.5096C120.255 27.5188 119.243 27.308 118.315 26.8955C117.443 26.5013 116.672 25.9238 116.041 25.218C115.401 24.4938 114.909 23.6688 114.575 22.7613C113.879 20.8638 113.879 18.783 114.575 16.8763C114.909 15.978 115.401 15.1438 116.041 14.4196C116.672 13.7046 117.452 13.1363 118.315 12.7421C119.243 12.3205 120.255 12.1096 121.276 12.128V12.1188ZM122.037 24.2555C122.612 24.2555 123.178 24.1455 123.707 23.9071C124.209 23.6871 124.663 23.3663 125.044 22.9721C125.424 22.5596 125.721 22.083 125.916 21.5696C126.13 21.0105 126.241 20.4055 126.232 19.8005C126.232 19.2046 126.13 18.6088 125.916 18.0496C125.712 17.5271 125.424 17.0505 125.044 16.6471C124.673 16.253 124.218 15.9321 123.717 15.7121C123.188 15.4921 122.622 15.373 122.046 15.3821C121.48 15.3821 120.923 15.4921 120.413 15.7121C119.902 15.9321 119.447 16.2438 119.076 16.6471C118.696 17.0596 118.389 17.5363 118.194 18.0496C117.981 18.6088 117.87 19.2046 117.879 19.8005C117.879 20.4055 117.981 21.0013 118.194 21.5696C118.389 22.0921 118.696 22.5688 119.076 22.9721C119.457 23.3663 119.911 23.678 120.413 23.9071C120.923 24.1363 121.48 24.2555 122.037 24.2555Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M4.77047 14.328C4.77047 15.1255 4.86328 15.9138 5.05818 16.6838C5.58721 18.7096 6.78446 20.5063 8.45506 21.7805C10.1257 23.0638 12.186 23.7513 14.3021 23.7513V28.463H13.9309C10.6175 28.3805 7.43414 27.1613 4.92825 25.0163C2.43164 22.8805 0.751767 19.938 0.204184 16.7113C0.0649675 15.9321 0 15.1438 0 14.3555C0 12.4946 0.371243 10.6613 1.08589 8.94714C1.80053 7.23297 2.85857 5.67464 4.18576 4.35464C5.51296 3.0438 7.09074 1.9988 8.8263 1.29297C10.5711 0.568804 12.4366 0.211304 14.3114 0.211304V4.92297H13.9402C11.4807 5.01464 9.15114 6.05047 7.44342 7.8013C5.7357 9.55214 4.77975 11.8896 4.77047 14.328Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M28.6228 19.0396C28.6228 20.9005 28.2516 22.7338 27.5369 24.448C26.813 26.1621 25.7643 27.7205 24.4371 29.0405C23.1099 30.3513 21.5321 31.3963 19.7965 32.1021C18.061 32.8171 16.1955 33.1746 14.3207 33.1746V28.463H14.6919C17.1607 28.3713 19.4903 27.3355 21.198 25.5755C22.9057 23.8155 23.8616 21.478 23.8616 19.0396C23.8616 18.2421 23.7688 17.4538 23.5739 16.6838C23.0449 14.658 21.8476 12.8705 20.1771 11.5871C18.5065 10.3038 16.4461 9.6163 14.33 9.6163V4.89547H14.7012C18.0238 4.97797 21.2073 6.19714 23.7131 8.3513C26.219 10.4963 27.8896 13.448 28.4465 16.6746C28.5764 17.4538 28.6414 18.2421 28.6414 19.0396H28.6228Z\" fill=\"#4E4E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1898_31578\">\\n<rect width=\"130\" height=\"33\" fill=\"white\" transform=\"translate(0 0.183838)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-59149q\",\"data-framer-name\":\"katman_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:164,layoutDependency:layoutDependency,layoutId:\"fntYo6OpV\",svg:'<svg width=\"164\" height=\"30\" viewBox=\"0 0 164 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1898_31593)\">\\n<path d=\"M23.6212 17.8176H23.6089V17.8798H23.5231V20.255C22.0644 19.4218 19.4412 17.9171 17.1612 16.5989C16.9161 16.4497 16.6219 16.487 16.4135 16.6611C16.4135 16.6611 16.4012 16.6611 16.389 16.6611C16.389 16.6611 16.3767 16.6735 16.3645 16.686C16.3032 16.7357 16.2541 16.7979 16.2051 16.8601C16.1806 16.8974 16.1806 16.9347 16.1683 16.972C16.1561 17.0217 16.1315 17.0715 16.1193 17.1088C16.1193 17.1585 16.1193 17.1958 16.1193 17.2456C16.1193 17.2829 16.1193 17.3326 16.1193 17.3699C16.1315 17.4197 16.1683 17.4694 16.1928 17.5192C16.2051 17.544 16.2174 17.5814 16.2296 17.6062C16.2786 17.6808 16.3522 17.743 16.4257 17.7803C16.5238 17.8301 16.6219 17.8922 16.7077 17.942L23.3515 21.8344C23.3515 21.8344 23.4373 21.8841 23.4741 21.909V25.2169H24.8593V25.1547H24.9573V17.8052H23.5722L23.6212 17.8176Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M1.38516 11.4754H1.47096V9.10022C2.91741 9.93341 5.55288 11.4506 7.82061 12.7687C7.93094 12.8309 8.04126 12.8558 8.15158 12.8558C8.27416 12.8558 8.39674 12.8185 8.49481 12.7563C8.60513 12.6941 8.70319 12.6195 8.77674 12.4952C8.96061 12.1718 8.85029 11.7615 8.53158 11.5625L1.47096 7.40897V4.12595H0.0858061V4.18813H0V11.5376L1.38516 11.55V11.4754Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M16.1806 12.4827C16.2174 12.5449 16.2786 12.5822 16.3399 12.632C16.4625 12.7563 16.6219 12.8309 16.7812 12.8309C16.8915 12.8309 17.0141 12.8061 17.1122 12.7439C17.1122 12.7439 17.1122 12.7439 17.1245 12.7439C17.9948 12.234 18.9019 11.6993 19.7844 11.177C21.1819 10.3562 22.4812 9.59765 23.3638 9.07535V11.3759H23.4986V11.4754H24.8838V4.12595H24.7489V4.02646H23.3638V7.32192C22.3218 7.95614 19.1225 9.8961 16.4012 11.55C16.0825 11.7366 15.9845 12.1594 16.1683 12.4827H16.1806Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M8.789 16.8725C8.73997 16.7979 8.67868 16.7233 8.60513 16.6735C8.39674 16.4994 8.10255 16.4621 7.84513 16.6114C7.84513 16.6114 7.83287 16.6114 7.82062 16.6238L1.58128 20.2799V17.9793H1.44645V17.8798H0.0735481V25.2293H0.208386V25.3288H1.59354V22.0333C2.63547 21.3991 5.83482 19.4591 8.5561 17.8052C8.8748 17.6187 8.97287 17.1958 8.789 16.8725Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M13.1774 1.52689H16.3399V0.183838H8.61739V1.52689H11.7922V27.8532H8.61739V29.1838H16.3399V27.8532H13.1774V1.52689Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M75.6075 9.57277C74.7004 9.05048 73.6829 8.78933 72.5797 8.78933C71.4765 8.78933 70.4713 9.05048 69.5642 9.57277C68.6449 10.0951 67.9217 10.8163 67.3946 11.7117C66.8675 12.6071 66.5978 13.6019 66.5978 14.659V14.6963C66.5978 15.7657 66.8675 16.7606 67.3946 17.656C67.9217 18.5513 68.6572 19.2602 69.5642 19.7825C70.4836 20.3048 71.4888 20.5659 72.5797 20.5659C73.6707 20.5659 74.7004 20.3048 75.6075 19.7825C76.5145 19.2602 77.2378 18.5513 77.7771 17.656C78.3042 16.7606 78.5739 15.7657 78.5739 14.6963V14.659C78.5739 13.6019 78.3042 12.6071 77.7771 11.7117C77.25 10.8163 76.5268 10.0951 75.6075 9.57277ZM76.9313 14.6963C76.9313 15.4797 76.7352 16.2134 76.3429 16.885C75.9507 17.5565 75.4113 18.0912 74.7494 18.4767C74.0875 18.8622 73.352 19.0612 72.5797 19.0612C71.8075 19.0612 71.072 18.8622 70.41 18.4767C69.7481 18.0912 69.2088 17.5565 68.8165 16.885C68.4242 16.2259 68.2281 15.4797 68.2281 14.6963V14.659C68.2281 13.8755 68.4242 13.1418 68.8165 12.4703C69.2088 11.7988 69.7359 11.2765 70.3978 10.8785C71.0597 10.493 71.7952 10.294 72.5797 10.294C73.3642 10.294 74.0997 10.493 74.7617 10.8785C75.4236 11.264 75.9629 11.7988 76.3429 12.4703C76.7352 13.1418 76.9313 13.8755 76.9313 14.659V14.6963Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M89.0177 18.7254L85.5364 9.01317H82.8764V20.3048H84.4087V10.2692L88.0371 20.3048H89.9248L93.5532 10.2692L93.5164 20.3048H95.0732V9.01317H92.5235L89.0177 18.7254Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M100.945 20.3172H108.569V18.9368H102.538V15.2186H108.03V13.8755H102.538V10.3811H108.569V9.01317H100.945V20.3172Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M112.896 10.3811H116.758V20.3172H118.363V10.3811H122.212V9.01317H112.896V10.3811Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M135.108 14.8704C135.635 14.6341 136.064 14.2735 136.395 13.8009C136.726 13.3283 136.885 12.7812 136.885 12.147C136.885 11.5127 136.726 10.9656 136.419 10.493C136.113 10.0205 135.684 9.65982 135.157 9.39867C134.63 9.13753 134.029 9.01317 133.367 9.01317H127.079V20.3172H128.672V15.2434H131.835C132.754 16.6238 135.218 20.3172 135.218 20.3172H137.204L133.649 15.2186C134.164 15.1937 134.654 15.0818 135.108 14.8704ZM128.672 10.3935H133.122C133.784 10.3935 134.299 10.5428 134.654 10.8537C135.01 11.1645 135.181 11.5874 135.181 12.147C135.181 12.52 135.108 12.8434 134.949 13.1045C134.789 13.3657 134.556 13.5646 134.25 13.7014C133.943 13.8382 133.563 13.9128 133.122 13.9128H128.672V10.3935Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M141.911 10.3065H144.878V19.0363H141.911V20.3172H149.278V19.0363H146.312V10.3065H149.278V9.02561H141.911V10.3065Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M40.2553 10.3065H43.2218V19.0363H40.2553V20.3172H47.6224V19.0363H44.656V10.3065H47.6224V9.02561H40.2553V10.3065Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M59.623 14.0123L56.4849 13.5771C55.774 13.4776 55.2591 13.2786 54.9282 12.9802C54.6462 12.7314 54.5114 12.3832 54.5114 11.9356C54.5114 11.4879 54.6708 11.1521 54.9895 10.8412C55.3082 10.5428 55.823 10.3811 56.5462 10.3811H62.2585V9.01317H56.534C55.7495 9.01317 55.0875 9.14996 54.5727 9.41111C54.0456 9.6847 53.6533 10.0453 53.3959 10.493C53.1508 10.9407 53.0282 11.4133 53.0282 11.9231C53.0282 12.7936 53.2856 13.4776 53.7882 13.975C54.3275 14.4973 55.1733 14.8579 56.2398 15.0072L59.3533 15.4424C60.0888 15.5419 60.6404 15.7657 60.9836 16.0766C61.2901 16.3502 61.4372 16.7357 61.4372 17.2207C61.4372 17.7057 61.2533 18.0788 60.8978 18.4021C60.5301 18.7254 59.9785 18.8995 59.2798 18.8995H53.163V20.3048H59.2185C60.0398 20.3048 60.7385 20.168 61.3023 19.8944H61.2411C61.8049 19.6084 62.234 19.2353 62.5036 18.7627C62.7733 18.3026 62.9204 17.7803 62.9204 17.2332C62.9204 16.3627 62.6385 15.6538 62.0991 15.1067C61.5352 14.547 60.6527 14.1491 59.623 14.0123Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M157.957 11.0402C158.594 10.6547 159.305 10.4681 160.053 10.4681H164V9.01317H160.053C159.011 9.01317 158.043 9.27432 157.16 9.77175C156.277 10.2692 155.579 10.9656 155.064 11.8236C154.549 12.6817 154.279 13.6392 154.279 14.6714C154.279 15.7036 154.537 16.6611 155.064 17.5192C155.579 18.3772 156.29 19.0612 157.16 19.5711C158.043 20.0685 159.011 20.3296 160.053 20.3296H164V18.8747H160.053C159.305 18.8747 158.594 18.6881 157.957 18.3151C157.319 17.942 156.805 17.4321 156.437 16.7855C156.069 16.1512 155.885 15.4424 155.885 14.6838C155.885 13.9253 156.069 13.2164 156.437 12.5698C156.805 11.9356 157.319 11.4257 157.957 11.0402Z\" fill=\"#4E4E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1898_31593\">\\n<rect width=\"164\" height=\"29\" fill=\"white\" transform=\"translate(0 0.183838)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rdqo22\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:182,layoutDependency:layoutDependency,layoutId:\"uoxYAM0BV\",svg:'<svg width=\"182\" height=\"40\" viewBox=\"0 0 182 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1898_31608)\">\\n<path d=\"M42.2056 15.6077H45.8056L53.2056 34.8177H49.6056L47.8056 29.7377H40.1356L38.3356 34.8177H34.8556L42.2056 15.6077ZM41.0456 27.1777H46.9156L44.0356 18.9177H43.9556L41.0456 27.1777Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M54.6856 15.6077H57.7556V34.8177H54.6856V15.6077Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M61.2056 15.6077H64.2056V34.8177H61.2056V15.6077Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M67.6556 15.6077H70.7256V18.5377H67.6556V15.6077ZM67.6556 20.9077H70.7256V34.8177H67.6556V20.9077Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M76.4556 28.6577C76.4556 29.1877 76.5356 29.7077 76.6856 30.2177C76.8256 30.6977 77.0556 31.1477 77.3656 31.5377C77.6756 31.9177 78.0756 32.2277 78.5256 32.4377C79.0456 32.6777 79.6256 32.7877 80.1956 32.7777C80.9656 32.8077 81.7156 32.6077 82.3656 32.1977C82.9456 31.7577 83.3656 31.1477 83.5856 30.4577H86.4956C86.3456 31.1677 86.0656 31.8477 85.6556 32.4577C85.2656 33.0477 84.7756 33.5577 84.2056 33.9677C83.6356 34.3777 83.0056 34.6877 82.3356 34.8877C81.6256 35.0877 80.8956 35.1977 80.1656 35.1977C79.1656 35.2177 78.1756 35.0277 77.2556 34.6577C76.4756 34.3077 75.7756 33.7977 75.2056 33.1477C74.6056 32.4877 74.1556 31.6977 73.8856 30.8377C73.5756 29.8677 73.4256 28.8577 73.4356 27.8377C73.4356 26.8777 73.5856 25.9277 73.9056 25.0277C74.1956 24.1877 74.6356 23.4077 75.2056 22.7277C76.4256 21.2977 78.2356 20.4877 80.1156 20.5377C81.1556 20.5177 82.1856 20.7477 83.1156 21.2277C83.9356 21.6677 84.6456 22.2877 85.2056 23.0377C85.7956 23.8077 86.2156 24.6877 86.4556 25.6277C86.7156 26.6077 86.7856 27.6277 86.6556 28.6277L76.4556 28.6577ZM83.6156 26.6577C83.5756 26.1777 83.4756 25.7077 83.3056 25.2577C83.1456 24.8277 82.9056 24.4277 82.6056 24.0877C82.2956 23.7577 81.9356 23.4777 81.5256 23.2777C81.0856 23.0677 80.6056 22.9677 80.1156 22.9677C79.6156 22.9677 79.1056 23.0577 78.6456 23.2577C78.2256 23.4377 77.8356 23.7077 77.5156 24.0377C77.1956 24.3777 76.9456 24.7777 76.7656 25.2077C76.5756 25.6677 76.4656 26.1577 76.4556 26.6577H83.6156Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M102.126 34.8177H99.2056V32.9377C98.8256 33.7077 98.1956 34.3177 97.4056 34.6677C96.6156 35.0177 95.7556 35.1977 94.8956 35.1977C93.9156 35.2177 92.9356 35.0177 92.0356 34.6177C91.2556 34.2477 90.5756 33.7077 90.0356 33.0377C89.4756 32.3477 89.0656 31.5477 88.8256 30.6877C88.5456 29.7377 88.4056 28.7577 88.4156 27.7677C88.3756 26.6777 88.5156 25.5777 88.8556 24.5377C89.1456 23.6977 89.6056 22.9177 90.2056 22.2577C90.7656 21.6677 91.4456 21.2277 92.2056 20.9477C92.8956 20.6777 93.6356 20.5377 94.3756 20.5377C94.8156 20.5377 95.2556 20.5777 95.6956 20.6577C96.1356 20.7477 96.5656 20.8777 96.9856 21.0477C97.3956 21.2277 97.7756 21.4577 98.1256 21.7377C98.4756 22.0177 98.7656 22.3577 99.0056 22.7377V15.6377H102.076L102.126 34.8177ZM91.4156 28.0077C91.4156 28.5977 91.4956 29.1877 91.6456 29.7577C91.7856 30.3077 92.0156 30.8277 92.3456 31.2977C92.6556 31.7377 93.0656 32.1077 93.5456 32.3677C94.0756 32.6477 94.6656 32.7977 95.2656 32.7777C95.8756 32.7877 96.4856 32.6477 97.0256 32.3477C97.4956 32.0577 97.9056 31.6677 98.2056 31.2077C98.5256 30.7277 98.7656 30.1977 98.9056 29.6377C99.0856 29.0577 99.1856 28.4577 99.2056 27.8477C99.2956 26.5677 98.9356 25.2977 98.2056 24.2477C97.5256 23.3877 96.4856 22.9077 95.3956 22.9477C94.7556 22.9277 94.1256 23.0877 93.5756 23.3977C93.0656 23.6777 92.6256 24.0677 92.2856 24.5377C91.9656 25.0277 91.7456 25.5777 91.6156 26.1477C91.4856 26.7577 91.4156 27.3777 91.4156 28.0077Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M105.326 21.4177C105.686 20.2577 106.256 19.1677 107.026 18.2277C107.786 17.2877 108.756 16.5377 109.856 16.0277C111.106 15.4577 112.476 15.1777 113.856 15.2077C115.236 15.1677 116.606 15.4477 117.856 16.0277C118.946 16.5377 119.916 17.2977 120.676 18.2277C121.446 19.1677 122.016 20.2577 122.376 21.4177C123.126 23.8877 123.126 26.5377 122.376 29.0077C122.026 30.1677 121.446 31.2477 120.676 32.1777C119.906 33.1077 118.946 33.8577 117.856 34.3777C116.606 34.9477 115.236 35.2277 113.856 35.1977C112.476 35.2277 111.116 34.9477 109.856 34.3777C108.766 33.8677 107.796 33.1077 107.026 32.1777C106.256 31.2477 105.676 30.1677 105.326 29.0077C104.566 26.5377 104.566 23.8877 105.326 21.4177ZM107.006 28.2977C107.266 29.2677 107.706 30.1877 108.296 31.0077C108.896 31.8077 109.666 32.4677 110.546 32.9377C111.566 33.4377 112.686 33.6877 113.826 33.6577C114.956 33.6877 116.086 33.4477 117.096 32.9377C117.976 32.4677 118.746 31.8077 119.336 31.0077C119.926 30.1877 120.366 29.2677 120.626 28.2977C121.176 26.2777 121.176 24.1377 120.626 22.1177C120.366 21.1477 119.926 20.2277 119.336 19.4177C118.736 18.6277 117.976 17.9877 117.096 17.5377C116.086 17.0277 114.956 16.7877 113.826 16.8177C112.686 16.7877 111.566 17.0377 110.546 17.5377C109.666 18.0077 108.896 18.6677 108.296 19.4677C107.706 20.2777 107.266 21.1977 107.006 22.1677C106.446 24.1877 106.446 26.3277 107.006 28.3477V28.2977Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M127.526 22.3577V34.8177H125.826V22.3577H123.466V20.9377H125.826V19.6677C125.826 19.1177 125.866 18.5677 125.966 18.0277C126.036 17.5677 126.216 17.1277 126.476 16.7377C126.726 16.3777 127.076 16.0877 127.476 15.9077C128.016 15.6877 128.586 15.5877 129.166 15.6077H129.866C130.086 15.6077 130.316 15.6077 130.586 15.6877V17.1377L129.946 17.0477C129.746 17.0277 129.546 17.0277 129.346 17.0477C128.976 17.0277 128.606 17.0977 128.276 17.2577C128.036 17.3877 127.846 17.5877 127.726 17.8377C127.596 18.1077 127.526 18.3977 127.516 18.6877V20.9377H130.256V22.3577H127.526Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M134.006 22.3577V34.8177H132.316V22.3577H129.946V20.9377H132.316V19.6677C132.316 19.1177 132.356 18.5677 132.446 18.0277C132.516 17.5677 132.696 17.1277 132.956 16.7377C133.206 16.3777 133.556 16.0877 133.956 15.9077C134.486 15.6877 135.066 15.5877 135.636 15.6077H136.336C136.556 15.6077 136.796 15.6077 137.066 15.6877V17.1377L136.416 17.0477C136.216 17.0377 136.026 17.0377 135.826 17.0477C135.456 17.0277 135.086 17.0977 134.746 17.2577C134.506 17.3877 134.316 17.5977 134.196 17.8377C134.076 18.1077 134.006 18.3977 133.996 18.6877V20.9377H136.746V22.3577H134.006Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M145.876 23.6377C145.696 23.2477 145.426 22.9077 145.086 22.6377C144.736 22.3777 144.346 22.1877 143.936 22.0777C143.486 21.9677 143.026 21.9077 142.566 21.9077C142.176 21.9077 141.796 21.9477 141.416 22.0277C141.046 22.1077 140.686 22.2377 140.356 22.4277C140.046 22.6077 139.776 22.8677 139.576 23.1677C139.366 23.5077 139.266 23.8977 139.286 24.2977C139.266 24.6577 139.366 25.0077 139.566 25.2977C139.756 25.5577 139.996 25.7877 140.276 25.9577C140.566 26.1377 140.886 26.2877 141.216 26.3977C141.556 26.5177 141.876 26.6077 142.156 26.6877L144.416 27.1977C144.906 27.2677 145.396 27.3977 145.856 27.5877C146.316 27.7677 146.746 28.0177 147.126 28.3277C148.456 29.4977 148.766 31.4477 147.866 32.9677C147.536 33.4877 147.086 33.9277 146.556 34.2577C146.006 34.5977 145.406 34.8377 144.776 34.9677C144.116 35.1077 143.446 35.1877 142.776 35.1877C141.346 35.2577 139.946 34.8477 138.776 34.0277C137.686 33.0977 137.056 31.7477 137.046 30.3177H138.736C138.736 31.3277 139.196 32.2777 139.986 32.9077C140.806 33.5177 141.806 33.8277 142.826 33.7877C143.256 33.7877 143.686 33.7377 144.106 33.6477C144.536 33.5677 144.946 33.4077 145.326 33.1977C145.686 32.9877 146.006 32.7177 146.256 32.3777C146.506 32.0177 146.636 31.5877 146.626 31.1477C146.626 30.7977 146.546 30.4477 146.366 30.1477C146.196 29.8677 145.956 29.6277 145.676 29.4477C145.366 29.2477 145.026 29.0877 144.676 28.9677C144.306 28.8477 143.936 28.7377 143.566 28.6477L141.386 28.1677C140.866 28.0277 140.346 27.8677 139.846 27.6677C139.406 27.4977 138.996 27.2577 138.626 26.9677C138.276 26.6977 137.996 26.3577 137.806 25.9677C137.596 25.4977 137.486 24.9877 137.506 24.4777C137.486 23.8377 137.656 23.2177 137.976 22.6677C138.286 22.1777 138.706 21.7577 139.206 21.4577C139.726 21.1477 140.296 20.9177 140.886 20.7877C141.516 20.6277 142.156 20.5477 142.806 20.5377C143.486 20.5277 144.156 20.6177 144.806 20.8077C145.386 20.9777 145.926 21.2677 146.396 21.6477C146.856 22.0277 147.236 22.5077 147.486 23.0477C147.776 23.6777 147.936 24.3577 147.946 25.0477H146.206C146.206 24.5577 146.096 24.0777 145.876 23.6377Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M151.586 30.2277C151.756 30.8677 152.036 31.4677 152.416 31.9977C152.796 32.5177 153.276 32.9577 153.836 33.2877C154.466 33.6377 155.186 33.8177 155.906 33.7977C156.966 33.8577 158.016 33.4977 158.816 32.7977C159.546 32.0977 160.046 31.1977 160.266 30.2177H161.966C161.696 31.6177 160.996 32.8977 159.966 33.8777C158.816 34.7977 157.356 35.2577 155.886 35.1677C154.916 35.1877 153.946 34.9877 153.056 34.5877C152.276 34.2277 151.586 33.6777 151.056 32.9977C150.536 32.2977 150.166 31.4977 149.946 30.6577C149.696 29.7377 149.576 28.7977 149.576 27.8477C149.576 26.9377 149.706 26.0377 149.946 25.1577C150.176 24.3077 150.546 23.5077 151.056 22.7977C151.586 22.0977 152.266 21.5277 153.056 21.1377C153.936 20.6977 154.916 20.4977 155.906 20.5377C156.906 20.5077 157.886 20.7477 158.766 21.2177C159.536 21.6377 160.196 22.2477 160.686 22.9777C161.196 23.7377 161.556 24.5877 161.746 25.4777C161.966 26.4177 162.056 27.3877 162.016 28.3477H151.336C151.336 28.9777 151.426 29.6177 151.586 30.2277ZM159.986 25.0477C159.786 24.4777 159.496 23.9477 159.116 23.4777C158.736 23.0177 158.266 22.6477 157.736 22.3777C157.166 22.0877 156.546 21.9477 155.906 21.9577C155.266 21.9477 154.626 22.0877 154.056 22.3777C153.526 22.6377 153.056 23.0177 152.686 23.4777C152.296 23.9577 151.986 24.4877 151.776 25.0677C151.556 25.6577 151.406 26.2777 151.336 26.9077H160.336C160.316 26.2777 160.196 25.6477 159.986 25.0477Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M169.336 20.9377V22.3577H166.506V31.7277C166.486 32.1677 166.566 32.6177 166.736 33.0277C166.896 33.3477 167.276 33.5177 167.886 33.5577C168.366 33.5577 168.856 33.5277 169.336 33.4777V34.8977H167.826C166.986 34.9877 166.146 34.7577 165.466 34.2477C164.936 33.5477 164.706 32.6777 164.816 31.8077V22.3077H162.396V20.9377H164.816V16.7677H166.506V20.9377H169.336Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M179.296 23.6377C179.106 23.2477 178.836 22.9077 178.496 22.6377C178.156 22.3777 177.766 22.1877 177.356 22.0777C176.906 21.9677 176.446 21.9077 175.986 21.9077C175.596 21.9077 175.216 21.9477 174.836 22.0277C174.466 22.1077 174.106 22.2377 173.776 22.4277C173.466 22.6077 173.196 22.8677 172.996 23.1677C172.786 23.5077 172.686 23.8977 172.696 24.2977C172.676 24.6577 172.776 25.0077 172.986 25.2977C173.176 25.5677 173.416 25.7877 173.696 25.9577C173.986 26.1377 174.306 26.2877 174.636 26.3977C174.976 26.5177 175.286 26.6077 175.576 26.6877L177.836 27.1977C178.326 27.2677 178.816 27.3977 179.276 27.5877C179.736 27.7677 180.166 28.0177 180.546 28.3277C180.916 28.6377 181.226 29.0277 181.446 29.4577C181.686 29.9477 181.806 30.4877 181.796 31.0377C181.816 31.7177 181.636 32.3877 181.286 32.9677C180.956 33.4877 180.506 33.9277 179.976 34.2577C179.426 34.5977 178.816 34.8377 178.186 34.9677C177.526 35.1077 176.856 35.1877 176.186 35.1877C174.756 35.2577 173.356 34.8477 172.186 34.0277C171.106 33.0977 170.466 31.7477 170.446 30.3177H172.206C172.206 31.3277 172.666 32.2777 173.456 32.9077C174.276 33.5177 175.276 33.8277 176.296 33.7877C176.726 33.7877 177.156 33.7377 177.576 33.6477C178.006 33.5577 178.416 33.4077 178.796 33.1977C179.156 32.9877 179.476 32.7177 179.726 32.3777C179.976 32.0177 180.096 31.5877 180.086 31.1477C180.086 30.7977 180.006 30.4477 179.836 30.1477C179.666 29.8677 179.426 29.6277 179.146 29.4477C178.836 29.2477 178.496 29.0877 178.146 28.9677C177.776 28.8477 177.406 28.7377 177.026 28.6477L174.846 28.1677C174.326 28.0277 173.816 27.8677 173.316 27.6677C172.876 27.4977 172.456 27.2577 172.086 26.9677C171.746 26.6977 171.466 26.3577 171.266 25.9677C171.056 25.4977 170.966 24.9877 170.976 24.4777C170.956 23.8377 171.116 23.2177 171.446 22.6677C171.756 22.1777 172.166 21.7577 172.666 21.4577C173.186 21.1477 173.756 20.9277 174.346 20.7877C174.956 20.6377 175.576 20.5477 176.206 20.5377C176.866 20.5377 177.526 20.6277 178.156 20.8077C178.736 20.9777 179.276 21.2677 179.746 21.6477C180.206 22.0277 180.576 22.5077 180.836 23.0477C181.126 23.6777 181.276 24.3577 181.286 25.0477H179.596C179.596 24.5577 179.496 24.0777 179.296 23.6377Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M22.2156 18.9577H16.5456V35.0277H22.2156V18.9577Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M35.47 0.659028L21.9251 9.7986L25.1245 14.5401L38.6694 5.40057L35.47 0.659028Z\" fill=\"#4E4E4E\"/>\\n<path d=\"M3.42095 0.538818L0.208984 5.25977L13.7021 14.44L16.9141 9.71908L3.42095 0.538818Z\" fill=\"#4E4E4E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1898_31608\">\\n<rect width=\"182\" height=\"39\" fill=\"white\" transform=\"translate(0 0.183838)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KM5sG.framer-yy4t3o, .framer-KM5sG .framer-yy4t3o { display: block; }\",\".framer-KM5sG.framer-15x77z6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 160px 0px; position: relative; width: 1024px; }\",\".framer-KM5sG .framer-uwj059 { 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; max-width: 1024px; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-KM5sG .framer-13s0fch, .framer-KM5sG .framer-1op1gly, .framer-KM5sG .framer-1si6awz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KM5sG .framer-i2z96t-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KM5sG .framer-bhw5s1 { 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 64px 0px 64px; position: relative; width: 100%; }\",\".framer-KM5sG .framer-1wiorcr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KM5sG .framer-70nfa4 { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 128px; }\",\".framer-KM5sG .framer-33pa19 { aspect-ratio: 8.15 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 130px; }\",\".framer-KM5sG .framer-1w2pq72 { aspect-ratio: 1.8055555555555556 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 61px; }\",\".framer-KM5sG .framer-tp2nn0 { aspect-ratio: 3.823529411764706 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 107px; }\",\".framer-KM5sG .framer-59149q { aspect-ratio: 5.466666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 131px; }\",\".framer-KM5sG .framer-1rdqo22 { aspect-ratio: 4.55 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 155px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KM5sG.framer-15x77z6, .framer-KM5sG .framer-uwj059, .framer-KM5sG .framer-bhw5s1, .framer-KM5sG .framer-1wiorcr { gap: 0px; } .framer-KM5sG.framer-15x77z6 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-KM5sG.framer-15x77z6 > :first-child, .framer-KM5sG .framer-uwj059 > :first-child, .framer-KM5sG .framer-bhw5s1 > :first-child { margin-top: 0px; } .framer-KM5sG.framer-15x77z6 > :last-child, .framer-KM5sG .framer-uwj059 > :last-child, .framer-KM5sG .framer-bhw5s1 > :last-child { margin-bottom: 0px; } .framer-KM5sG .framer-uwj059 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KM5sG .framer-bhw5s1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KM5sG .framer-1wiorcr > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-KM5sG .framer-1wiorcr > :first-child { margin-left: 0px; } .framer-KM5sG .framer-1wiorcr > :last-child { margin-right: 0px; } }\",\".framer-KM5sG.framer-v-r0zslc.framer-15x77z6 { gap: 64px; padding: 120px 0px 120px 0px; width: 640px; }\",\".framer-KM5sG.framer-v-r0zslc .framer-bhw5s1 { padding: 0px 56px 0px 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KM5sG.framer-v-r0zslc.framer-15x77z6 { gap: 0px; } .framer-KM5sG.framer-v-r0zslc.framer-15x77z6 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-KM5sG.framer-v-r0zslc.framer-15x77z6 > :first-child { margin-top: 0px; } .framer-KM5sG.framer-v-r0zslc.framer-15x77z6 > :last-child { margin-bottom: 0px; } }\",\".framer-KM5sG.framer-v-1qjo7bm.framer-15x77z6 { gap: 48px; padding: 96px 0px 96px 0px; width: 360px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-uwj059 { padding: 0px 40px 0px 40px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-bhw5s1 { padding: 0px 32px 0px 32px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-1wiorcr { gap: 24px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-70nfa4 { height: var(--framer-aspect-ratio-supported, 23px); width: 92px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-33pa19 { height: var(--framer-aspect-ratio-supported, 12px); width: 94px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-1w2pq72 { height: var(--framer-aspect-ratio-supported, 26px); width: 47px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-tp2nn0 { height: var(--framer-aspect-ratio-supported, 16px); width: 61px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-59149q { height: var(--framer-aspect-ratio-supported, 17px); width: 93px; }\",\".framer-KM5sG.framer-v-1qjo7bm .framer-1rdqo22 { height: var(--framer-aspect-ratio-supported, 20px); width: 91px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KM5sG.framer-v-1qjo7bm.framer-15x77z6, .framer-KM5sG.framer-v-1qjo7bm .framer-1wiorcr { gap: 0px; } .framer-KM5sG.framer-v-1qjo7bm.framer-15x77z6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-KM5sG.framer-v-1qjo7bm.framer-15x77z6 > :first-child { margin-top: 0px; } .framer-KM5sG.framer-v-1qjo7bm.framer-15x77z6 > :last-child { margin-bottom: 0px; } .framer-KM5sG.framer-v-1qjo7bm .framer-1wiorcr > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-KM5sG.framer-v-1qjo7bm .framer-1wiorcr > :first-child { margin-left: 0px; } .framer-KM5sG.framer-v-1qjo7bm .framer-1wiorcr > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1393\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QpDv65mfG\":{\"layout\":[\"fixed\",\"auto\"]},\"mBjpWT7We\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fW_q1Oftc\":\"title\",\"Wg2rlcFfj\":\"showIntro\",\"b2W6nO3Tb\":\"intro\",\"QP6SuGQC5\":\"background\",\"uqGi7yivR\":\"showLogos\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzW4m2vAse=withCSS(Component,css,\"framer-KM5sG\");export default FramerzW4m2vAse;FramerzW4m2vAse.displayName=\"Sections/Climate projects\";FramerzW4m2vAse.defaultProps={height:1393,width:1024};addPropertyControls(FramerzW4m2vAse,{variant:{options:[\"wjbsYwSRL\",\"QpDv65mfG\",\"mBjpWT7We\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},fW_q1Oftc:{defaultValue:\"Global projects with lasting impact\",displayTextArea:false,title:\"Title\",type:ControlType.String},Wg2rlcFfj:{defaultValue:true,title:\"Show intro\",type:ControlType.Boolean},b2W6nO3Tb:{defaultValue:\"Support what matters most to you - choose from a range of projects across sea, land and air. From blue carbon removal, afforestation, tree planting across the world to renewables and nature-based carbon avoidance projects.\",displayTextArea:true,title:\"Intro\",type:ControlType.String},QP6SuGQC5:{defaultValue:'var(--token-b3c6049f-527e-4f83-811b-aa6e9af8b566, rgb(255, 240, 212)) /* {\"name\":\"Buttercup/5\"} */',title:\"Background\",type:ControlType.Color},uqGi7yivR:{defaultValue:true,title:\"Show logos\",type:ControlType.Boolean}});addFonts(FramerzW4m2vAse,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ComponentsClimateProjectGalleryFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzW4m2vAse\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1393\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"fW_q1Oftc\\\":\\\"title\\\",\\\"Wg2rlcFfj\\\":\\\"showIntro\\\",\\\"b2W6nO3Tb\\\":\\\"intro\\\",\\\"QP6SuGQC5\\\":\\\"background\\\",\\\"uqGi7yivR\\\":\\\"showLogos\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1024\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QpDv65mfG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mBjpWT7We\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "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", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "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", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "ComponentsLinkFonts", "getFonts", "GqZUIJkbL_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "intro", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lMei1ARiY", "k5d_RkNKB", "xJU3mark8", "I7RxvH9rq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "SVG", "RichText", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerJirmpL2Sy", "withCSS", "JirmpL2Sy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ComponentsProjectFonts", "getFonts", "JirmpL2Sy_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "items", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "aZn_z_Nkv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "css", "FramerGzeYXpO_8", "withCSS", "GzeYXpO_8_default", "addPropertyControls", "ControlType", "addFonts", "ComponentsClimateProjectGalleryFonts", "getFonts", "GzeYXpO_8_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "intro", "showIntro", "showLogos", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fW_q1Oftc", "Wg2rlcFfj", "b2W6nO3Tb", "QP6SuGQC5", "uqGi7yivR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "ComponentViewportProvider", "SVG", "css", "FramerzW4m2vAse", "withCSS", "zW4m2vAse_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
