{"version":3,"file":"3P-RLRW4qT1cM52Rm-SeQI_ZsVkneVA9HNjP9xrXyZ0.DVGdzop_.mjs","names":["getProps","ObjectFitType","SrcType","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","Image","className","css","Navigation","StoriesCard","Footer","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js","https:/framerusercontent.com/modules/7CNUd4F0kjv8n4jHzdMa/1pPMSTNx0UwE5ixBEKD7/W_eemmykD.js","https:/framerusercontent.com/modules/HTzdMbQAFV8pogFYubr1/RqqtJatbBS0iHeGdT1Qq/Qy9zYxbIQ.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks “Play”.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome – if we’re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won’t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That’s because\n// `startTime` == start == changing it shouldn’t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn’t exist,\n// you might ask? Now, that’s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the “Start Time” in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don’t know, and it\n//   always supported it, so let’s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map","// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/4Gv6O9WcEjYFF3D7KrRp/D2m1QMhoIrhAelQp8PSY/mBypMumWB.js\";const cycleOrder=[\"Yuhc3Pc9b\",\"J3JR4cE69\",\"VcGftXc_o\",\"pmA62WFKH\",\"v8T2oFNb_\",\"WyG4fuovb\"];const serializationHash=\"framer-0zx3S\";const variantClassNames={J3JR4cE69:\"framer-v-1t7137a\",pmA62WFKH:\"framer-v-1sce556\",v8T2oFNb_:\"framer-v-cphdpv\",VcGftXc_o:\"framer-v-1v8o892\",WyG4fuovb:\"framer-v-1yvgcm6\",Yuhc3Pc9b:\"framer-v-8ihv7d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"LIL - left\":\"v8T2oFNb_\",\"LIL - right\":\"VcGftXc_o\",\"phone - bottom\":\"pmA62WFKH\",\"phone - top\":\"WyG4fuovb\",left:\"J3JR4cE69\",right:\"Yuhc3Pc9b\"};const getProps=({background,background1,height,id,link,logo,text,textColor,width,...props})=>{return{...props,bURQZwrLE:textColor??props.bURQZwrLE??\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\",C4cqly4vX:link??props.C4cqly4vX,DYmJe19Vr:background1??props.DYmJe19Vr??{pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/DGmlVI3LDA6qvAmtkw7iLmveH88.jpg\",srcSet:\"https://framerusercontent.com/images/DGmlVI3LDA6qvAmtkw7iLmveH88.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DGmlVI3LDA6qvAmtkw7iLmveH88.jpg 800w\"},hdtcxxiNv:background??props.hdtcxxiNv??\"var(--token-7ce68db9-0723-4469-83ef-663a6e703840, rgb(43, 43, 61))\",iEMIaO3Y5:text??props.iEMIaO3Y5??\"Bloom's offers Benno Bikes US-based logistics, product development, and market expansion.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Yuhc3Pc9b\",Yik3rynrU:logo??props.Yik3rynrU??{pixelHeight:302,pixelWidth:672,src:\"https://framerusercontent.com/images/jh0VzgneXRMAPG61iX0MerwUGSY.png\",srcSet:\"https://framerusercontent.com/images/jh0VzgneXRMAPG61iX0MerwUGSY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jh0VzgneXRMAPG61iX0MerwUGSY.png 672w\"}};};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,hdtcxxiNv,iEMIaO3Y5,bURQZwrLE,DYmJe19Vr,Yik3rynrU,C4cqly4vX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Yuhc3Pc9b\",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__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:533,pixelWidth:800,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(DYmJe19Vr)},className:cx(scopingClassNames,\"framer-8ihv7d\",className,classNames),\"data-framer-name\":\"right\",layoutDependency:layoutDependency,layoutId:\"Yuhc3Pc9b\",ref:refBinding,style:{...style},...addPropertyOverrides({J3JR4cE69:{\"data-framer-name\":\"left\"},pmA62WFKH:{\"data-framer-name\":\"phone - bottom\"},v8T2oFNb_:{\"data-framer-name\":\"LIL - left\"},VcGftXc_o:{\"data-framer-name\":\"LIL - right\"},WyG4fuovb:{\"data-framer-name\":\"phone - top\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fbbsh4\",layoutDependency:layoutDependency,layoutId:\"sJshm00ny\",children:/*#__PURE__*/_jsx(Link,{href:C4cqly4vX,motionChild:true,nodeId:\"n2bPqgIZf\",scopeId:\"W_eemmykD\",...addPropertyOverrides({J3JR4cE69:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1cnw97o framer-12vojpd\",layoutDependency:layoutDependency,layoutId:\"n2bPqgIZf\",style:{backgroundColor:hdtcxxiNv},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:151,intrinsicWidth:336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+((componentViewport?.height||600)-128-300)+0+16+0),pixelHeight:302,pixelWidth:672,sizes:\"153px\",...toResponsiveImage(Yik3rynrU),...{positionX:\"left\",positionY:\"center\"}},className:\"framer-dudzei\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mL9Y_x6x0\",...addPropertyOverrides({pmA62WFKH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:151,intrinsicWidth:336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+((componentViewport?.height||600)-48-239.6)+0+16+0),pixelHeight:302,pixelWidth:672,sizes:\"153px\",...toResponsiveImage(Yik3rynrU),...{positionX:\"left\",positionY:\"center\"}}},v8T2oFNb_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:151,intrinsicWidth:336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||600)-64-244.6)+0+16+0),pixelHeight:302,pixelWidth:672,sizes:\"110px\",...toResponsiveImage(Yik3rynrU),...{positionX:\"left\",positionY:\"center\"}}},VcGftXc_o:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:151,intrinsicWidth:336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||600)-64-244.6)+0+16+0),pixelHeight:302,pixelWidth:672,sizes:\"110px\",...toResponsiveImage(Yik3rynrU),...{positionX:\"left\",positionY:\"center\"}}},WyG4fuovb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:151,intrinsicWidth:336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+16+0),pixelHeight:302,pixelWidth:672,sizes:\"153px\",...toResponsiveImage(Yik3rynrU),...{positionX:\"left\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1054cid\",layoutDependency:layoutDependency,layoutId:\"iRevUyyAw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-r2slzk\",\"data-styles-preset\":\"mBypMumWB\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--variable-reference-bURQZwrLE-W_eemmykD))\"},children:\"Bloom's infrastructure presents Benno Bikes with assistance, logistics, and upcoming brand advancement services.\"})}),className:\"framer-1bx10wq\",\"data-framer-name\":\"We are building a platform for better security in workforce identity and access management. Join as an early design partner and make your mark on the future of identity.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MFqKd79aL\",style:{\"--extracted-1eung3n\":\"var(--variable-reference-bURQZwrLE-W_eemmykD)\",\"--variable-reference-bURQZwrLE-W_eemmykD\":bURQZwrLE},text:iEMIaO3Y5,variants:{pmA62WFKH:{\"--extracted-r6o4lv\":\"var(--variable-reference-bURQZwrLE-W_eemmykD)\"},v8T2oFNb_:{\"--extracted-r6o4lv\":\"var(--variable-reference-bURQZwrLE-W_eemmykD)\"},VcGftXc_o:{\"--extracted-r6o4lv\":\"var(--variable-reference-bURQZwrLE-W_eemmykD)\"},WyG4fuovb:{\"--extracted-r6o4lv\":\"var(--variable-reference-bURQZwrLE-W_eemmykD)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pmA62WFKH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBCb2xk\",\"--framer-font-family\":'\"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bURQZwrLE-W_eemmykD))\"},children:\"Bloom's offers Benno Bikes US-based logistics, product development, and market expansion.\"})}),fonts:[\"CUSTOM;Haffer Bold\"]},v8T2oFNb_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBCb2xk\",\"--framer-font-family\":'\"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bURQZwrLE-W_eemmykD))\"},children:\"Bloom's offers Benno Bikes US-based logistics, product development, and market expansion.\"})}),fonts:[\"CUSTOM;Haffer Bold\"]},VcGftXc_o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBCb2xk\",\"--framer-font-family\":'\"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bURQZwrLE-W_eemmykD))\"},children:\"Bloom's offers Benno Bikes US-based logistics, product development, and market expansion.\"})}),fonts:[\"CUSTOM;Haffer Bold\"]},WyG4fuovb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBCb2xk\",\"--framer-font-family\":'\"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bURQZwrLE-W_eemmykD))\"},children:\"Bloom's offers Benno Bikes US-based logistics, product development, and market expansion.\"})}),fonts:[\"CUSTOM;Haffer Bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBSZWd1bGFy\",\"--framer-font-family\":'\"Haffer Regular\", \"Haffer Regular Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bURQZwrLE-W_eemmykD))\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Read Story ->\"})})}),className:\"framer-gefvmp\",fonts:[\"CUSTOM;Haffer Regular\"],layoutDependency:layoutDependency,layoutId:\"uwN04KNTP\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bURQZwrLE-W_eemmykD)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"16px\",\"--variable-reference-bURQZwrLE-W_eemmykD\":bURQZwrLE},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0zx3S.framer-12vojpd, .framer-0zx3S .framer-12vojpd { display: block; }\",\".framer-0zx3S.framer-8ihv7d { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 1512px; }\",\".framer-0zx3S .framer-1fbbsh4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0zx3S .framer-1cnw97o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 300px; justify-content: space-between; min-height: 300px; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 449px; z-index: 1; }\",\".framer-0zx3S .framer-dudzei { flex: none; height: 46px; overflow: visible; position: relative; width: 153px; }\",\".framer-0zx3S .framer-1054cid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0zx3S .framer-1bx10wq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0zx3S .framer-gefvmp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0zx3S.framer-v-1t7137a .framer-1fbbsh4, .framer-0zx3S.framer-v-cphdpv .framer-1fbbsh4 { justify-content: flex-start; }\",\".framer-0zx3S.framer-v-1v8o892.framer-8ihv7d, .framer-0zx3S.framer-v-cphdpv.framer-8ihv7d { padding: 32px; }\",\".framer-0zx3S.framer-v-1v8o892 .framer-1cnw97o, .framer-0zx3S.framer-v-cphdpv .framer-1cnw97o { gap: 16px; height: min-content; justify-content: center; min-height: unset; width: 35%; }\",\".framer-0zx3S.framer-v-1v8o892 .framer-dudzei, .framer-0zx3S.framer-v-cphdpv .framer-dudzei { height: 33px; width: 110px; }\",\".framer-0zx3S.framer-v-1v8o892 .framer-1054cid, .framer-0zx3S.framer-v-cphdpv .framer-1054cid { gap: 16px; }\",\".framer-0zx3S.framer-v-1sce556.framer-8ihv7d { overflow: visible; padding: 24px; width: 390px; }\",\".framer-0zx3S.framer-v-1sce556 .framer-1cnw97o { flex: 1 0 0px; gap: 16px; height: min-content; justify-content: center; min-height: unset; order: 0; width: 1px; }\",\".framer-0zx3S.framer-v-1sce556 .framer-1054cid, .framer-0zx3S.framer-v-1yvgcm6 .framer-1054cid { gap: 24px; }\",\".framer-0zx3S.framer-v-1yvgcm6.framer-8ihv7d { align-content: flex-start; align-items: flex-start; overflow: visible; padding: 24px; width: 390px; }\",\".framer-0zx3S.framer-v-1yvgcm6 .framer-1cnw97o { flex: 1 0 0px; gap: 16px; height: min-content; justify-content: center; min-height: unset; width: 1px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"J3JR4cE69\":{\"layout\":[\"fixed\",\"fixed\"]},\"VcGftXc_o\":{\"layout\":[\"fixed\",\"fixed\"]},\"pmA62WFKH\":{\"layout\":[\"fixed\",\"fixed\"]},\"v8T2oFNb_\":{\"layout\":[\"fixed\",\"fixed\"]},\"WyG4fuovb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hdtcxxiNv\":\"background\",\"iEMIaO3Y5\":\"text\",\"bURQZwrLE\":\"textColor\",\"DYmJe19Vr\":\"background1\",\"Yik3rynrU\":\"logo\",\"C4cqly4vX\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW_eemmykD=withCSS(Component,css,\"framer-0zx3S\");export default FramerW_eemmykD;FramerW_eemmykD.displayName=\"stories card\";FramerW_eemmykD.defaultProps={height:600,width:1512};addPropertyControls(FramerW_eemmykD,{variant:{options:[\"Yuhc3Pc9b\",\"J3JR4cE69\",\"VcGftXc_o\",\"pmA62WFKH\",\"v8T2oFNb_\",\"WyG4fuovb\"],optionTitles:[\"right\",\"left\",\"LIL - right\",\"phone - bottom\",\"LIL - left\",\"phone - top\"],title:\"Variant\",type:ControlType.Enum},hdtcxxiNv:{defaultValue:'var(--token-7ce68db9-0723-4469-83ef-663a6e703840, rgb(43, 43, 61)) /* {\"name\":\"Dark Gray\"} */',title:\"Background\",type:ControlType.Color},iEMIaO3Y5:{defaultValue:\"Bloom's offers Benno Bikes US-based logistics, product development, and market expansion.\",displayTextArea:true,title:\"Text\",type:ControlType.String},bURQZwrLE:{defaultValue:'var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"text color\",type:ControlType.Color},DYmJe19Vr:{__defaultAssetReference:\"data:framer/asset-reference,DGmlVI3LDA6qvAmtkw7iLmveH88.jpg?originalFilename=49807199737_c53cc7a215_c.jpg&preferredSize=auto\",title:\"background\",type:ControlType.ResponsiveImage},Yik3rynrU:{__defaultAssetReference:\"data:framer/asset-reference,jh0VzgneXRMAPG61iX0MerwUGSY.png?originalFilename=image.png&preferredSize=auto\",title:\"logo\",type:ControlType.ResponsiveImage},C4cqly4vX:{title:\"Link\",type:ControlType.Link}});addFonts(FramerW_eemmykD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Haffer Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/eRqmC6W9PktN8mUcnwel9B6wmPs.woff\"},{family:\"Haffer Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/tAGQcvN09kwW2QjPLqLO197UqBQ.woff\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW_eemmykD\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"600\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"hdtcxxiNv\\\":\\\"background\\\",\\\"iEMIaO3Y5\\\":\\\"text\\\",\\\"bURQZwrLE\\\":\\\"textColor\\\",\\\"DYmJe19Vr\\\":\\\"background1\\\",\\\"Yik3rynrU\\\":\\\"logo\\\",\\\"C4cqly4vX\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J3JR4cE69\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VcGftXc_o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pmA62WFKH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v8T2oFNb_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WyG4fuovb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1512\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W_eemmykD.map","// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import Footer from\"#framer/local/canvasComponent/Nay6sUX2m/Nay6sUX2m.js\";import Navigation from\"#framer/local/canvasComponent/Th8W3E3rh/Th8W3E3rh.js\";import StoriesCard from\"#framer/local/canvasComponent/W_eemmykD/W_eemmykD.js\";import*as sharedStyle1 from\"#framer/local/css/ferGDeq75/ferGDeq75.js\";import*as sharedStyle from\"#framer/local/css/Sn1ggcgQ3/Sn1ggcgQ3.js\";import metadataProvider from\"#framer/local/webPageMetadata/Qy9zYxbIQ/Qy9zYxbIQ.js\";const NavigationFonts=getFonts(Navigation);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const StoriesCardFonts=getFonts(StoriesCard);const FooterFonts=getFonts(Footer);const breakpoints={gBVhDpwaL:\"(min-width: 1280px) and (max-width: 1511px)\",JDrXmI1PT:\"(max-width: 767px)\",k8VtFm527:\"(min-width: 768px) and (max-width: 1279px)\",O3xpRxxPb:\"(min-width: 1512px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zYoHD\";const variantClassNames={gBVhDpwaL:\"framer-v-1r43hi6\",JDrXmI1PT:\"framer-v-nwhqew\",k8VtFm527:\"framer-v-bylv3y\",O3xpRxxPb:\"framer-v-w460ky\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition1={damping:60,delay:.2,mass:1,stiffness:250,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:16};const transition2={damping:60,delay:.3,mass:1,stiffness:250,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:16};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"O3xpRxxPb\",Laptop:\"gBVhDpwaL\",Phone:\"JDrXmI1PT\",Tablet:\"k8VtFm527\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"O3xpRxxPb\"};};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);const elementId=useRouteElementId(\"fGjSu5C_e\");const ref1=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"O3xpRxxPb\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7d27c033-cb66-44c8-bf4e-e66d9f19511b, rgb(34, 23, 66)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-w460ky\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ey25fh-container\",layoutScroll:true,nodeId:\"xkS7c70kF\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{variant:\"UkfIzKmy0\"},JDrXmI1PT:{variant:\"xuqUELMWu\"},k8VtFm527:{variant:\"xuqUELMWu\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"xkS7c70kF\",layoutId:\"xkS7c70kF\",style:{width:\"100%\"},variant:\"vcWMlJSfN\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15j59dd\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rvho8o\",\"data-framer-name\":\"SECTION HERO\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:70,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zbunct\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tk2kpo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pFkTU69q1\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"pFkTU69q1\",isMixedBorderRadius:false,layoutId:\"pFkTU69q1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://eu-central.storage.cloudconvert.com/tasks/058a48ae-a720-4890-a234-8f5e317c2c84/Comp%201.webm?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cloudconvert-production%2F20241017%2Ffra%2Fs3%2Faws4_request&X-Amz-Date=20241017T212856Z&X-Amz-Expires=86400&X-Amz-Signature=c570de3c8d84b3f826b4678148a7014148d28f4bb203fafbc4efb6e651558c50&X-Amz-SignedHeaders=host&response-content-disposition=inline%3B%20filename%3D%22Comp%201.webm%22&response-content-type=video%2Fwebm&x-id=GetObject\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-147g8hp\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ll23i8\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kdlog5\",\"data-framer-name\":\"badge+head\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nqavjs\",\"data-framer-name\":\"head-txt\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-xwk33z\",\"data-styles-preset\":\"Sn1ggcgQ3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\"},children:\"Customer Stories\"})}),className:\"framer-1uixhtg\",\"data-framer-name\":\"A security-first alternative to Okta\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k8yxrn\",\"data-styles-preset\":\"ferGDeq75\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\"},children:\"Bloom supports hardware brands, no matter their stage or size.\"})}),className:\"framer-78d0t3\",\"data-framer-name\":\"We are building a platform for better security in workforce identity and access management. Join as an early design partner and make your mark on the future of identity.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbvr48\",\"data-framer-name\":\"STORIES\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"n9d1PfQlt\"},implicitPathVariables:undefined},{href:{webPageId:\"n9d1PfQlt\"},implicitPathVariables:undefined},{href:{webPageId:\"n9d1PfQlt\"},implicitPathVariables:undefined},{href:{webPageId:\"n9d1PfQlt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JDrXmI1PT:{height:1e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+600+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xaexwf-container\",nodeId:\"sRqixGC0H\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{C4cqly4vX:resolvedLinks[1]},JDrXmI1PT:{C4cqly4vX:resolvedLinks[3],DYmJe19Vr:addImageAlt({pixelHeight:960,pixelWidth:1440,positionX:\"33.5%\",positionY:\"17.3%\",src:\"https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg\",srcSet:\"https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg 1440w\"},\"\"),variant:\"pmA62WFKH\"},k8VtFm527:{C4cqly4vX:resolvedLinks[2],variant:\"VcGftXc_o\"}},children:/*#__PURE__*/_jsx(StoriesCard,{bURQZwrLE:\"rgb(244, 243, 243)\",C4cqly4vX:resolvedLinks[0],DYmJe19Vr:addImageAlt({pixelHeight:960,pixelWidth:1440,positionX:\"44.7%\",positionY:\"11.1%\",src:\"https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg\",srcSet:\"https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G2N4inwB2h7AVS48yhm3dRTtQ.jpg 1440w\"},\"\"),hdtcxxiNv:\"rgb(27, 42, 42)\",height:\"100%\",id:\"sRqixGC0H\",iEMIaO3Y5:\"Electric Outdoors scales with Bloom’s network of flexible manufacturing and logistics partners.\",layoutId:\"sRqixGC0H\",style:{height:\"100%\",width:\"100%\"},variant:\"Yuhc3Pc9b\",width:\"100%\",Yik3rynrU:addImageAlt({pixelHeight:40,pixelWidth:152,src:\"https://framerusercontent.com/images/wHiwUQerOuyc7erjZGiJby40eiM.svg\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Par7lyM7V\"},implicitPathVariables:undefined},{href:{webPageId:\"Par7lyM7V\"},implicitPathVariables:undefined},{href:{webPageId:\"Par7lyM7V\"},implicitPathVariables:undefined},{href:{webPageId:\"Par7lyM7V\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JDrXmI1PT:{height:1e3,y:(componentViewport?.y||0)+0+600+0+1e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+600+0+640,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nk9h6g-container\",nodeId:\"FkexSno_7\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{C4cqly4vX:resolvedLinks1[1]},JDrXmI1PT:{C4cqly4vX:resolvedLinks1[3],DYmJe19Vr:addImageAlt({pixelHeight:1040,pixelWidth:1560,positionX:\"59.4%\",positionY:\"50.2%\",src:\"https://framerusercontent.com/images/sw17nqx19Gf9xfTK9raUFrpRAW8.webp\"},\"\"),variant:\"WyG4fuovb\"},k8VtFm527:{C4cqly4vX:resolvedLinks1[2],DYmJe19Vr:addImageAlt({pixelHeight:1040,pixelWidth:1560,positionX:\"87.5%\",positionY:\"52.1%\",src:\"https://framerusercontent.com/images/sw17nqx19Gf9xfTK9raUFrpRAW8.webp\"},\"\"),variant:\"VcGftXc_o\"}},children:/*#__PURE__*/_jsx(StoriesCard,{bURQZwrLE:\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\",C4cqly4vX:resolvedLinks1[0],DYmJe19Vr:addImageAlt({pixelHeight:1040,pixelWidth:1560,positionX:\"49%\",positionY:\"67.1%\",src:\"https://framerusercontent.com/images/sw17nqx19Gf9xfTK9raUFrpRAW8.webp\"},\"\"),hdtcxxiNv:\"rgb(150, 110, 54)\",height:\"100%\",id:\"FkexSno_7\",iEMIaO3Y5:\"When Maeving needed immediate support Bloom mobilized its network to receive shipments and ensure seamless customer handoffs.\",layoutId:\"FkexSno_7\",style:{height:\"100%\",width:\"100%\"},variant:\"J3JR4cE69\",width:\"100%\",Yik3rynrU:addImageAlt({pixelHeight:222,pixelWidth:1087,src:\"https://framerusercontent.com/images/jtRv4HiD5J5s9RlTpqjqRJnX4cs.webp\",srcSet:\"https://framerusercontent.com/images/jtRv4HiD5J5s9RlTpqjqRJnX4cs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/jtRv4HiD5J5s9RlTpqjqRJnX4cs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/jtRv4HiD5J5s9RlTpqjqRJnX4cs.webp 1087w\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"n2ZeVD56w\"},implicitPathVariables:undefined},{href:{webPageId:\"n2ZeVD56w\"},implicitPathVariables:undefined},{href:{webPageId:\"n2ZeVD56w\"},implicitPathVariables:undefined},{href:{webPageId:\"n2ZeVD56w\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JDrXmI1PT:{height:1e3,y:(componentViewport?.y||0)+0+600+0+2e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+600+0+1280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gz3cgk-container\",nodeId:\"PknFlnSHM\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{C4cqly4vX:resolvedLinks2[1]},JDrXmI1PT:{C4cqly4vX:resolvedLinks2[3],variant:\"pmA62WFKH\"},k8VtFm527:{C4cqly4vX:resolvedLinks2[2],variant:\"v8T2oFNb_\"}},children:/*#__PURE__*/_jsx(StoriesCard,{bURQZwrLE:\"rgb(255, 255, 255)\",C4cqly4vX:resolvedLinks2[0],DYmJe19Vr:addImageAlt({pixelHeight:720,pixelWidth:960,src:\"https://framerusercontent.com/images/KWsw3nHit6nmGho7L0PC4wOQsYY.jpg\",srcSet:\"https://framerusercontent.com/images/KWsw3nHit6nmGho7L0PC4wOQsYY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KWsw3nHit6nmGho7L0PC4wOQsYY.jpg 960w\"},\"\"),hdtcxxiNv:\"rgb(56, 158, 176)\",height:\"100%\",id:\"PknFlnSHM\",iEMIaO3Y5:\"Bloom's platform matched Moonbikes with the best partner network to relaunch into the North American markets efficiently.\",layoutId:\"PknFlnSHM\",style:{height:\"100%\",width:\"100%\"},variant:\"J3JR4cE69\",width:\"100%\",Yik3rynrU:addImageAlt({pixelHeight:170,pixelWidth:1655,src:\"https://framerusercontent.com/images/6NWuFRFhgpQDPvEV9Hom7CTJhnM.svg\",srcSet:\"https://framerusercontent.com/images/6NWuFRFhgpQDPvEV9Hom7CTJhnM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6NWuFRFhgpQDPvEV9Hom7CTJhnM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6NWuFRFhgpQDPvEV9Hom7CTJhnM.svg 1655w\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FLmojSD1F\"},implicitPathVariables:undefined},{href:{webPageId:\"FLmojSD1F\"},implicitPathVariables:undefined},{href:{webPageId:\"FLmojSD1F\"},implicitPathVariables:undefined},{href:{webPageId:\"FLmojSD1F\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JDrXmI1PT:{height:1e3,y:(componentViewport?.y||0)+0+600+0+3e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+600+0+1920,children:/*#__PURE__*/_jsx(Container,{className:\"framer-76b1b0-container\",nodeId:\"xY7jtOhmY\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{C4cqly4vX:resolvedLinks3[1]},JDrXmI1PT:{C4cqly4vX:resolvedLinks3[3],variant:\"WyG4fuovb\"},k8VtFm527:{C4cqly4vX:resolvedLinks3[2],variant:\"v8T2oFNb_\"}},children:/*#__PURE__*/_jsx(StoriesCard,{bURQZwrLE:\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\",C4cqly4vX:resolvedLinks3[0],DYmJe19Vr:addImageAlt({pixelHeight:1281,pixelWidth:1920,positionX:\"65.9%\",positionY:\"16.7%\",src:\"https://framerusercontent.com/images/dnmQSJb2i2tXoh9eRhZXUgsiE.webp\",srcSet:\"https://framerusercontent.com/images/dnmQSJb2i2tXoh9eRhZXUgsiE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dnmQSJb2i2tXoh9eRhZXUgsiE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dnmQSJb2i2tXoh9eRhZXUgsiE.webp 1920w\"},\"\"),hdtcxxiNv:\"rgb(106, 120, 131)\",height:\"100%\",id:\"xY7jtOhmY\",iEMIaO3Y5:\"Bloom onboarded Cake quickly to assist with warehousing, re-work, inventory inspection and cataloging of the inventory. \",layoutId:\"xY7jtOhmY\",style:{height:\"100%\",width:\"100%\"},variant:\"J3JR4cE69\",width:\"100%\",Yik3rynrU:addImageAlt({pixelHeight:32,pixelWidth:101,src:\"https://framerusercontent.com/images/9Io18oKnH8JxCPUkQ6Brz3ntw4.svg\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZXUcAJcuZ\"},implicitPathVariables:undefined},{href:{webPageId:\"ZXUcAJcuZ\"},implicitPathVariables:undefined},{href:{webPageId:\"ZXUcAJcuZ\"},implicitPathVariables:undefined},{href:{webPageId:\"ZXUcAJcuZ\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JDrXmI1PT:{height:1e3,y:(componentViewport?.y||0)+0+600+0+4e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+600+0+2560,children:/*#__PURE__*/_jsx(Container,{className:\"framer-knus1s-container\",nodeId:\"rCxtZENwc\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{C4cqly4vX:resolvedLinks4[1]},JDrXmI1PT:{C4cqly4vX:resolvedLinks4[3],DYmJe19Vr:addImageAlt({pixelHeight:900,pixelWidth:1080,positionX:\"52%\",positionY:\"44.9%\",src:\"https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg\",srcSet:\"https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg 1080w\"},\"\"),variant:\"pmA62WFKH\"},k8VtFm527:{C4cqly4vX:resolvedLinks4[2],variant:\"VcGftXc_o\"}},children:/*#__PURE__*/_jsx(StoriesCard,{bURQZwrLE:\"rgb(1, 1, 1)\",C4cqly4vX:resolvedLinks4[0],DYmJe19Vr:addImageAlt({pixelHeight:900,pixelWidth:1080,positionX:\"82%\",positionY:\"46.5%\",src:\"https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg\",srcSet:\"https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fGvwAi5ly8eWhp64BQZT51OfMRs.jpg 1080w\"},\"\"),hdtcxxiNv:\"rgb(255, 251, 248)\",height:\"100%\",id:\"rCxtZENwc\",iEMIaO3Y5:\"Dust Moto leverages Bloom’s extensive network in assembly, warehousing, and shipping.\",layoutId:\"rCxtZENwc\",style:{height:\"100%\",width:\"100%\"},variant:\"Yuhc3Pc9b\",width:\"100%\",Yik3rynrU:addImageAlt({pixelHeight:37,pixelWidth:300,src:\"https://framerusercontent.com/images/awVlC25wbSEACE3tzjNs4l7UM8.png\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Mve9JbcTi\"},implicitPathVariables:undefined},{href:{webPageId:\"Mve9JbcTi\"},implicitPathVariables:undefined},{href:{webPageId:\"Mve9JbcTi\"},implicitPathVariables:undefined},{href:{webPageId:\"Mve9JbcTi\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JDrXmI1PT:{height:1e3,y:(componentViewport?.y||0)+0+600+0+5e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+600+0+3200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jvoohf-container\",nodeId:\"L9LDSgqIt\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{C4cqly4vX:resolvedLinks5[1]},JDrXmI1PT:{bURQZwrLE:\"rgb(0, 0, 0)\",C4cqly4vX:resolvedLinks5[3],DYmJe19Vr:addImageAlt({pixelHeight:1740,pixelWidth:2880,src:\"https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp\",srcSet:\"https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp 2880w\"},\"\"),variant:\"WyG4fuovb\"},k8VtFm527:{C4cqly4vX:resolvedLinks5[2],variant:\"VcGftXc_o\"}},children:/*#__PURE__*/_jsx(StoriesCard,{bURQZwrLE:\"rgb(1, 1, 1)\",C4cqly4vX:resolvedLinks5[0],DYmJe19Vr:addImageAlt({pixelHeight:1740,pixelWidth:2880,positionX:\"48.5%\",positionY:\"72.9%\",src:\"https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp\",srcSet:\"https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/47anqPzoPKw51NnQoRSw4yOqiYo.webp 2880w\"},\"\"),hdtcxxiNv:\"rgb(237, 193, 142)\",height:\"100%\",id:\"L9LDSgqIt\",iEMIaO3Y5:\"Tokyobike US uses the Bloom to efficiently manage their warehouses and shipments on a single consolidated platform.\",layoutId:\"L9LDSgqIt\",style:{height:\"100%\",width:\"100%\"},variant:\"Yuhc3Pc9b\",width:\"100%\",Yik3rynrU:addImageAlt({pixelHeight:20,pixelWidth:99,src:\"https://framerusercontent.com/images/EJ8kZpwoSPKA508Lnj8imUqrlE.svg\"},\"\")})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JDrXmI1PT:{y:(componentViewport?.y||0)+0+6600}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:553,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4440,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gc7wfu-container\",nodeId:\"R6D0JJ4Kr\",scopeId:\"Qy9zYxbIQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBVhDpwaL:{variant:\"iEdt0B9M3\"},JDrXmI1PT:{variant:\"k2EEDG6yC\"},k8VtFm527:{variant:\"qD82lUNa5\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"R6D0JJ4Kr\",layoutId:\"R6D0JJ4Kr\",style:{width:\"100%\"},variant:\"e6HBFILgg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zYoHD.framer-ddkr7w, .framer-zYoHD .framer-ddkr7w { display: block; }\",\".framer-zYoHD.framer-w460ky { align-content: center; align-items: center; background-color: var(--token-7d27c033-cb66-44c8-bf4e-e66d9f19511b, #221742); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1512px; }\",\".framer-zYoHD .framer-1ey25fh-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-zYoHD .framer-15j59dd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zYoHD .framer-1rvho8o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 75vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zYoHD .framer-zbunct { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 180px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-zYoHD .framer-tk2kpo-container { flex: none; height: 288px; left: calc(50.00000000000002% - 118.12499999999999% / 2); opacity: 0.8; position: absolute; top: calc(50.00000000000002% - 288px / 2); width: 118%; z-index: 0; }\",\".framer-zYoHD .framer-147g8hp { 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; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zYoHD .framer-ll23i8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-zYoHD .framer-kdlog5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 105px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zYoHD .framer-nqavjs { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zYoHD .framer-1uixhtg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 812px; word-break: break-word; word-wrap: break-word; }\",\".framer-zYoHD .framer-78d0t3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 326px; word-break: break-word; word-wrap: break-word; }\",\".framer-zYoHD .framer-1qbvr48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zYoHD .framer-1xaexwf-container, .framer-zYoHD .framer-nk9h6g-container, .framer-zYoHD .framer-gz3cgk-container, .framer-zYoHD .framer-76b1b0-container, .framer-zYoHD .framer-knus1s-container, .framer-zYoHD .framer-1jvoohf-container { flex: none; height: 640px; position: relative; width: 100%; }\",\".framer-zYoHD .framer-1gc7wfu-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 1280px) and (max-width: 1511px) { .framer-zYoHD.framer-w460ky { width: 1280px; } .framer-zYoHD .framer-zbunct { max-width: 1152px; } .framer-zYoHD .framer-147g8hp { padding: 0px 64px 0px 64px; }}\",\"@media (min-width: 768px) and (max-width: 1279px) { .framer-zYoHD.framer-w460ky { width: 768px; } .framer-zYoHD .framer-zbunct { padding: 192px 0px 64px 0px; } .framer-zYoHD .framer-147g8hp { flex-direction: column; } .framer-zYoHD .framer-ll23i8 { flex: none; width: 100%; }}\",\"@media (max-width: 767px) { .framer-zYoHD.framer-w460ky { width: 320px; } .framer-zYoHD .framer-zbunct { padding: 160px 24px 128px 24px; } .framer-zYoHD .framer-147g8hp { flex-direction: column; } .framer-zYoHD .framer-ll23i8 { flex: none; width: 100%; } .framer-zYoHD .framer-kdlog5 { gap: 0px; } .framer-zYoHD .framer-nqavjs, .framer-zYoHD .framer-1uixhtg, .framer-zYoHD .framer-78d0t3 { width: 100%; } .framer-zYoHD .framer-1xaexwf-container { height: 100vh; order: 0; } .framer-zYoHD .framer-nk9h6g-container { height: 100vh; order: 1; } .framer-zYoHD .framer-gz3cgk-container { height: 100vh; order: 2; } .framer-zYoHD .framer-76b1b0-container { height: 100vh; order: 3; } .framer-zYoHD .framer-knus1s-container { height: 100vh; order: 4; } .framer-zYoHD .framer-1jvoohf-container { height: 100vh; order: 5; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4873\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gBVhDpwaL\":{\"layout\":[\"fixed\",\"auto\"]},\"k8VtFm527\":{\"layout\":[\"fixed\",\"auto\"]},\"JDrXmI1PT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fGjSu5C_e\":{\"pattern\":\":fGjSu5C_e\",\"name\":\"stories\"}}\n * @framerResponsiveScreen\n */const FramerQy9zYxbIQ=withCSS(Component,css,\"framer-zYoHD\");export default FramerQy9zYxbIQ;FramerQy9zYxbIQ.displayName=\"Company\";FramerQy9zYxbIQ.defaultProps={height:4873,width:1512};addFonts(FramerQy9zYxbIQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationFonts,...VideoFonts,...StoriesCardFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQy9zYxbIQ\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"fGjSu5C_e\\\":{\\\"pattern\\\":\\\":fGjSu5C_e\\\",\\\"name\\\":\\\"stories\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"4873\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gBVhDpwaL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k8VtFm527\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JDrXmI1PT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1512\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}