{"version":3,"file":"DVfhp7KbeTU_rgfVCVbaIDOBXJuxf9jb1sXTJpgfgEs.vbMC0K8Z.mjs","names":["animation","HeroVerticalBGVideo","AnimatedNumberCounterCC","FeatureBlock","PlanCards","CTAPrimary","metadata","className","PropertyOverrides","RichText","Image","css"],"sources":["https:/framerusercontent.com/modules/k7CjuhKqEfWueogBR7yc/ji59BOHeV4ckhwSlU2Pt/AnimatedNumberCounter.js","https:/framerusercontent.com/modules/lhaJV6PV2qrEWuAZouFw/e7DZQ78EoJcB1hfsoMyp/nn0cIBvGp.js","https:/framerusercontent.com/modules/EBQhzUww1ztMxuBCH331/JyklSNDCbzyNvR18yGs4/nn0cIBvGp.js"],"sourcesContent":["// This component renders an Animated Number Counter with customizable appearance and animation options.\n// Last updated by @joshua on 20241126.\nimport{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,motion,useInView}from\"framer-motion\";import{useEffect,useRef,useState}from\"react\";export default function AnimatedNumberCounter(props){// Reference to the component's DOM node.\nconst ref=useRef(null);// Determine if the component is in view based on the trigger.\nconst isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});// State to store the animated number as text.\nconst[numberText,setNumberText]=useState(\"\");// Destructure props for easier access.\nconst{start,end,decimals,commas,fontColor,animation,prefix,suffix,textSelect,display,font,style}=props;// State to keep track of the current animation instance.\nconst[currentAnimation,setCurrentAnimation]=useState(null);// Check if the current render target is the Canvas.\nconst isCanvas=RenderTarget.current()===RenderTarget.canvas;// Function to format the number based on decimals and comma settings.\nconst formatNumber=value=>{let formatted=value.toFixed(decimals);if(commas){formatted=formatted.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return formatted;};// Function to initiate the animation from start to end.\nconst runAnimation=()=>{if(!isCanvas){if(currentAnimation){currentAnimation.stop();}const animationInstance=animate(start,end,{...animation.transition,onUpdate:latest=>{setNumberText(formatNumber(latest));},onComplete:()=>{setCurrentAnimation(null);}});setCurrentAnimation(animationInstance);}};// Initialize the number text and start animation if the trigger is \"appear\".\nuseEffect(()=>{setNumberText(formatNumber(start));if(animation.trigger===\"appear\"){runAnimation();}// eslint-disable-next-line react-hooks/exhaustive-deps\n},[]);// Trigger the animation when the component enters or exits the viewport.\nuseEffect(()=>{if(animation.trigger===\"layerInView\"){if(isInView){runAnimation();}else if(currentAnimation){currentAnimation.stop();setNumberText(formatNumber(start));}}// eslint-disable-next-line react-hooks/exhaustive-deps\n},[isInView]);// Define the styling for the animated number.\nconst numberStyle={userSelect:textSelect?\"auto\":\"none\",fontVariantNumeric:`${display.monospace?\"tabular-nums \":\"\"}${display.slashedZeros?\"slashed-zero\":\"\"}`,margin:0,textTransform:display.slashedZeros&&!display.monospace?\"slashed-zero\":undefined,...fontColor.mode===\"solid\"?{color:fontColor.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${fontColor.angle}deg, ${fontColor.startColor}, ${fontColor.endColor})`},...font,...style};// Render the animated number with prefix and suffix.\nreturn /*#__PURE__*/_jsxs(motion.p,{ref:ref,style:numberStyle,children:[prefix,isCanvas?formatNumber(end):numberText,suffix]});}AnimatedNumberCounter.displayName=\"Animated Number Counter CC\";// Property controls for customizing the AnimatedNumberCounter component.\naddPropertyControls(AnimatedNumberCounter,{start:{type:ControlType.Number,title:\"Start Value\",defaultValue:0,description:\"The starting number of the animation.\"},end:{type:ControlType.Number,title:\"End Value\",defaultValue:100,description:\"The ending number of the animation.\"},decimals:{type:ControlType.Number,title:\"Decimals\",defaultValue:0,min:0,max:3,step:1,description:\"Number of decimal places to display.\"},commas:{type:ControlType.Boolean,title:\"Show Commas\",defaultValue:true,description:\"Toggle to display commas as thousand separators.\"},fontColor:{type:ControlType.Object,title:\"Font Color\",controls:{mode:{type:ControlType.Enum,title:\"Mode\",defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true,description:\"Choose between solid color or gradient for the text.\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\",hidden:props=>props.mode===\"gradient\",description:\"Solid color of the text.\"},startColor:{type:ControlType.Color,title:\"Start Color\",defaultValue:\"#000000\",hidden:props=>props.mode===\"solid\",description:\"Starting color of the gradient text.\"},endColor:{type:ControlType.Color,title:\"End Color\",defaultValue:\"#FFFFFF\",hidden:props=>props.mode===\"solid\",description:\"Ending color of the gradient text.\"},angle:{type:ControlType.Number,title:\"Gradient Angle\",defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode===\"solid\",description:\"Angle of the gradient for the text.\"}},description:\"Configuration for the text color and gradient.\"},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",defaultValue:{fontFamily:\"sans-serif\",fontSize:32,lineHeight:1.25,fontWeight:600},description:\"Font styling for the counter text.\"},animation:{type:ControlType.Object,title:\"Animation\",buttonTitle:\"Edit Animation\",controls:{trigger:{type:ControlType.Enum,title:\"Trigger\",defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",description:\"Determines when the animation should start.\"},replay:{type:ControlType.Boolean,title:\"Replay Animation\",defaultValue:true,hidden:props=>props.trigger===\"appear\",description:\"Replay the animation each time the component enters the viewport.\"},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{duration:2,ease:\"easeInOut\"},description:\"Transition settings for the animation.\"}},description:\"Configuration for the animation behavior and transitions.\"},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\",description:\"Text to display before the animated number.\"},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\",description:\"Text to display after the animated number.\"},textSelect:{type:ControlType.Boolean,title:\"Allow Text Selection\",defaultValue:true,description:\"Enable or disable text selection for the counter.\"},display:{type:ControlType.Object,title:\"Display Options\",buttonTitle:\"Edit Display\",controls:{monospace:{type:ControlType.Boolean,title:\"Monospaced\",defaultValue:false,description:\"Monospaced number characters.\"},slashedZeros:{type:ControlType.Boolean,title:\"Slashed Zeros\",defaultValue:false,description:\"Adds a diagonal slash through zeros if your font supports it.\"}},description:\"Additional display options for the counter.\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedNumberCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedNumberCounter.map","// Generated by Framer (b0cf16c)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={CfGhBAyom:new LazyValue(()=>import(\"./nn0cIBvGp-0.js\")),K7Eu1zkz_:new LazyValue(()=>import(\"./nn0cIBvGp-7.js\")),KnTSfRlEb:new LazyValue(()=>import(\"./nn0cIBvGp-4.js\")),LASqWnjbT:new LazyValue(()=>import(\"./nn0cIBvGp-1.js\")),LMYmDzsTL:new LazyValue(()=>import(\"./nn0cIBvGp-3.js\")),PadVuhOmT:new LazyValue(()=>import(\"./nn0cIBvGp-6.js\")),PKMmRs3eb:new LazyValue(()=>import(\"./nn0cIBvGp-2.js\")),sLE_fR6Py:new LazyValue(()=>import(\"./nn0cIBvGp-8.js\")),ZB4lZcUPA:new LazyValue(()=>import(\"./nn0cIBvGp-5.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import PlanCards from\"#framer/local/canvasComponent/LnCNQKe4F/LnCNQKe4F.js\";import FeatureBlock from\"#framer/local/canvasComponent/NPUpDcLMa/NPUpDcLMa.js\";import HeroVerticalBGVideo from\"#framer/local/canvasComponent/pA28ox3fN/pA28ox3fN.js\";import CTAPrimary from\"#framer/local/canvasComponent/vRSca_mm7/vRSca_mm7.js\";import AnimatedNumberCounterCC from\"#framer/local/codeFile/cOGHo4_/AnimatedNumberCounter.js\";import*as sharedStyle1 from\"#framer/local/css/Gk_iqeUzI/Gk_iqeUzI.js\";import*as sharedStyle from\"#framer/local/css/uzLO8B62u/uzLO8B62u.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/nn0cIBvGp/nn0cIBvGp.js\";import metadataProvider from\"#framer/local/webPageMetadata/nn0cIBvGp/nn0cIBvGp.js\";const HeroVerticalBGVideoFonts=getFonts(HeroVerticalBGVideo);const AnimatedNumberCounterCCFonts=getFonts(AnimatedNumberCounterCC);const FeatureBlockFonts=getFonts(FeatureBlock);const TickerFonts=getFonts(Ticker);const PlanCardsFonts=getFonts(PlanCards);const CTAPrimaryFonts=getFonts(CTAPrimary);const breakpoints={bqidp_cwy:\"(min-width: 1280px)\",IBeJo4q0j:\"(max-width: 767px)\",vtoRrocnK:\"(min-width: 768px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-839Fb\";const variantClassNames={bqidp_cwy:\"framer-v-14ab3ch\",IBeJo4q0j:\"framer-v-1ob1otm\",vtoRrocnK:\"framer-v-jqleda\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"bqidp_cwy\",Phone:\"IBeJo4q0j\",Tablet:\"vtoRrocnK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bqidp_cwy\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"bqidp_cwy\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-63b4f2c3-6eca-4822-9037-55f1154c9e35, rgb(19, 19, 19)); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-14ab3ch\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-168axrn\",\"data-framer-name\":\"MAIN\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8fb9g\",\"data-framer-name\":\"FOLD\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kn9fix-container\",nodeId:\"HEjxyDPzl\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{FXaEOnnd7:\"https://framerusercontent.com/assets/EX4rfmquY8pM04PmzyAXSr4F3c0.mp4\",variant:\"sDdTfzM9C\"},vtoRrocnK:{variant:\"Z8P6jMWWP\"}},children:/*#__PURE__*/_jsx(HeroVerticalBGVideo,{e1gG4MTAy:getLocalizedValue(\"v1\",activeLocale)??\"We're thrilled to showcase the remarkable progress we're making in revitalizing our beautiful planet through reforestation projects.\",FXaEOnnd7:\"https://framerusercontent.com/assets/NXkaob3NVb8MA5NB92ahPLkz26U.mp4\",height:\"100%\",id:\"HEjxyDPzl\",jzKM4UT3Z:\"\",layoutId:\"HEjxyDPzl\",OcwdRHqIT:getLocalizedValue(\"v0\",activeLocale)??\"bunq users are reforesting the world\",style:{height:\"100%\",width:\"100%\"},T0_gHgAhi:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/LuBgDDcNN9rmcJp0ajUmFiAuY.jpg\",srcSet:\"https://framerusercontent.com/images/LuBgDDcNN9rmcJp0ajUmFiAuY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LuBgDDcNN9rmcJp0ajUmFiAuY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LuBgDDcNN9rmcJp0ajUmFiAuY.jpg 1920w\"},\"\"),variant:\"u8MXvtWXK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nlh21\",\"data-framer-name\":\"BODY\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1mcs4zs\",\"data-framer-name\":\"Counter\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pjrfny-container\",isAuthoredByUser:true,nodeId:\"p_6mCxD40\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"34px\",fontStyle:\"normal\",fontWeight:800,letterSpacing:\"-0.02em\",lineHeight:\"1.25em\",textAlign:\"center\"}},vtoRrocnK:{font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"48px\",fontStyle:\"normal\",fontWeight:800,letterSpacing:\"-0.02em\",lineHeight:\"1.25em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(AnimatedNumberCounterCC,{animation:{replay:true,transition:{bounce:.25,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:30,font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"52px\",fontStyle:\"normal\",fontWeight:800,letterSpacing:\"-0.02em\",lineHeight:\"1.25em\",textAlign:\"center\"},fontColor:{angle:180,color:\"var(--token-e321b03f-d732-43f9-bbf7-842b7ca11fae, rgb(255, 255, 255))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},height:\"100%\",id:\"p_6mCxD40\",layoutId:\"p_6mCxD40\",prefix:\"We're planting \",start:0,style:{width:\"100%\"},suffix:getLocalizedValue(\"v2\",activeLocale)??\" million trees, and counting\",textSelect:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+232}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1samoml-container\",nodeId:\"V43VDc2Wt\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"aTepcWTKt\"},vtoRrocnK:{variant:\"s0KS7XxBW\"}},children:/*#__PURE__*/_jsx(FeatureBlock,{Bkh4vGbkZ:true,CSDlfv71W:\"Medium-length bullet point text goes here\",DIweeVMls:\"gp9nLEfir\",E_Wx4jMJ2:\"Medium-length bullet point text goes here\",ENGJ1apmT:true,ESxfwn3qs:\"Medium-length bullet point text goes here\",F8CqJ27an:getLocalizedValue(\"v5\",activeLocale)??\"Every bunq user plants trees simply by using their bunq card. For every €1,000 spent, they earn 1 tree. All bunq Elite users plant 1 tree for every €100 spent. For every tree earned in the bunq app, we finance the planting of a real one.\",gitjZ2gg9:getLocalizedValue(\"v6\",activeLocale)??\"Terms & Conditions apply\",GLbeFnlVg:\"Medium-length bullet point text goes here\",height:\"100%\",id:\"V43VDc2Wt\",IG9Eb9mE1:true,iKK57T5eI:\"\",JNdCSkyN2:false,k5o0386Bp:addImageAlt({pixelHeight:4200,pixelWidth:2800,src:\"https://framerusercontent.com/images/JtizHEy4XLZTYAWgsHsZn8E.jpg\",srcSet:\"https://framerusercontent.com/images/JtizHEy4XLZTYAWgsHsZn8E.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/JtizHEy4XLZTYAWgsHsZn8E.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/JtizHEy4XLZTYAWgsHsZn8E.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/JtizHEy4XLZTYAWgsHsZn8E.jpg 2800w\"},\"\"),layoutId:\"V43VDc2Wt\",MCrU75I83:\"T0TyMIx3I\",owzg6GY1d:\"V_e9Z_ble\",style:{width:\"100%\"},TB_etlOlo:getLocalizedValue(\"v4\",activeLocale)??\"How bunqers contribute\",TW7gpa0n_:true,UC91GxyAm:true,variant:\"aHUBrPu8D\",width:\"100%\",ZaLKW0ZBR:getLocalizedValue(\"v3\",activeLocale)??\"https://static.bunq.com/framer/videos/finn_20240529.mp4\",ZbaXd5olz:\"Medium-length bullet point text goes here\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+936}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+968,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfx1nu-container\",nodeId:\"BQ_a3ZArT\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"aTepcWTKt\"},vtoRrocnK:{variant:\"zqRzXHe7f\"}},children:/*#__PURE__*/_jsx(FeatureBlock,{Bkh4vGbkZ:true,CSDlfv71W:\"Medium-length bullet point text goes here\",DIweeVMls:\"gp9nLEfir\",E_Wx4jMJ2:\"Medium-length bullet point text goes here\",ENGJ1apmT:true,ESxfwn3qs:\"Medium-length bullet point text goes here\",F8CqJ27an:getLocalizedValue(\"v8\",activeLocale)??\"We work with veritree to plant the trees earned by our users. We chose this partner for their transparency and dedication to real change. Blockchain tracking and constant updates allow us verify that every single tree is actually being planted, and see the difference we’re making in real time.\",gitjZ2gg9:getLocalizedValue(\"v6\",activeLocale)??\"Terms & Conditions apply\",GLbeFnlVg:\"Medium-length bullet point text goes here\",height:\"100%\",id:\"BQ_a3ZArT\",IG9Eb9mE1:true,iKK57T5eI:getLocalizedValue(\"v9\",activeLocale)??\"Discover veritree\",JNdCSkyN2:false,k5o0386Bp:addImageAlt({pixelHeight:4480,pixelWidth:6720,src:\"https://framerusercontent.com/images/rsqqzYaZ3LpbIlRMMEbIUKdfL0.jpg\",srcSet:\"https://framerusercontent.com/images/rsqqzYaZ3LpbIlRMMEbIUKdfL0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rsqqzYaZ3LpbIlRMMEbIUKdfL0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rsqqzYaZ3LpbIlRMMEbIUKdfL0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rsqqzYaZ3LpbIlRMMEbIUKdfL0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/rsqqzYaZ3LpbIlRMMEbIUKdfL0.jpg 6720w\"},\"\"),layoutId:\"BQ_a3ZArT\",MCrU75I83:\"T0TyMIx3I\",owzg6GY1d:\"gp9nLEfir\",style:{width:\"100%\"},TB_etlOlo:getLocalizedValue(\"v7\",activeLocale)??\"Meet veritree\",TW7gpa0n_:true,UC91GxyAm:true,variant:\"TzTUe6XAW\",width:\"100%\",ZaLKW0ZBR:getLocalizedValue(\"v3\",activeLocale)??\"https://static.bunq.com/framer/videos/finn_20240529.mp4\",ZbaXd5olz:\"Medium-length bullet point text goes here\",zJWsCe4q1:\"https://www.veritree.com/why-veritree\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+1640}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+1672,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pnxv8v-container\",nodeId:\"MfvA0PL_o\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"aTepcWTKt\"},vtoRrocnK:{variant:\"s0KS7XxBW\"}},children:/*#__PURE__*/_jsx(FeatureBlock,{Bkh4vGbkZ:true,CSDlfv71W:\"Medium-length bullet point text goes here\",DIweeVMls:\"gp9nLEfir\",E_Wx4jMJ2:\"Medium-length bullet point text goes here\",ENGJ1apmT:true,ESxfwn3qs:\"Medium-length bullet point text goes here\",F8CqJ27an:getLocalizedValue(\"v11\",activeLocale)??\"bunq has active projects in Mteza Creek and Tana Salt (both in Southern Kenya), and completed a few others across Kenya and Madagascar. These places were chosen for their significance in environmental preservation and community support.\",gitjZ2gg9:getLocalizedValue(\"v6\",activeLocale)??\"Terms & Conditions apply\",GLbeFnlVg:\"Medium-length bullet point text goes here\",height:\"100%\",id:\"MfvA0PL_o\",IG9Eb9mE1:true,iKK57T5eI:getLocalizedValue(\"v12\",activeLocale)??\"See our sites\",JNdCSkyN2:false,k5o0386Bp:addImageAlt({pixelHeight:4412,pixelWidth:6618,src:\"https://framerusercontent.com/images/gOImIYOTxO3RWlmMpOzZc2MyR8Q.jpg\",srcSet:\"https://framerusercontent.com/images/gOImIYOTxO3RWlmMpOzZc2MyR8Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gOImIYOTxO3RWlmMpOzZc2MyR8Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gOImIYOTxO3RWlmMpOzZc2MyR8Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gOImIYOTxO3RWlmMpOzZc2MyR8Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gOImIYOTxO3RWlmMpOzZc2MyR8Q.jpg 6618w\"},\"\"),layoutId:\"MfvA0PL_o\",MCrU75I83:\"T0TyMIx3I\",owzg6GY1d:\"gp9nLEfir\",style:{width:\"100%\"},TB_etlOlo:getLocalizedValue(\"v10\",activeLocale)??\"Our planting sites\",TW7gpa0n_:true,UC91GxyAm:true,variant:\"aHUBrPu8D\",width:\"100%\",ZaLKW0ZBR:getLocalizedValue(\"v3\",activeLocale)??\"https://static.bunq.com/framer/videos/finn_20240529.mp4\",ZbaXd5olz:\"Medium-length bullet point text goes here\",zJWsCe4q1:\"https://www.veritree.com/impact-hub/bunq\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+2344}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+2376,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oixj70-container\",nodeId:\"lL5fft23d\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"aTepcWTKt\"},vtoRrocnK:{variant:\"zqRzXHe7f\"}},children:/*#__PURE__*/_jsx(FeatureBlock,{Bkh4vGbkZ:true,CSDlfv71W:\"Medium-length bullet point text goes here\",DIweeVMls:\"gp9nLEfir\",E_Wx4jMJ2:\"Medium-length bullet point text goes here\",ENGJ1apmT:true,ESxfwn3qs:\"Medium-length bullet point text goes here\",F8CqJ27an:getLocalizedValue(\"v14\",activeLocale)??\"Besides offsetting CO2, our users are stabilizing coastlines, nurturing marine life, and supporting local livelihoods in a region where the majority of the population lives below the poverty line. By joining hands with veritree, we’ve committed to four of the UN’s sustainable development goals: no poverty, decent work and economic growth, climate action and life on land.\",gitjZ2gg9:getLocalizedValue(\"v6\",activeLocale)??\"Terms & Conditions apply\",GLbeFnlVg:\"Medium-length bullet point text goes here\",height:\"100%\",id:\"lL5fft23d\",IG9Eb9mE1:true,iKK57T5eI:\"\",JNdCSkyN2:false,k5o0386Bp:addImageAlt({pixelHeight:4200,pixelWidth:2800,src:\"https://framerusercontent.com/images/x1tYKqtIHu29pOXA7WwKI9PM30.jpg\",srcSet:\"https://framerusercontent.com/images/x1tYKqtIHu29pOXA7WwKI9PM30.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/x1tYKqtIHu29pOXA7WwKI9PM30.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/x1tYKqtIHu29pOXA7WwKI9PM30.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/x1tYKqtIHu29pOXA7WwKI9PM30.jpg 2800w\"},\"\"),layoutId:\"lL5fft23d\",MCrU75I83:\"T0TyMIx3I\",owzg6GY1d:\"gp9nLEfir\",style:{width:\"100%\"},TB_etlOlo:getLocalizedValue(\"v13\",activeLocale)??\"More than trees\",TW7gpa0n_:true,UC91GxyAm:true,variant:\"TzTUe6XAW\",width:\"100%\",ZaLKW0ZBR:getLocalizedValue(\"v3\",activeLocale)??\"https://static.bunq.com/framer/videos/finn_20240529.mp4\",ZbaXd5olz:\"Medium-length bullet point text goes here\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{HRJVC2Tn4:\"why-were-planting-mangrove-trees\"},unresolvedPathSlugs:{HRJVC2Tn4:{collectionId:\"RkpTlbLRO\",collectionItemId:\"UnzaiqWQY\"}},webPageId:\"dO9lml58J\"},implicitPathVariables:undefined},{href:{pathVariables:{HRJVC2Tn4:\"why-were-planting-mangrove-trees\"},unresolvedPathSlugs:{HRJVC2Tn4:{collectionId:\"RkpTlbLRO\",collectionItemId:\"UnzaiqWQY\"}},webPageId:\"dO9lml58J\"},implicitPathVariables:undefined},{href:{pathVariables:{HRJVC2Tn4:\"why-were-planting-mangrove-trees\"},unresolvedPathSlugs:{HRJVC2Tn4:{collectionId:\"RkpTlbLRO\",collectionItemId:\"UnzaiqWQY\"}},webPageId:\"dO9lml58J\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+3048}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+3080,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xirli-container\",nodeId:\"hXISZ1a2S\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"aTepcWTKt\",zJWsCe4q1:resolvedLinks[2]},vtoRrocnK:{variant:\"s0KS7XxBW\",zJWsCe4q1:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(FeatureBlock,{Bkh4vGbkZ:true,CSDlfv71W:\"Medium-length bullet point text goes here\",DIweeVMls:\"gp9nLEfir\",E_Wx4jMJ2:\"Medium-length bullet point text goes here\",ENGJ1apmT:true,ESxfwn3qs:\"Medium-length bullet point text goes here\",F8CqJ27an:getLocalizedValue(\"v16\",activeLocale)??\"Mangrove trees are exceptional carbon sinks! One mangrove tree can make up for 12.3 kg of CO2 per year. They are widely considered to be the best trees to fight climate change, because not only do they offset CO2, they also filter pollutants out of our water and act as nurseries for marine life.\",gitjZ2gg9:getLocalizedValue(\"v6\",activeLocale)??\"Terms & Conditions apply\",GLbeFnlVg:\"Medium-length bullet point text goes here\",height:\"100%\",id:\"hXISZ1a2S\",IG9Eb9mE1:true,iKK57T5eI:getLocalizedValue(\"v17\",activeLocale)??\"Learn more\",JNdCSkyN2:false,k5o0386Bp:addImageAlt({pixelHeight:4200,pixelWidth:2800,src:\"https://framerusercontent.com/images/qJgUxDEGMMvvoFAis1NTTyQaqJQ.jpg\",srcSet:\"https://framerusercontent.com/images/qJgUxDEGMMvvoFAis1NTTyQaqJQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/qJgUxDEGMMvvoFAis1NTTyQaqJQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/qJgUxDEGMMvvoFAis1NTTyQaqJQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/qJgUxDEGMMvvoFAis1NTTyQaqJQ.jpg 2800w\"},\"\"),layoutId:\"hXISZ1a2S\",MCrU75I83:\"T0TyMIx3I\",owzg6GY1d:\"gp9nLEfir\",style:{width:\"100%\"},TB_etlOlo:getLocalizedValue(\"v15\",activeLocale)??\"Focused on mangroves\",TW7gpa0n_:true,UC91GxyAm:true,variant:\"aHUBrPu8D\",width:\"100%\",ZaLKW0ZBR:getLocalizedValue(\"v3\",activeLocale)??\"https://static.bunq.com/framer/videos/finn_20240529.mp4\",ZbaXd5olz:\"Medium-length bullet point text goes here\",zJWsCe4q1:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{HRJVC2Tn4:\"visit-the-bunq-communitys-mangrove-tree\"},unresolvedPathSlugs:{HRJVC2Tn4:{collectionId:\"RkpTlbLRO\",collectionItemId:\"sztD5ubFj\"}},webPageId:\"dO9lml58J\"},implicitPathVariables:undefined},{href:{pathVariables:{HRJVC2Tn4:\"visit-the-bunq-communitys-mangrove-tree\"},unresolvedPathSlugs:{HRJVC2Tn4:{collectionId:\"RkpTlbLRO\",collectionItemId:\"sztD5ubFj\"}},webPageId:\"dO9lml58J\"},implicitPathVariables:undefined},{href:{pathVariables:{HRJVC2Tn4:\"visit-the-bunq-communitys-mangrove-tree\"},unresolvedPathSlugs:{HRJVC2Tn4:{collectionId:\"RkpTlbLRO\",collectionItemId:\"sztD5ubFj\"}},webPageId:\"dO9lml58J\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+3752}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+3784,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11cfh37-container\",nodeId:\"AMYOUW0Wz\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"aTepcWTKt\",zJWsCe4q1:resolvedLinks1[2]},vtoRrocnK:{variant:\"zqRzXHe7f\",zJWsCe4q1:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(FeatureBlock,{Bkh4vGbkZ:true,CSDlfv71W:\"Medium-length bullet point text goes here\",DIweeVMls:\"gp9nLEfir\",E_Wx4jMJ2:\"Medium-length bullet point text goes here\",ENGJ1apmT:true,ESxfwn3qs:\"Medium-length bullet point text goes here\",F8CqJ27an:getLocalizedValue(\"v19\",activeLocale)??\"Mangrove trees are also rare champions in saltwater environments, and notably play a crucial role in protecting communities from natural disasters. If you're eager to witness these environmental superheroes up close, you can visit our very own mangrove at Hortus Botanicus in Amsterdam!\",gitjZ2gg9:getLocalizedValue(\"v6\",activeLocale)??\"Terms & Conditions apply\",GLbeFnlVg:\"Medium-length bullet point text goes here\",height:\"100%\",id:\"AMYOUW0Wz\",IG9Eb9mE1:true,iKK57T5eI:getLocalizedValue(\"v17\",activeLocale)??\"Learn more\",JNdCSkyN2:false,k5o0386Bp:addImageAlt({pixelHeight:1216,pixelWidth:1216,src:\"https://framerusercontent.com/images/Vmh0q2YXnKgw5D0b16Lw1YYO34.webp\",srcSet:\"https://framerusercontent.com/images/Vmh0q2YXnKgw5D0b16Lw1YYO34.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Vmh0q2YXnKgw5D0b16Lw1YYO34.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vmh0q2YXnKgw5D0b16Lw1YYO34.webp 1216w\"},\"\"),layoutId:\"AMYOUW0Wz\",MCrU75I83:\"T0TyMIx3I\",owzg6GY1d:\"gp9nLEfir\",style:{width:\"100%\"},TB_etlOlo:getLocalizedValue(\"v18\",activeLocale)??\"Come and visit our tree\",TW7gpa0n_:true,UC91GxyAm:true,variant:\"TzTUe6XAW\",width:\"100%\",ZaLKW0ZBR:getLocalizedValue(\"v3\",activeLocale)??\"https://static.bunq.com/framer/videos/finn_20240529.mp4\",ZbaXd5olz:\"Medium-length bullet point text goes here\",zJWsCe4q1:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+4456}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+4488,children:/*#__PURE__*/_jsx(Container,{className:\"framer-riroq4-container\",nodeId:\"WTdkptCrE\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"aTepcWTKt\"},vtoRrocnK:{variant:\"s0KS7XxBW\"}},children:/*#__PURE__*/_jsx(FeatureBlock,{Bkh4vGbkZ:true,CSDlfv71W:\"Medium-length bullet point text goes here\",DIweeVMls:\"V_e9Z_ble\",E_Wx4jMJ2:\"Medium-length bullet point text goes here\",ENGJ1apmT:true,ESxfwn3qs:\"Medium-length bullet point text goes here\",F8CqJ27an:getLocalizedValue(\"v21\",activeLocale)??\"Since 2019, the bunq community has ordered 30 million trees. But planting is just the beginning. That’s why we work with veritree to make sure every tree is planted under the right conditions and cared for afterward. With their tracking tools, you can see exactly when, where, and how your trees are helping the planet.\",gitjZ2gg9:getLocalizedValue(\"v6\",activeLocale)??\"Terms & Conditions apply\",GLbeFnlVg:\"Medium-length bullet point text goes here\",height:\"100%\",id:\"WTdkptCrE\",IG9Eb9mE1:true,iKK57T5eI:\"\",JNdCSkyN2:false,k5o0386Bp:addImageAlt({pixelHeight:1467,pixelWidth:2200,src:\"https://framerusercontent.com/images/EYVLgEnk0it5JOcx8aB8SK8VG3s.jpg\",srcSet:\"https://framerusercontent.com/images/EYVLgEnk0it5JOcx8aB8SK8VG3s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EYVLgEnk0it5JOcx8aB8SK8VG3s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EYVLgEnk0it5JOcx8aB8SK8VG3s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EYVLgEnk0it5JOcx8aB8SK8VG3s.jpg 2200w\"},\"\"),layoutId:\"WTdkptCrE\",MCrU75I83:\"T0TyMIx3I\",owzg6GY1d:\"gp9nLEfir\",style:{width:\"100%\"},TB_etlOlo:getLocalizedValue(\"v20\",activeLocale)??\"Our impact so far\",TW7gpa0n_:true,UC91GxyAm:true,variant:\"aHUBrPu8D\",width:\"100%\",ZaLKW0ZBR:getLocalizedValue(\"v3\",activeLocale)??\"https://static.bunq.com/framer/videos/finn_20240529.mp4\",ZbaXd5olz:\"Medium-length bullet point text goes here\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tnj7zw\",\"data-framer-name\":\"Commitments\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1skzmxj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f2q383\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4gak9y\",\"data-styles-preset\":\"uzLO8B62u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Committed to change\"})}),className:\"framer-1gl02x1\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bj1o1a\",\"data-styles-preset\":\"Gk_iqeUzI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68bc94eb-59e2-4576-80cf-fff1f77aac04, rgb(212, 212, 212))\"},children:\"Our efforts are in support of the following UN Sustainable Development goals.\"})}),className:\"framer-zetdte\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-75h7hy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qsJpfMfAI\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{gap:16,hoverFactor:.5,speed:100}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.25,id:\"qsJpfMfAI\",layoutId:\"qsJpfMfAI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal1\",motionChild:true,nodeId:\"JHV9872g0\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/qt5l2my3cby2MnrzBPGAGM8JR8o.png\",srcSet:\"https://framerusercontent.com/images/qt5l2my3cby2MnrzBPGAGM8JR8o.png?scale-down-to=512 512w,https://framerusercontent.com/images/qt5l2my3cby2MnrzBPGAGM8JR8o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qt5l2my3cby2MnrzBPGAGM8JR8o.png 1500w\"},className:\"framer-jxz2x6 framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal2\",motionChild:true,nodeId:\"HigxYZePU\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/zCGF8LMQcJ3uQvba8L4LLj4JloY.png\",srcSet:\"https://framerusercontent.com/images/zCGF8LMQcJ3uQvba8L4LLj4JloY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zCGF8LMQcJ3uQvba8L4LLj4JloY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zCGF8LMQcJ3uQvba8L4LLj4JloY.png 1500w\"},className:\"framer-10etrkd framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal3\",motionChild:true,nodeId:\"kgk1gfk0f\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/cz6WBw8Fotw0oYNID3TmAA6KVU.png\",srcSet:\"https://framerusercontent.com/images/cz6WBw8Fotw0oYNID3TmAA6KVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/cz6WBw8Fotw0oYNID3TmAA6KVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cz6WBw8Fotw0oYNID3TmAA6KVU.png 1500w\"},className:\"framer-zoq400 framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal4\",motionChild:true,nodeId:\"vhiotocBA\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/AVUbfveyBZkpKevlpnlyt0eWMo.png\",srcSet:\"https://framerusercontent.com/images/AVUbfveyBZkpKevlpnlyt0eWMo.png?scale-down-to=512 512w,https://framerusercontent.com/images/AVUbfveyBZkpKevlpnlyt0eWMo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AVUbfveyBZkpKevlpnlyt0eWMo.png 1500w\"},className:\"framer-k2wf5u framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal5\",motionChild:true,nodeId:\"fVNUQ45Db\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/H4BYb3bhQkLjaP2Xv6bsgSaRUcg.png\",srcSet:\"https://framerusercontent.com/images/H4BYb3bhQkLjaP2Xv6bsgSaRUcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/H4BYb3bhQkLjaP2Xv6bsgSaRUcg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H4BYb3bhQkLjaP2Xv6bsgSaRUcg.png 1500w\"},className:\"framer-1jgqryu framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal8\",motionChild:true,nodeId:\"BugwWEvie\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/YheUgaZAsAizqSe29dCIQuTaads.png\",srcSet:\"https://framerusercontent.com/images/YheUgaZAsAizqSe29dCIQuTaads.png?scale-down-to=512 512w,https://framerusercontent.com/images/YheUgaZAsAizqSe29dCIQuTaads.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YheUgaZAsAizqSe29dCIQuTaads.png 1500w\"},className:\"framer-16szus9 framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal9\",motionChild:true,nodeId:\"fKAXZea_R\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/oAPo7SLCHqYMnYw81HPiOpv0lQg.png\",srcSet:\"https://framerusercontent.com/images/oAPo7SLCHqYMnYw81HPiOpv0lQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/oAPo7SLCHqYMnYw81HPiOpv0lQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oAPo7SLCHqYMnYw81HPiOpv0lQg.png 1500w\"},className:\"framer-6iiuel framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal11\",motionChild:true,nodeId:\"kEkQ5Tuah\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/aH8hSOsjZxVOznwjp5oPgpuCIH8.png\",srcSet:\"https://framerusercontent.com/images/aH8hSOsjZxVOznwjp5oPgpuCIH8.png?scale-down-to=512 512w,https://framerusercontent.com/images/aH8hSOsjZxVOznwjp5oPgpuCIH8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aH8hSOsjZxVOznwjp5oPgpuCIH8.png 1500w\"},className:\"framer-lw3lpn framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal12\",motionChild:true,nodeId:\"lcCBl6Pz5\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/UCkFko2s3PtgPr11zf53urwkag.png\",srcSet:\"https://framerusercontent.com/images/UCkFko2s3PtgPr11zf53urwkag.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCkFko2s3PtgPr11zf53urwkag.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCkFko2s3PtgPr11zf53urwkag.png 1500w\"},className:\"framer-11z0kmx framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal13\",motionChild:true,nodeId:\"WsjCqMljz\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/WLmKIOWb2kFtvBhDsSSwyUh7230.png\",srcSet:\"https://framerusercontent.com/images/WLmKIOWb2kFtvBhDsSSwyUh7230.png?scale-down-to=512 512w,https://framerusercontent.com/images/WLmKIOWb2kFtvBhDsSSwyUh7230.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WLmKIOWb2kFtvBhDsSSwyUh7230.png 1500w\"},className:\"framer-u3nvy4 framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:\"https://sdgs.un.org/goals/goal15\",motionChild:true,nodeId:\"oYQKq4DLj\",openInNewTab:true,scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/IkXnzHZuE7tPdGpmwgbKJ5gguA.png\",srcSet:\"https://framerusercontent.com/images/IkXnzHZuE7tPdGpmwgbKJ5gguA.png?scale-down-to=512 512w,https://framerusercontent.com/images/IkXnzHZuE7tPdGpmwgbKJ5gguA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IkXnzHZuE7tPdGpmwgbKJ5gguA.png 1500w\"},className:\"framer-nwc4yh framer-1qdtt2w\",\"data-framer-name\":\"Image\",whileHover:animation})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+5705}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1062,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+5845,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16a3l6a-container\",nodeId:\"DToOxio5v\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"F19HkTVBk\"},vtoRrocnK:{variant:\"F2tgIWi96\"}},children:/*#__PURE__*/_jsx(PlanCards,{euAeZBJE0:getLocalizedValue(\"v32\",activeLocale)??\"Next level banking for your international business.\",f2YTnKMAD:getLocalizedValue(\"v29\",activeLocale)??\"The business bank account that gets you started.\",FHiJAmwYu:true,fVqgDOJ9n:getLocalizedValue(\"v28\",activeLocale)??\"The bank account designed for your international lifestyle.\",fYTPnpzZv:\"\",height:\"100%\",hT0M6hVbv:true,i6N7GGoxz:true,id:\"DToOxio5v\",iO9GGNqLv:getLocalizedValue(\"v31\",activeLocale)??\"Everything you need to scale your business.\",IpcMM6OGq:true,iVOSLNCcC:true,jArR5O4jd:true,JCjrbqY1w:true,kWKBBphyM:\"\",layoutId:\"DToOxio5v\",oFCiIrSfG:getLocalizedValue(\"v30\",activeLocale)??\"Everything you need to run your business.\",Ov27UX0Cs:true,Q3tITDTKK:getLocalizedValue(\"v27\",activeLocale)??\"The bank account that makes budgeting easy.\",ssjdUuecm:getLocalizedValue(\"v25\",activeLocale)??\"The essentials to get you started.\",style:{width:\"100%\"},Tlxkgu3HI:getLocalizedValue(\"v24\",activeLocale)??\"Check out all our plans\",TQcJwAj9x:\"\",variant:\"kWAFmvnzu\",Vp1myeqrK:true,width:\"100%\",wsPE7Esp8:getLocalizedValue(\"v26\",activeLocale)??\"The bank account for everyday use.\\xa0\\xa0\",yVthlivFq:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{y:(componentViewport?.y||0)+0+0+0+1e3+0+6767}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:815,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+6907,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1db79t7-container\",nodeId:\"U9qXQ1ZWH\",scopeId:\"nn0cIBvGp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IBeJo4q0j:{variant:\"VlsCVczJR\"},vtoRrocnK:{variant:\"ur5cqaN7a\"}},children:/*#__PURE__*/_jsx(CTAPrimary,{height:\"100%\",id:\"U9qXQ1ZWH\",layoutId:\"U9qXQ1ZWH\",lDUg0hraI:getLocalizedValue(\"v34\",activeLocale)??\"Open your account in just 5 minutes, directly from your phone.\",lqRRVMUml:true,style:{width:\"100%\"},T1IdSOfL8:getLocalizedValue(\"v33\",activeLocale)??\"Start your 30-day free trial\",uFflicMoy:getLocalizedValue(\"v35\",activeLocale)??\"Get started\",variant:\"ZC7x07oVg\",width:\"100%\",z2l5L8ejj:\"var(--token-ba72acab-8d79-4e80-8497-a1508708cf01, rgb(255, 106, 0))\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-839Fb.framer-1qdtt2w, .framer-839Fb .framer-1qdtt2w { display: block; }\",\".framer-839Fb.framer-14ab3ch { align-content: center; align-items: center; background-color: var(--token-63b4f2c3-6eca-4822-9037-55f1154c9e35, #131313); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-839Fb .framer-168axrn, .framer-839Fb .framer-1nlh21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-839Fb .framer-j8fb9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-839Fb .framer-kn9fix-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-839Fb .framer-1mcs4zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-839Fb .framer-1pjrfny-container, .framer-839Fb .framer-1samoml-container, .framer-839Fb .framer-1mfx1nu-container, .framer-839Fb .framer-1pnxv8v-container, .framer-839Fb .framer-oixj70-container, .framer-839Fb .framer-8xirli-container, .framer-839Fb .framer-11cfh37-container, .framer-839Fb .framer-riroq4-container, .framer-839Fb .framer-16a3l6a-container, .framer-839Fb .framer-1db79t7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-839Fb .framer-1tnj7zw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 32px 64px 32px; position: relative; width: 100%; }\",\".framer-839Fb .framer-1skzmxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-839Fb .framer-f2q383 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 768px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-839Fb .framer-1gl02x1, .framer-839Fb .framer-zetdte { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-839Fb .framer-75h7hy-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-839Fb .framer-jxz2x6, .framer-839Fb .framer-10etrkd, .framer-839Fb .framer-zoq400, .framer-839Fb .framer-k2wf5u, .framer-839Fb .framer-1jgqryu, .framer-839Fb .framer-16szus9, .framer-839Fb .framer-6iiuel, .framer-839Fb .framer-lw3lpn, .framer-839Fb .framer-11z0kmx, .framer-839Fb .framer-u3nvy4, .framer-839Fb .framer-nwc4yh { aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 200px); position: relative; text-decoration: none; width: 200px; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-839Fb.framer-14ab3ch, .framer-839Fb .framer-168axrn, .framer-839Fb .framer-j8fb9g, .framer-839Fb .framer-1nlh21, .framer-839Fb .framer-1mcs4zs, .framer-839Fb .framer-1tnj7zw, .framer-839Fb .framer-1skzmxj, .framer-839Fb .framer-f2q383 { gap: 0px; } .framer-839Fb.framer-14ab3ch > *, .framer-839Fb .framer-168axrn > *, .framer-839Fb .framer-j8fb9g > *, .framer-839Fb .framer-1nlh21 > *, .framer-839Fb .framer-1mcs4zs > *, .framer-839Fb .framer-1tnj7zw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-839Fb.framer-14ab3ch > :first-child, .framer-839Fb .framer-168axrn > :first-child, .framer-839Fb .framer-j8fb9g > :first-child, .framer-839Fb .framer-1nlh21 > :first-child, .framer-839Fb .framer-1mcs4zs > :first-child, .framer-839Fb .framer-1tnj7zw > :first-child, .framer-839Fb .framer-1skzmxj > :first-child, .framer-839Fb .framer-f2q383 > :first-child { margin-top: 0px; } .framer-839Fb.framer-14ab3ch > :last-child, .framer-839Fb .framer-168axrn > :last-child, .framer-839Fb .framer-j8fb9g > :last-child, .framer-839Fb .framer-1nlh21 > :last-child, .framer-839Fb .framer-1mcs4zs > :last-child, .framer-839Fb .framer-1tnj7zw > :last-child, .framer-839Fb .framer-1skzmxj > :last-child, .framer-839Fb .framer-f2q383 > :last-child { margin-bottom: 0px; } .framer-839Fb .framer-1skzmxj > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-839Fb .framer-f2q383 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 768px) and (max-width: 1279px) { .framer-839Fb.framer-14ab3ch { width: 768px; }}\",\"@media (max-width: 767px) { .framer-839Fb.framer-14ab3ch { width: 375px; } .framer-839Fb .framer-1mcs4zs { padding: 32px 16px 0px 16px; } .framer-839Fb .framer-1tnj7zw { padding: 32px 16px 32px 16px; } .framer-839Fb .framer-1skzmxj { gap: 32px; } .framer-839Fb .framer-f2q383 { gap: 12px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-839Fb .framer-1skzmxj, .framer-839Fb .framer-f2q383 { gap: 0px; } .framer-839Fb .framer-1skzmxj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-839Fb .framer-1skzmxj > :first-child, .framer-839Fb .framer-f2q383 > :first-child { margin-top: 0px; } .framer-839Fb .framer-1skzmxj > :last-child, .framer-839Fb .framer-f2q383 > :last-child { margin-bottom: 0px; } .framer-839Fb .framer-f2q383 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8744\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vtoRrocnK\":{\"layout\":[\"fixed\",\"auto\"]},\"IBeJo4q0j\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framernn0cIBvGp=withCSS(Component,css,\"framer-839Fb\");export default Framernn0cIBvGp;Framernn0cIBvGp.displayName=\"Drafts / Our Green Impact\";Framernn0cIBvGp.defaultProps={height:8744,width:1280};addFonts(Framernn0cIBvGp,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JXYTN5EJMI2L5HT6DLJ6ADWEKWUDLIUL/RQGLUYA34WAGWBJDMV73S4VWJ3XX5S34/UKL6CY2W4IEGAEO6DES7XSSIJFRRXNXQ.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...HeroVerticalBGVideoFonts,...AnimatedNumberCounterCCFonts,...FeatureBlockFonts,...TickerFonts,...PlanCardsFonts,...CTAPrimaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernn0cIBvGp\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8744\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vtoRrocnK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IBeJo4q0j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}