{"version":3,"file":"shared-lib.Bk-PU96Q.mjs","names":["SVG","useState","props","SVG","useState","props","addPropertyOverrides","SVGFonts","SVG","SVG1Fonts","SVG1","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","props","createLayoutDependency","useRef","React.useId","className","fonts","css","className","fonts","css","className","addPropertyOverrides","SVGFonts","SVG","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","props","createLayoutDependency","React.useRef","React.useId","className","addPropertyOverrides","ComponentsSocialButtons","SVG1","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","props","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","sharedStyle1.className","className","Image","css","sharedStyle.css","sharedStyle1.css","sharedStyle.fonts","sharedStyle1.fonts","fonts","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","n","t","e","useStore","useState","Cookies","Component","props","css","SVG","ComponentsButton","ComponentsButtonInfo","React.useContext","React.useMemo","React.Fragment","props","useRef","React.useId","sharedStyle.className","className","sharedStyle.css","sharedStyle.fonts"],"sources":["https:/framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js","https:/framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js","https:/framerusercontent.com/modules/gq91E2p36ohmmBV6Xyfp/I0Igg8ue9Ndg4CvMEKjZ/cDVSopb0I.js","https:/framerusercontent.com/modules/kVW2bFDnoUbMBTl7TwEU/dpdS1eAhU6RNk7Iie5qB/d9a2yNeez.js","https:/framerusercontent.com/modules/sHCPoBvoaTlQPdoH41F8/xog4wCQ4NmYmf2ZHJ5xT/ZAQbzWUVe.js","https:/framerusercontent.com/modules/pCIDQVQiYdJAhPktJCae/zuN5Mu4EflhyrtzCdLUL/ZbAuHsrNW.js","https:/framerusercontent.com/modules/BEUkIZcKtBXkCPmn9yxg/pCCM7Qw6F3dmM319k17M/G4S0QMEsx.js","https:/framerusercontent.com/modules/0wjXXBBsFiFQlphCEVcf/thOuxhOAHWVyv6JZWUdE/componentPresets.js","https:/framerusercontent.com/modules/1RV5yPHY2XAh0TyMNbyZ/xrOQuN9VEn0SeKJSPMuS/EiCEUWHch.js","https:/framerusercontent.com/modules/n5HnsNxtyJQOeABXuB2h/8mMPGncnBquGu6l2jLp2/Id9BhSQ2i.js","https:/framerusercontent.com/modules/pDlpHAQ6O8NpyKK5if1x/ZRzOe322F2fiZQqYcFZv/oXpegNEMZ.js","https:/framerusercontent.com/modules/VHA35VnXX9I43smfEdAT/7P5rlXyqKWBZhUclApdf/O4LPz1FVm.js","https:/framerusercontent.com/modules/t6IYEPCwyvyoJRki6qwx/5nMVOL1okPLmh89ksiBh/RyKKj9LRD.js","https:/ga.jspm.io/npm:cookiejs@2.1.3/dist/cookie.js","https:/framer.com/m/framer/store.js@^1.0.0","https:/framerusercontent.com/modules/ViKxZMBuYwRomucyJQvT/1zW5GCcSTeTSRBtDowpz/CookieBanner.js","https:/framerusercontent.com/modules/x3zEvXo8Qu07bhKHzCuZ/5Xm0iXwBVR38yNn2gpDq/KjEL69wIH.js","https:/framerusercontent.com/modules/p5pgV9P8yDM72jP04Daz/8nPrfUPQ9JzbAjmzsWpv/v3c21UG2n.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map","// Generated by Framer (6c2a425)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";const SVGFonts=getFonts(SVG);const SVG1Fonts=getFonts(SVG1);const enabledGestures={AdDPNW0A2:{hover:true},c4AhppP_e:{hover:true},FsU0G9r3z:{hover:true},FXYTM1lBe:{hover:true},gfj6rLoH4:{hover:true},hvdrBfZ9j:{hover:true},IxTydUryp:{hover:true},MTXOvjm2M:{hover:true},O_3VA_APT:{hover:true},RBQRnDSxm:{hover:true},TfcYoEqIM:{hover:true},uZaqlE1EB:{hover:true},WNDj2KuGU:{hover:true},y0_80RnGy:{hover:true}};const cycleOrder=[\"O_3VA_APT\",\"FXYTM1lBe\",\"MTXOvjm2M\",\"uZaqlE1EB\",\"hvdrBfZ9j\",\"AdDPNW0A2\",\"c4AhppP_e\",\"TfcYoEqIM\",\"FsU0G9r3z\",\"y0_80RnGy\",\"IxTydUryp\",\"WNDj2KuGU\",\"gfj6rLoH4\",\"RBQRnDSxm\",\"SJbM4UOAg\"];const serializationHash=\"framer-KWGXR\";const variantClassNames={AdDPNW0A2:\"framer-v-tasrlo\",c4AhppP_e:\"framer-v-13s7baa\",FsU0G9r3z:\"framer-v-fg8xf9\",FXYTM1lBe:\"framer-v-xq5jzc\",gfj6rLoH4:\"framer-v-relohn\",hvdrBfZ9j:\"framer-v-1htxgz3\",IxTydUryp:\"framer-v-8k9jie\",MTXOvjm2M:\"framer-v-9h5xrz\",O_3VA_APT:\"framer-v-1n2ooec\",RBQRnDSxm:\"framer-v-1r23b92\",SJbM4UOAg:\"framer-v-1brdblj\",TfcYoEqIM:\"framer-v-1bz4u5o\",uZaqlE1EB:\"framer-v-2wa6cj\",WNDj2KuGU:\"framer-v-13ir5hb\",y0_80RnGy:\"framer-v-1htwq2t\"};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={\"Outlined large inverted\":\"uZaqlE1EB\",\"Outlined large\":\"O_3VA_APT\",\"Outlined medium inverted\":\"hvdrBfZ9j\",\"Outlined medium\":\"FXYTM1lBe\",\"Outlined small inverted\":\"AdDPNW0A2\",\"Outlined small\":\"MTXOvjm2M\",\"Solid large inverted\":\"y0_80RnGy\",\"Solid large\":\"c4AhppP_e\",\"Solid medium inverted\":\"IxTydUryp\",\"Solid medium\":\"TfcYoEqIM\",\"Solid small inverted\":\"WNDj2KuGU\",\"Solid small\":\"FsU0G9r3z\",\"Text medium inverted\":\"RBQRnDSxm\",\"Text medium\":\"gfj6rLoH4\",hidden:\"SJbM4UOAg\"};const getProps=({click,height,iconCode,id,link,newTab,showArrow,showExternalLink,showIcon,title,width,...props})=>{return{...props,cQmsTu45D:showIcon??props.cQmsTu45D,DmV6aippQ:title??props.DmV6aippQ??\"Button\",K9rh5qnBN:click??props.K9rh5qnBN,QFxCyRyN5:showExternalLink??props.QFxCyRyN5,variant:humanReadableVariantMap[props.variant]??props.variant??\"O_3VA_APT\",WbTt7Rcm1:iconCode??props.WbTt7Rcm1??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.4975 11.9997C16.4975 11.9965 16.4976 11.9932 16.4976 11.99V12.01C16.4976 12.0066 16.4975 12.0032 16.4975 11.9997Z\" fill=\"#444444\"/> <path d=\"M16.2073 12.7007C16.3951 12.503 16.495 12.2565 16.4975 11.9997C16.4952 11.7432 16.4049 11.4969 16.2073 11.2993L9.20148 4.29277C8.81116 3.90241 8.18063 3.90241 7.7903 4.29277C7.39998 4.68314 7.39998 5.31374 7.7903 5.7041L14.0855 12L7.7903 18.2959C7.39998 18.6863 7.39998 19.3169 7.7903 19.7072C8.18063 20.0976 8.81116 20.0976 9.20148 19.7072L16.2073 12.7007Z\" fill=\"#444444\"/> </svg>',XOSsObgDr:link??props.XOSsObgDr,yCYpHkj4L:showArrow??props.yCYpHkj4L,Zm8_MSIx5:newTab??props.Zm8_MSIx5};};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,DmV6aippQ,XOSsObgDr,yCYpHkj4L,QFxCyRyN5,K9rh5qnBN,cQmsTu45D,WbTt7Rcm1,Zm8_MSIx5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O_3VA_APT\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1tzlb4e=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(K9rh5qnBN){const res=await K9rh5qnBN(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const isDisplayed=()=>{if(baseVariant===\"SJbM4UOAg\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:XOSsObgDr,motionChild:true,nodeId:\"O_3VA_APT\",openInNewTab:Zm8_MSIx5,scopeId:\"cDVSopb0I\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1n2ooec\",className,classNames)} framer-i6e03r`,\"data-border\":true,\"data-framer-name\":\"Outlined large\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"O_3VA_APT\",onTap:onTap1tzlb4e,ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"AdDPNW0A2-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.2)\"},\"c4AhppP_e-hover\":{backgroundColor:\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},\"FsU0G9r3z-hover\":{backgroundColor:\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},\"FXYTM1lBe-hover\":{backgroundColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(13, 107, 84))\"},\"gfj6rLoH4-hover\":{backgroundColor:\"rgba(159, 234, 193, 0.5)\"},\"hvdrBfZ9j-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.2)\"},\"IxTydUryp-hover\":{backgroundColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},\"MTXOvjm2M-hover\":{backgroundColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(13, 107, 84))\"},\"O_3VA_APT-hover\":{backgroundColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86))\"},\"RBQRnDSxm-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.15)\"},\"TfcYoEqIM-hover\":{backgroundColor:\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\"},\"uZaqlE1EB-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.2)\"},\"WNDj2KuGU-hover\":{backgroundColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},\"y0_80RnGy-hover\":{backgroundColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},AdDPNW0A2:{\"--border-color\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},c4AhppP_e:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(13, 107, 84))\"},FsU0G9r3z:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(13, 107, 84))\"},gfj6rLoH4:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(159, 234, 193, 0)\"},hvdrBfZ9j:{\"--border-color\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},IxTydUryp:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d7a97b3c-5ea3-4d05-a99f-52a3e4c31103, rgb(208, 244, 224))\"},RBQRnDSxm:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},TfcYoEqIM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(13, 107, 84))\"},uZaqlE1EB:{\"--border-color\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},WNDj2KuGU:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d7a97b3c-5ea3-4d05-a99f-52a3e4c31103, rgb(208, 244, 224))\"},y0_80RnGy:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d7a97b3c-5ea3-4d05-a99f-52a3e4c31103, rgb(208, 244, 224))\"}},...addPropertyOverrides({\"AdDPNW0A2-hover\":{\"data-framer-name\":undefined},\"c4AhppP_e-hover\":{\"data-framer-name\":undefined},\"FsU0G9r3z-hover\":{\"data-framer-name\":undefined},\"FXYTM1lBe-hover\":{\"data-framer-name\":undefined},\"gfj6rLoH4-hover\":{\"data-framer-name\":undefined},\"hvdrBfZ9j-hover\":{\"data-framer-name\":undefined},\"IxTydUryp-hover\":{\"data-framer-name\":undefined},\"MTXOvjm2M-hover\":{\"data-framer-name\":undefined},\"O_3VA_APT-hover\":{\"data-framer-name\":undefined},\"RBQRnDSxm-hover\":{\"data-framer-name\":undefined},\"TfcYoEqIM-hover\":{\"data-framer-name\":undefined},\"uZaqlE1EB-hover\":{\"data-framer-name\":undefined},\"WNDj2KuGU-hover\":{\"data-framer-name\":undefined},\"y0_80RnGy-hover\":{\"data-framer-name\":undefined},AdDPNW0A2:{\"data-framer-name\":\"Outlined small inverted\"},c4AhppP_e:{\"data-framer-name\":\"Solid large\"},FsU0G9r3z:{\"data-framer-name\":\"Solid small\"},FXYTM1lBe:{\"data-framer-name\":\"Outlined medium\"},gfj6rLoH4:{\"data-framer-name\":\"Text medium\"},hvdrBfZ9j:{\"data-framer-name\":\"Outlined medium inverted\"},IxTydUryp:{\"data-framer-name\":\"Solid medium inverted\"},MTXOvjm2M:{\"data-framer-name\":\"Outlined small\"},RBQRnDSxm:{\"data-framer-name\":\"Text medium inverted\"},TfcYoEqIM:{\"data-framer-name\":\"Solid medium\"},uZaqlE1EB:{\"data-framer-name\":\"Outlined large inverted\"},WNDj2KuGU:{\"data-framer-name\":\"Solid small inverted\"},y0_80RnGy:{\"data-framer-name\":\"Solid large inverted\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1imq6c6\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"dTNCunqhB\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86)))\"},children:\"Button\"})}),className:\"framer-6vwyw1\",\"data-framer-name\":\"Label\",fonts:[\"CUSTOM;Sofia Pro Bold\"],layoutDependency:layoutDependency,layoutId:\"PZKAkGWFS\",style:{\"--extracted-r6o4lv\":\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86))\"},text:DmV6aippQ,variants:{\"FXYTM1lBe-hover\":{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"MTXOvjm2M-hover\":{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"O_3VA_APT-hover\":{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},AdDPNW0A2:{\"--extracted-r6o4lv\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},c4AhppP_e:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},FsU0G9r3z:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},hvdrBfZ9j:{\"--extracted-r6o4lv\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},RBQRnDSxm:{\"--extracted-r6o4lv\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},TfcYoEqIM:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},uZaqlE1EB:{\"--extracted-r6o4lv\":\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"FXYTM1lBe-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Button\"})})},\"MTXOvjm2M-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Button\"})})},\"O_3VA_APT-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Button\"})})},AdDPNW0A2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232)))\"},children:\"Button\"})})},c4AhppP_e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Button\"})})},FsU0G9r3z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Button\"})})},FXYTM1lBe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86)))\"},children:\"Button\"})})},gfj6rLoH4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86)))\"},children:\"Button\"})})},hvdrBfZ9j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232)))\"},children:\"Button\"})})},IxTydUryp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86)))\"},children:\"Button\"})})},MTXOvjm2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86)))\"},children:\"Button\"})})},RBQRnDSxm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232)))\"},children:\"Button\"})})},TfcYoEqIM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Button\"})})},uZaqlE1EB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232)))\"},children:\"Button\"})})},WNDj2KuGU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)})}),cQmsTu45D&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1icrdmp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hQd2krKuU-container\",nodeId:\"hQd2krKuU\",rendersWithMotion:true,scopeId:\"cDVSopb0I\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86))\",customPadding:0,customStrokeWidth:2,customSvgCode:WbTt7Rcm1,height:\"100%\",id:\"hQd2krKuU\",layoutId:\"hQd2krKuU\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"FXYTM1lBe-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"MTXOvjm2M-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"O_3VA_APT-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},AdDPNW0A2:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},c4AhppP_e:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},FsU0G9r3z:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},hvdrBfZ9j:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},RBQRnDSxm:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},TfcYoEqIM:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},uZaqlE1EB:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"}},baseVariant,gestureVariant)})})}),yCYpHkj4L&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ciub8l-container\",\"data-framer-name\":\"Icon: chevron\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rbZt3VV_3-container\",name:\"Icon: chevron\",nodeId:\"rbZt3VV_3\",rendersWithMotion:true,scopeId:\"cDVSopb0I\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.4975 11.9997C16.4975 11.9965 16.4976 11.9932 16.4976 11.99V12.01C16.4976 12.0066 16.4975 12.0032 16.4975 11.9997Z\" fill=\"#444444\"/> <path d=\"M16.2073 12.7007C16.3951 12.503 16.495 12.2565 16.4975 11.9997C16.4952 11.7432 16.4049 11.4969 16.2073 11.2993L9.20148 4.29277C8.81116 3.90241 8.18063 3.90241 7.7903 4.29277C7.39998 4.68314 7.39998 5.31374 7.7903 5.7041L14.0855 12L7.7903 18.2959C7.39998 18.6863 7.39998 19.3169 7.7903 19.7072C8.18063 20.0976 8.81116 20.0976 9.20148 19.7072L16.2073 12.7007Z\" fill=\"#444444\"/> </svg>',description:\"\",height:\"100%\",id:\"rbZt3VV_3\",layoutId:\"rbZt3VV_3\",lineCap:\"butt\",lineJoin:\"miter\",name:\"Icon: chevron\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"FXYTM1lBe-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"MTXOvjm2M-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"O_3VA_APT-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},AdDPNW0A2:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},c4AhppP_e:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},FsU0G9r3z:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},hvdrBfZ9j:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},RBQRnDSxm:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},TfcYoEqIM:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},uZaqlE1EB:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"}},baseVariant,gestureVariant)})})}),QFxCyRyN5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hbobqc-container\",\"data-framer-name\":\"Icon: external link\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sZmZls7cW-container\",name:\"Icon: external link\",nodeId:\"sZmZls7cW\",rendersWithMotion:true,scopeId:\"cDVSopb0I\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, rgb(19, 94, 78))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14.5 4.5C14.0417 4.5 13.6667 4.875 13.6667 5.33333C13.6667 5.79167 14.0417 6.16667 14.5 6.16667H16.6583L10.5833 12.2417C10.2583 12.5667 10.2583 13.0917 10.5833 13.4167C10.75 13.5833 10.9583 13.6583 11.175 13.6583C11.3917 13.6583 11.6 13.575 11.7667 13.4167L17.8417 7.34167V9.5C17.8417 9.95833 18.2167 10.3333 18.675 10.3333C19.1333 10.3333 19.5083 9.95833 19.5083 9.5V5.33333C19.5083 4.875 19.1333 4.5 18.675 4.5H14.5Z\" fill=\"#444444\"/> <path d=\"M16.1667 12C15.7084 12 15.3334 12.375 15.3334 12.8333V17H7.00004V8.66667H11.1667C11.625 8.66667 12 8.29167 12 7.83333C12 7.375 11.625 7 11.1667 7H6.83337C6.00837 7 5.33337 7.675 5.33337 8.5V17.1667C5.33337 17.9917 6.00837 18.6667 6.83337 18.6667H15.5C16.325 18.6667 17 17.9917 17 17.1667V12.8333C17 12.375 16.625 12 16.1667 12Z\" fill=\"#444444\"/> </svg>',description:\"\",height:\"100%\",id:\"sZmZls7cW\",layoutId:\"sZmZls7cW\",lineCap:\"butt\",lineJoin:\"miter\",name:\"Icon: external link\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"FXYTM1lBe-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"MTXOvjm2M-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},\"O_3VA_APT-hover\":{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},AdDPNW0A2:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},c4AhppP_e:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},FsU0G9r3z:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},hvdrBfZ9j:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},RBQRnDSxm:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"},TfcYoEqIM:{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"},uZaqlE1EB:{customColor:\"var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, rgb(220, 250, 232))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KWGXR.framer-i6e03r, .framer-KWGXR .framer-i6e03r { display: block; }\",\".framer-KWGXR.framer-1n2ooec { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 16px 24px 16px 28px; position: relative; text-decoration: none; width: min-content; }\",\".framer-KWGXR .framer-1imq6c6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 4px 0px 0px; position: relative; width: min-content; }\",\".framer-KWGXR .framer-6vwyw1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KWGXR .framer-1icrdmp-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-KWGXR .framer-ciub8l-container, .framer-KWGXR .framer-hbobqc-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-KWGXR.framer-v-xq5jzc.framer-1n2ooec, .framer-KWGXR.framer-v-1htxgz3.framer-1n2ooec, .framer-KWGXR.framer-v-1bz4u5o.framer-1n2ooec, .framer-KWGXR.framer-v-8k9jie.framer-1n2ooec { padding: 14px 20px 14px 24px; }\",\".framer-KWGXR.framer-v-xq5jzc .framer-1icrdmp-container, .framer-KWGXR.framer-v-1htxgz3 .framer-1icrdmp-container, .framer-KWGXR.framer-v-1bz4u5o .framer-1icrdmp-container, .framer-KWGXR.framer-v-8k9jie .framer-1icrdmp-container, .framer-KWGXR.framer-v-relohn .framer-1icrdmp-container, .framer-KWGXR.framer-v-1r23b92 .framer-1icrdmp-container { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-KWGXR.framer-v-9h5xrz.framer-1n2ooec, .framer-KWGXR.framer-v-tasrlo.framer-1n2ooec, .framer-KWGXR.framer-v-fg8xf9.framer-1n2ooec, .framer-KWGXR.framer-v-13ir5hb.framer-1n2ooec { padding: 12px 16px 12px 20px; }\",\".framer-KWGXR.framer-v-9h5xrz .framer-1icrdmp-container, .framer-KWGXR.framer-v-tasrlo .framer-1icrdmp-container, .framer-KWGXR.framer-v-fg8xf9 .framer-1icrdmp-container, .framer-KWGXR.framer-v-13ir5hb .framer-1icrdmp-container { height: var(--framer-aspect-ratio-supported, 16px); width: 16px; }\",\".framer-KWGXR.framer-v-relohn.framer-1n2ooec, .framer-KWGXR.framer-v-1r23b92.framer-1n2ooec { padding: 14px 16px 14px 20px; }\",'.framer-KWGXR[data-border=\"true\"]::after, .framer-KWGXR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 111\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FXYTM1lBe\":{\"layout\":[\"auto\",\"auto\"]},\"MTXOvjm2M\":{\"layout\":[\"auto\",\"auto\"]},\"uZaqlE1EB\":{\"layout\":[\"auto\",\"auto\"]},\"hvdrBfZ9j\":{\"layout\":[\"auto\",\"auto\"]},\"AdDPNW0A2\":{\"layout\":[\"auto\",\"auto\"]},\"c4AhppP_e\":{\"layout\":[\"auto\",\"auto\"]},\"TfcYoEqIM\":{\"layout\":[\"auto\",\"auto\"]},\"FsU0G9r3z\":{\"layout\":[\"auto\",\"auto\"]},\"y0_80RnGy\":{\"layout\":[\"auto\",\"auto\"]},\"IxTydUryp\":{\"layout\":[\"auto\",\"auto\"]},\"WNDj2KuGU\":{\"layout\":[\"auto\",\"auto\"]},\"gfj6rLoH4\":{\"layout\":[\"auto\",\"auto\"]},\"RBQRnDSxm\":{\"layout\":[\"auto\",\"auto\"]},\"SJbM4UOAg\":{\"layout\":[\"auto\",\"auto\"]},\"Wq2i_mbyh\":{\"layout\":[\"auto\",\"auto\"]},\"fTqGUCwFN\":{\"layout\":[\"auto\",\"auto\"]},\"a34kbSXT4\":{\"layout\":[\"auto\",\"auto\"]},\"APJvI4wWn\":{\"layout\":[\"auto\",\"auto\"]},\"F6rGKruoo\":{\"layout\":[\"auto\",\"auto\"]},\"l6F1AxNQe\":{\"layout\":[\"auto\",\"auto\"]},\"Q7NVS63Wx\":{\"layout\":[\"auto\",\"auto\"]},\"Uu0XV6ws1\":{\"layout\":[\"auto\",\"auto\"]},\"yTaYvpfIU\":{\"layout\":[\"auto\",\"auto\"]},\"QjL4jPiw3\":{\"layout\":[\"auto\",\"auto\"]},\"mdKqyjD8i\":{\"layout\":[\"auto\",\"auto\"]},\"CCqOhjkDL\":{\"layout\":[\"auto\",\"auto\"]},\"lyxLm00s5\":{\"layout\":[\"auto\",\"auto\"]},\"q9yM1aToE\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"DmV6aippQ\":\"title\",\"XOSsObgDr\":\"link\",\"yCYpHkj4L\":\"showArrow\",\"QFxCyRyN5\":\"showExternalLink\",\"K9rh5qnBN\":\"click\",\"cQmsTu45D\":\"showIcon\",\"WbTt7Rcm1\":\"iconCode\",\"Zm8_MSIx5\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercDVSopb0I=withCSS(Component,css,\"framer-KWGXR\");export default FramercDVSopb0I;FramercDVSopb0I.displayName=\"Components/Button\";FramercDVSopb0I.defaultProps={height:56,width:111};addPropertyControls(FramercDVSopb0I,{variant:{options:[\"O_3VA_APT\",\"FXYTM1lBe\",\"MTXOvjm2M\",\"uZaqlE1EB\",\"hvdrBfZ9j\",\"AdDPNW0A2\",\"c4AhppP_e\",\"TfcYoEqIM\",\"FsU0G9r3z\",\"y0_80RnGy\",\"IxTydUryp\",\"WNDj2KuGU\",\"gfj6rLoH4\",\"RBQRnDSxm\",\"SJbM4UOAg\"],optionTitles:[\"Outlined large\",\"Outlined medium\",\"Outlined small\",\"Outlined large inverted\",\"Outlined medium inverted\",\"Outlined small inverted\",\"Solid large\",\"Solid medium\",\"Solid small\",\"Solid large inverted\",\"Solid medium inverted\",\"Solid small inverted\",\"Text medium\",\"Text medium inverted\",\"hidden\"],title:\"Variant\",type:ControlType.Enum},DmV6aippQ:{defaultValue:\"Button\",displayTextArea:false,title:\"Title\",type:ControlType.String},XOSsObgDr:{title:\"Link\",type:ControlType.Link},yCYpHkj4L:{defaultValue:false,title:\"Show arrow\",type:ControlType.Boolean},QFxCyRyN5:{defaultValue:false,title:\"Show external link\",type:ControlType.Boolean},K9rh5qnBN:{title:\"Click\",type:ControlType.EventHandler},cQmsTu45D:{defaultValue:false,title:\"Show icon\",type:ControlType.Boolean},WbTt7Rcm1:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.4975 11.9997C16.4975 11.9965 16.4976 11.9932 16.4976 11.99V12.01C16.4976 12.0066 16.4975 12.0032 16.4975 11.9997Z\" fill=\"#444444\"/> <path d=\"M16.2073 12.7007C16.3951 12.503 16.495 12.2565 16.4975 11.9997C16.4952 11.7432 16.4049 11.4969 16.2073 11.2993L9.20148 4.29277C8.81116 3.90241 8.18063 3.90241 7.7903 4.29277C7.39998 4.68314 7.39998 5.31374 7.7903 5.7041L14.0855 12L7.7903 18.2959C7.39998 18.6863 7.39998 19.3169 7.7903 19.7072C8.18063 20.0976 8.81116 20.0976 9.20148 19.7072L16.2073 12.7007Z\" fill=\"#444444\"/> </svg>',displayTextArea:false,title:\"Icon code\",type:ControlType.String},Zm8_MSIx5:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramercDVSopb0I,[{explicitInter:true,fonts:[{family:\"Sofia Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/3picOzdm279yHcWBfvz9Gl6rm08.woff2\"}]},...SVGFonts,...SVG1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercDVSopb0I\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"111\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FXYTM1lBe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MTXOvjm2M\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uZaqlE1EB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hvdrBfZ9j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AdDPNW0A2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"c4AhppP_e\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TfcYoEqIM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FsU0G9r3z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"y0_80RnGy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IxTydUryp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WNDj2KuGU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gfj6rLoH4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RBQRnDSxm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SJbM4UOAg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Wq2i_mbyh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fTqGUCwFN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"a34kbSXT4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"APJvI4wWn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"F6rGKruoo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"l6F1AxNQe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q7NVS63Wx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Uu0XV6ws1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yTaYvpfIU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QjL4jPiw3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mdKqyjD8i\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CCqOhjkDL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lyxLm00s5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"q9yM1aToE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"56\",\"framerVariables\":\"{\\\"DmV6aippQ\\\":\\\"title\\\",\\\"XOSsObgDr\\\":\\\"link\\\",\\\"yCYpHkj4L\\\":\\\"showArrow\\\",\\\"QFxCyRyN5\\\":\\\"showExternalLink\\\",\\\"K9rh5qnBN\\\":\\\"click\\\",\\\"cQmsTu45D\\\":\\\"showIcon\\\",\\\"WbTt7Rcm1\\\":\\\"iconCode\\\",\\\"Zm8_MSIx5\\\":\\\"newTab\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cDVSopb0I.map","// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Sofia Pro Regular\",\"CUSTOM;Sofia Pro Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sofia Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZhIxXuM5tWh1Zyunf814ZQtbsk.woff2\"},{family:\"Sofia Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/3picOzdm279yHcWBfvz9Gl6rm08.woff2\"}]}];export const css=['.framer-nFxSq .framer-styles-preset-l8h9eo:not(.rich-text-wrapper), .framer-nFxSq .framer-styles-preset-l8h9eo.rich-text-wrapper p { --framer-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 640px) { .framer-nFxSq .framer-styles-preset-l8h9eo:not(.rich-text-wrapper), .framer-nFxSq .framer-styles-preset-l8h9eo.rich-text-wrapper p { --framer-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 639px) and (min-width: 0px) { .framer-nFxSq .framer-styles-preset-l8h9eo:not(.rich-text-wrapper), .framer-nFxSq .framer-styles-preset-l8h9eo.rich-text-wrapper p { --framer-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0px; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nFxSq\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d2aa011)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-DoE3H .framer-styles-preset-8npxcu:not(.rich-text-wrapper), .framer-DoE3H .framer-styles-preset-8npxcu.rich-text-wrapper a { --framer-link-current-text-color: var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, #ffffff); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-05e319c6-6bb3-42a9-be45-0e3d76b0f2c9, #dcfae8); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, #ffffff); --framer-link-text-decoration: none; }\"];export const className=\"framer-DoE3H\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={gEv55HDSG:{hover:true},MfOhGlcNh:{hover:true},UufH0JQ4f:{hover:true},ZzAK3gojo:{hover:true}};const cycleOrder=[\"ZzAK3gojo\",\"UufH0JQ4f\",\"MfOhGlcNh\",\"gEv55HDSG\"];const serializationHash=\"framer-dSgDs\";const variantClassNames={gEv55HDSG:\"framer-v-1d64kas\",MfOhGlcNh:\"framer-v-16nmsdw\",UufH0JQ4f:\"framer-v-jykedw\",ZzAK3gojo:\"framer-v-1icmtxk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={instagram:\"gEv55HDSG\",linkedin:\"ZzAK3gojo\",x:\"MfOhGlcNh\",youtube:\"UufH0JQ4f\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ZzAK3gojo\",XT_c9tWHB:link!==null&&link!==void 0?link:props.XT_c9tWHB};};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,XT_c9tWHB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZzAK3gojo\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"UufH0JQ4f-hover\",\"gEv55HDSG-hover\",\"MfOhGlcNh-hover\"].includes(gestureVariant))return false;if([\"UufH0JQ4f\",\"MfOhGlcNh\",\"gEv55HDSG\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"MfOhGlcNh-hover\")return true;if(baseVariant===\"MfOhGlcNh\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"gEv55HDSG-hover\")return true;if(baseVariant===\"gEv55HDSG\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"UufH0JQ4f-hover\")return true;if(baseVariant===\"UufH0JQ4f\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:XT_c9tWHB,nodeId:\"ZzAK3gojo\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"LinkedIn\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1icmtxk\",className,classNames)} framer-1dloyt8`,\"data-framer-name\":\"linkedin\",layoutDependency:layoutDependency,layoutId:\"ZzAK3gojo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.15)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"gEv55HDSG-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.3)\"},\"MfOhGlcNh-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.3)\"},\"UufH0JQ4f-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.3)\"},\"ZzAK3gojo-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.3)\"}},...addPropertyOverrides({\"gEv55HDSG-hover\":{\"data-framer-name\":undefined},\"MfOhGlcNh-hover\":{\"data-framer-name\":undefined},\"UufH0JQ4f-hover\":{\"data-framer-name\":undefined},\"ZzAK3gojo-hover\":{\"data-framer-name\":undefined},gEv55HDSG:{\"aria-label\":\"Instagram\",\"data-framer-name\":\"instagram\"},MfOhGlcNh:{\"aria-label\":\"X\",\"data-framer-name\":\"x\"},UufH0JQ4f:{\"aria-label\":\"YouTube\",\"data-framer-name\":\"youtube\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x3r39z-container\",layoutDependency:layoutDependency,layoutId:\"OE0HMMohu-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.33267 3.00006C4.92533 3.00882 4.52982 3.12889 4.19569 3.34525C3.86155 3.5616 3.60364 3.86461 3.45425 4.21634C3.30487 4.56807 3.27063 4.9529 3.35586 5.32259C3.44109 5.69228 3.642 6.03042 3.93339 6.29466C4.22479 6.55891 4.59373 6.73752 4.99401 6.80812C5.3943 6.87871 5.80814 6.83814 6.1837 6.69151C6.55926 6.54489 6.87984 6.29871 7.10531 5.98381C7.33077 5.66891 7.4511 5.29929 7.45121 4.92123C7.44279 4.40642 7.21537 3.91556 6.81852 3.55568C6.42167 3.1958 5.88757 2.99608 5.33267 3.00006ZM3.50993 19H7.20338V8.3037H3.50993V19ZM16.5729 8.02924C15.8751 8.00052 15.1819 8.14651 14.5658 8.4519C13.9497 8.75729 13.4335 9.21082 13.0713 9.76498H13.0234V8.28144H9.47382V18.9777H13.1673V13.6741C13.1673 12.3018 13.4631 10.9296 15.3897 10.9296C17.3164 10.9296 17.3084 12.5318 17.3084 13.7631V18.9555H21.0019V13.1474C20.9539 10.2545 20.2664 8.02924 16.5729 8.02924Z\" fill=\"#444444\"/> </svg>',description:\"\",height:\"100%\",id:\"OE0HMMohu\",layoutId:\"OE0HMMohu\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r6eu1q-container\",layoutDependency:layoutDependency,layoutId:\"QZqgi0bek-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_3464_1092)\"> <path d=\"M13.7124 10.6179L20.4133 3H18.8254L13.0071 9.61448L8.35992 3H3L10.0274 13.0023L3 20.9908H4.58799L10.7324 14.0056L15.6401 20.9908H21L13.7121 10.6179H13.7124ZM11.5375 13.0904L10.8255 12.0944L5.16017 4.16911H7.59922L12.1712 10.5651L12.8832 11.5611L18.8262 19.8748H16.3871L11.5375 13.0908V13.0904Z\" fill=\"#444444\"/> </g> <defs> <clipPath id=\"clip0_3464_1092\"> <rect width=\"18\" height=\"18\" fill=\"white\" transform=\"translate(3 3)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"QZqgi0bek\",layoutId:\"QZqgi0bek\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wky8ay-container\",layoutDependency:layoutDependency,layoutId:\"N9gZt3HIy-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 4.62302C14.4033 4.62302 14.6876 4.6323 15.6369 4.67553C16.5143 4.71555 16.9909 4.86202 17.3081 4.98527C17.6995 5.12939 18.0536 5.35952 18.3442 5.6587C18.6433 5.9493 18.8735 6.30335 19.0176 6.69475C19.1408 7.01199 19.2873 7.48857 19.3273 8.36599C19.3706 9.31522 19.3798 9.5996 19.3798 12.0029C19.3798 14.4061 19.3706 14.6905 19.3273 15.6397C19.2873 16.5172 19.1408 16.9937 19.0176 17.311C18.8677 17.699 18.6383 18.0514 18.3442 18.3456C18.05 18.6397 17.6976 18.8691 17.3095 19.019C16.9923 19.1423 16.5157 19.2888 15.6383 19.3288C14.6894 19.372 14.4047 19.3813 12.0014 19.3813C9.59817 19.3813 9.31343 19.372 8.36456 19.3288C7.48714 19.2888 7.01056 19.1423 6.69332 19.019C6.30192 18.8749 5.94787 18.6448 5.65727 18.3456C5.35809 18.055 5.12796 17.7009 4.98384 17.3095C4.86059 16.9923 4.71412 16.5157 4.6741 15.6383C4.63087 14.6891 4.62159 14.4047 4.62159 12.0014C4.62159 9.59817 4.63087 9.31379 4.6741 8.36456C4.71412 7.48714 4.86059 7.01056 4.98384 6.69332C5.12796 6.30192 5.35809 5.94787 5.65727 5.65727C5.94787 5.35809 6.30192 5.12796 6.69332 4.98385C7.01056 4.86059 7.48714 4.71412 8.36456 4.6741C9.31379 4.63088 9.59817 4.62159 12.0014 4.62159L12 4.62302ZM12.0014 3C9.55708 3 9.25056 3.01036 8.29061 3.0543C7.33066 3.09825 6.67688 3.25151 6.10527 3.47372C5.50458 3.69985 4.96036 4.05412 4.51048 4.51191C4.05269 4.96179 3.69842 5.50601 3.47229 6.1067C3.25008 6.67831 3.09789 7.33352 3.0543 8.29133C3.01072 9.24913 3 9.55709 3 12.0014C3 14.4458 3.01036 14.7523 3.0543 15.7123C3.09825 16.6722 3.25008 17.3246 3.47229 17.8962C3.69851 18.4966 4.05278 19.0406 4.51048 19.4902C4.96021 19.9483 5.50446 20.3027 6.10527 20.5288C6.67688 20.7514 7.33209 20.9035 8.28989 20.9471C9.2477 20.9907 9.55637 21.0014 12.0007 21.0014C14.4451 21.0014 14.7516 20.9911 15.7115 20.9471C16.6715 20.9032 17.3231 20.7514 17.8947 20.5288C18.4928 20.2977 19.036 19.9441 19.4893 19.4908C19.9427 19.0374 20.2963 18.4942 20.5274 17.8962C20.7499 17.3246 20.9021 16.6693 20.9457 15.7115C20.9893 14.7537 21 14.4451 21 12.0007C21 9.55637 20.9896 9.24984 20.9457 8.2899C20.9018 7.32995 20.7499 6.67831 20.5274 6.1067C20.3014 5.50621 19.9472 4.96222 19.4895 4.51262C19.0397 4.05458 18.4955 3.70006 17.8947 3.47372C17.3231 3.25151 16.6679 3.09932 15.7101 3.05573C14.7523 3.01215 14.4443 3.00143 12 3.00143L12.0014 3ZM11.9999 7.37988C11.0859 7.37988 10.1924 7.65093 9.43238 8.15874C8.67238 8.66655 8.08003 9.38833 7.73024 10.2328C7.38045 11.0773 7.28893 12.0065 7.46725 12.903C7.64558 13.7994 8.08573 14.6229 8.73205 15.2692C9.37838 15.9155 10.2018 16.3557 11.0983 16.534C11.9948 16.7123 12.924 16.6208 13.7685 16.271C14.613 15.9212 15.3347 15.3289 15.8425 14.5689C16.3504 13.8089 16.6214 12.9154 16.6214 12.0014C16.6214 11.3944 16.5019 10.7935 16.2697 10.2327C16.0375 9.67201 15.6971 9.16253 15.2679 8.73338C14.8388 8.30422 14.3293 7.96381 13.7685 7.73158C13.2078 7.49934 12.6068 7.37984 11.9999 7.37988ZM11.9999 15.0023C11.4064 15.0023 10.8262 14.8263 10.3327 14.4966C9.83918 14.1668 9.45454 13.6981 9.22741 13.1498C9.00027 12.6014 8.94084 11.998 9.05663 11.4159C9.17243 10.8338 9.45824 10.299 9.87793 9.87936C10.2976 9.45967 10.8323 9.17385 11.4145 9.05806C11.9966 8.94227 12.6 9.0017 13.1483 9.22883C13.6967 9.45597 14.1654 9.84061 14.4951 10.3341C14.8249 10.8276 15.0009 11.4078 15.0009 12.0014C15.0009 12.7973 14.6847 13.5606 14.1219 14.1233C13.5591 14.6861 12.7958 15.0023 11.9999 15.0023ZM17.8843 7.19717C17.8843 7.79363 17.4008 8.27716 16.8043 8.27716C16.2079 8.27716 15.7243 7.79363 15.7243 7.19717C15.7243 6.60071 16.2079 6.11719 16.8043 6.11719C17.4008 6.11719 17.8843 6.60071 17.8843 7.19717Z\" fill=\"#444444\"/> </svg>',description:\"\",height:\"100%\",id:\"N9gZt3HIy\",layoutId:\"N9gZt3HIy\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yaa3x8-container\",layoutDependency:layoutDependency,layoutId:\"UGzrBaVF3-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.5318 8.03217C21.4426 7.31709 21.17 6.63465 20.7384 6.04637C20.4892 5.77871 20.1849 5.56378 19.8448 5.41522C19.5048 5.26666 19.1364 5.18768 18.7631 5.1833C15.9943 4.99999 11.8611 5 11.8611 5C11.8611 5 7.72782 4.99999 4.9591 5.1833C4.58572 5.18768 4.21736 5.26666 3.87733 5.41522C3.5373 5.56378 3.233 5.77871 2.98372 6.04637C2.54884 6.63293 2.27586 7.31622 2.19039 8.03217C2.19039 8.03217 2 9.65902 2 11.24V12.7676C2.00723 13.8393 2.07077 14.9099 2.19039 15.9755C2.28458 16.6893 2.55677 17.3706 2.98372 17.9613C3.56479 18.5045 4.33964 18.8133 5.14952 18.8243C6.73618 18.9542 11.869 19 11.869 19C11.869 19 16.0023 19 18.771 18.7709C19.1455 18.7621 19.5139 18.678 19.8527 18.5241C20.1916 18.3702 20.4932 18.1499 20.7384 17.8772C21.173 17.2877 21.4459 16.602 21.5318 15.8838C21.5318 15.8838 21.7222 14.257 21.7222 12.6759V11.1866C21.7142 9.65901 21.5318 8.03217 21.5318 8.03217ZM9.8381 14.593V8.97927L15.1455 11.79L9.8381 14.593Z\" fill=\"#444444\"/> </svg>',description:\"\",height:\"100%\",id:\"UGzrBaVF3\",layoutId:\"UGzrBaVF3\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dSgDs.framer-1dloyt8, .framer-dSgDs .framer-1dloyt8 { display: block; }\",\".framer-dSgDs.framer-1icmtxk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 40px; }\",\".framer-dSgDs .framer-1x3r39z-container, .framer-dSgDs .framer-1r6eu1q-container, .framer-dSgDs .framer-wky8ay-container, .framer-dSgDs .framer-1yaa3x8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dSgDs.framer-1icmtxk { gap: 0px; } .framer-dSgDs.framer-1icmtxk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dSgDs.framer-1icmtxk > :first-child { margin-top: 0px; } .framer-dSgDs.framer-1icmtxk > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UufH0JQ4f\":{\"layout\":[\"fixed\",\"fixed\"]},\"MfOhGlcNh\":{\"layout\":[\"fixed\",\"fixed\"]},\"gEv55HDSG\":{\"layout\":[\"fixed\",\"fixed\"]},\"zKULzWMyM\":{\"layout\":[\"fixed\",\"fixed\"]},\"nE7sytcl2\":{\"layout\":[\"fixed\",\"fixed\"]},\"F6T7mFfnC\":{\"layout\":[\"fixed\",\"fixed\"]},\"jctu69jpK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XT_c9tWHB\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZbAuHsrNW=withCSS(Component,css,\"framer-dSgDs\");export default FramerZbAuHsrNW;FramerZbAuHsrNW.displayName=\"Components/Social-buttons\";FramerZbAuHsrNW.defaultProps={height:40,width:40};addPropertyControls(FramerZbAuHsrNW,{variant:{options:[\"ZzAK3gojo\",\"UufH0JQ4f\",\"MfOhGlcNh\",\"gEv55HDSG\"],optionTitles:[\"linkedin\",\"youtube\",\"x\",\"instagram\"],title:\"Variant\",type:ControlType.Enum},XT_c9tWHB:{title:\"Link\",type:ControlType.Link}});addFonts(FramerZbAuHsrNW,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZbAuHsrNW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"40\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UufH0JQ4f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MfOhGlcNh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gEv55HDSG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zKULzWMyM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nE7sytcl2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F6T7mFfnC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jctu69jpK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"XT_c9tWHB\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZbAuHsrNW.map","// Generated by Framer (62e4d63)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,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 SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kVW2bFDnoUbMBTl7TwEU/dpdS1eAhU6RNk7Iie5qB/d9a2yNeez.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sHCPoBvoaTlQPdoH41F8/xog4wCQ4NmYmf2ZHJ5xT/ZAQbzWUVe.js\";import ComponentsSocialButtons from\"https://framerusercontent.com/modules/pCIDQVQiYdJAhPktJCae/zuN5Mu4EflhyrtzCdLUL/ZbAuHsrNW.js\";const ComponentsSocialButtonsFonts=getFonts(ComponentsSocialButtons);const SVG1Fonts=getFonts(SVG1);const cycleOrder=[\"qq7QjEZl1\",\"Uw3ETbH3T\",\"Y6bosTp_P\"];const serializationHash=\"framer-yB06s\";const variantClassNames={qq7QjEZl1:\"framer-v-cuefv5\",Uw3ETbH3T:\"framer-v-1x4m1is\",Y6bosTp_P:\"framer-v-mskzga\"};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:\"qq7QjEZl1\",Mobile:\"Y6bosTp_P\",Tablet:\"Uw3ETbH3T\"};const getProps=({background,height,id,width,...props})=>{return{...props,rNz5KBGbE:background??props.rNz5KBGbE??\"rgba(255, 255, 255, 0)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"qq7QjEZl1\"};};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,rNz5KBGbE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qq7QjEZl1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"Y6bosTp_P\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Y6bosTp_P\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-cuefv5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qq7QjEZl1\",ref:refBinding,style:{backgroundColor:rNz5KBGbE,...style},...addPropertyOverrides({Uw3ETbH3T:{\"data-framer-name\":\"Tablet\"},Y6bosTp_P:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sbnkun\",\"data-framer-name\":\"Inner\",layoutDependency:layoutDependency,layoutId:\"yUDjfhPX9\",style:{backgroundColor:\"var(--token-3cf779cf-3bcc-4968-b97a-b7d70fbde369, rgb(16, 82, 70))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c1g28m\",\"data-framer-name\":\"Fat footer\",layoutDependency:layoutDependency,layoutId:\"FRL0FcAXG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9k5u3s\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"o1agt81yt\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DHs0DUQr2\"},motionChild:true,nodeId:\"TIkXuNJpK\",openInNewTab:false,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1cwdvmp framer-1bw7k92\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:132,layoutDependency:layoutDependency,layoutId:\"TIkXuNJpK\",svg:'<svg width=\"132\" height=\"64\" viewBox=\"0 0 132 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2910_25526)\">\\n<path d=\"M58.7843 32.9393C58.7843 38.3183 55.0388 43.8607 49.6481 43.8607C45.5759 43.8607 42.6472 41.4221 41.9238 37.0582C39.9519 40.5586 36.9648 44.0241 31.3524 44.0241C26.5101 44.0241 23.6981 41.0137 23.7798 35.0046C23.8731 28.7271 28.3304 21.7962 34.4795 21.7845C37.3382 21.7845 39.4851 23.138 39.4851 25.3433C39.4851 26.0667 39.2518 27.1519 38.645 27.1519C38.47 27.1519 38.2716 27.0352 38.0616 26.7668C37.4199 25.95 36.4981 25.6817 35.6696 25.6817C32.0058 25.6817 30.384 32.1342 30.384 36.0664C30.384 38.5284 31.2007 40.0686 33.441 40.0686C36.2414 40.0686 40.792 36.2881 42.2388 31.7491C43.9774 26.2768 48.773 21.7028 53.557 21.7028C57.4191 21.7028 58.831 23.4647 58.6326 25.2033C58.586 25.5883 58.2826 25.88 57.8975 25.9034C50.4999 26.1951 47.9562 32.0058 47.9446 36.3347C47.9446 38.9251 48.8547 40.9087 50.3599 40.9087C52.9736 40.9087 56.089 36.218 55.5056 28.8554C55.4472 28.1203 56.054 27.8403 56.5907 28.062C58.1426 28.7154 58.831 30.0689 58.831 32.9626L58.7843 32.9393ZM93.0655 33.0443C92.9838 38.3767 88.8999 43.9307 84.1159 43.9307C80.6272 43.9307 77.4768 41.8888 76.3799 38.085C74.3847 41.5854 71.736 44.3974 68.4923 44.3974C63.615 44.3974 61.188 38.7034 61.188 30.349C61.188 18.4474 66.4853 0 74.3847 0C76.4616 0 77.8268 1.51686 77.8268 4.45725C77.8268 11.9015 73.5329 23.0913 68.0722 31.0607C67.8738 36.3347 68.1539 41.5387 69.5307 41.5387C71.6077 41.5387 75.2598 35.5646 76.4616 31.2474C77.8501 26.2418 81.794 21.9479 87.7098 21.8078C91.6419 21.7145 93.0771 23.5464 92.8671 25.3083C92.8204 25.6933 92.5054 25.9967 92.1087 26.0084C91.4319 26.0317 90.8018 26.1017 90.2067 26.2184C91.9453 27.3152 93.1005 29.8472 93.0538 33.0676L93.0655 33.0443ZM68.4689 25.3433C72.9495 16.9655 75.2131 8.56445 75.2131 5.95077C75.2131 5.37903 75.1198 5.12233 74.8514 5.12233C72.7045 5.12233 69.449 15.5887 68.4572 25.3433H68.4689ZM89.0749 26.4751C83.8826 28.0036 82.0273 32.8109 82.004 36.5331C82.004 39.1584 82.8558 41.002 84.3727 41.002C87.068 41.002 90.4284 34.1995 89.0749 26.4868V26.4751ZM21.4228 38.47C19.5909 38.5867 12.5316 39.1818 8.85615 38.505C8.23774 38.3883 7.71267 37.8983 7.666 37.0348C7.59599 35.6813 8.28441 31.084 9.08952 26.1251C11.7149 26.0434 16.6738 25.8334 18.4474 25.4366C20.2676 25.0166 20.8977 24.5149 21.5161 23.5464C21.8662 22.9863 21.8895 22.1929 20.1976 22.1462C17.6073 22.0879 12.87 22.1229 9.7546 22.1696C10.303 18.9375 10.8281 15.8571 11.1781 13.7335C11.4115 12.2633 11.8549 10.548 10.9331 9.28788C13.7801 9.04284 18.4707 8.61112 21.6795 7.96937C24.5965 7.38596 26.1017 6.20748 26.1134 5.11067C26.1134 4.63227 25.5067 4.41057 25.0749 4.37557C22.0062 4.11887 8.77448 3.75716 4.99398 4.44558C4.35223 4.56226 4.03719 4.76062 3.8155 5.42571C3.50046 6.37083 4.13054 7.78268 4.80729 8.51778C3.39544 14.5269 1.31851 27.817 0.361714 35.2146C0.151686 36.8131 0 37.5599 0 38.6334C0 42.6005 2.75369 44.2574 6.91923 44.2924C14.8303 44.2924 22.4146 40.9437 22.4146 38.9134C22.4146 38.5283 22.1696 38.4117 21.4228 38.4583V38.47ZM125.188 43.849C121.372 43.849 119.716 40.5936 120.439 33.1376C118.56 35.728 116.519 37.9683 114.267 40.1852C112.563 54.1637 104.757 63.9883 99.2029 63.9883C96.916 63.9883 95.4108 62.6932 95.4808 60.2312C95.5858 55.8906 100.09 49.0647 109.471 40.5936C109.518 38.3417 109.494 36.2881 109.413 34.3628C107.032 39.3918 102.668 42.6122 99.5413 42.6122C96.8343 42.6122 94.8157 40.2669 94.8157 36.3931C94.8157 30.3023 99.6696 21.7145 109.821 21.7145C113.31 21.7145 113.858 24.1181 113.613 25.67C114.278 29.2755 114.465 33.9778 114.5 36.4397C117.207 33.8611 120.521 29.1355 121.921 25.25C122.644 23.243 123.659 22.2512 124.955 22.2512C125.69 22.2512 126.541 22.5313 127.522 23.0563C127.837 23.2314 128 23.5931 127.907 23.9431C126.576 28.9021 124.966 35.2029 124.966 38.4C124.966 40.0569 125.351 40.862 126.016 40.862C127.393 40.862 129.459 37.6999 130.042 35.0396C130.112 34.7012 130.369 34.4795 130.73 34.4795C130.999 34.4795 131.29 34.6545 131.524 35.0979C132.854 37.5482 130.52 43.8607 125.188 43.8607V43.849ZM109.191 25.425C103.94 26.0667 99.5996 33.9544 99.5996 37.4782C99.5996 38.365 99.7513 38.9951 100.37 38.9951C102.423 38.9951 108.467 32.1809 109.179 25.425H109.191ZM108.642 45.7276C104.442 50.1382 99.5763 55.9139 99.5646 57.8392C99.5646 58.2476 99.798 58.5043 100.253 58.5043C102.353 58.5043 106.811 52.0168 108.642 45.7276ZM126.436 19.3575C128.082 19.7542 129.634 18.8908 130.135 16.7905C130.637 14.6902 129.575 13.2084 128 12.835C126.355 12.4383 124.803 13.3017 124.301 15.402C123.799 17.5023 124.861 18.9841 126.436 19.3575Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2910_25526\">\\n<rect width=\"131.886\" height=\"64\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hodaww\",\"data-framer-name\":\"Follow us\",layoutDependency:layoutDependency,layoutId:\"O6jz38qnK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-loz106-container\",layoutDependency:layoutDependency,layoutId:\"ZorkmpTNN-container\",nodeId:\"ZorkmpTNN\",rendersWithMotion:true,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(ComponentsSocialButtons,{height:\"100%\",id:\"ZorkmpTNN\",layoutId:\"ZorkmpTNN\",style:{height:\"100%\",width:\"100%\"},variant:\"ZzAK3gojo\",width:\"100%\",XT_c9tWHB:\"https://www.linkedin.com/company/ecologihq/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bm3369-container\",layoutDependency:layoutDependency,layoutId:\"DZFbhPezA-container\",nodeId:\"DZFbhPezA\",rendersWithMotion:true,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(ComponentsSocialButtons,{height:\"100%\",id:\"DZFbhPezA\",layoutId:\"DZFbhPezA\",style:{height:\"100%\",width:\"100%\"},variant:\"gEv55HDSG\",width:\"100%\",XT_c9tWHB:\"https://instagram.com/ecologi_hq\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-doc2bi-container\",layoutDependency:layoutDependency,layoutId:\"fmHzzCfl0-container\",nodeId:\"fmHzzCfl0\",rendersWithMotion:true,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(ComponentsSocialButtons,{height:\"100%\",id:\"fmHzzCfl0\",layoutId:\"fmHzzCfl0\",style:{height:\"100%\",width:\"100%\"},variant:\"MfOhGlcNh\",width:\"100%\",XT_c9tWHB:\"https://twitter.com/Ecologi_hq\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8v49e3-container\",layoutDependency:layoutDependency,layoutId:\"dp1iVMXk0-container\",nodeId:\"dp1iVMXk0\",rendersWithMotion:true,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(ComponentsSocialButtons,{height:\"100%\",id:\"dp1iVMXk0\",layoutId:\"dp1iVMXk0\",style:{height:\"100%\",width:\"100%\"},variant:\"UufH0JQ4f\",width:\"100%\",XT_c9tWHB:\"https://www.youtube.com/channel/UCKUr5skdKV-GL6bV_-krprg\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fmwhh2\",\"data-framer-name\":\"Newsletter sign up\",layoutDependency:layoutDependency,layoutId:\"UBtjmCQMs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m7q5er\",\"data-framer-name\":\"email-solid\",layoutDependency:layoutDependency,layoutId:\"vBkrW7mHL\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19dhnjk\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vuSDTtRyE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 14\"><path d=\"M 7.68 6.03 L 9.05 6.83 C 9.683 7.19 10.313 7.19 10.94 6.83 C 13.25 5.49 17.35 3.11 19.95 1.6 C 19.76 0.69 18.96 0.01 17.99 0.01 L 1.99 0.01 C 1.02 0.01 0.22 0.69 0.03 1.6 C 2.12 2.82 6.06 5.1 7.67 6.03 Z\" fill=\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"></path><path d=\"M 16.04 6.05 L 13.33 7.7 C 13.08 7.86 11.86 8.59 11.64 8.73 C 10.85 9.26 9.73 9.37 8.84 8.98 C 7.44 8.24 5.33 6.85 3.96 6.05 C 3.96 6.05 1.6 4.61 0 3.63 L 0 12 C 0 13.1 0.9 14 2 14 L 18 14 C 19.1 14 20 13.1 20 12 L 20 3.63 Z\" fill=\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"></path></svg>',svgContentId:10582878935,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-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uM3q1P2zt\"},motionChild:true,nodeId:\"KbX6LgVZH\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Sign up to our newsletter\"})})})}),className:\"framer-a7zxiz\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KbX6LgVZH\",style:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mqxvp0\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"MKHbdSQ3A\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ylxb56\",\"data-framer-name\":\"Col 1\",layoutDependency:layoutDependency,layoutId:\"OBEKXlOGL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Follow us\"})}),className:\"framer-1p1zrxw\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;Sofia Pro Bold\"],layoutDependency:layoutDependency,layoutId:\"hV1TBBC2S\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-163u77f\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"ChF0zroD9\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/ecologihq/\",motionChild:true,nodeId:\"WsPpr5sv4\",scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+0+0+0+0+120+42),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/KnMnlbq1H6Bee0OeDKHlpwIuds.svg?width=24&height=24\"},className:\"framer-1gxg71a framer-1bw7k92\",layoutDependency:layoutDependency,layoutId:\"WsPpr5sv4\",...addPropertyOverrides({Uw3ETbH3T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+0+171+0+0+120+42),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/KnMnlbq1H6Bee0OeDKHlpwIuds.svg?width=24&height=24\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/ecologihq/\",motionChild:true,nodeId:\"pRD3mESLx\",openInNewTab:true,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"LinkedIn\"})})})}),className:\"framer-zdn7yl\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"pRD3mESLx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15p54us\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"e90CtqnkM\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com/ecologi_hq\",motionChild:true,nodeId:\"XyPvekhUY\",scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+0+0+0+0+240+42),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/rhM667pc8vqzbrYOHWUmH75ZGA.svg?width=24&height=24\"},className:\"framer-1lbh1ce framer-1bw7k92\",layoutDependency:layoutDependency,layoutId:\"XyPvekhUY\",...addPropertyOverrides({Uw3ETbH3T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+0+171+0+0+240+42),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/rhM667pc8vqzbrYOHWUmH75ZGA.svg?width=24&height=24\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com/ecologi_hq\",motionChild:true,nodeId:\"bjq0IWchk\",openInNewTab:true,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Instagram\"})})})}),className:\"framer-1v9yjjx\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"bjq0IWchk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qdisgi\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"BaDFbVCqe\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCKUr5skdKV-GL6bV_-krprg\",motionChild:true,nodeId:\"LrXD2xChE\",scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+0+0+0+0+360+42),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/0ZacEq9FnyBpZE898bu49KUOXw.svg?width=24&height=24\"},className:\"framer-wfbizl framer-1bw7k92\",layoutDependency:layoutDependency,layoutId:\"LrXD2xChE\",...addPropertyOverrides({Uw3ETbH3T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+0+171+0+0+360+42),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/0ZacEq9FnyBpZE898bu49KUOXw.svg?width=24&height=24\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCKUr5skdKV-GL6bV_-krprg\",motionChild:true,nodeId:\"tHsz46p0g\",openInNewTab:true,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"YouTube\"})})})}),className:\"framer-19hkens\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"tHsz46p0g\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7shtjy\",\"data-framer-name\":\"Col 2\",layoutDependency:layoutDependency,layoutId:\"ofq2oy7nI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join us\"})}),className:\"framer-1eacxfu\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;Sofia Pro Bold\"],layoutDependency:layoutDependency,layoutId:\"XQh2Th4bP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},variants:{Y6bosTp_P:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y6bosTp_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Join us\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://ecologi.com/api/login\",motionChild:true,nodeId:\"Ks4_0fLKE\",openInNewTab:true,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Sign in\"})})})}),className:\"framer-1cmbqog\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"Ks4_0fLKE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://ecologi.com/pay-as-you-go\",motionChild:true,nodeId:\"GK0PA639D\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Create an account\"})})})}),className:\"framer-199sa22\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"GK0PA639D\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cW2HeKPLd\"},motionChild:true,nodeId:\"piQMMVzrT\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Partnerships\"})})})}),className:\"framer-pbl7y0\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"piQMMVzrT\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://ecologi.careers.hibob.com/\",motionChild:true,nodeId:\"Fye4zVDXL\",openInNewTab:true,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Join the team\"})})})}),className:\"framer-34rjdz\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"Fye4zVDXL\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mx32lt\",\"data-framer-name\":\"Col 3\",layoutDependency:layoutDependency,layoutId:\"GSIPKTx0n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Resources\"})}),className:\"framer-ndyes1\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;Sofia Pro Bold\"],layoutDependency:layoutDependency,layoutId:\"z4DmEwjJF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},variants:{Y6bosTp_P:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y6bosTp_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"Resources\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"geBtBmBoG\"},motionChild:true,nodeId:\"GXmC0adDp\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Insights\"})})})}),className:\"framer-1seibzk\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"GXmC0adDp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Wkavhm3yE\"},motionChild:true,nodeId:\"wKfbWF7ot\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Case studies\"})})})}),className:\"framer-pogphl\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"wKfbWF7ot\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.ecologi.com/\",motionChild:true,nodeId:\"tnU7a3VdD\",openInNewTab:true,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"API docs\"})})})}),className:\"framer-19pz3f6\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"tnU7a3VdD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wZnh26W9V\"},motionChild:true,nodeId:\"w0dIEd7yZ\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Press\"})})})}),className:\"framer-v1b2gq\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"w0dIEd7yZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ezXlVkINx\"},motionChild:true,nodeId:\"WcrXZtCF2\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Climate glossary\"})})})}),className:\"framer-1fcyt1s\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"WcrXZtCF2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://help.ecologi.com/\",motionChild:true,nodeId:\"HN7fUG2p_\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Help centre\"})})})}),className:\"framer-1rx6v17\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"HN7fUG2p_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12s9ysa\",\"data-border\":true,\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"PhHQxtY4E\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ywfh0\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"srN_NCHny\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 2025 Ecologi\"})}),className:\"framer-1duv719\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Bold\"],layoutDependency:layoutDependency,layoutId:\"rmA_GTuFY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Y6bosTp_P:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y6bosTp_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:\"\\xa9 2025 Ecologi\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YgFclta6w\"},motionChild:true,nodeId:\"uqL7icaM_\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Privacy\\xa0policy\"})}),\"    \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"isTaP14kQ\"},motionChild:true,nodeId:\"uqL7icaM_\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Cookie\\xa0policy\"})}),\"    \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DlpRonSaY\"},motionChild:true,nodeId:\"uqL7icaM_\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Terms\\xa0&\\xa0conditions\"})})]})}),className:\"framer-1ajjq33\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"uqL7icaM_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Y6bosTp_P:{\"--extracted-r6o4lv\":\"var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y6bosTp_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1bb152d-530b-41f7-b5e4-a326ca46d593, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YgFclta6w\"},motionChild:true,nodeId:\"uqL7icaM_\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Privacy\\xa0policy\"})}),\"    \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"isTaP14kQ\"},motionChild:true,nodeId:\"uqL7icaM_\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Cookie\\xa0policy\"})}),\"    \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DlpRonSaY\"},motionChild:true,nodeId:\"uqL7icaM_\",openInNewTab:false,relValues:[],scopeId:\"G4S0QMEsx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8npxcu\",\"data-styles-preset\":\"ZAQbzWUVe\",children:\"Terms\\xa0&\\xa0conditions\"})})]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b1lbde\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"DaJUrbGPa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d5s27o\",\"data-framer-name\":\"Ecosystem restoration\",layoutDependency:layoutDependency,layoutId:\"ZgmoY8ntp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vc9ejt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"gSRhIvKTg-container\",nodeId:\"gSRhIvKTg\",rendersWithMotion:true,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(255, 255, 255)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"118\" height=\"43\" viewBox=\"0 0 118 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M38.3687 11.3491C37.8151 10.4644 37.2431 9.62364 36.5906 8.82108C36.3321 8.50401 36.0638 8.19545 35.7813 7.89679C35.4664 7.56982 35.0963 7.07016 34.5865 7.32919C34.41 7.41695 34.2334 7.50612 34.0569 7.59813C31.8155 8.77437 29.6504 10.3682 27.9415 12.1446C26.5433 13.5982 25.477 15.7624 23.9658 17.0788C21.9476 18.8764 19.243 18.8679 17.2346 17.0831C16.1669 16.1404 15.2687 14.5268 14.3676 13.4085C12.9694 11.6407 10.9681 9.88125 8.98523 8.61442C8.25788 8.14732 7.49099 7.71419 6.7128 7.32778C6.46423 7.20322 6.15069 7.257 5.95296 7.45375C5.50808 7.88829 5.09568 8.34548 4.70729 8.82108C4.06044 9.61231 3.48139 10.4573 2.92352 11.3491C2.67213 11.7327 2.87409 12.2833 3.30908 12.4121C5.97415 13.2684 8.07287 15.0604 9.83121 17.2557C10.6447 18.2763 11.4554 19.2883 12.3706 20.2268C15.9777 24.1872 21.6976 25.4455 26.3908 22.2933C27.8892 21.294 29.1335 19.9819 30.2775 18.6061C31.3283 17.3209 32.3352 15.9733 33.6162 14.9089C34.6162 14.0554 35.674 13.3618 36.8533 12.8424C37.2233 12.6796 37.6004 12.5338 37.9831 12.4107C38.2783 12.3172 38.4704 12.0441 38.4789 11.7426C38.4817 11.6039 38.4436 11.4666 38.3687 11.3462\" fill=\"white\"/> <path d=\"M36.3095 32.6445C36.0115 32.595 35.7036 32.5822 35.4042 32.5893C33.0894 32.6417 31.0867 34.3218 28.988 35.1782C26.3795 36.2794 23.6424 36.738 20.7979 36.7224C17.849 36.7663 14.9848 36.3261 12.2788 35.1782C10.8467 34.5738 9.56287 33.7061 8.12936 33.1045C7.0108 32.636 5.73405 32.3855 4.56888 32.7365C4.27935 32.8243 3.95311 32.9375 3.7808 33.198C3.66217 33.3706 3.68194 33.5631 3.80905 33.7514C6.31452 37.3127 9.99222 40.036 14.3055 41.4019C22.6975 44.2385 32.8055 40.7324 37.4775 33.7203C37.8928 33.0522 36.7911 32.7252 36.3081 32.6431\" fill=\"white\"/> <path d=\"M41.0889 18.8099C41.0394 18.4518 40.7188 18.2324 40.3672 18.2253C40.1723 18.2211 39.726 18.248 39.2938 18.3018C34.1967 18.9472 31.4497 21.4724 29.1829 23.5503C26.8639 25.6777 25.0307 27.3592 20.5819 27.3592C16.133 27.3592 14.3775 25.6805 12.0698 23.5545C9.71258 21.3832 6.44586 18.7363 0.929312 18.2239C0.577642 18.1914 0.257044 18.4504 0.2062 18.8085C0.0720287 19.7653 0 20.742 0 21.7356C0 22.3584 0.0296589 22.9756 0.0833273 23.5842C0.112986 23.9098 0.371442 24.1589 0.689216 24.1957C4.07174 24.5765 6.13515 26.1108 8.17597 27.9891C10.2634 29.9127 12.7632 32.2142 17.1668 33.0239C17.1781 33.0253 17.188 33.0281 17.1993 33.0309C19.1822 33.3905 21.2386 33.423 23.237 33.1569C24.8358 32.9432 26.4035 32.503 27.8596 31.8023C29.0572 31.2262 30.1645 30.4831 31.1927 29.6438C31.8381 29.1172 32.4539 28.5567 33.0682 27.9933C35.1204 26.1108 37.1951 24.575 40.603 24.1943C40.9236 24.1589 41.1835 23.9069 41.2131 23.5786C41.2668 22.9713 41.2965 22.357 41.2965 21.7342C41.2965 20.7392 41.2244 19.7625 41.0903 18.8057\" fill=\"white\"/> <path d=\"M26.4331 1.22294C26.3597 0.785566 26.1648 0.474167 25.7877 0.403394C25.7722 0.400563 25.7524 0.397732 25.7354 0.396317C25.6408 0.387824 25.5391 0.382162 25.4261 0.396317C24.4079 0.506722 23.4898 1.3659 22.8289 2.0892C22.0733 2.93422 21.5818 3.73536 20.9886 4.74033C20.418 3.08426 19.1582 0.839353 17.1584 1.27248C15.1924 1.64757 14.0046 3.775 14.5484 5.65188C14.9495 7.19048 15.7178 8.60027 16.6033 9.90814C17.2841 10.9131 17.9577 11.9294 18.7458 12.8537C18.9506 13.0943 19.1752 13.3533 19.4223 13.5855C19.7768 13.9181 20.1793 14.1941 20.6482 14.2776C21.6114 14.4475 22.2668 13.6138 22.73 12.8905C24.3683 10.3229 25.388 7.40421 26.0956 4.45583C26.1944 4.01562 26.3046 3.54286 26.3823 3.06161C26.4783 2.46146 26.5235 1.84432 26.4317 1.22152\" fill=\"white\"/> <path d=\"M103.935 9.4184C104.713 9.4184 105.221 8.93856 105.221 8.20677V6.4686C105.221 5.73681 104.713 5.25697 103.935 5.25697C103.156 5.25697 102.637 5.73681 102.637 6.4686V8.20677C102.637 8.93856 103.151 9.4184 103.935 9.4184ZM103.349 6.487C103.349 6.1388 103.576 5.91091 103.935 5.91091C104.293 5.91091 104.515 6.1388 104.515 6.487V8.18979C104.515 8.53799 104.282 8.76587 103.935 8.76587C103.587 8.76587 103.349 8.53799 103.349 8.18979V6.487Z\" fill=\"white\"/> <path d=\"M106.434 6.93145L106.405 6.65544H106.458L107.44 9.34762H108.278V5.33058H107.566V7.74675L107.601 8.02135H107.547L106.56 5.33058H105.728V9.34762H106.434V6.93145Z\" fill=\"white\"/> <path d=\"M77.2091 22.0824C75.3251 22.0824 74.0879 23.236 74.0879 24.994V29.1738C74.0879 30.9318 75.3251 32.0854 77.2091 32.0854C79.0932 32.0854 80.3021 30.9318 80.3021 29.1738V24.994C80.3021 23.236 79.0791 22.0824 77.2091 22.0824ZM78.6031 29.1314C78.6031 29.9679 78.0424 30.5157 77.2077 30.5157C76.373 30.5157 75.7982 29.9679 75.7982 29.1314V25.0379C75.7982 24.2014 76.3448 23.6536 77.2077 23.6536C78.0707 23.6536 78.6031 24.2014 78.6031 25.0379V29.1314Z\" fill=\"white\"/> <path d=\"M87.5361 25.3252C87.5361 23.379 86.4288 22.2551 84.501 22.2551H81.5238V31.9127H83.2214V28.4095H84.3428L85.6944 31.9127H87.6943L85.9825 28.1222C86.9895 27.6749 87.5361 26.7237 87.5361 25.3252ZM84.3287 26.8964H83.2214V23.8263H84.3287C85.2778 23.8263 85.8243 24.3882 85.8243 25.3549C85.8243 26.3217 85.2778 26.8978 84.3287 26.8978\" fill=\"white\"/> <path d=\"M103.228 22.2551H101.531V31.9127H103.228V22.2551Z\" fill=\"white\"/> <path d=\"M107.559 22.0824C105.675 22.0824 104.437 23.236 104.437 24.994V29.1738C104.437 30.9318 105.675 32.0854 107.559 32.0854C109.443 32.0854 110.652 30.9318 110.652 29.1738V24.994C110.652 23.236 109.429 22.0824 107.559 22.0824ZM108.953 29.1314C108.953 29.9679 108.392 30.5157 107.557 30.5157C106.723 30.5157 106.148 29.9679 106.148 29.1314V25.0379C106.148 24.2014 106.694 23.6536 107.557 23.6536C108.42 23.6536 108.953 24.2014 108.953 25.0379V29.1314Z\" fill=\"white\"/> <path d=\"M116.288 22.2551V28.0641L116.376 28.728H116.246L113.872 22.2551H111.873V31.9127H113.571V26.1037L113.499 25.4413H113.627L115.987 31.9127H118V22.2551H116.288Z\" fill=\"white\"/> <path d=\"M67.8595 23.8263H69.9018V31.9127H71.5994V23.8263H72.9891C73.3196 23.7866 73.5809 23.5276 73.6275 23.1978V22.2551H67.8595V23.8263Z\" fill=\"white\"/> <path d=\"M94.7856 23.8263H96.8278V31.9127H98.5254V23.8263H99.9151C100.246 23.7866 100.507 23.5276 100.554 23.1978V22.2551H94.7856V23.8263Z\" fill=\"white\"/> <path d=\"M87.4528 8.14166V6.53512C87.4528 5.80334 86.9443 5.33058 86.1845 5.33058H84.9642V9.34762H86.1845C86.9443 9.34762 87.4528 8.87345 87.4528 8.14308M85.669 8.69369V5.9831H86.1591C86.5234 5.9831 86.7452 6.20532 86.7452 6.55919V8.1176C86.7452 8.47146 86.5234 8.69369 86.1591 8.69369H85.669Z\" fill=\"white\"/> <path d=\"M98.8432 8.14166V6.53512C98.8432 5.80334 98.3347 5.33058 97.5749 5.33058H96.3547V9.34762H97.5749C98.3347 9.34762 98.8432 8.87345 98.8432 8.14308M97.0594 8.69369V5.9831H97.5495C97.9139 5.9831 98.1356 6.20532 98.1356 6.55919V8.1176C98.1356 8.47146 97.9139 8.69369 97.5495 8.69369H97.0594Z\" fill=\"white\"/> <path d=\"M90.0246 8.69369H88.6603V7.63776H89.8325V7.00222H88.6603V5.9831H89.7181C89.8876 5.9831 90.0232 5.8458 90.0232 5.67595V5.32916H87.9541V9.34621H90.0232V8.69227L90.0246 8.69369Z\" fill=\"white\"/> <path d=\"M101.415 8.69369H100.051V7.63776H101.223V7.00222H100.051V5.9831H101.11C101.27 5.9831 101.401 5.85854 101.415 5.70142V5.32916H99.3446V9.34621H101.415V8.69227V8.69369Z\" fill=\"white\"/> <path d=\"M91.6996 9.4184C92.4595 9.4184 92.9622 8.9513 92.9622 8.2365V7.9067H92.5484C92.386 7.91377 92.2561 8.04824 92.2561 8.21243V8.21809C92.2561 8.55356 92.0287 8.76304 91.6996 8.76304C91.3706 8.76304 91.1375 8.55356 91.1375 8.21809V6.45586C91.1375 6.1204 91.3593 5.91091 91.6996 5.91091C92.04 5.91091 92.2561 6.1204 92.2561 6.45586V6.46152C92.2561 6.63137 92.3931 6.76726 92.5611 6.76726H92.9608V6.43746C92.9608 5.72407 92.458 5.25697 91.6982 5.25697C90.9384 5.25697 90.4243 5.72407 90.4243 6.43746V8.2365C90.4243 8.94988 90.9327 9.4184 91.6982 9.4184\" fill=\"white\"/> <path d=\"M93.9297 9.02632L94.0398 8.47146H95.0384L95.205 9.34621H95.9959L95.0511 5.32916H94.0582L93.1134 9.34621H93.5413C93.7037 9.33772 93.8901 9.25704 93.9311 9.02632M94.5172 6.03689H94.5596L94.9127 7.83592H94.1656L94.5186 6.03689H94.5172Z\" fill=\"white\"/> <path d=\"M90.341 22.2551L88.0685 31.9127H89.0967C89.4879 31.8929 89.9342 31.6976 90.0345 31.1427L90.2986 29.808H92.701L92.9665 31.1484C93.0682 31.699 93.5131 31.8943 93.9029 31.9127H95.0031L92.7306 22.2551H90.341ZM90.5994 28.2807L91.4482 23.9565H91.5485L92.3973 28.2807H90.5994Z\" fill=\"white\"/> <path d=\"M59.9039 23.8263C60.3106 23.8263 60.6397 23.4965 60.6397 23.0902V22.2565H55.6627V31.9141H60.6397V30.343H57.3603V27.8065H60.1793V26.2778H57.3603V23.8277H59.9039V23.8263Z\" fill=\"white\"/> <path d=\"M67.3483 29.2078C67.3483 25.7187 63.2638 26.6416 63.2638 24.6812C63.2638 24.0188 63.7101 23.6295 64.3852 23.6295C65.0603 23.6295 65.4939 23.9862 65.5447 24.5439V24.5354C65.5447 24.7845 65.7396 24.9855 65.9854 24.9983H67.2042V24.6232C67.2042 23.0945 66.0969 22.0569 64.3711 22.0569C62.6452 22.0569 61.5662 23.052 61.5662 24.7958C61.5662 28.1689 65.6507 27.3323 65.6507 29.3225C65.6507 30.0429 65.1761 30.4902 64.4431 30.4902C63.7101 30.4902 63.2101 30.0571 63.1805 29.3876V29.3975C63.1805 29.1441 62.9785 28.9389 62.7271 28.9332H61.4942V29.3225C61.4942 30.9799 62.6735 32.0613 64.4572 32.0613C66.1972 32.0613 67.3483 31.0238 67.3483 29.2078Z\" fill=\"white\"/> <path d=\"M50.2831 28.4109H51.4045L52.7575 31.9141H54.756L53.0442 28.1236C54.0512 27.6763 54.5978 26.7251 54.5978 25.3266C54.5978 23.3804 53.4905 22.2565 51.5627 22.2565H48.5855V31.9141H50.2831V28.4109ZM50.2831 23.8263H51.3904C52.3395 23.8263 52.886 24.3882 52.886 25.3549C52.886 26.3217 52.3395 26.8978 51.3904 26.8978H50.2831V23.8263Z\" fill=\"white\"/> <path d=\"M64.6663 10.7829C62.7822 10.7829 61.545 11.9365 61.545 13.6945V17.8743C61.545 19.6323 62.7822 20.7859 64.6663 20.7859C66.5503 20.7859 67.7593 19.6323 67.7593 17.8743V13.6945C67.7593 11.9365 66.5362 10.7829 64.6663 10.7829ZM66.0616 17.8318C66.0616 18.6684 65.5009 19.2161 64.6663 19.2161C63.8316 19.2161 63.2568 18.6684 63.2568 17.8318V13.7384C63.2568 12.9018 63.8033 12.354 64.6663 12.354C65.5292 12.354 66.0616 12.9018 66.0616 13.7384V17.8318Z\" fill=\"white\"/> <path d=\"M79.9858 10.9542H79.25L79.1356 11.2868L77.8856 14.8622H77.7854L76.6244 11.5798C76.6442 11.6279 76.664 11.6775 76.6838 11.7327L76.4154 10.9556H75.6796C75.7064 10.9556 75.7333 10.9556 75.7601 10.9556H74.4466L76.9493 16.7221V20.6146H78.661V16.7221L81.1495 10.9556H79.9039C79.9307 10.9556 79.9575 10.9556 79.9844 10.9556\" fill=\"white\"/> <path d=\"M106.522 13.6223H106.666L106.58 14.2847V20.6132H108.278V10.9556H105.975L104.48 16.1871H104.38L102.87 10.9556H100.511V20.6132H102.207V14.2847L102.135 13.6223H102.265L103.761 18.5367H105.026L106.522 13.6223Z\" fill=\"white\"/> <path d=\"M53.5611 19.042H50.2817V16.5056H53.1007V14.9783H50.2817V12.5281H52.8253C53.2321 12.5281 53.5611 12.1969 53.5611 11.7907V10.957H48.5841V20.6146H53.5611V19.042Z\" fill=\"white\"/> <path d=\"M57.5961 20.7859C59.4223 20.7859 60.6312 19.662 60.6312 17.9465V17.1538H59.637C59.2457 17.1708 58.9336 17.4935 58.9336 17.8885V17.9026C58.9336 18.7094 58.387 19.2147 57.5961 19.2147C56.8052 19.2147 56.2445 18.7108 56.2445 17.9026V13.6647C56.2445 12.8579 56.777 12.3526 57.5961 12.3526C58.4153 12.3526 58.9336 12.8579 58.9336 13.6647V13.6775C58.9336 14.0851 59.2627 14.4149 59.6694 14.4149H60.6312V13.6223C60.6312 11.9068 59.4237 10.7829 57.5961 10.7829C55.7686 10.7829 54.5328 11.9068 54.5328 13.6223V17.9465C54.5328 19.662 55.7559 20.7859 57.5961 20.7859Z\" fill=\"white\"/> <path d=\"M70.3481 13.4057C70.3481 12.7419 70.7943 12.3526 71.4694 12.3526C72.1445 12.3526 72.5781 12.7093 72.629 13.267V13.2585C72.629 13.5076 72.8239 13.7086 73.0682 13.7214H74.287V13.3463C74.287 11.819 73.1798 10.7801 71.4539 10.7801C69.728 10.7801 68.649 11.7751 68.649 13.519C68.649 16.892 72.7335 16.0554 72.7335 18.0456C72.7335 18.766 72.2589 19.2133 71.5259 19.2133C70.7929 19.2133 70.293 18.7802 70.2633 18.1107V18.1206C70.2633 17.8672 70.0613 17.662 69.81 17.6549H68.577V18.0441C68.577 19.7016 69.7563 20.783 71.5401 20.783C73.3238 20.783 74.4311 19.7455 74.4311 17.9295C74.4311 14.4404 70.3466 15.3633 70.3466 13.4029\" fill=\"white\"/> <path d=\"M84.2468 20.7859C85.9868 20.7859 87.1378 19.7484 87.1378 17.9309C87.1378 14.4418 83.0534 15.3647 83.0534 13.4043C83.0534 12.7405 83.4996 12.3512 84.1747 12.3512C84.8498 12.3512 85.2834 12.7079 85.3343 13.2656V13.2571C85.3343 13.5062 85.5292 13.7072 85.7749 13.7199H86.9938V13.3449C86.9938 11.8176 85.8865 10.7786 84.1606 10.7786C82.4348 10.7786 81.3557 11.7737 81.3557 13.5175C81.3557 16.8906 85.4402 16.054 85.4402 18.0441C85.4402 18.7646 84.9656 19.2119 84.2326 19.2119C83.4996 19.2119 82.9997 18.7788 82.97 18.1093V18.1192C82.97 17.8658 82.7681 17.6606 82.5167 17.6535H81.2837V18.0427C81.2837 19.7002 82.463 20.7816 84.2468 20.7816\" fill=\"white\"/> <path d=\"M89.5783 20.6132H91.2759V12.5267H92.6657C92.9961 12.4871 93.2574 12.2281 93.304 11.8983V10.9556H87.5361V12.5267H89.5783V20.6132Z\" fill=\"white\"/> <path d=\"M98.5409 12.5182C98.9265 12.5182 99.2415 12.221 99.2725 11.8431V10.9485H94.2955V20.6061H99.2725V19.035H95.9931V16.4985H98.8121V14.9712H95.9931V12.5211H98.5409V12.5182Z\" fill=\"white\"/> <path d=\"M49.8269 9.41273C50.5726 9.41273 51.0613 8.95837 51.0613 8.2648V5.33482H50.358V8.2464C50.358 8.56346 50.1433 8.76021 49.8269 8.76021C49.5106 8.76021 49.2902 8.55639 49.2902 8.2464V5.33482H48.5869V8.2648C48.5869 8.95837 49.0826 9.41273 49.8283 9.41273\" fill=\"white\"/> <path d=\"M52.338 6.93145L52.3084 6.65685H52.3621L53.3408 9.34196H54.1755V5.33624H53.4665V7.74533L53.5018 8.01993H53.4481L52.4637 5.33624H51.6347V9.34196H52.338V6.93145Z\" fill=\"white\"/> <path d=\"M55.4339 5.33624H54.7305V9.34196H55.4339V5.33624Z\" fill=\"white\"/> <path d=\"M56.688 9.34196H57.3914V5.98735H58.2331V5.33624H55.8406V5.98735H56.688V9.34196Z\" fill=\"white\"/> <path d=\"M60.7019 8.68944H59.3418V7.63776H60.5112V7.00364H59.3418V5.98735H60.3968C60.5649 5.98735 60.7019 5.85005 60.7019 5.68161V5.33624H58.637V9.34196H60.7019V8.68944Z\" fill=\"white\"/> <path d=\"M63.7087 8.14024V6.53796C63.7087 5.809 63.2017 5.33624 62.4433 5.33624H61.2258V9.34196H62.4433C63.2003 9.34196 63.7087 8.8692 63.7087 8.14024ZM61.9306 8.68944V5.98735H62.4192C62.7836 5.98735 63.0039 6.20816 63.0039 6.5606V8.11477C63.0039 8.46721 62.7836 8.68944 62.4192 8.68944H61.9306Z\" fill=\"white\"/> <path d=\"M67.0912 7.74533L67.1265 8.01993H67.0729L66.0885 5.33624H65.2594V9.34196H65.9642V6.93145L65.9345 6.65685H65.9882L66.9655 9.34196H67.8016V5.33624H67.0912V7.74533Z\" fill=\"white\"/> <path d=\"M71.7618 9.34196H72.4665V5.98735H73.3069V5.33624H70.9144V5.98735H71.7618V9.34196Z\" fill=\"white\"/> <path d=\"M74.417 5.33624H73.7136V9.34196H74.417V5.33624Z\" fill=\"white\"/> <path d=\"M76.2134 9.41273C76.9888 9.41273 77.4958 8.93431 77.4958 8.20536V6.47143C77.4958 5.74247 76.9888 5.26405 76.2134 5.26405C75.4381 5.26405 74.9184 5.74247 74.9184 6.47143V8.20536C74.9184 8.93431 75.431 9.41273 76.2134 9.41273ZM75.6287 6.48983C75.6287 6.14304 75.8547 5.91657 76.2134 5.91657C76.5722 5.91657 76.7925 6.14304 76.7925 6.48983V8.18837C76.7925 8.53516 76.5595 8.76163 76.2134 8.76163C75.8674 8.76163 75.6287 8.53516 75.6287 8.18837V6.48983Z\" fill=\"white\"/> <path d=\"M78.7062 6.93145L78.6766 6.65685H78.7302L79.709 9.34196H80.5436V5.33624H79.8347V7.74533L79.87 8.01993H79.8163L78.8319 5.33624H78.0029V9.34196H78.7062V6.93145Z\" fill=\"white\"/> <path d=\"M68.9795 9.02349L69.0897 8.46863H70.0854L70.1955 9.02349C70.2322 9.20749 70.3932 9.34055 70.5811 9.34055H71.0387L70.0967 5.33482H69.1066L68.1646 9.34055H68.5925C68.7804 9.34055 68.9428 9.20749 68.9795 9.02349ZM69.567 6.04113H69.6094L69.9611 7.83451H69.2154L69.567 6.04113Z\" fill=\"white\"/> <path d=\"M82.1961 9.41132C82.9164 9.41132 83.3937 8.98102 83.3937 8.22942C83.3937 6.78424 81.7018 7.16642 81.7018 6.35395C81.7018 6.07935 81.8868 5.91799 82.1664 5.91799C82.4461 5.91799 82.6254 6.06519 82.6466 6.29733V6.2945C82.6466 6.39783 82.7271 6.48134 82.8288 6.487H83.3344V6.3313C83.3344 5.69859 82.8754 5.2683 82.1608 5.2683C81.4461 5.2683 80.9984 5.68019 80.9984 6.40349C80.9984 7.80054 82.6904 7.45517 82.6904 8.27896C82.6904 8.57762 82.4941 8.76304 82.1904 8.76304C81.8868 8.76304 81.6792 8.58328 81.6664 8.30585V8.3101C81.6664 8.20536 81.5831 8.12043 81.4786 8.1176H80.9688V8.27896C80.9688 8.96545 81.4574 9.41415 82.1961 9.41415\" fill=\"white\"/> <path d=\"M50.6531 36.1817C50.9766 35.726 51.1771 35.2631 51.1771 34.8073C51.1771 34.0543 50.6602 33.5773 49.8877 33.5773C49.1151 33.5773 48.5841 34.0543 48.5841 34.7649V35.1442H49.06C49.2465 35.1442 49.3976 34.9927 49.3976 34.8059C49.3976 34.5228 49.584 34.3289 49.8806 34.3289C50.1772 34.3289 50.3565 34.5087 50.3565 34.8399C50.3565 35.1088 50.2252 35.4131 49.8594 35.9241L48.5911 37.692V38.2865H51.1616V37.5547H49.6857V37.5137L50.6503 36.1803L50.6531 36.1817Z\" fill=\"white\"/> <path d=\"M52.9792 33.5773C52.1389 33.5773 51.5867 34.0741 51.5867 34.8342V37.1145C51.5867 37.8746 52.1375 38.3714 52.9792 38.3714C53.821 38.3714 54.3577 37.8732 54.3577 37.1145V34.8342C54.3577 34.0741 53.8139 33.5773 52.9792 33.5773ZM53.5442 37.0933C53.5442 37.4103 53.3168 37.6184 52.9792 37.6184C52.6417 37.6184 52.4073 37.4174 52.4073 37.0933V34.8554C52.4073 34.5299 52.6346 34.3303 52.9792 34.3303C53.3239 34.3303 53.5442 34.537 53.5442 34.8554V37.0933Z\" fill=\"white\"/> <path d=\"M56.8462 36.1817C57.1696 35.726 57.3702 35.2631 57.3702 34.8073C57.3702 34.0543 56.8533 33.5773 56.0807 33.5773C55.3082 33.5773 54.7771 34.0543 54.7771 34.7649V35.1442H55.2531C55.4395 35.1442 55.5906 34.9927 55.5906 34.8059C55.5906 34.5228 55.7771 34.3289 56.0737 34.3289C56.3702 34.3289 56.5496 34.5087 56.5496 34.8399C56.5496 35.1088 56.4183 35.4131 56.0525 35.9241L54.7842 37.692V38.2865H57.3546V37.5547H55.8802V37.5137L56.8448 36.1803L56.8462 36.1817Z\" fill=\"white\"/> <path d=\"M57.7275 34.1364V34.9107L58.3828 34.5299H58.445V38.2879H59.257V33.6594H58.6173L57.7275 34.1364Z\" fill=\"white\"/> <path d=\"M61.3445 35.6396H59.7796V36.3643H61.3445V35.6396Z\" fill=\"white\"/> <path d=\"M63.6437 36.1817C63.9672 35.726 64.1677 35.2631 64.1677 34.8073C64.1677 34.0543 63.6508 33.5773 62.8783 33.5773C62.1057 33.5773 61.5761 34.0543 61.5761 34.7649V35.1442H62.052C62.2385 35.1442 62.3896 34.9927 62.3896 34.8059C62.3896 34.5228 62.576 34.3289 62.8726 34.3289C63.1692 34.3289 63.3486 34.5087 63.3486 34.8399C63.3486 35.1088 63.2172 35.4131 62.8528 35.9241L61.5846 37.692V38.2865H64.155V37.5547H62.6805V37.5137L63.6451 36.1803L63.6437 36.1817Z\" fill=\"white\"/> <path d=\"M65.9712 33.5773C65.1295 33.5773 64.5787 34.0741 64.5787 34.8342V37.1145C64.5787 37.8746 65.1295 38.3714 65.9712 38.3714C66.813 38.3714 67.3497 37.8732 67.3497 37.1145V34.8342C67.3497 34.0741 66.8045 33.5773 65.9712 33.5773ZM66.5362 37.0933C66.5362 37.4103 66.3088 37.6184 65.9712 37.6184C65.6337 37.6184 65.3993 37.4174 65.3993 37.0933V34.8554C65.3993 34.5299 65.6266 34.3303 65.9712 34.3303C66.3159 34.3303 66.5362 34.537 66.5362 34.8554V37.0933Z\" fill=\"white\"/> <path d=\"M69.8114 35.9255V35.8774C70.163 35.733 70.4045 35.3041 70.4045 34.7932C70.4045 34.0685 69.8806 33.5773 69.108 33.5773C68.3355 33.5773 67.8115 34.0543 67.8115 34.779V35.0211H68.3694C68.5078 35.0211 68.618 34.9107 68.6278 34.7719C68.6518 34.4973 68.8312 34.3303 69.101 34.3303C69.3707 34.3303 69.5699 34.5242 69.5699 34.9107C69.5699 35.3466 69.3623 35.6085 69.012 35.6085H68.488V36.2723H69.0868C69.4314 36.2723 69.6391 36.5342 69.6391 36.9701C69.6391 37.4061 69.4187 37.6198 69.0953 37.6198C68.7719 37.6198 68.5643 37.4061 68.5643 37.0678V36.888H67.7508V37.123C67.7508 37.8689 68.2889 38.3728 69.1024 38.3728C69.9159 38.3728 70.4596 37.8548 70.4596 37.0876C70.4596 36.5285 70.2054 36.0713 69.8114 35.9269\" fill=\"white\"/> <path d=\"M72.249 33.5773C71.4073 33.5773 70.8565 34.0741 70.8565 34.8342V37.1145C70.8565 37.8746 71.4073 38.3714 72.249 38.3714C73.0908 38.3714 73.6275 37.8732 73.6275 37.1145V34.8342C73.6275 34.0741 73.0837 33.5773 72.249 33.5773ZM72.814 37.0933C72.814 37.4103 72.5866 37.6184 72.249 37.6184C71.9115 37.6184 71.6771 37.4174 71.6771 37.0933V34.8554C71.6771 34.5299 71.9044 34.3303 72.249 34.3303C72.5937 34.3303 72.814 34.537 72.814 34.8554V37.0933Z\" fill=\"white\"/> </svg>',description:\"\",height:\"100%\",id:\"gSRhIvKTg\",layoutId:\"gSRhIvKTg\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.bcorporation.net/en-us/find-a-b-corp/company/ecologi/\",motionChild:true,nodeId:\"TODD1_blU\",scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i7craq framer-1bw7k92\",\"data-framer-name\":\"B corp\",layoutDependency:layoutDependency,layoutId:\"TODD1_blU\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bf3jev-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"o6wb9E8UI-container\",nodeId:\"o6wb9E8UI\",rendersWithMotion:true,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(255, 255, 255)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"47\" height=\"81\" viewBox=\"0 0 47 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.7223 23.4534H23.4344C25.7968 23.4534 28.9126 23.4534 30.5216 24.4398C32.2861 25.4997 33.6714 27.4282 33.6714 30.0829C33.6714 32.9584 32.1743 35.1175 29.6952 36.1382V36.2167C32.9958 36.8988 34.7943 39.3965 34.7943 42.7284C34.7943 46.7031 31.9798 50.4914 26.6572 50.4914H13.7175V23.4583L13.7223 23.4534ZM17.2805 35.0734H24.4114C28.4606 35.0734 30.1133 33.5964 30.1133 30.7552C30.1133 27.0062 27.4884 26.4762 24.4114 26.4762H17.2805V35.0734ZM17.2805 47.4539H26.21C29.282 47.4539 31.2361 45.5598 31.2361 42.6106C31.2361 39.0874 28.4217 38.106 25.4225 38.106H17.2854V47.4588L17.2805 47.4539Z\" fill=\"white\"/> <path d=\"M43.9085 36.9773C43.9085 48.3323 34.7894 57.538 23.5365 57.538C12.2835 57.538 3.1693 48.3372 3.1693 36.9773C3.1693 25.6175 12.2883 16.4167 23.5365 16.4167C34.7846 16.4167 43.9085 25.6224 43.9085 36.9773ZM23.5365 13.2811C10.5822 13.2811 0.077774 23.8853 0.077774 36.9675C0.077774 50.0498 10.5822 60.649 23.5365 60.649C36.4907 60.649 47 50.0449 47 36.9675C47 23.8902 36.4956 13.286 23.5365 13.286V13.2811Z\" fill=\"white\"/> <path d=\"M46.9514 65.6445H0.126389V68.7506H46.9514V65.6445Z\" fill=\"white\"/> <path d=\"M45.4883 62.2242C45.5466 62.2242 45.6001 62.2242 45.6535 62.2193C45.7021 62.2193 45.7507 62.2046 45.7896 62.1899C45.8334 62.1702 45.8625 62.1408 45.8869 62.1065C45.9112 62.0672 45.9209 62.0181 45.9209 61.9543C45.9209 61.9004 45.9112 61.8513 45.8917 61.8218C45.8723 61.7875 45.8431 61.763 45.8091 61.7482C45.7751 61.7286 45.741 61.7188 45.6924 61.709C45.6487 61.709 45.6098 61.7041 45.5612 61.7041H45.2258V62.2291H45.4931L45.4883 62.2242ZM45.6001 61.4931C45.7945 61.4931 45.9355 61.5323 46.0327 61.6108C46.125 61.6894 46.1736 61.8071 46.1736 61.9691C46.1736 62.1212 46.1299 62.2242 46.0521 62.2978C45.9695 62.3665 45.8674 62.4058 45.741 62.4205L46.2077 63.1468H45.9355L45.4883 62.4352H45.2209V63.1468H44.9633V61.498H45.6001V61.4931ZM44.448 62.7885C44.5015 62.9357 44.5841 63.0682 44.6911 63.1762C44.7932 63.2841 44.9147 63.3676 45.0556 63.4314C45.1917 63.4902 45.3473 63.5197 45.5077 63.5197C45.6681 63.5197 45.8237 63.4902 45.9598 63.4314C46.1007 63.3676 46.2223 63.2841 46.3243 63.1762C46.4264 63.0682 46.509 62.9407 46.5625 62.7885C46.6208 62.6413 46.6549 62.4843 46.6549 62.3125C46.6549 62.1408 46.6257 61.9838 46.5625 61.8366C46.5042 61.6894 46.4216 61.5618 46.3243 61.4538C46.2174 61.3459 46.0959 61.2624 45.9598 61.2036C45.8237 61.1447 45.6681 61.1103 45.5077 61.1103C45.3473 61.1103 45.1917 61.1447 45.0556 61.2036C44.9147 61.2673 44.7883 61.3508 44.6911 61.4538C44.5841 61.5618 44.5064 61.6894 44.448 61.8366C44.3897 61.9838 44.3605 62.1359 44.3605 62.3125C44.3605 62.4892 44.3897 62.6413 44.448 62.7885ZM44.2196 61.7531C44.2925 61.5814 44.3946 61.4391 44.5209 61.3115C44.6473 61.1839 44.798 61.0907 44.9681 61.0171C45.1383 60.9435 45.323 60.9091 45.5077 60.9091C45.6924 60.9091 45.882 60.9435 46.057 61.0171C46.2223 61.0907 46.3729 61.1839 46.4945 61.3115C46.6208 61.4391 46.7278 61.5863 46.7958 61.7531C46.8736 61.9249 46.9076 62.1114 46.9076 62.3125C46.9076 62.5137 46.8736 62.7002 46.7958 62.872C46.7229 63.0486 46.6208 63.1958 46.4945 63.3234C46.3681 63.4559 46.2223 63.5491 46.057 63.6227C45.882 63.6914 45.7021 63.7258 45.5077 63.7258C45.3133 63.7258 45.1383 63.6914 44.9681 63.6227C44.798 63.5491 44.6473 63.4559 44.5209 63.3234C44.3946 63.1958 44.2925 63.0486 44.2196 62.872C44.1418 62.7002 44.1126 62.5137 44.1126 62.3125C44.1126 62.1114 44.1418 61.9249 44.2196 61.7531Z\" fill=\"white\"/> <path d=\"M5.79905 2.86821C5.68725 2.68665 5.55114 2.52962 5.38587 2.39713C5.2206 2.25973 5.03103 2.15668 4.82201 2.07817C4.61299 2.00456 4.39425 1.96531 4.16579 1.96531C3.74775 1.96531 3.3929 2.04873 3.09639 2.21066C2.80474 2.37259 2.56655 2.59341 2.3867 2.86821C2.20685 3.143 2.07074 3.45706 1.98811 3.81037C1.90547 4.16368 1.86172 4.5268 1.86172 4.89974C1.86172 5.27267 1.90061 5.60635 1.98811 5.94494C2.07074 6.28353 2.20199 6.58777 2.3867 6.86257C2.56655 7.13245 2.80474 7.35327 3.09639 7.51521C3.38804 7.67714 3.74289 7.76056 4.16579 7.76056C4.73451 7.76056 5.18171 7.58391 5.49767 7.2355C5.81849 6.88219 6.01293 6.42093 6.08584 5.8468H7.88923C7.84062 6.38167 7.7191 6.86257 7.5198 7.29439C7.32051 7.72621 7.06288 8.09424 6.7372 8.39357C6.41152 8.69781 6.03237 8.92844 5.59975 9.09038C5.16713 9.2474 4.6859 9.33082 4.16579 9.33082C3.51929 9.33082 2.93598 9.21796 2.41586 8.98733C1.89575 8.7616 1.46313 8.44755 1.10342 8.04517C0.748578 7.6477 0.476368 7.17662 0.286793 6.63684C0.0972179 6.10197 0 5.52293 0 4.89974C0 4.27654 0.092357 3.66806 0.286793 3.12338C0.476368 2.57869 0.748578 2.0978 1.10342 1.69542C1.45827 1.28813 1.89575 0.969171 2.41586 0.738539C2.93112 0.507906 3.51443 0.390137 4.16579 0.390137C4.63243 0.390137 5.07477 0.458836 5.48795 0.591327C5.90113 0.728725 6.27542 0.925008 6.6011 1.18508C6.92678 1.44516 7.19899 1.76412 7.41287 2.14687C7.62674 2.52962 7.76285 2.97126 7.81632 3.46196H6.01293C5.98376 3.24605 5.91085 3.04977 5.79905 2.86821Z\" fill=\"white\"/> <path d=\"M10.3148 7.65267C10.5676 7.89802 10.9322 8.0256 11.4037 8.0256C11.7439 8.0256 12.0356 7.94218 12.2835 7.77044C12.5265 7.59869 12.6772 7.41713 12.7356 7.22575H14.2181C13.9799 7.96672 13.6154 8.50159 13.1244 8.82055C12.6335 9.13951 12.0404 9.30144 11.3453 9.30144C10.8641 9.30144 10.4266 9.22293 10.0426 9.0659C9.65375 8.90888 9.32806 8.68806 9.05585 8.40345C8.78851 8.11884 8.57949 7.77534 8.43366 7.37296C8.28783 6.97549 8.21492 6.53385 8.21492 6.05787C8.21492 5.58188 8.28783 5.16478 8.43852 4.76731C8.58921 4.36983 8.80309 4.02143 9.08016 3.73191C9.35723 3.4424 9.68777 3.21176 10.0718 3.04492C10.4558 2.87808 10.8787 2.79466 11.3453 2.79466C11.8655 2.79466 12.3224 2.89771 12.7112 3.0989C13.1001 3.305 13.4161 3.57489 13.664 3.91838C13.9119 4.26188 14.0917 4.65444 14.2035 5.09117C14.3153 5.5279 14.3542 5.98917 14.3202 6.47006H9.89679C9.92109 7.01965 10.0572 7.42203 10.31 7.66739L10.3148 7.65267ZM12.2203 4.39437C12.0161 4.17355 11.7099 4.06069 11.3016 4.06069C11.0342 4.06069 10.8106 4.10485 10.6308 4.19809C10.4509 4.29132 10.31 4.40418 10.203 4.53667C10.0961 4.67407 10.0232 4.81638 9.97943 4.9685C9.93568 5.12062 9.91137 5.25311 9.90165 5.37578H12.6432C12.5654 4.94396 12.4245 4.61519 12.2203 4.39437Z\" fill=\"white\"/> <path d=\"M16.6826 2.94678V4.09504H16.7069C16.7847 3.90366 16.8916 3.72701 17.0277 3.56017C17.1638 3.39823 17.3145 3.25593 17.4895 3.14307C17.6645 3.0302 17.8492 2.93697 18.0485 2.87318C18.2478 2.80938 18.452 2.77994 18.6658 2.77994C18.7776 2.77994 18.8992 2.79957 19.0353 2.83883V4.4189C18.9575 4.40418 18.8603 4.38946 18.7485 4.37965C18.6367 4.36983 18.5297 4.36002 18.4277 4.36002C18.1214 4.36002 17.8589 4.414 17.6451 4.51705C17.4312 4.62009 17.261 4.7624 17.1298 4.94396C16.9986 5.12552 16.9062 5.33162 16.8527 5.57207C16.7993 5.81251 16.7701 6.07259 16.7701 6.35229V9.14441H15.0882V2.94678H16.6875H16.6826Z\" fill=\"white\"/> <path d=\"M23.5413 2.94678V4.08522H22.3066V7.15214C22.3066 7.44166 22.3553 7.63304 22.4476 7.72627C22.54 7.81951 22.7344 7.86858 23.0163 7.86858C23.1136 7.86858 23.2011 7.86858 23.2885 7.85876C23.376 7.84895 23.4587 7.83913 23.5365 7.82441V9.13951C23.3955 9.16404 23.2351 9.17876 23.0601 9.18858C22.8851 9.19839 22.715 9.2033 22.5497 9.2033C22.2872 9.2033 22.0393 9.18367 21.8108 9.14932C21.5775 9.11497 21.3734 9.04627 21.1935 8.93832C21.0136 8.83527 20.8775 8.68806 20.7706 8.49668C20.6685 8.30531 20.6151 8.05504 20.6151 7.74099V4.09013H19.5943V2.95169H20.6151V1.09191H22.2969V2.94678H23.5413Z\" fill=\"white\"/> <path d=\"M24.5184 1.9899V0.586481H26.2002V1.9899H24.5184ZM26.2051 2.94678V9.1346H24.5232V2.94678H26.2051Z\" fill=\"white\"/> <path d=\"M26.871 4.08522V2.94678H27.8772V2.46589C27.8772 1.9163 28.0474 1.46485 28.3876 1.11154C28.7279 0.758229 29.2432 0.586481 29.9285 0.586481C30.0792 0.586481 30.2299 0.591388 30.3806 0.606109C30.5313 0.615924 30.6771 0.630645 30.8181 0.635552V1.90648C30.6188 1.88195 30.4146 1.87213 30.2007 1.87213C29.9723 1.87213 29.807 1.92611 29.7098 2.03407C29.6126 2.14202 29.564 2.32358 29.564 2.57875V2.95169H30.7257V4.09013H29.564V9.14441H27.8772V4.08522H26.871Z\" fill=\"white\"/> <path d=\"M31.868 1.9899V0.586481H33.5499V1.9899H31.868ZM33.5499 2.94678V9.1346H31.868V2.94678H33.5499Z\" fill=\"white\"/> <path d=\"M36.2088 7.65267C36.4616 7.89802 36.8261 8.0256 37.2977 8.0256C37.6379 8.0256 37.9296 7.94218 38.1775 7.77044C38.4205 7.59869 38.5712 7.41713 38.6295 7.22575H40.1121C39.8739 7.96672 39.5094 8.50159 39.0233 8.82055C38.5323 9.13951 37.9393 9.30144 37.2442 9.30144C36.763 9.30144 36.3255 9.22293 35.9415 9.0659C35.5526 8.90888 35.2269 8.68806 34.9547 8.40345C34.6874 8.11884 34.4783 7.77534 34.3325 7.37296C34.1867 6.97549 34.1138 6.53385 34.1138 6.05787C34.1138 5.58188 34.1915 5.16478 34.3374 4.76731C34.4881 4.36983 34.7019 4.02143 34.979 3.73191C35.2561 3.4424 35.5866 3.21176 35.9706 3.04492C36.3546 2.87808 36.7775 2.79466 37.2442 2.79466C37.7643 2.79466 38.2212 2.89771 38.6101 3.0989C38.999 3.305 39.3149 3.57489 39.5628 3.91838C39.8107 4.26188 39.9906 4.65444 40.1024 5.09117C40.2142 5.5279 40.2531 5.98917 40.2239 6.47006H35.8005C35.8248 7.01965 35.9609 7.42203 36.2137 7.66739L36.2088 7.65267ZM38.1094 4.39437C37.9101 4.17355 37.599 4.06069 37.1907 4.06069C36.9234 4.06069 36.6998 4.10485 36.5199 4.19809C36.3401 4.29132 36.1991 4.40418 36.0922 4.53667C35.9852 4.67407 35.9123 4.81638 35.8686 4.9685C35.8248 5.12062 35.8005 5.25311 35.7908 5.37578H38.5275C38.4497 4.94396 38.3087 4.61519 38.1046 4.39437H38.1094Z\" fill=\"white\"/> <path d=\"M45.3278 8.34456C45.1286 8.67824 44.8709 8.9236 44.5501 9.07081C44.2293 9.21802 43.8696 9.29163 43.4661 9.29163C43.0092 9.29163 42.6057 9.2033 42.2558 9.02174C41.9058 8.84018 41.619 8.59973 41.3954 8.29059C41.1718 7.98144 41.0017 7.62813 40.885 7.23066C40.7683 6.83318 40.7149 6.41608 40.7149 5.98426C40.7149 5.55244 40.7732 5.16969 40.885 4.78203C40.9968 4.39437 41.1718 4.05578 41.3954 3.75645C41.619 3.46203 41.9058 3.22158 42.2412 3.04492C42.5814 2.86336 42.9752 2.77504 43.4272 2.77504C43.7918 2.77504 44.1369 2.85355 44.4626 3.01058C44.7931 3.1676 45.0508 3.39333 45.2404 3.69757H45.2647V0.586481H46.9465V9.1346H45.3473V8.34456H45.323H45.3278ZM45.2549 5.28746C45.2063 5.05192 45.1286 4.84582 45.0119 4.66426C44.8952 4.4827 44.7494 4.34039 44.5647 4.22753C44.3848 4.11467 44.1515 4.06069 43.8793 4.06069C43.6071 4.06069 43.3689 4.11467 43.1793 4.22753C42.9898 4.34039 42.8391 4.4876 42.7224 4.66917C42.6106 4.85073 42.528 5.06173 42.4745 5.29727C42.421 5.53281 42.3967 5.77816 42.3967 6.03333C42.3967 6.27378 42.4259 6.51423 42.4794 6.74976C42.5328 6.99021 42.6252 7.20122 42.7467 7.39259C42.8682 7.57906 43.0238 7.73118 43.2085 7.84895C43.3932 7.96672 43.6168 8.0207 43.8793 8.0207C44.1564 8.0207 44.3848 7.96672 44.5744 7.85386C44.7591 7.74099 44.9098 7.59378 45.0216 7.40241C45.1334 7.21594 45.2112 7.00003 45.2598 6.76449C45.3084 6.52404 45.3327 6.27869 45.3327 6.02352C45.3327 5.76835 45.3084 5.523 45.2598 5.28746H45.2549Z\" fill=\"white\"/> <path d=\"M4.23384 74.855C4.15121 74.2563 3.58248 73.8 2.93112 73.8C1.75478 73.8 1.31244 74.8109 1.31244 75.8659C1.31244 76.9209 1.75478 77.8778 2.93112 77.8778C3.73317 77.8778 4.18523 77.3233 4.28245 76.5283H5.556C5.4199 78.0299 4.39425 78.9917 2.93112 78.9917C1.08398 78.9917 0 77.5981 0 75.8659C0 74.1337 1.08398 72.6861 2.93112 72.6861C4.24356 72.6861 5.34212 73.4614 5.50253 74.855H4.23384Z\" fill=\"white\"/> <path d=\"M8.29269 74.3741C9.65374 74.3741 10.5287 75.2819 10.5287 76.6755C10.5287 78.0692 9.65374 78.9671 8.29269 78.9671C6.93164 78.9671 6.06154 78.0544 6.06154 76.6755C6.06154 75.2967 6.9365 74.3741 8.29269 74.3741ZM8.29269 78.0642C9.10446 78.0642 9.34264 77.3625 9.34264 76.6755C9.34264 75.9886 9.0996 75.277 8.29269 75.277C7.48578 75.277 7.2476 75.9787 7.2476 76.6755C7.2476 77.3724 7.49064 78.0642 8.29269 78.0642Z\" fill=\"white\"/> <path d=\"M11.2627 74.4821H12.3904V75.2917H12.4099C12.6237 74.7422 13.2119 74.3643 13.7904 74.3643C13.873 74.3643 13.9751 74.379 14.048 74.4036V75.5175C13.9362 75.4929 13.7612 75.4782 13.6202 75.4782C12.7501 75.4782 12.4488 76.1112 12.4488 76.8767V78.8396H11.2627V74.4821Z\" fill=\"white\"/> <path d=\"M15.6326 74.4919V75.0464H15.6472C15.9291 74.5851 16.3958 74.3741 16.9305 74.3741C18.2867 74.3741 18.8943 75.4782 18.8943 76.7148C18.8943 77.8778 18.2624 78.9671 16.9985 78.9671C16.4833 78.9671 15.9875 78.7414 15.7055 78.3096H15.6861V80.3853H14.5V74.4919H15.6326ZM17.7131 76.6854C17.7131 75.9935 17.436 75.277 16.6777 75.277C15.9194 75.277 15.6521 75.9787 15.6521 76.6854C15.6521 77.392 15.9194 78.0692 16.6875 78.0692C17.4555 78.0692 17.7131 77.3969 17.7131 76.6854Z\" fill=\"white\"/> <path d=\"M21.4997 74.3741C22.8608 74.3741 23.7406 75.2819 23.7406 76.6755C23.7406 78.0692 22.8608 78.9671 21.4997 78.9671C20.1387 78.9671 19.2735 78.0544 19.2735 76.6755C19.2735 75.2967 20.1484 74.3741 21.4997 74.3741ZM21.4997 78.0642C22.3115 78.0642 22.5546 77.3625 22.5546 76.6755C22.5546 75.9886 22.3115 75.277 21.4997 75.277C20.688 75.277 20.4547 75.9787 20.4547 76.6755C20.4547 77.3724 20.6977 78.0642 21.4997 78.0642Z\" fill=\"white\"/> <path d=\"M25.5975 74.4821V75.2917H25.6169C25.8308 74.7422 26.419 74.3643 26.9926 74.3643C27.0752 74.3643 27.1773 74.379 27.2502 74.4036V75.5175C27.1432 75.4929 26.9683 75.4782 26.8224 75.4782C25.9523 75.4782 25.6509 76.1112 25.6509 76.8767V78.8396H24.4649V74.4821H25.5975Z\" fill=\"white\"/> <path d=\"M27.6002 75.8315C27.6682 74.7078 28.6598 74.3741 29.632 74.3741C30.4924 74.3741 31.5278 74.5655 31.5278 75.6107V77.8778C31.5278 78.2753 31.5667 78.6678 31.6785 78.8494H30.473C30.4341 78.712 30.3952 78.5697 30.3903 78.4274C30.016 78.8248 29.4667 78.9671 28.9369 78.9671C28.1203 78.9671 27.4689 78.555 27.4689 77.6619C27.4689 76.6755 28.2029 76.44 28.9369 76.337C29.666 76.229 30.3417 76.2535 30.3417 75.7628C30.3417 75.2721 29.9869 75.174 29.5737 75.174C29.1216 75.174 28.83 75.3605 28.7862 75.8315H27.6002ZM30.3417 76.7148C30.1376 76.8915 29.7244 76.9013 29.3549 76.97C28.9855 77.0436 28.655 77.1712 28.655 77.6128C28.655 78.0544 28.9952 78.1673 29.3841 78.1673C30.3077 78.1673 30.3466 77.4263 30.3466 77.1663V76.7197L30.3417 76.7148Z\" fill=\"white\"/> <path d=\"M33.9242 74.4919H34.7943V75.2917H33.9242V77.4509C33.9242 77.8581 34.0263 77.9563 34.4249 77.9563C34.5513 77.9563 34.6679 77.9465 34.7943 77.9219V78.8592C34.595 78.8935 34.3325 78.9034 34.0992 78.9034C33.3749 78.9034 32.7381 78.7316 32.7381 77.868V75.2967H32.0187V74.4968H32.7381V73.1915H33.9242V74.4968V74.4919Z\" fill=\"white\"/> <path d=\"M36.8699 73.8196H35.6838V72.8333H36.8699V73.8196ZM35.6838 74.4919H36.8699V78.8494H35.6838V74.4919Z\" fill=\"white\"/> <path d=\"M39.8982 74.3741C41.2593 74.3741 42.1391 75.2819 42.1391 76.6755C42.1391 78.0692 41.2593 78.9671 39.8982 78.9671C38.5372 78.9671 37.6719 78.0544 37.6719 76.6755C37.6719 75.2967 38.5469 74.3741 39.8982 74.3741ZM39.8982 78.0642C40.71 78.0642 40.953 77.3625 40.953 76.6755C40.953 75.9886 40.71 75.277 39.8982 75.277C39.0865 75.277 38.8531 75.9787 38.8531 76.6755C38.8531 77.3724 39.0962 78.0642 39.8982 78.0642Z\" fill=\"white\"/> <path d=\"M42.9023 74.4919H44.03V75.1004H44.0543C44.3557 74.6097 44.8709 74.3741 45.3765 74.3741C46.6354 74.3741 46.9563 75.0906 46.9563 76.1701V78.8494H45.7702V76.386C45.7702 75.6696 45.5612 75.3163 45.0119 75.3163C44.3654 75.3163 44.0932 75.6794 44.0932 76.5676V78.8543H42.9071V74.4968L42.9023 74.4919Z\" fill=\"white\"/> </svg>',description:\"\",height:\"100%\",id:\"o6wb9E8UI\",layoutId:\"o6wb9E8UI\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://uk.trustpilot.com/review/ecologi.com?utm_medium=trustbox&utm_source=Mini\",motionChild:true,nodeId:\"n0d_j7RfK\",openInNewTab:true,scopeId:\"G4S0QMEsx\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-icpq6o framer-1bw7k92\",\"data-framer-name\":\"Trust pilot\",layoutDependency:layoutDependency,layoutId:\"n0d_j7RfK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14r3037\",\"data-framer-name\":\"Layer_1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DZU2iAsXU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 48\"><g transform=\"translate(0 0.388)\"><path d=\"M 0 47 L 0 0 L 128 0 L 128 47 Z\" fill=\"transparent\"></path><path d=\"M 19.911 6.465 L 27.444 6.465 L 27.444 7.87 L 24.486 7.87 L 24.486 15.759 L 22.856 15.759 L 22.856 7.87 L 19.911 7.87 Z M 27.117 9.03 L 28.51 9.03 L 28.51 10.326 L 28.535 10.326 C 28.58 10.145 28.664 9.965 28.792 9.797 C 28.914 9.629 29.068 9.462 29.247 9.327 C 29.427 9.185 29.62 9.069 29.838 8.978 C 30.056 8.895 30.281 8.85 30.499 8.85 C 30.672 8.85 30.794 8.856 30.858 8.862 C 30.922 8.869 30.986 8.882 31.063 8.888 L 31.063 10.319 C 30.961 10.3 30.852 10.287 30.743 10.274 C 30.633 10.261 30.524 10.255 30.422 10.255 C 30.171 10.255 29.934 10.306 29.709 10.403 C 29.485 10.5 29.299 10.654 29.132 10.841 C 28.965 11.041 28.837 11.273 28.741 11.563 C 28.644 11.853 28.593 12.182 28.593 12.556 L 28.593 15.759 L 27.111 15.759 L 27.111 9.037 L 27.117 9.037 Z M 37.884 15.759 L 36.428 15.759 L 36.428 14.818 L 36.402 14.818 C 36.216 15.16 35.946 15.43 35.587 15.63 C 35.228 15.83 34.856 15.94 34.483 15.94 C 33.598 15.94 32.956 15.72 32.558 15.282 C 32.161 14.844 31.968 14.18 31.968 13.297 L 31.968 9.03 L 33.45 9.03 L 33.45 13.155 C 33.45 13.748 33.559 14.167 33.79 14.406 C 34.015 14.65 34.336 14.773 34.74 14.773 C 35.055 14.773 35.311 14.728 35.523 14.631 C 35.735 14.534 35.902 14.406 36.03 14.244 C 36.158 14.09 36.254 13.89 36.312 13.664 C 36.37 13.439 36.396 13.2 36.396 12.936 L 36.396 9.037 L 37.878 9.037 L 37.878 15.759 Z M 40.412 13.6 C 40.457 14.032 40.624 14.335 40.906 14.509 C 41.195 14.676 41.535 14.773 41.94 14.773 C 42.074 14.773 42.235 14.76 42.414 14.741 C 42.594 14.721 42.761 14.676 42.915 14.618 C 43.075 14.56 43.197 14.47 43.3 14.347 C 43.396 14.231 43.447 14.077 43.435 13.89 C 43.422 13.703 43.358 13.542 43.223 13.426 C 43.095 13.303 42.928 13.207 42.722 13.129 C 42.517 13.058 42.286 12.994 42.029 12.936 C 41.773 12.878 41.503 12.826 41.234 12.768 C 40.958 12.71 40.688 12.633 40.432 12.543 C 40.175 12.453 39.944 12.337 39.745 12.188 C 39.54 12.046 39.379 11.853 39.257 11.621 C 39.135 11.389 39.071 11.112 39.071 10.77 C 39.071 10.403 39.161 10.1 39.341 9.855 C 39.52 9.604 39.745 9.41 40.015 9.256 C 40.29 9.107 40.592 8.998 40.926 8.933 C 41.259 8.875 41.58 8.843 41.882 8.843 C 42.228 8.843 42.562 8.882 42.883 8.953 C 43.204 9.024 43.486 9.146 43.743 9.314 C 43.999 9.475 44.211 9.694 44.378 9.958 C 44.551 10.222 44.654 10.545 44.699 10.919 L 43.152 10.919 C 43.082 10.564 42.921 10.319 42.665 10.203 C 42.408 10.081 42.113 10.023 41.786 10.023 C 41.683 10.023 41.555 10.029 41.413 10.048 C 41.266 10.068 41.137 10.1 41.009 10.145 C 40.887 10.19 40.778 10.261 40.688 10.358 C 40.605 10.448 40.56 10.57 40.56 10.719 C 40.56 10.899 40.624 11.047 40.752 11.157 C 40.874 11.267 41.041 11.363 41.247 11.441 C 41.452 11.512 41.683 11.576 41.94 11.634 C 42.196 11.692 42.472 11.744 42.748 11.802 C 43.018 11.86 43.281 11.937 43.544 12.027 C 43.807 12.117 44.038 12.233 44.237 12.382 C 44.436 12.53 44.602 12.717 44.731 12.936 C 44.859 13.155 44.923 13.439 44.923 13.767 C 44.923 14.167 44.833 14.502 44.647 14.786 C 44.461 15.063 44.23 15.289 43.935 15.463 C 43.646 15.63 43.319 15.765 42.966 15.843 C 42.613 15.92 42.254 15.959 41.907 15.959 C 41.478 15.959 41.086 15.914 40.727 15.817 C 40.367 15.72 40.053 15.572 39.79 15.385 C 39.527 15.185 39.315 14.947 39.168 14.657 C 39.014 14.367 38.937 14.019 38.924 13.619 L 40.419 13.619 L 40.419 13.606 Z M 45.315 9.03 L 46.438 9.03 L 46.438 7.013 L 47.92 7.013 L 47.92 9.03 L 49.261 9.03 L 49.261 10.139 L 47.92 10.139 L 47.92 13.735 C 47.92 13.89 47.926 14.025 47.939 14.141 C 47.952 14.251 47.984 14.354 48.029 14.431 C 48.074 14.509 48.145 14.567 48.247 14.605 C 48.344 14.644 48.472 14.663 48.639 14.663 C 48.741 14.663 48.85 14.663 48.953 14.657 C 49.056 14.65 49.165 14.638 49.268 14.612 L 49.268 15.759 C 49.101 15.778 48.94 15.791 48.786 15.811 C 48.626 15.83 48.472 15.836 48.305 15.836 C 47.914 15.836 47.593 15.798 47.362 15.727 C 47.124 15.656 46.932 15.546 46.804 15.398 C 46.669 15.256 46.579 15.076 46.528 14.863 C 46.483 14.644 46.451 14.399 46.444 14.122 L 46.444 10.152 L 45.321 10.152 L 45.321 9.03 L 45.308 9.03 Z M 50.307 9.03 L 51.712 9.03 L 51.712 9.939 L 51.738 9.939 C 51.95 9.546 52.238 9.269 52.611 9.101 C 52.983 8.933 53.387 8.843 53.823 8.843 C 54.356 8.843 54.818 8.933 55.209 9.127 C 55.601 9.307 55.934 9.565 56.191 9.894 C 56.454 10.222 56.647 10.603 56.775 11.035 C 56.903 11.466 56.974 11.93 56.974 12.427 C 56.974 12.878 56.916 13.316 56.794 13.735 C 56.679 14.161 56.499 14.534 56.262 14.863 C 56.024 15.192 55.723 15.45 55.357 15.643 C 54.991 15.836 54.561 15.94 54.061 15.94 C 53.843 15.94 53.624 15.92 53.413 15.882 C 53.201 15.843 52.983 15.778 52.79 15.688 C 52.591 15.604 52.405 15.488 52.238 15.353 C 52.065 15.218 51.93 15.056 51.809 14.882 L 51.783 14.882 L 51.783 18.241 L 50.301 18.241 L 50.301 9.024 Z M 55.498 12.401 C 55.498 12.098 55.46 11.802 55.383 11.518 C 55.306 11.234 55.184 10.983 55.03 10.757 C 54.876 10.532 54.677 10.358 54.446 10.229 C 54.208 10.1 53.939 10.023 53.637 10.023 C 53.015 10.023 52.54 10.242 52.226 10.674 C 51.911 11.105 51.751 11.686 51.751 12.407 C 51.751 12.749 51.789 13.065 51.873 13.355 C 51.956 13.645 52.078 13.89 52.245 14.103 C 52.412 14.315 52.604 14.476 52.835 14.592 C 53.066 14.715 53.336 14.773 53.637 14.773 C 53.977 14.773 54.26 14.702 54.497 14.56 C 54.734 14.418 54.927 14.238 55.075 14.025 C 55.229 13.8 55.338 13.555 55.402 13.271 C 55.46 12.988 55.492 12.697 55.492 12.407 Z M 58.116 6.465 L 59.598 6.465 L 59.598 7.87 L 58.116 7.87 Z M 58.116 9.03 L 59.598 9.03 L 59.598 15.759 L 58.116 15.759 Z M 60.927 6.465 L 62.409 6.465 L 62.409 15.759 L 60.927 15.759 Z M 66.958 15.946 C 66.419 15.946 65.938 15.856 65.521 15.675 C 65.104 15.495 64.745 15.25 64.449 14.94 C 64.161 14.625 63.936 14.251 63.788 13.819 C 63.634 13.387 63.557 12.91 63.557 12.388 C 63.557 11.866 63.634 11.402 63.788 10.97 C 63.942 10.538 64.161 10.164 64.449 9.849 C 64.738 9.533 65.097 9.294 65.521 9.114 C 65.944 8.933 66.419 8.843 66.958 8.843 C 67.497 8.843 67.979 8.933 68.396 9.114 C 68.813 9.288 69.172 9.539 69.467 9.849 C 69.756 10.164 69.981 10.538 70.128 10.97 C 70.282 11.402 70.359 11.872 70.359 12.388 C 70.359 12.904 70.282 13.387 70.128 13.819 C 69.974 14.251 69.756 14.625 69.467 14.94 C 69.178 15.256 68.819 15.495 68.396 15.675 C 67.972 15.856 67.497 15.946 66.958 15.946 Z M 66.958 14.766 C 67.285 14.766 67.574 14.696 67.818 14.554 C 68.062 14.412 68.261 14.231 68.415 14.012 C 68.569 13.793 68.684 13.535 68.761 13.252 C 68.832 12.968 68.87 12.678 68.87 12.388 C 68.87 12.098 68.832 11.814 68.761 11.531 C 68.691 11.241 68.569 10.996 68.415 10.77 C 68.254 10.545 68.062 10.371 67.818 10.235 C 67.574 10.1 67.285 10.023 66.958 10.023 C 66.631 10.023 66.342 10.094 66.098 10.235 C 65.855 10.377 65.656 10.558 65.502 10.77 C 65.341 10.996 65.232 11.241 65.155 11.531 C 65.085 11.821 65.046 12.104 65.046 12.388 C 65.046 12.672 65.085 12.975 65.155 13.252 C 65.226 13.535 65.348 13.787 65.502 14.012 C 65.662 14.238 65.855 14.418 66.098 14.554 C 66.342 14.696 66.631 14.766 66.958 14.766 Z M 70.795 9.03 L 71.918 9.03 L 71.918 7.013 L 73.401 7.013 L 73.401 9.03 L 74.742 9.03 L 74.742 10.139 L 73.401 10.139 L 73.401 13.735 C 73.401 13.89 73.407 14.025 73.42 14.141 C 73.433 14.251 73.465 14.354 73.51 14.431 C 73.555 14.509 73.625 14.567 73.728 14.605 C 73.824 14.644 73.952 14.663 74.119 14.663 C 74.222 14.663 74.331 14.663 74.434 14.657 C 74.536 14.65 74.645 14.638 74.748 14.612 L 74.748 15.759 C 74.581 15.778 74.421 15.791 74.267 15.811 C 74.106 15.83 73.952 15.836 73.786 15.836 C 73.394 15.836 73.073 15.798 72.842 15.727 C 72.605 15.656 72.412 15.546 72.284 15.398 C 72.149 15.256 72.059 15.076 72.008 14.863 C 71.963 14.644 71.931 14.399 71.925 14.122 L 71.925 10.152 L 70.802 10.152 L 70.802 9.03 L 70.789 9.03 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 18.178 6.465 L 11.377 6.465 L 9.272 0 L 7.167 6.465 L 0.359 6.465 L 5.871 10.461 L 3.767 16.919 L 9.279 12.923 L 14.778 16.919 L 12.679 10.461 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 13.148 11.924 L 12.673 10.461 L 9.272 12.93 Z\" fill=\"rgb(0,81,40)\"></path><path d=\"M 0 47 L 23.607 47 L 23.607 23.307 L 0 23.307 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 20.123 33.387 L 6.731 43.146 L 8.682 37.113 L 3.568 33.387 L 9.888 33.387 L 11.839 27.354 L 13.79 33.387 L 20.11 33.387 Z M 11.852 39.42 L 15.509 38.647 L 16.966 43.146 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 26.09 47 L 49.697 47 L 49.697 23.307 L 26.09 23.307 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 38.173 39.33 L 41.311 38.647 L 42.761 43.249 L 37.846 39.568 L 32.738 43.249 L 34.721 37.196 L 29.53 33.452 L 35.947 33.452 L 37.929 27.399 L 39.912 33.452 L 46.329 33.452 L 38.179 39.323 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 52.193 47 L 75.8 47 L 75.8 23.307 L 52.193 23.307 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 72.323 33.387 L 58.931 43.146 L 60.882 37.113 L 55.768 33.387 L 62.088 33.387 L 64.039 27.354 L 65.989 33.387 L 72.31 33.387 Z M 64.045 39.42 L 67.703 38.647 L 69.159 43.146 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 78.303 47 L 101.91 47 L 101.91 23.307 L 78.303 23.307 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 98.426 33.387 L 85.034 43.146 L 86.985 37.113 L 81.871 33.387 L 88.191 33.387 L 90.142 27.354 L 92.092 33.387 L 98.413 33.387 Z M 90.148 39.42 L 93.806 38.647 L 95.262 43.146 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 104.387 47 L 127.994 47 L 127.994 23.307 L 104.387 23.307 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 124.516 33.387 L 111.124 43.146 L 113.075 37.113 L 107.961 33.387 L 114.281 33.387 L 116.232 27.354 L 118.183 33.387 L 124.503 33.387 Z M 116.238 39.42 L 119.896 38.647 L 121.353 43.146 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11977822687,withExternalLayout:true,...addPropertyOverrides({Uw3ETbH3T:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 30\"><g transform=\"translate(0 0.242)\"><path d=\"M 0 29.357 L 0 0 L 79.797 0 L 79.797 29.357 Z\" fill=\"transparent\"></path><path d=\"M 12.413 4.038 L 17.109 4.038 L 17.109 4.916 L 15.265 4.916 L 15.265 9.843 L 14.249 9.843 L 14.249 4.916 L 12.413 4.916 Z M 16.905 5.64 L 17.773 5.64 L 17.773 6.45 L 17.789 6.45 C 17.817 6.337 17.869 6.224 17.949 6.119 C 18.025 6.015 18.121 5.91 18.233 5.826 C 18.345 5.737 18.465 5.664 18.601 5.608 C 18.737 5.556 18.877 5.528 19.013 5.528 C 19.121 5.528 19.197 5.532 19.237 5.536 C 19.277 5.54 19.317 5.548 19.365 5.552 L 19.365 6.446 C 19.301 6.433 19.233 6.425 19.165 6.417 C 19.097 6.409 19.029 6.405 18.965 6.405 C 18.809 6.405 18.661 6.437 18.521 6.498 C 18.381 6.558 18.265 6.655 18.161 6.772 C 18.057 6.896 17.977 7.041 17.917 7.223 C 17.857 7.404 17.825 7.609 17.825 7.842 L 17.825 9.843 L 16.901 9.843 L 16.901 5.644 L 16.905 5.644 Z M 23.618 9.843 L 22.71 9.843 L 22.71 9.256 L 22.694 9.256 C 22.578 9.469 22.41 9.638 22.186 9.763 C 21.962 9.888 21.73 9.956 21.497 9.956 C 20.945 9.956 20.545 9.819 20.297 9.545 C 20.049 9.272 19.929 8.857 19.929 8.305 L 19.929 5.64 L 20.853 5.64 L 20.853 8.217 C 20.853 8.587 20.921 8.849 21.065 8.998 C 21.205 9.151 21.405 9.227 21.658 9.227 C 21.854 9.227 22.014 9.199 22.146 9.139 C 22.278 9.078 22.382 8.998 22.462 8.897 C 22.542 8.801 22.602 8.676 22.638 8.535 C 22.674 8.394 22.69 8.245 22.69 8.08 L 22.69 5.644 L 23.614 5.644 L 23.614 9.843 Z M 25.194 8.495 C 25.222 8.764 25.326 8.954 25.502 9.062 C 25.682 9.167 25.894 9.227 26.146 9.227 C 26.23 9.227 26.33 9.219 26.442 9.207 C 26.554 9.195 26.658 9.167 26.754 9.131 C 26.854 9.095 26.93 9.038 26.994 8.962 C 27.054 8.889 27.086 8.793 27.078 8.676 C 27.07 8.559 27.03 8.458 26.946 8.386 C 26.866 8.31 26.762 8.249 26.634 8.201 C 26.506 8.157 26.362 8.116 26.202 8.08 C 26.042 8.044 25.874 8.012 25.706 7.975 C 25.534 7.939 25.366 7.891 25.206 7.834 C 25.046 7.778 24.902 7.706 24.778 7.613 C 24.65 7.524 24.55 7.404 24.474 7.259 C 24.398 7.114 24.358 6.941 24.358 6.727 C 24.358 6.498 24.414 6.309 24.526 6.156 C 24.638 5.999 24.778 5.878 24.946 5.781 C 25.118 5.689 25.306 5.62 25.514 5.58 C 25.722 5.544 25.922 5.524 26.11 5.524 C 26.326 5.524 26.534 5.548 26.734 5.592 C 26.934 5.636 27.11 5.713 27.27 5.817 C 27.43 5.918 27.562 6.055 27.666 6.22 C 27.774 6.385 27.838 6.586 27.866 6.82 L 26.902 6.82 C 26.858 6.599 26.758 6.446 26.598 6.373 C 26.438 6.297 26.254 6.26 26.05 6.26 C 25.986 6.26 25.906 6.264 25.818 6.276 C 25.726 6.289 25.646 6.309 25.566 6.337 C 25.49 6.365 25.422 6.409 25.366 6.47 C 25.314 6.526 25.286 6.603 25.286 6.695 C 25.286 6.808 25.326 6.9 25.406 6.969 C 25.482 7.037 25.586 7.098 25.714 7.146 C 25.842 7.19 25.986 7.231 26.146 7.267 C 26.306 7.303 26.478 7.335 26.65 7.371 C 26.818 7.408 26.982 7.456 27.146 7.512 C 27.31 7.569 27.454 7.641 27.578 7.734 C 27.702 7.826 27.806 7.943 27.886 8.08 C 27.966 8.217 28.006 8.394 28.006 8.599 C 28.006 8.849 27.95 9.058 27.834 9.235 C 27.718 9.409 27.574 9.55 27.39 9.658 C 27.21 9.763 27.006 9.847 26.786 9.896 C 26.566 9.944 26.342 9.968 26.126 9.968 C 25.858 9.968 25.614 9.94 25.39 9.88 C 25.166 9.819 24.97 9.727 24.806 9.61 C 24.642 9.485 24.51 9.336 24.418 9.155 C 24.322 8.974 24.274 8.756 24.266 8.507 L 25.198 8.507 L 25.198 8.499 Z M 28.25 5.64 L 28.95 5.64 L 28.95 4.38 L 29.874 4.38 L 29.874 5.64 L 30.71 5.64 L 30.71 6.333 L 29.874 6.333 L 29.874 8.579 C 29.874 8.676 29.878 8.76 29.886 8.833 C 29.894 8.901 29.914 8.966 29.942 9.014 C 29.97 9.062 30.014 9.099 30.078 9.123 C 30.138 9.147 30.218 9.159 30.322 9.159 C 30.386 9.159 30.454 9.159 30.518 9.155 C 30.582 9.151 30.65 9.143 30.714 9.127 L 30.714 9.843 C 30.61 9.855 30.51 9.864 30.414 9.876 C 30.314 9.888 30.218 9.892 30.114 9.892 C 29.87 9.892 29.67 9.868 29.526 9.823 C 29.378 9.779 29.258 9.711 29.178 9.618 C 29.094 9.529 29.038 9.417 29.006 9.284 C 28.978 9.147 28.958 8.994 28.954 8.821 L 28.954 6.341 L 28.254 6.341 L 28.254 5.64 L 28.246 5.64 Z M 31.362 5.64 L 32.238 5.64 L 32.238 6.208 L 32.254 6.208 C 32.386 5.962 32.566 5.789 32.798 5.685 C 33.03 5.58 33.282 5.524 33.554 5.524 C 33.886 5.524 34.174 5.58 34.418 5.701 C 34.662 5.813 34.87 5.974 35.03 6.18 C 35.194 6.385 35.314 6.623 35.394 6.892 C 35.474 7.162 35.518 7.452 35.518 7.762 C 35.518 8.044 35.482 8.318 35.406 8.579 C 35.334 8.845 35.222 9.078 35.074 9.284 C 34.926 9.489 34.738 9.65 34.51 9.771 C 34.282 9.892 34.014 9.956 33.702 9.956 C 33.566 9.956 33.43 9.944 33.298 9.92 C 33.166 9.896 33.03 9.855 32.91 9.799 C 32.786 9.747 32.67 9.674 32.566 9.59 C 32.458 9.505 32.374 9.405 32.298 9.296 L 32.282 9.296 L 32.282 11.393 L 31.358 11.393 L 31.358 5.636 Z M 34.598 7.746 C 34.598 7.557 34.574 7.371 34.526 7.194 C 34.478 7.017 34.402 6.86 34.306 6.719 C 34.21 6.578 34.086 6.47 33.942 6.389 C 33.794 6.309 33.626 6.26 33.438 6.26 C 33.05 6.26 32.754 6.397 32.558 6.667 C 32.362 6.937 32.262 7.299 32.262 7.75 C 32.262 7.963 32.286 8.161 32.338 8.342 C 32.39 8.523 32.466 8.676 32.57 8.809 C 32.674 8.942 32.794 9.042 32.938 9.115 C 33.082 9.191 33.25 9.227 33.438 9.227 C 33.65 9.227 33.826 9.183 33.974 9.095 C 34.122 9.006 34.242 8.893 34.334 8.76 C 34.43 8.62 34.498 8.467 34.538 8.289 C 34.574 8.112 34.594 7.931 34.594 7.75 Z M 36.23 4.038 L 37.154 4.038 L 37.154 4.916 L 36.23 4.916 Z M 36.23 5.64 L 37.154 5.64 L 37.154 9.843 L 36.23 9.843 Z M 37.983 4.038 L 38.907 4.038 L 38.907 9.843 L 37.983 9.843 Z M 41.743 9.96 C 41.407 9.96 41.107 9.904 40.847 9.791 C 40.587 9.678 40.363 9.525 40.179 9.332 C 39.999 9.135 39.859 8.901 39.767 8.632 C 39.671 8.362 39.623 8.064 39.623 7.738 C 39.623 7.412 39.671 7.122 39.767 6.852 C 39.863 6.582 39.999 6.349 40.179 6.152 C 40.359 5.954 40.583 5.805 40.847 5.693 C 41.111 5.58 41.407 5.524 41.743 5.524 C 42.079 5.524 42.379 5.58 42.639 5.693 C 42.899 5.801 43.123 5.958 43.307 6.152 C 43.487 6.349 43.627 6.582 43.719 6.852 C 43.815 7.122 43.863 7.416 43.863 7.738 C 43.863 8.06 43.815 8.362 43.719 8.632 C 43.623 8.901 43.487 9.135 43.307 9.332 C 43.127 9.529 42.903 9.678 42.639 9.791 C 42.375 9.904 42.079 9.96 41.743 9.96 Z M 41.743 9.223 C 41.947 9.223 42.127 9.179 42.279 9.091 C 42.431 9.002 42.555 8.889 42.651 8.752 C 42.747 8.615 42.819 8.454 42.867 8.277 C 42.911 8.1 42.935 7.919 42.935 7.738 C 42.935 7.557 42.911 7.38 42.867 7.202 C 42.823 7.021 42.747 6.868 42.651 6.727 C 42.551 6.586 42.431 6.478 42.279 6.393 C 42.127 6.309 41.947 6.26 41.743 6.26 C 41.539 6.26 41.359 6.305 41.207 6.393 C 41.055 6.482 40.931 6.594 40.835 6.727 C 40.735 6.868 40.667 7.021 40.619 7.202 C 40.575 7.384 40.551 7.561 40.551 7.738 C 40.551 7.915 40.575 8.104 40.619 8.277 C 40.663 8.454 40.739 8.611 40.835 8.752 C 40.935 8.893 41.055 9.006 41.207 9.091 C 41.359 9.179 41.539 9.223 41.743 9.223 Z M 44.135 5.64 L 44.835 5.64 L 44.835 4.38 L 45.759 4.38 L 45.759 5.64 L 46.595 5.64 L 46.595 6.333 L 45.759 6.333 L 45.759 8.579 C 45.759 8.676 45.763 8.76 45.771 8.833 C 45.779 8.901 45.799 8.966 45.827 9.014 C 45.855 9.062 45.899 9.099 45.963 9.123 C 46.023 9.147 46.103 9.159 46.207 9.159 C 46.271 9.159 46.339 9.159 46.403 9.155 C 46.467 9.151 46.535 9.143 46.599 9.127 L 46.599 9.843 C 46.495 9.855 46.395 9.864 46.299 9.876 C 46.199 9.888 46.103 9.892 45.999 9.892 C 45.755 9.892 45.555 9.868 45.411 9.823 C 45.263 9.779 45.143 9.711 45.063 9.618 C 44.979 9.529 44.923 9.417 44.891 9.284 C 44.863 9.147 44.843 8.994 44.839 8.821 L 44.839 6.341 L 44.139 6.341 L 44.139 5.64 L 44.131 5.64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.333 4.038 L 7.092 4.038 L 5.78 0 L 4.468 4.038 L 0.224 4.038 L 3.66 6.534 L 2.348 10.568 L 5.784 8.072 L 9.213 10.568 L 7.905 6.534 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 8.196 7.448 L 7.9 6.534 L 5.78 8.076 Z\" fill=\"rgb(0,81,40)\"></path><path d=\"M 0 29.357 L 14.717 29.357 L 14.717 14.558 L 0 14.558 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 12.545 20.854 L 4.196 26.95 L 5.412 23.181 L 2.224 20.854 L 6.165 20.854 L 7.381 17.086 L 8.597 20.854 L 12.537 20.854 Z M 7.389 24.623 L 9.669 24.139 L 10.577 26.95 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 16.265 29.357 L 30.982 29.357 L 30.982 14.558 L 16.265 14.558 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 23.798 24.566 L 25.754 24.139 L 26.658 27.014 L 23.594 24.715 L 20.409 27.014 L 21.646 23.234 L 18.409 20.894 L 22.41 20.894 L 23.646 17.114 L 24.882 20.894 L 28.882 20.894 L 23.802 24.562 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 32.538 29.357 L 47.255 29.357 L 47.255 14.558 L 32.538 14.558 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 45.087 20.854 L 36.738 26.95 L 37.955 23.181 L 34.766 20.854 L 38.707 20.854 L 39.923 17.086 L 41.139 20.854 L 45.079 20.854 Z M 39.927 24.623 L 42.207 24.139 L 43.115 26.95 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 48.815 29.357 L 63.532 29.357 L 63.532 14.558 L 48.815 14.558 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 61.36 20.854 L 53.011 26.95 L 54.228 23.181 L 51.039 20.854 L 54.98 20.854 L 56.196 17.086 L 57.412 20.854 L 61.352 20.854 Z M 56.2 24.623 L 58.48 24.139 L 59.388 26.95 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 65.076 29.357 L 79.793 29.357 L 79.793 14.558 L 65.076 14.558 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 77.625 20.854 L 69.276 26.95 L 70.493 23.181 L 67.305 20.854 L 71.245 20.854 L 72.461 17.086 L 73.677 20.854 L 77.617 20.854 Z M 72.465 24.623 L 74.745 24.139 L 75.653 26.95 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:12198169945},Y6bosTp_P:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 91.625 34.37\"><g transform=\"translate(0 0.273)\"><path d=\"M 0 33.659 L 0 0.005 L 91.625 0.005 L 91.625 33.659 Z\" fill=\"transparent\"></path><path d=\"M 14.253 4.634 L 19.645 4.634 L 19.645 5.64 L 17.528 5.64 L 17.528 11.289 L 16.361 11.289 L 16.361 5.64 L 14.253 5.64 Z M 19.411 6.471 L 20.408 6.471 L 20.408 7.398 L 20.426 7.398 C 20.458 7.269 20.518 7.14 20.61 7.02 C 20.697 6.9 20.807 6.78 20.936 6.683 C 21.064 6.582 21.202 6.498 21.358 6.434 C 21.515 6.374 21.675 6.342 21.832 6.342 C 21.955 6.342 22.043 6.346 22.089 6.351 C 22.135 6.355 22.181 6.365 22.236 6.369 L 22.236 7.394 C 22.162 7.38 22.084 7.371 22.006 7.361 C 21.928 7.352 21.85 7.348 21.776 7.348 C 21.597 7.348 21.427 7.385 21.267 7.454 C 21.106 7.523 20.973 7.634 20.853 7.768 C 20.734 7.911 20.642 8.077 20.573 8.285 C 20.504 8.492 20.467 8.728 20.467 8.995 L 20.467 11.289 L 19.406 11.289 L 19.406 6.475 L 19.411 6.475 Z M 27.118 11.289 L 26.076 11.289 L 26.076 10.615 L 26.057 10.615 C 25.924 10.86 25.731 11.054 25.474 11.197 C 25.217 11.34 24.95 11.418 24.684 11.418 C 24.05 11.418 23.591 11.261 23.306 10.948 C 23.021 10.634 22.883 10.158 22.883 9.526 L 22.883 6.471 L 23.944 6.471 L 23.944 9.424 C 23.944 9.849 24.022 10.149 24.188 10.32 C 24.349 10.495 24.578 10.583 24.868 10.583 C 25.093 10.583 25.276 10.551 25.428 10.481 C 25.58 10.412 25.699 10.32 25.791 10.204 C 25.883 10.094 25.952 9.951 25.993 9.789 C 26.034 9.628 26.053 9.457 26.053 9.268 L 26.053 6.475 L 27.114 6.475 L 27.114 11.289 Z M 28.928 9.743 C 28.96 10.052 29.08 10.269 29.282 10.394 C 29.488 10.514 29.732 10.583 30.021 10.583 C 30.118 10.583 30.232 10.574 30.361 10.56 C 30.49 10.546 30.609 10.514 30.719 10.472 C 30.834 10.431 30.921 10.366 30.995 10.278 C 31.064 10.195 31.1 10.084 31.091 9.951 C 31.082 9.817 31.036 9.701 30.94 9.618 C 30.848 9.531 30.728 9.461 30.581 9.406 C 30.434 9.355 30.269 9.309 30.085 9.268 C 29.902 9.226 29.709 9.189 29.516 9.148 C 29.318 9.106 29.125 9.051 28.942 8.986 C 28.758 8.921 28.593 8.838 28.45 8.732 C 28.303 8.631 28.188 8.492 28.101 8.326 C 28.014 8.16 27.968 7.961 27.968 7.717 C 27.968 7.454 28.032 7.237 28.161 7.062 C 28.289 6.882 28.45 6.743 28.643 6.632 C 28.841 6.526 29.057 6.448 29.295 6.402 C 29.534 6.36 29.764 6.337 29.98 6.337 C 30.228 6.337 30.467 6.365 30.696 6.415 C 30.926 6.466 31.128 6.554 31.312 6.674 C 31.496 6.789 31.647 6.946 31.767 7.135 C 31.891 7.325 31.964 7.555 31.996 7.823 L 30.889 7.823 C 30.839 7.569 30.724 7.394 30.54 7.311 C 30.356 7.223 30.145 7.182 29.911 7.182 C 29.837 7.182 29.746 7.186 29.644 7.2 C 29.539 7.214 29.447 7.237 29.355 7.269 C 29.268 7.302 29.19 7.352 29.125 7.421 C 29.066 7.486 29.034 7.574 29.034 7.68 C 29.034 7.809 29.08 7.915 29.171 7.994 C 29.259 8.072 29.378 8.141 29.525 8.197 C 29.672 8.248 29.837 8.294 30.021 8.335 C 30.205 8.377 30.402 8.414 30.6 8.455 C 30.793 8.497 30.981 8.552 31.169 8.617 C 31.358 8.681 31.523 8.764 31.665 8.871 C 31.808 8.977 31.927 9.111 32.019 9.268 C 32.111 9.424 32.157 9.628 32.157 9.863 C 32.157 10.149 32.093 10.389 31.959 10.592 C 31.826 10.791 31.661 10.952 31.45 11.077 C 31.243 11.197 31.009 11.294 30.756 11.349 C 30.503 11.404 30.246 11.432 29.998 11.432 C 29.69 11.432 29.41 11.4 29.153 11.331 C 28.896 11.261 28.671 11.155 28.482 11.021 C 28.294 10.878 28.143 10.708 28.037 10.5 C 27.927 10.292 27.872 10.043 27.862 9.757 L 28.933 9.757 L 28.933 9.748 Z M 32.437 6.471 L 33.241 6.471 L 33.241 5.026 L 34.302 5.026 L 34.302 6.471 L 35.262 6.471 L 35.262 7.265 L 34.302 7.265 L 34.302 9.84 C 34.302 9.951 34.307 10.048 34.316 10.131 C 34.325 10.209 34.348 10.283 34.38 10.338 C 34.412 10.394 34.463 10.435 34.536 10.463 C 34.605 10.491 34.697 10.504 34.816 10.504 C 34.89 10.504 34.968 10.504 35.041 10.5 C 35.115 10.495 35.193 10.486 35.267 10.468 L 35.267 11.289 C 35.147 11.303 35.032 11.312 34.922 11.326 C 34.807 11.34 34.697 11.344 34.578 11.344 C 34.297 11.344 34.068 11.317 33.902 11.266 C 33.732 11.215 33.595 11.137 33.503 11.031 C 33.406 10.929 33.342 10.8 33.305 10.648 C 33.273 10.491 33.25 10.315 33.246 10.117 L 33.246 7.274 L 32.442 7.274 L 32.442 6.471 L 32.433 6.471 Z M 36.011 6.471 L 37.017 6.471 L 37.017 7.122 L 37.035 7.122 C 37.186 6.84 37.393 6.642 37.66 6.522 C 37.926 6.402 38.215 6.337 38.528 6.337 C 38.909 6.337 39.24 6.402 39.52 6.54 C 39.8 6.669 40.039 6.854 40.223 7.089 C 40.411 7.325 40.549 7.597 40.641 7.906 C 40.732 8.215 40.783 8.548 40.783 8.903 C 40.783 9.226 40.742 9.54 40.654 9.84 C 40.572 10.144 40.443 10.412 40.273 10.648 C 40.103 10.883 39.887 11.068 39.625 11.206 C 39.364 11.344 39.056 11.418 38.698 11.418 C 38.541 11.418 38.385 11.404 38.234 11.377 C 38.082 11.349 37.926 11.303 37.788 11.238 C 37.646 11.178 37.513 11.095 37.393 10.998 C 37.269 10.901 37.173 10.786 37.085 10.661 L 37.067 10.661 L 37.067 13.066 L 36.006 13.066 L 36.006 6.466 Z M 39.727 8.885 C 39.727 8.668 39.699 8.455 39.644 8.252 C 39.589 8.049 39.501 7.869 39.391 7.708 C 39.281 7.546 39.139 7.421 38.973 7.329 C 38.803 7.237 38.61 7.182 38.394 7.182 C 37.949 7.182 37.609 7.338 37.384 7.648 C 37.159 7.957 37.044 8.372 37.044 8.889 C 37.044 9.134 37.072 9.36 37.131 9.568 C 37.191 9.775 37.278 9.951 37.398 10.103 C 37.517 10.255 37.655 10.371 37.82 10.454 C 37.986 10.541 38.179 10.583 38.394 10.583 C 38.638 10.583 38.84 10.532 39.01 10.431 C 39.18 10.329 39.318 10.2 39.423 10.048 C 39.534 9.886 39.612 9.711 39.658 9.508 C 39.699 9.305 39.722 9.097 39.722 8.889 Z M 41.601 4.634 L 42.662 4.634 L 42.662 5.64 L 41.601 5.64 Z M 41.601 6.471 L 42.662 6.471 L 42.662 11.289 L 41.601 11.289 Z M 43.612 4.634 L 44.673 4.634 L 44.673 11.289 L 43.612 11.289 Z M 47.93 11.423 C 47.544 11.423 47.2 11.358 46.901 11.229 C 46.602 11.1 46.345 10.924 46.134 10.703 C 45.927 10.477 45.767 10.209 45.661 9.9 C 45.551 9.591 45.496 9.249 45.496 8.875 C 45.496 8.501 45.551 8.169 45.661 7.86 C 45.771 7.551 45.927 7.283 46.134 7.057 C 46.341 6.831 46.598 6.66 46.901 6.531 C 47.204 6.402 47.544 6.337 47.93 6.337 C 48.316 6.337 48.66 6.402 48.959 6.531 C 49.257 6.655 49.515 6.835 49.726 7.057 C 49.933 7.283 50.093 7.551 50.199 7.86 C 50.309 8.169 50.364 8.506 50.364 8.875 C 50.364 9.245 50.309 9.591 50.199 9.9 C 50.089 10.209 49.933 10.477 49.726 10.703 C 49.519 10.929 49.262 11.1 48.959 11.229 C 48.656 11.358 48.316 11.423 47.93 11.423 Z M 47.93 10.578 C 48.164 10.578 48.371 10.528 48.545 10.426 C 48.72 10.324 48.862 10.195 48.973 10.038 C 49.083 9.881 49.165 9.697 49.221 9.494 C 49.271 9.291 49.299 9.083 49.299 8.875 C 49.299 8.668 49.271 8.465 49.221 8.261 C 49.17 8.054 49.083 7.878 48.973 7.717 C 48.858 7.555 48.72 7.431 48.545 7.334 C 48.371 7.237 48.164 7.182 47.93 7.182 C 47.696 7.182 47.489 7.232 47.314 7.334 C 47.14 7.435 46.998 7.565 46.887 7.717 C 46.772 7.878 46.694 8.054 46.639 8.261 C 46.589 8.469 46.561 8.672 46.561 8.875 C 46.561 9.078 46.589 9.295 46.639 9.494 C 46.69 9.697 46.777 9.877 46.887 10.038 C 47.002 10.2 47.14 10.329 47.314 10.426 C 47.489 10.528 47.696 10.578 47.93 10.578 Z M 50.677 6.471 L 51.48 6.471 L 51.48 5.026 L 52.541 5.026 L 52.541 6.471 L 53.501 6.471 L 53.501 7.265 L 52.541 7.265 L 52.541 9.84 C 52.541 9.951 52.546 10.048 52.555 10.131 C 52.564 10.209 52.587 10.283 52.62 10.338 C 52.652 10.394 52.702 10.435 52.776 10.463 C 52.845 10.491 52.936 10.504 53.056 10.504 C 53.129 10.504 53.207 10.504 53.281 10.5 C 53.354 10.495 53.432 10.486 53.506 10.468 L 53.506 11.289 C 53.387 11.303 53.272 11.312 53.162 11.326 C 53.047 11.34 52.936 11.344 52.817 11.344 C 52.537 11.344 52.307 11.317 52.142 11.266 C 51.972 11.215 51.834 11.137 51.742 11.031 C 51.646 10.929 51.581 10.8 51.545 10.648 C 51.513 10.491 51.49 10.315 51.485 10.117 L 51.485 7.274 L 50.681 7.274 L 50.681 6.471 L 50.672 6.471 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.012 4.634 L 8.144 4.634 L 6.637 0.005 L 5.131 4.634 L 0.257 4.634 L 4.203 7.495 L 2.696 12.12 L 6.642 9.258 L 10.578 12.12 L 9.076 7.495 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 9.411 8.543 L 9.071 7.495 L 6.637 9.263 Z\" fill=\"rgb(0,81,40)\"></path><path d=\"M 0 33.659 L 16.898 33.659 L 16.898 16.694 L 0 16.694 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 14.404 23.912 L 4.818 30.899 L 6.215 26.579 L 2.554 23.912 L 7.078 23.912 L 8.475 19.592 L 9.871 23.912 L 14.395 23.912 Z M 8.484 28.232 L 11.102 27.678 L 12.144 30.899 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 18.676 33.659 L 35.574 33.659 L 35.574 16.694 L 18.676 16.694 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 27.325 28.167 L 29.571 27.678 L 30.609 30.973 L 27.091 28.338 L 23.435 30.973 L 24.854 26.639 L 21.138 23.958 L 25.731 23.958 L 27.15 19.624 L 28.57 23.958 L 33.163 23.958 L 27.33 28.162 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 37.361 33.659 L 54.259 33.659 L 54.259 16.694 L 37.361 16.694 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 51.77 23.912 L 42.184 30.899 L 43.58 26.579 L 39.919 23.912 L 44.444 23.912 L 45.84 19.592 L 47.236 23.912 L 51.761 23.912 Z M 45.845 28.232 L 48.463 27.678 L 49.505 30.899 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 56.05 33.659 L 72.949 33.659 L 72.949 16.694 L 56.05 16.694 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 70.455 23.912 L 60.869 30.899 L 62.265 26.579 L 58.604 23.912 L 63.129 23.912 L 64.525 19.592 L 65.921 23.912 L 70.446 23.912 Z M 64.53 28.232 L 67.148 27.678 L 68.19 30.899 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 74.722 33.659 L 91.62 33.659 L 91.62 16.694 L 74.722 16.694 Z\" fill=\"rgb(0,182,122)\"></path><path d=\"M 89.131 23.912 L 79.545 30.899 L 80.941 26.579 L 77.28 23.912 L 81.804 23.912 L 83.201 19.592 L 84.597 23.912 L 89.121 23.912 Z M 83.205 28.232 L 85.824 27.678 L 86.867 30.899 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:10482150773}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"TrustScore \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif'},children:\"4.8\"}),\" | \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBCb2xk\",\"--framer-font-family\":'\"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif'},children:\"683\"}),\" reviews\"]})}),className:\"framer-1c2l35o\",\"data-framer-name\":\"Link\",fonts:[\"CUSTOM;Sofia Pro Regular\",\"CUSTOM;Sofia Pro Bold\"],layoutDependency:layoutDependency,layoutId:\"WMwVjo78U\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yB06s.framer-1bw7k92, .framer-yB06s .framer-1bw7k92 { display: block; }\",\".framer-yB06s.framer-cuefv5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 40px 40px; position: relative; width: 1448px; }\",\".framer-yB06s .framer-sbnkun { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 88px 80px 72px 80px; position: relative; width: 100%; }\",\".framer-yB06s .framer-c1g28m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yB06s .framer-9k5u3s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-yB06s .framer-1cwdvmp { flex: none; height: 64px; position: relative; text-decoration: none; width: 132px; }\",\".framer-yB06s .framer-1hodaww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yB06s .framer-loz106-container, .framer-yB06s .framer-1bm3369-container, .framer-yB06s .framer-doc2bi-container, .framer-yB06s .framer-8v49e3-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-yB06s .framer-1fmwhh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yB06s .framer-m7q5er { flex: none; gap: 0px; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-yB06s .framer-19dhnjk { flex: none; height: 14px; left: 2px; position: absolute; top: 5px; width: 20px; }\",\".framer-yB06s .framer-a7zxiz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yB06s .framer-mqxvp0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yB06s .framer-ylxb56, .framer-yB06s .framer-7shtjy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yB06s .framer-1p1zrxw, .framer-yB06s .framer-1eacxfu, .framer-yB06s .framer-1cmbqog, .framer-yB06s .framer-199sa22, .framer-yB06s .framer-pbl7y0, .framer-yB06s .framer-34rjdz, .framer-yB06s .framer-ndyes1, .framer-yB06s .framer-1seibzk, .framer-yB06s .framer-pogphl, .framer-yB06s .framer-19pz3f6, .framer-yB06s .framer-v1b2gq, .framer-yB06s .framer-1fcyt1s, .framer-yB06s .framer-1rx6v17, .framer-yB06s .framer-1duv719, .framer-yB06s .framer-1ajjq33 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yB06s .framer-163u77f, .framer-yB06s .framer-15p54us, .framer-yB06s .framer-1qdisgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yB06s .framer-1gxg71a, .framer-yB06s .framer-1lbh1ce, .framer-yB06s .framer-wfbizl { flex: none; height: 24px; position: relative; text-decoration: none; width: 24px; }\",\".framer-yB06s .framer-zdn7yl, .framer-yB06s .framer-1v9yjjx, .framer-yB06s .framer-19hkens { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-yB06s .framer-mx32lt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yB06s .framer-12s9ysa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-yB06s .framer-9ywfh0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 0px; position: relative; width: 1px; }\",\".framer-yB06s .framer-1b1lbde { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 0px 9px 0px; position: relative; width: min-content; }\",\".framer-yB06s .framer-d5s27o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yB06s .framer-1vc9ejt-container { aspect-ratio: 2.8095238095238093 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 118px; }\",\".framer-yB06s .framer-i7craq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yB06s .framer-bf3jev-container { aspect-ratio: 0.5875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); position: relative; width: 47px; }\",\".framer-yB06s .framer-icpq6o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yB06s .framer-14r3037 { flex: none; height: 48px; position: relative; width: 128px; }\",\".framer-yB06s .framer-1c2l35o { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-yB06s.framer-v-1x4m1is.framer-cuefv5 { padding: 0px 32px 32px 32px; width: 640px; }\",\".framer-yB06s.framer-v-1x4m1is .framer-sbnkun { padding: 80px 56px 64px 56px; }\",\".framer-yB06s.framer-v-1x4m1is .framer-c1g28m { flex-direction: column; gap: 48px; }\",\".framer-yB06s.framer-v-1x4m1is .framer-9k5u3s { width: 100%; }\",\".framer-yB06s.framer-v-1x4m1is .framer-1cwdvmp { aspect-ratio: 2.0625 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",\".framer-yB06s.framer-v-1x4m1is .framer-mqxvp0 { flex: none; width: 100%; }\",\".framer-yB06s.framer-v-1x4m1is .framer-9ywfh0 { padding: 0px 40px 0px 0px; }\",\".framer-yB06s.framer-v-1x4m1is .framer-1b1lbde { gap: 32px; }\",\".framer-yB06s.framer-v-1x4m1is .framer-1vc9ejt-container { height: var(--framer-aspect-ratio-supported, 32px); width: 88px; }\",\".framer-yB06s.framer-v-1x4m1is .framer-bf3jev-container { height: var(--framer-aspect-ratio-supported, 55px); width: 32px; }\",\".framer-yB06s.framer-v-1x4m1is .framer-14r3037 { height: 30px; width: 80px; }\",\".framer-yB06s.framer-v-mskzga.framer-cuefv5 { padding: 0px 16px 16px 16px; width: 375px; }\",\".framer-yB06s.framer-v-mskzga .framer-sbnkun { gap: 56px; padding: 48px 32px 48px 32px; }\",\".framer-yB06s.framer-v-mskzga .framer-c1g28m { flex-direction: column; gap: 42px; }\",\".framer-yB06s.framer-v-mskzga .framer-9k5u3s { gap: 24px; order: 0; width: 100%; }\",\".framer-yB06s.framer-v-mskzga .framer-1cwdvmp { aspect-ratio: 2.0625 / 1; height: var(--framer-aspect-ratio-supported, 48px); width: 99px; }\",\".framer-yB06s.framer-v-mskzga .framer-mqxvp0 { flex: none; order: 1; width: 100%; }\",\".framer-yB06s.framer-v-mskzga .framer-12s9ysa { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; }\",\".framer-yB06s.framer-v-mskzga .framer-9ywfh0 { flex: none; padding: 0px; width: 100%; }\",\".framer-yB06s.framer-v-mskzga .framer-1b1lbde { flex-wrap: wrap; gap: 24px; width: 100%; }\",\".framer-yB06s.framer-v-mskzga .framer-1vc9ejt-container { height: var(--framer-aspect-ratio-supported, 28px); width: 78px; }\",\".framer-yB06s.framer-v-mskzga .framer-bf3jev-container { height: var(--framer-aspect-ratio-supported, 46px); width: 27px; }\",\".framer-yB06s.framer-v-mskzga .framer-14r3037 { height: 34px; width: 92px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-yB06s[data-border=\"true\"]::after, .framer-yB06s [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 634\n * @framerIntrinsicWidth 1448\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Uw3ETbH3T\":{\"layout\":[\"fixed\",\"auto\"]},\"Y6bosTp_P\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rNz5KBGbE\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerG4S0QMEsx=withCSS(Component,css,\"framer-yB06s\");export default FramerG4S0QMEsx;FramerG4S0QMEsx.displayName=\"Components/Footer\";FramerG4S0QMEsx.defaultProps={height:634,width:1448};addPropertyControls(FramerG4S0QMEsx,{variant:{options:[\"qq7QjEZl1\",\"Uw3ETbH3T\",\"Y6bosTp_P\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},rNz5KBGbE:{defaultValue:\"rgba(255, 255, 255, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerG4S0QMEsx,[{explicitInter:true,fonts:[{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Sofia Pro Bold\",source:\"custom\",uiFamilyName:\"Sofia Pro Bold\",url:\"https://framerusercontent.com/assets/3picOzdm279yHcWBfvz9Gl6rm08.woff2\"},{cssFamilyName:\"Sofia Pro Regular\",source:\"custom\",uiFamilyName:\"Sofia Pro Regular\",url:\"https://framerusercontent.com/assets/ZhIxXuM5tWh1Zyunf814ZQtbsk.woff2\"}]},...ComponentsSocialButtonsFonts,...SVG1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG4S0QMEsx\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"rNz5KBGbE\\\":\\\"background\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"634\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1448\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Uw3ETbH3T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y6bosTp_P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G4S0QMEsx.map","// Generated by Framer (3bdc3c5)\nexport const props={fz4wgv2lD:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15},zigMckoML:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,isMixedBorderRadius:false,isRed:false,topLeftRadius:20,topRightRadius:20}};export const fonts={fz4wgv2lD:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v5/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (4d21961)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper), .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-color: rgba(153, 153, 153, 0.25); border-style: solid; border-top-left-radius: 8px; border-top-right-radius: 8px; border-width: 1px; overflow: hidden; }\",\".framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) th, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table th, .framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) td, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table td { padding: 10px; }\",\".framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) th, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table th { background-color: rgba(153, 153, 153, 0.1); }\",\".framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) tr + tr td, .framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) tr + tr th, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table tr + tr td, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table tr + tr th { border-top-color: rgba(153, 153, 153, 0.25); border-top-style: solid; border-top-width: 1px; }\",\".framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) td + td, .framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) th + th, .framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) td + th, .framer-fH2q7 .framer-styles-preset-16zw1r7:not(.rich-text-wrapper) th + td, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table td + td, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table th + th, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table td + th, .framer-fH2q7 .framer-styles-preset-16zw1r7.rich-text-wrapper table th + td { border-left-color: rgba(153, 153, 153, 0.25); border-left-style: solid; border-left-width: 1px; }\"];export const className=\"framer-fH2q7\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (55cf326)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-cP2Ji .framer-styles-preset-1a0dvjy { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; }\"];export const className=\"framer-cP2Ji\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8f9ffef)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Sofia Pro Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sofia Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZhIxXuM5tWh1Zyunf814ZQtbsk.woff2\"}]}];export const css=['.framer-obMKI .framer-styles-preset-fbyfzw:not(.rich-text-wrapper), .framer-obMKI .framer-styles-preset-fbyfzw.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-blockquote-font-size: 18px; --framer-blockquote-font-style: normal; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 150%; --framer-blockquote-paragraph-spacing: 32px; --framer-blockquote-text-color: #1c8c6c; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 26px; position: relative; }','.framer-obMKI .framer-styles-preset-fbyfzw:not(.rich-text-wrapper)::before, .framer-obMKI .framer-styles-preset-fbyfzw.rich-text-wrapper blockquote::before { background-color: #1c8c6c; border-radius: 0px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; }','@media (max-width: 1023px) and (min-width: 640px) { .framer-obMKI .framer-styles-preset-fbyfzw:not(.rich-text-wrapper), .framer-obMKI .framer-styles-preset-fbyfzw.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-blockquote-font-size: 17px; --framer-blockquote-font-style: normal; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 150%; --framer-blockquote-paragraph-spacing: 32px; --framer-blockquote-text-color: #1c8c6c; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 26px; position: relative; } }','@media (max-width: 1023px) and (min-width: 640px) { .framer-obMKI .framer-styles-preset-fbyfzw:not(.rich-text-wrapper)::before, .framer-obMKI .framer-styles-preset-fbyfzw.rich-text-wrapper blockquote::before { background-color: #1c8c6c; border-radius: 0px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; } }','@media (max-width: 639px) and (min-width: 0px) { .framer-obMKI .framer-styles-preset-fbyfzw:not(.rich-text-wrapper), .framer-obMKI .framer-styles-preset-fbyfzw.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-blockquote-font-size: 16px; --framer-blockquote-font-style: normal; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 150%; --framer-blockquote-paragraph-spacing: 24px; --framer-blockquote-text-color: #1c8c6c; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 26px; position: relative; } }','@media (max-width: 639px) and (min-width: 0px) { .framer-obMKI .framer-styles-preset-fbyfzw:not(.rich-text-wrapper)::before, .framer-obMKI .framer-styles-preset-fbyfzw.rich-text-wrapper blockquote::before { background-color: #1c8c6c; border-radius: 0px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; } }'];export const className=\"framer-obMKI\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a1a9a9e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Sofia Pro Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sofia Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/3picOzdm279yHcWBfvz9Gl6rm08.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-FmaT5 .framer-styles-preset-ls7727:not(.rich-text-wrapper), .framer-FmaT5 .framer-styles-preset-ls7727.rich-text-wrapper h2 { --framer-font-family: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1440px) and (min-width: 1024px) { .framer-FmaT5 .framer-styles-preset-ls7727:not(.rich-text-wrapper), .framer-FmaT5 .framer-styles-preset-ls7727.rich-text-wrapper h2 { --framer-font-family: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 1023px) and (min-width: 640px) { .framer-FmaT5 .framer-styles-preset-ls7727:not(.rich-text-wrapper), .framer-FmaT5 .framer-styles-preset-ls7727.rich-text-wrapper h2 { --framer-font-family: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 639px) and (min-width: 0px) { .framer-FmaT5 .framer-styles-preset-ls7727:not(.rich-text-wrapper), .framer-FmaT5 .framer-styles-preset-ls7727.rich-text-wrapper h2 { --framer-font-family: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-FmaT5\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d2aa011)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Sofia Pro Regular\",\"CUSTOM;Sofia Pro Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sofia Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZhIxXuM5tWh1Zyunf814ZQtbsk.woff2\"},{family:\"Sofia Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/3picOzdm279yHcWBfvz9Gl6rm08.woff2\"}]}];export const css=['.framer-6on5D .framer-styles-preset-1qo8fdq:not(.rich-text-wrapper), .framer-6on5D .framer-styles-preset-1qo8fdq.rich-text-wrapper p { --framer-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 21px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 640px) { .framer-6on5D .framer-styles-preset-1qo8fdq:not(.rich-text-wrapper), .framer-6on5D .framer-styles-preset-1qo8fdq.rich-text-wrapper p { --framer-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.5px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 639px) and (min-width: 0px) { .framer-6on5D .framer-styles-preset-1qo8fdq:not(.rich-text-wrapper), .framer-6on5D .framer-styles-preset-1qo8fdq.rich-text-wrapper p { --framer-font-family: \"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Sofia Pro Bold\", \"Sofia Pro Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-6on5D\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","var e=typeof globalThis!==\"undefined\"?globalThis:typeof self!==\"undefined\"?self:global;var t={};(function(e,n){t=n()})(0,(function(){function getKeys(e){var t=[],n=\"\";for(n in e)t.push(n);return t}function isPlainObject(e){e=JSON.stringify(e);return typeof e===\"string\"&&!!/^\\{[\\s\\S]*\\}$/.test(e)}function isArray(e){return e instanceof Array}function toArray(e){return Array.prototype.slice.call(e)}function Cookie(){if(!((this||e)instanceof Cookie))return new Cookie}Cookie.prototype={get:function(e){var t=e+\"=\";var n=document.cookie.split(\";\");for(var o=0;o<n.length;o++){var i=n[o];while(i.charAt(0)==\" \")i=i.substring(1,i.length);if(i.indexOf(t)==0)return decodeURI(i.substring(t.length,i.length))}return false},set:function(e,t,n){if(isPlainObject(e))for(const o in e)this.set(o,e[o],t,n);else if(typeof e===\"string\"){const o=isPlainObject(n)?n:{expires:n},i=o.path!==void 0?`;path=${o.path};path=/`:\";path=/\",r=o.domain?`;domain=${o.domain}`:\"\",s=o.secure?\";secure\":\"\";let a=o.expires!==void 0?o.expires:\"\";typeof a===\"string\"&&a!==\"\"?a=new Date(a):typeof a===\"number\"&&(a=new Date(+new Date+864e5*a));a!==\"\"&&\"toGMTString\"in a&&(a=`;expires=${a.toGMTString()}`);const l=o.sameSite?`;SameSite=${o.sameSite}`:\"\";document.cookie=`${e}=${encodeURI(t)+a+i+r+s+l}`}},remove:function(e){e=isArray(e)?e:toArray(arguments);for(var t=0,n=e.length;t<n;t++)this.set(e[t],\"\",-1);return e},clear:function(e){return e?this.remove(e):this.remove(getKeys(this.all()))},all:function(){if(document.cookie===\"\")return{};var e=document.cookie.split(\"; \"),t={};for(var n=0,o=e.length;n<o;n++){var i=e[n].split(\"=\");t[decodeURI(i[0])]=decodeURI(i[1])}return t}};let t=null;const cookie=function(e,n,o){const i=arguments;t||(t=Cookie());return i.length===0?t.all():i.length===1&&e===null?t.clear():i.length!==2||n?typeof e!=\"string\"||n?typeof e===\"string\"&&n||isPlainObject(e)?t.set(e,n,o):void 0:t.get(e):t.clear(e)};for(const e in Cookie.prototype)cookie[e]=Cookie.prototype[e];return cookie}));var n=t;export{n as default};\n//# sourceMappingURL=cookie.js.map\n","import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import Cookies from\"cookiejs\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Needs to be kept in sync with the platform\n// https://github.com/ecologi/platform/blob/main/web-client/src/lib/gtm/gtm.ts\nconst COOKIE=\"ecologi_cookie_consent_20220224\";const COOKIE_ACCEPT_VALUE=\"true\";const COOKIE_REJECT_VALUE=\"false\";const ONE_YEAR_SECONDS=60*60*24*365;const useStore=createStore({displayCookieBanner:false});export function withCookieBannerState(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{const initialCookieValue=Cookies.get(COOKIE);if(!initialCookieValue){setStore({displayCookieBanner:true});}},[]);return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,...store.displayCookieBanner===false?{display:\"none\"}:{}}});};}export function withCookieAcceptAction(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{Cookies.set(COOKIE,COOKIE_ACCEPT_VALUE,getCookieOptions());window.dataLayer.push({event:\"pageview\",page:window.location.pathname});setStore({displayCookieBanner:false});}});};}export function withCookieRejectAction(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{Cookies.set(COOKIE,COOKIE_REJECT_VALUE,getCookieOptions());setStore({displayCookieBanner:false});}});};}function getCookieOptions(){return{maxAge:ONE_YEAR_SECONDS,// In order to have the cookie banner work properly on other domains (e.g. *.framer.app), then set the cookie\n// to Ecologi, only when we're on an Ecologi domain.\ndomain:window.location.hostname.endsWith(\"ecologi.com\")?\".ecologi.com\":window.location.hostname};}\nexport const __FramerMetadata__ = {\"exports\":{\"withCookieRejectAction\":{\"type\":\"reactHoc\",\"name\":\"withCookieRejectAction\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCookieAcceptAction\":{\"type\":\"reactHoc\",\"name\":\"withCookieAcceptAction\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCookieBannerState\":{\"type\":\"reactHoc\",\"name\":\"withCookieBannerState\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CookieBanner.map","// Generated by Framer (d2aa011)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-R051y .framer-styles-preset-1y6hx4h:not(.rich-text-wrapper), .framer-R051y .framer-styles-preset-1y6hx4h.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-a424bd58-59cb-4087-a4df-2b289a14269b, #38a67f); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-b012ac1e-395d-4a7a-b9a4-91f6b8b14e5b, #025e47); --framer-link-text-decoration: underline; }\"];export const className=\"framer-R051y\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (04b9457)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import{withCookieAcceptAction,withCookieBannerState,withCookieRejectAction}from\"https://framerusercontent.com/modules/ViKxZMBuYwRomucyJQvT/1zW5GCcSTeTSRBtDowpz/CookieBanner.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/x3zEvXo8Qu07bhKHzCuZ/5Xm0iXwBVR38yNn2gpDq/KjEL69wIH.js\";import ComponentsButton,*as ComponentsButtonInfo from\"https://framerusercontent.com/modules/gq91E2p36ohmmBV6Xyfp/I0Igg8ue9Ndg4CvMEKjZ/cDVSopb0I.js\";const SVGFonts=getFonts(SVG);const ComponentsButtonFonts=getFonts(ComponentsButton);const ComponentsButtonWithCookieRejectActionnqygkbWithMappedReactPropsmredx0=withMappedReactProps(withCodeBoundaryForOverrides(ComponentsButton,{nodeId:\"PUGl2Y8Ju\",override:withCookieRejectAction,scopeId:\"v3c21UG2n\"}),ComponentsButtonInfo);const ComponentsButtonWithCookieAcceptActiond9v0raWithMappedReactPropsmredx0=withMappedReactProps(withCodeBoundaryForOverrides(ComponentsButton,{nodeId:\"WCmnMJEKp\",override:withCookieAcceptAction,scopeId:\"v3c21UG2n\"}),ComponentsButtonInfo);const MotionDivWithCookieBannerState5buqwz=withCodeBoundaryForOverrides(motion.div,{nodeId:\"LWBwsbgs1\",override:withCookieBannerState,scopeId:\"v3c21UG2n\"});const cycleOrder=[\"LWBwsbgs1\",\"Ncb2TveVw\",\"RsQkHn7oJ\"];const serializationHash=\"framer-2wMdl\";const variantClassNames={LWBwsbgs1:\"framer-v-5buqwz\",Ncb2TveVw:\"framer-v-1ptixgr\",RsQkHn7oJ:\"framer-v-18xhb7d\"};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:\"LWBwsbgs1\",Mobile:\"RsQkHn7oJ\",Tablet:\"Ncb2TveVw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LWBwsbgs1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LWBwsbgs1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithCookieBannerState5buqwz,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-5buqwz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LWBwsbgs1\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.13), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.13), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.13)\",...style},variants:{RsQkHn7oJ:{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"}},...addPropertyOverrides({Ncb2TveVw:{\"data-framer-name\":\"Tablet\"},RsQkHn7oJ:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10kx02f\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"I1469:16916;1469:16797\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fv1ojd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qlUB_JLcE-container\",nodeId:\"qlUB_JLcE\",rendersWithMotion:true,scopeId:\"v3c21UG2n\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-a16367fd-693f-44a6-8e53-a4e0e456704d, rgb(21, 107, 86))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"160\" height=\"160\" viewBox=\"0 0 160 160\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_4966_11842)\"> <path d=\"M10.4401 64.6897C12.1522 64.6897 13.5401 63.3018 13.5401 61.5897C13.5401 59.8777 12.1522 58.4897 10.4401 58.4897C8.728 58.4897 7.34009 59.8777 7.34009 61.5897C7.34009 63.3018 8.728 64.6897 10.4401 64.6897Z\" fill=\"#135F4E\"/> <path d=\"M149.29 64.6897C151.002 64.6897 152.39 63.3018 152.39 61.5897C152.39 59.8777 151.002 58.4897 149.29 58.4897C147.578 58.4897 146.19 59.8777 146.19 61.5897C146.19 63.3018 147.578 64.6897 149.29 64.6897Z\" fill=\"#135F4E\"/> <path d=\"M112.65 62.7098C110.92 63.7498 109.23 64.8798 107.58 66.0798C107.57 67.2898 107.56 68.0298 107.56 68.0298C107.45 71.5198 107.62 80.1298 107.14 83.4698C105.73 97.5398 93.9502 108.14 81.1402 112.68C80.7502 112.82 80.3302 112.97 79.9302 113.1C77.1702 112.21 74.3902 110.97 71.8502 109.59C62.5402 104.61 54.7502 95.9998 53.0102 85.4098C52.0402 80.7198 52.5302 72.2098 52.2702 67.3398C52.2702 67.3398 52.0702 52.3098 52.0102 48.5198L105.98 50.3198C100.55 54.1398 95.6102 58.6298 91.2002 63.5598C85.8402 69.6198 81.1602 76.1498 77.3802 83.2798C73.5602 78.7498 69.6202 74.4198 65.3302 70.2598L60.6302 75.9598C63.3302 77.8598 65.9902 79.8898 68.6002 81.9998C71.9202 84.6698 75.2302 87.5498 78.3902 90.4098C84.8402 78.3098 94.1002 67.3498 105.17 59.2198C107.43 57.5598 109.8 56.0598 112.22 54.6998V43.5498C110.24 43.5498 49.6902 43.7998 49.6902 43.7998H47.3302C47.4002 44.0798 47.0102 66.3198 47.0402 67.3398C47.1302 72.6098 46.4102 81.1998 47.3502 86.3498C49.5002 101.87 62.1402 113.62 76.1602 119.12C77.2702 119.58 78.5902 120 79.8502 120.39C87.4302 118.16 94.3002 114.11 100.15 108.83C108.61 101.31 113.43 89.8698 112.85 78.5198C112.81 75.0998 112.74 68.8998 112.66 62.6998L112.65 62.7098Z\" fill=\"#135F4E\"/> <path d=\"M5.71006 82.39L16.7701 80.98L17.2101 84.43L6.38006 85.81C4.05006 86.11 3.30006 87.72 3.50006 89.3C3.71006 90.91 4.84006 92.28 7.17006 91.98L18.0001 90.6L18.4401 94.05L7.38006 95.46C3.46006 95.96 0.670063 93.22 0.220063 89.72C-0.219937 86.25 1.79006 82.89 5.71006 82.39Z\" fill=\"#135F4E\"/> <path d=\"M8.70005 104.01L10.1001 107.19C8.99005 107.71 8.53005 109.22 9.18005 110.68C9.80005 112.1 10.9901 112.69 12.1201 112.2C12.9901 111.82 13.3301 110.91 13.1401 109.37L12.8401 107.21C12.2301 103.35 14.0501 101.82 15.4601 101.19C18.2701 99.95 21.2901 101.52 22.6201 104.54C23.9301 107.51 23.1301 110.6 20.1301 111.92L18.7301 108.74C19.8501 108.25 20.3801 107.09 19.7701 105.71C19.2301 104.47 17.9901 103.9 16.9401 104.36C16.5501 104.53 15.8001 105 16.0401 106.86L16.3101 108.84C16.6501 111.53 16.3501 114.15 13.6701 115.33C10.5401 116.71 7.64005 114.79 6.33005 111.81C4.85005 108.45 5.92005 105.22 8.68005 104L8.70005 104.01Z\" fill=\"#135F4E\"/> <path d=\"M19.04 126.6L23.79 132.47L21.4 134.4L14.46 125.83L27.85 114.99L34.64 123.38L32.25 125.31L27.64 119.62L24.45 122.2L28.49 127.19L26.06 129.15L22.02 124.16L19.03 126.58L19.04 126.6Z\" fill=\"#135F4E\"/> <path d=\"M31.0302 136.73L33.8502 138.76C33.1502 139.77 33.5302 141.3 34.8202 142.24C36.0802 143.15 37.4102 143.06 38.1202 142.06C38.6802 141.29 38.5002 140.33 37.5702 139.1L36.2202 137.38C33.7402 134.36 34.5302 132.12 35.4402 130.86C37.2402 128.37 40.6302 128.19 43.3102 130.13C45.9502 132.03 46.8202 135.1 44.9002 137.75L42.0802 135.72C42.8002 134.73 42.6602 133.46 41.4502 132.58C40.3602 131.79 39.0002 131.92 38.3202 132.85C38.0702 133.19 37.6602 133.98 38.8102 135.46L40.0502 137.03C41.7102 139.18 42.7702 141.59 41.0602 143.96C39.0602 146.74 35.5902 146.54 32.9502 144.64C29.9702 142.49 29.2502 139.17 31.0202 136.71L31.0302 136.73Z\" fill=\"#135F4E\"/> <path d=\"M58.6901 148.09C59.6101 143.33 64.1801 140.08 68.9701 141.01C71.8401 141.56 74.0801 143.42 75.1901 145.85L72.2201 147.24C71.5201 145.7 70.2601 144.59 68.4701 144.25C65.4001 143.66 62.6801 145.73 62.1001 148.75C61.5201 151.77 63.2401 154.73 66.3101 155.32C68.1301 155.67 69.7101 155.11 70.9301 153.94L73.1701 156.33C71.2301 158.17 68.4601 159.06 65.5901 158.51C60.8001 157.59 57.7601 152.9 58.6901 148.08V148.09Z\" fill=\"#135F4E\"/> <path d=\"M80.4901 151.41C79.8601 146.55 83.1601 142.06 88.0201 141.43C92.8501 140.8 97.2401 144.29 97.8701 149.15C98.5001 153.98 95.1501 158.48 90.3101 159.11C85.4501 159.74 81.1101 156.25 80.4901 151.41ZM94.4001 149.6C94.0001 146.52 91.4901 144.28 88.4401 144.68C85.3701 145.08 83.5401 147.89 83.9401 150.96C84.3401 154.03 86.8201 156.26 89.9001 155.86C92.9501 155.46 94.8101 152.68 94.4101 149.6H94.4001Z\" fill=\"#135F4E\"/> <path d=\"M103.54 147.43C101.37 143.04 103.04 137.72 107.44 135.55C111.81 133.39 117.09 135.28 119.26 139.67C121.42 144.04 119.7 149.38 115.33 151.54C110.94 153.71 105.7 151.8 103.54 147.43ZM116.12 141.22C114.75 138.44 111.65 137.13 108.89 138.49C106.11 139.86 105.29 143.11 106.66 145.89C108.03 148.67 111.1 149.97 113.88 148.6C116.64 147.24 117.49 144 116.12 141.22Z\" fill=\"#135F4E\"/> <path d=\"M141.14 131.52L137.9 134.64L129.1 133.51L133.91 138.49L131.41 140.9L119.45 128.51L121.95 126.09L126.85 131.16L125.41 122.75L128.41 119.85L130.05 130.15L141.15 131.49L141.14 131.52Z\" fill=\"#135F4E\"/> <path d=\"M145.89 124.71L131.48 115.27L133.38 112.36L147.79 121.8L145.89 124.71Z\" fill=\"#135F4E\"/> <path d=\"M151.26 108.24L153.94 101.18L156.82 102.27L152.91 112.58L136.81 106.48L140.64 96.3804L143.52 97.4704L140.92 104.32L144.75 105.77L147.03 99.7604L149.95 100.87L147.67 106.88L151.27 108.24H151.26Z\" fill=\"#135F4E\"/> <path d=\"M153.94 92.7802L154.27 89.3202C155.49 89.4102 156.63 88.3102 156.78 86.7202C156.93 85.1802 156.18 84.0802 154.96 83.9602C154.01 83.8702 153.28 84.5002 152.69 85.9302L151.89 87.9602C150.54 91.6202 148.21 92.0802 146.67 91.9302C143.61 91.6402 141.74 88.8002 142.05 85.5202C142.36 82.2802 144.56 79.9802 147.82 80.2902L147.49 83.7502C146.27 83.6302 145.24 84.3902 145.1 85.8802C144.97 87.2202 145.77 88.3302 146.92 88.4402C147.34 88.4802 148.23 88.4402 148.92 86.7002L149.65 84.8402C150.67 82.3202 152.2 80.1802 155.11 80.4602C158.52 80.7802 160.11 83.8702 159.8 87.1102C159.45 90.7702 156.95 93.0702 153.94 92.7802Z\" fill=\"#135F4E\"/> <path d=\"M16.65 30.23L19.22 31.92L16.61 35.89L28.44 43.66L26.53 46.56L14.7 38.79L12.09 42.76L9.52002 41.07L16.65 30.23Z\" fill=\"#135F4E\"/> <path d=\"M31.2201 16.0398L33.8901 13.8198L44.9201 27.0498L42.2501 29.2698L37.7701 23.8898L32.8401 27.9998L37.3201 33.3798L34.6501 35.5998L23.6201 22.3698L26.2901 20.1498L30.8301 25.5998L35.7601 21.4898L31.2101 16.0398H31.2201Z\" fill=\"#135F4E\"/> <path d=\"M51.2901 23.6801L43.8601 8.14014L46.9901 6.64014L54.4201 22.1801L51.2901 23.6801Z\" fill=\"#135F4E\"/> <path d=\"M59.11 14.7798L62.5 14.0298C62.79 15.2198 64.18 15.9598 65.75 15.6098C67.26 15.2698 68.08 14.2198 67.81 13.0298C67.6 12.0998 66.77 11.5898 65.24 11.4798L63.06 11.3498C59.16 11.1898 58.01 9.1198 57.67 7.5998C57 4.5998 59.13 1.9498 62.35 1.2298C65.52 0.519802 68.39 1.9098 69.1 5.1098L65.71 5.8598C65.44 4.6598 64.41 3.9198 62.94 4.2498C61.62 4.5398 60.82 5.6398 61.07 6.7698C61.16 7.1898 61.47 8.0098 63.34 8.1298L65.34 8.2498C68.05 8.4398 70.55 9.2398 71.19 12.0998C71.93 15.4398 69.48 17.9098 66.31 18.6098C62.72 19.4098 59.76 17.7298 59.11 14.7798Z\" fill=\"#135F4E\"/> <path d=\"M87.7099 11.99L91.1099 12.7C90.8799 13.9 91.8499 15.15 93.4199 15.48C94.9399 15.8 96.1099 15.17 96.3599 13.98C96.5499 13.05 96.0099 12.25 94.6499 11.5L92.7199 10.48C89.2299 8.72996 89.0299 6.36996 89.3499 4.84996C89.9799 1.83996 93.0099 0.299964 96.2399 0.969964C99.4199 1.62996 101.46 4.07996 100.8 7.27996L97.3999 6.56996C97.6499 5.36996 97.0099 4.26996 95.5399 3.95996C94.2199 3.67996 93.0299 4.35996 92.7999 5.47996C92.7099 5.89996 92.6599 6.77996 94.3099 7.65996L96.0799 8.58996C98.4699 9.87996 100.42 11.64 99.8199 14.5C99.1199 17.85 95.8699 19.09 92.6899 18.43C89.0899 17.68 87.0899 14.94 87.6999 11.98L87.7099 11.99Z\" fill=\"#135F4E\"/> <path d=\"M104.54 21.85L111.77 6.20996L114.93 7.66996L107.7 23.31L104.54 21.85Z\" fill=\"#135F4E\"/> <path d=\"M133.62 20.0499L131.75 22.4899L127.98 19.5999L119.36 30.8199L116.6 28.6999L125.22 17.4799L121.45 14.5899L123.32 12.1499L133.61 20.0499H133.62Z\" fill=\"#135F4E\"/> <path d=\"M131.44 38.7002L135.98 44.7302L133.52 46.5802L126.89 37.7802L140.65 27.4102L147.15 36.0302L144.69 37.8802L140.28 32.0302L137.01 34.5002L140.88 39.6302L138.38 41.5102L134.51 36.3802L131.43 38.7002H131.44Z\" fill=\"#135F4E\"/> </g> <defs> <clipPath id=\"clip0_4966_11842\"> <rect width=\"160\" height=\"160\" fill=\"white\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"qlUB_JLcE\",layoutId:\"qlUB_JLcE\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NvZmlhIFBybyBSZWd1bGFy\",\"--framer-font-family\":'\"Sofia Pro Regular\", \"Sofia Pro Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95)))\"},children:[\"We use necessary cookies to make the site work and others to give you a better experience. \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"isTaP14kQ\"},motionChild:true,nodeId:\"I1469:16916;1466:16734\",openInNewTab:false,relValues:[],scopeId:\"v3c21UG2n\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y6hx4h\",\"data-styles-preset\":\"KjEL69wIH\",children:\"Learn more in our cookie policy.\"})})]})}),className:\"framer-66uhka\",\"data-framer-name\":\"We use necessary cookies to make the site work and others to give you a better experience. Learn more in our cookie policy.\",fonts:[\"CUSTOM;Sofia Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"I1469:16916;1466:16734\",style:{\"--extracted-r6o4lv\":\"var(--token-5438dcba-26b2-4320-bad7-dc71500df16d, rgb(95, 95, 95))\",\"--framer-paragraph-spacing\":\"11px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ivcuyv\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"pZmgWWsHf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+(24+((componentViewport?.height||120)-48-56)/2)+0,...addPropertyOverrides({Ncb2TveVw:{y:undefined},RsQkHn7oJ:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nqygkb-container\",layoutDependency:layoutDependency,layoutId:\"PUGl2Y8Ju-container\",nodeId:\"PUGl2Y8Ju\",rendersWithMotion:true,scopeId:\"v3c21UG2n\",children:/*#__PURE__*/_jsx(ComponentsButtonWithCookieRejectActionnqygkbWithMappedReactPropsmredx0,{cQmsTu45D:false,DmV6aippQ:\"Necessary cookies only\",height:\"100%\",id:\"PUGl2Y8Ju\",layoutId:\"PUGl2Y8Ju\",QFxCyRyN5:false,variant:\"MTXOvjm2M\",WbTt7Rcm1:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.4975 11.9997C16.4975 11.9965 16.4976 11.9932 16.4976 11.99V12.01C16.4976 12.0066 16.4975 12.0032 16.4975 11.9997Z\" fill=\"#444444\"/> <path d=\"M16.2073 12.7007C16.3951 12.503 16.495 12.2565 16.4975 11.9997C16.4952 11.7432 16.4049 11.4969 16.2073 11.2993L9.20148 4.29277C8.81116 3.90241 8.18063 3.90241 7.7903 4.29277C7.39998 4.68314 7.39998 5.31374 7.7903 5.7041L14.0855 12L7.7903 18.2959C7.39998 18.6863 7.39998 19.3169 7.7903 19.7072C8.18063 20.0976 8.81116 20.0976 9.20148 19.7072L16.2073 12.7007Z\" fill=\"#444444\"/> </svg>',width:\"100%\",yCYpHkj4L:false,Zm8_MSIx5:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+(24+((componentViewport?.height||120)-48-56)/2)+0,...addPropertyOverrides({Ncb2TveVw:{y:undefined},RsQkHn7oJ:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d9v0ra-container\",layoutDependency:layoutDependency,layoutId:\"WCmnMJEKp-container\",nodeId:\"WCmnMJEKp\",rendersWithMotion:true,scopeId:\"v3c21UG2n\",children:/*#__PURE__*/_jsx(ComponentsButtonWithCookieAcceptActiond9v0raWithMappedReactPropsmredx0,{cQmsTu45D:false,DmV6aippQ:\"Accept all\",height:\"100%\",id:\"WCmnMJEKp\",layoutId:\"WCmnMJEKp\",QFxCyRyN5:false,variant:\"FsU0G9r3z\",WbTt7Rcm1:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M16.4975 11.9997C16.4975 11.9965 16.4976 11.9932 16.4976 11.99V12.01C16.4976 12.0066 16.4975 12.0032 16.4975 11.9997Z\" fill=\"#444444\"/> <path d=\"M16.2073 12.7007C16.3951 12.503 16.495 12.2565 16.4975 11.9997C16.4952 11.7432 16.4049 11.4969 16.2073 11.2993L9.20148 4.29277C8.81116 3.90241 8.18063 3.90241 7.7903 4.29277C7.39998 4.68314 7.39998 5.31374 7.7903 5.7041L14.0855 12L7.7903 18.2959C7.39998 18.6863 7.39998 19.3169 7.7903 19.7072C8.18063 20.0976 8.81116 20.0976 9.20148 19.7072L16.2073 12.7007Z\" fill=\"#444444\"/> </svg>',width:\"100%\",yCYpHkj4L:false,Zm8_MSIx5:false})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2wMdl.framer-71wt9u, .framer-2wMdl .framer-71wt9u { display: block; }\",\".framer-2wMdl.framer-5buqwz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 32px 24px 32px; position: relative; width: 987px; }\",\".framer-2wMdl .framer-10kx02f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2wMdl .framer-1fv1ojd-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); position: relative; width: 72px; }\",\".framer-2wMdl .framer-66uhka { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2wMdl .framer-1ivcuyv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2wMdl .framer-nqygkb-container, .framer-2wMdl .framer-d9v0ra-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2wMdl.framer-v-1ptixgr.framer-5buqwz { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; padding: 24px 32px 32px 32px; width: 640px; }\",\".framer-2wMdl.framer-v-1ptixgr .framer-10kx02f { flex: none; gap: 20px; width: 100%; }\",\".framer-2wMdl.framer-v-1ptixgr .framer-1fv1ojd-container { height: var(--framer-aspect-ratio-supported, 64px); width: 64px; }\",\".framer-2wMdl.framer-v-1ptixgr .framer-1ivcuyv { flex-wrap: wrap; justify-content: flex-start; padding: 0px 0px 0px 84px; width: 100%; }\",\".framer-2wMdl.framer-v-18xhb7d.framer-5buqwz { flex-direction: column; gap: 20px; padding: 24px; width: 375px; }\",\".framer-2wMdl.framer-v-18xhb7d .framer-10kx02f { align-content: flex-start; align-items: flex-start; flex: none; gap: 20px; width: 100%; }\",\".framer-2wMdl.framer-v-18xhb7d .framer-1fv1ojd-container { height: var(--framer-aspect-ratio-supported, 56px); width: 56px; }\",\".framer-2wMdl.framer-v-18xhb7d .framer-1ivcuyv { flex-wrap: wrap; justify-content: flex-start; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 120\n * @framerIntrinsicWidth 987\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ncb2TveVw\":{\"layout\":[\"fixed\",\"auto\"]},\"RsQkHn7oJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerv3c21UG2n=withCSS(Component,css,\"framer-2wMdl\");export default Framerv3c21UG2n;Framerv3c21UG2n.displayName=\"Components/Cookier banner\";Framerv3c21UG2n.defaultProps={height:120,width:987};addPropertyControls(Framerv3c21UG2n,{variant:{options:[\"LWBwsbgs1\",\"Ncb2TveVw\",\"RsQkHn7oJ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerv3c21UG2n,[{explicitInter:true,fonts:[{family:\"Sofia Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZhIxXuM5tWh1Zyunf814ZQtbsk.woff2\"}]},...SVGFonts,...ComponentsButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv3c21UG2n\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"987\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ncb2TveVw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RsQkHn7oJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"120\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./v3c21UG2n.map"],"mappings":"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"}