{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/y6zlQtmNdDqm3VGnCoYh/nA9jHhD7pmHd7jmCFpnY/jU7GKk5Nh.js", "ssg:https://framerusercontent.com/modules/eo2AKUJMjLpRIxVNhnoi/WRdCCUS8QDrtD5arLD6Y/fQkdlzj7H.js", "ssg:https://framerusercontent.com/modules/v9fiCueSX6FqRvDPvRgV/4CNoZlz7rDUXQ8pIm9ZD/rGkB_JwYx.js", "ssg:https://framerusercontent.com/modules/AiJZIXnOBAwdVq47f5MR/fB8f0QZvvyMrBd7Wdzf0/FJPpMOPTF.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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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 \u201CPlay\u201D.\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 \u2013 if we\u2019re 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\u2019t 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);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=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\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s 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=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)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:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",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};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ojpk5VH8dW7slTIuuRFB/fMPbvbK6AtC9ak3ugHY0/pP7JHpqrA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/875RQT7Vo9FJWoyRiYUG/ImdOz4lktFcPw5J5Su61/ZtqXN38zW.js\";import Button from\"https://framerusercontent.com/modules/sd9Lx2RqzRXJA7Ni67HX/GlI1ieb0SqSMWv5Bb3ez/KF7UbbSfc.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"K2_F2o2zL\",\"SVaCIoAOn\"];const serializationHash=\"framer-mvmkW\";const variantClassNames={K2_F2o2zL:\"framer-v-59hjz0\",SVaCIoAOn:\"framer-v-fpq6tk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"K2_F2o2zL\",Phone:\"SVaCIoAOn\"};const getProps=({describtion,height,id,link,logoImage,name1,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,bqy2YqjjW:(_ref=name1!==null&&name1!==void 0?name1:props.bqy2YqjjW)!==null&&_ref!==void 0?_ref:\"POSTEVERYWHERE.COM\",EopIswqgQ:link!==null&&link!==void 0?link:props.EopIswqgQ,Ty93WIvHI:(_ref1=describtion!==null&&describtion!==void 0?describtion:props.Ty93WIvHI)!==null&&_ref1!==void 0?_ref1:\"The top web TMS to run your logistics, accessible on any device. No contracts or setup, linked to Trucker Path.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"K2_F2o2zL\",zyoUvPKRI:(_ref3=logoImage!==null&&logoImage!==void 0?logoImage:props.zyoUvPKRI)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/DXTFBtopa7aKnomf10Mv32GRTlM.png\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zyoUvPKRI,bqy2YqjjW,Ty93WIvHI,EopIswqgQ,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K2_F2o2zL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-59hjz0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"K2_F2o2zL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(223, 227, 231))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 1px 5px 0px rgba(16, 24, 40, 0.03999999910593033)\",...style},variants:{SVaCIoAOn:{\"--border-color\":\"var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},...addPropertyOverrides({SVaCIoAOn:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(zyoUvPKRI)},className:\"framer-67ts8s\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"UU2SYPGdE\",...addPropertyOverrides({SVaCIoAOn:{background:{alt:\"\",fit:\"fill\",sizes:\"129.2308px\",...toResponsiveImage(zyoUvPKRI)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zpgwg1\",\"data-framer-name\":\"Frame 427321019\",layoutDependency:layoutDependency,layoutId:\"JyqdzUWEH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9vgtdh\",layoutDependency:layoutDependency,layoutId:\"c4r2CeFtG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"POSTEVERYWHERE.COM\"})}),className:\"framer-1v11g55\",\"data-framer-name\":\"THEFREETMS.COM\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MFwNAwU92\",style:{\"--framer-paragraph-spacing\":\"20px\"},text:bqy2YqjjW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"The top web TMS to run your logistics, accessible on any device. No contracts or setup, linked to Trucker Path.\"})}),className:\"framer-1hz0cgh\",\"data-framer-name\":\"The top web TMS to run your logistics, accessible on any device. No contracts or setup, linked to Trucker Path.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KCJ5XlVpO\",style:{\"--extracted-r6o4lv\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",\"--framer-paragraph-spacing\":\"16px\"},text:Ty93WIvHI,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n17iob-container\",layoutDependency:layoutDependency,layoutId:\"tEERuPUmG-container\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"DownloadSimple\",CJwkcCfE5:EopIswqgQ,GR68CgLTN:\"Read More\",height:\"100%\",id:\"tEERuPUmG\",layoutId:\"tEERuPUmG\",LG5CSJpvD:false,ot18wTv79:true,variant:\"kin9vr6Sm\",w5Hgz19ND:10,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mvmkW.framer-679lye, .framer-mvmkW .framer-679lye { display: block; }\",\".framer-mvmkW.framer-59hjz0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 591px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mvmkW .framer-67ts8s { aspect-ratio: 4.615384615384615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 240px; }\",\".framer-mvmkW .framer-zpgwg1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mvmkW .framer-9vgtdh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mvmkW .framer-1v11g55 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mvmkW .framer-1hz0cgh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mvmkW .framer-1n17iob-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvmkW.framer-59hjz0, .framer-mvmkW .framer-zpgwg1, .framer-mvmkW .framer-9vgtdh { gap: 0px; } .framer-mvmkW.framer-59hjz0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mvmkW.framer-59hjz0 > :first-child, .framer-mvmkW .framer-zpgwg1 > :first-child, .framer-mvmkW .framer-9vgtdh > :first-child { margin-top: 0px; } .framer-mvmkW.framer-59hjz0 > :last-child, .framer-mvmkW .framer-zpgwg1 > :last-child, .framer-mvmkW .framer-9vgtdh > :last-child { margin-bottom: 0px; } .framer-mvmkW .framer-zpgwg1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-mvmkW .framer-9vgtdh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-mvmkW.framer-v-fpq6tk.framer-59hjz0 { gap: 16px; padding: 32px 24px 24px 24px; width: 390px; }\",\".framer-mvmkW.framer-v-fpq6tk .framer-67ts8s { height: var(--framer-aspect-ratio-supported, 28px); width: 129px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvmkW.framer-v-fpq6tk.framer-59hjz0 { gap: 0px; } .framer-mvmkW.framer-v-fpq6tk.framer-59hjz0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-mvmkW.framer-v-fpq6tk.framer-59hjz0 > :first-child { margin-top: 0px; } .framer-mvmkW.framer-v-fpq6tk.framer-59hjz0 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-mvmkW[data-border=\"true\"]::after, .framer-mvmkW [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 288\n * @framerIntrinsicWidth 591\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SVaCIoAOn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zyoUvPKRI\":\"logoImage\",\"bqy2YqjjW\":\"name1\",\"Ty93WIvHI\":\"describtion\",\"EopIswqgQ\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjU7GKk5Nh=withCSS(Component,css,\"framer-mvmkW\");export default FramerjU7GKk5Nh;FramerjU7GKk5Nh.displayName=\"Card/Partner\";FramerjU7GKk5Nh.defaultProps={height:288,width:591};addPropertyControls(FramerjU7GKk5Nh,{variant:{options:[\"K2_F2o2zL\",\"SVaCIoAOn\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},zyoUvPKRI:{__defaultAssetReference:\"data:framer/asset-reference,DXTFBtopa7aKnomf10Mv32GRTlM.png?originalFilename=image.png&preferredSize=auto\",title:\"Logo Image\",type:ControlType.ResponsiveImage},bqy2YqjjW:{defaultValue:\"POSTEVERYWHERE.COM\",displayTextArea:false,title:\"Name\",type:ControlType.String},Ty93WIvHI:{defaultValue:\"The top web TMS to run your logistics, accessible on any device. No contracts or setup, linked to Trucker Path.\",displayTextArea:true,title:\"Describtion\",type:ControlType.String},EopIswqgQ:{title:\"Link\",type:ControlType.Link}});addFonts(FramerjU7GKk5Nh,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjU7GKk5Nh\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"591\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"288\",\"framerVariables\":\"{\\\"zyoUvPKRI\\\":\\\"logoImage\\\",\\\"bqy2YqjjW\\\":\\\"name1\\\",\\\"Ty93WIvHI\\\":\\\"describtion\\\",\\\"EopIswqgQ\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SVaCIoAOn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sfjftso6qFEMgi3LnQF2/pOYbMKzGlBqsUieN4e9A/dvxIS3aly.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wvbYtBSZon98kt6Wtkof/30NJiwZlaQXs4Yy47m9b/e8MqUfc3j.js\";import SocialIcon from\"https://framerusercontent.com/modules/QQ9m04nX3IHjLzmJsP1t/1YVnf50p7KckzEmiyf5I/HGWWDsCNm.js\";const SocialIconFonts=getFonts(SocialIcon);const cycleOrder=[\"Qd9CSwHZw\"];const serializationHash=\"framer-hbKWG\";const variantClassNames={Qd9CSwHZw:\"framer-v-1y8ivwd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({facebook,facebookLink,height,id,image,instagram,instagramLink,linkedin,linkedinLink,name1,role,width,x,xLink,youtube,youtubeLink,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,DCDfNB_KK:image!==null&&image!==void 0?image:props.DCDfNB_KK,dwfEO63SU:instagramLink!==null&&instagramLink!==void 0?instagramLink:props.dwfEO63SU,Ff_MVPYTM:facebookLink!==null&&facebookLink!==void 0?facebookLink:props.Ff_MVPYTM,HjFqUk4iD:instagram!==null&&instagram!==void 0?instagram:props.HjFqUk4iD,nC5qOcGcT:(_ref=linkedin!==null&&linkedin!==void 0?linkedin:props.nC5qOcGcT)!==null&&_ref!==void 0?_ref:true,PuznUSawE:xLink!==null&&xLink!==void 0?xLink:props.PuznUSawE,QcfVkMcsk:(_ref1=x!==null&&x!==void 0?x:props.QcfVkMcsk)!==null&&_ref1!==void 0?_ref1:true,qu8fB0LXD:(_ref2=facebook!==null&&facebook!==void 0?facebook:props.qu8fB0LXD)!==null&&_ref2!==void 0?_ref2:true,rvdnWRxhA:youtube!==null&&youtube!==void 0?youtube:props.rvdnWRxhA,T0pfezFsv:(_ref3=name1!==null&&name1!==void 0?name1:props.T0pfezFsv)!==null&&_ref3!==void 0?_ref3:\"Drew Cano\",UiSe9OaM2:(_ref4=role!==null&&role!==void 0?role:props.UiSe9OaM2)!==null&&_ref4!==void 0?_ref4:\"CEO & Co-Founder\",X8tA5ntn1:linkedinLink!==null&&linkedinLink!==void 0?linkedinLink:props.X8tA5ntn1,YLQjnahCC:youtubeLink!==null&&youtubeLink!==void 0?youtubeLink:props.YLQjnahCC};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DCDfNB_KK,T0pfezFsv,UiSe9OaM2,QcfVkMcsk,PuznUSawE,nC5qOcGcT,X8tA5ntn1,qu8fB0LXD,Ff_MVPYTM,HjFqUk4iD,dwfEO63SU,rvdnWRxhA,YLQjnahCC,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qd9CSwHZw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1y8ivwd\",className,classNames),\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"Qd9CSwHZw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"128px\",...toResponsiveImage(DCDfNB_KK)},className:\"framer-magh4m\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"ErebupYY2\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-114dbsy\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"m_cYeWRpm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ewy69a\",\"data-framer-name\":\"Wrap\",layoutDependency:layoutDependency,layoutId:\"XyAOojEMO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",style:{\"--framer-text-alignment\":\"left\"},children:\"Drew Cano\"})}),className:\"framer-1utemfs\",\"data-framer-name\":\"Drew Cano\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ficUwz9R_\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:T0pfezFsv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"left\"},children:\"CEO & Co-Founder\"})}),className:\"framer-1bjvusr\",\"data-framer-name\":\"Role/position at Spark\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s4udPcEyc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:UiSe9OaM2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1myf4vl\",\"data-framer-name\":\"Social icons\",layoutDependency:layoutDependency,layoutId:\"vxHfhFI7r\",children:[QcfVkMcsk&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1po2ych-container\",layoutDependency:layoutDependency,layoutId:\"jQJUXycgS-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"jQJUXycgS\",layoutId:\"jQJUXycgS\",nrJTr6hwx:PuznUSawE,pn9DhIgd2:\"twitter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),nC5qOcGcT&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xxquul-container\",layoutDependency:layoutDependency,layoutId:\"pfQIm_ZW0-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"pfQIm_ZW0\",layoutId:\"pfQIm_ZW0\",nrJTr6hwx:X8tA5ntn1,pn9DhIgd2:\"LinkedinLogo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),HjFqUk4iD&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dw1vfv-container\",layoutDependency:layoutDependency,layoutId:\"luOLwGW3P-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"luOLwGW3P\",layoutId:\"luOLwGW3P\",nrJTr6hwx:dwfEO63SU,pn9DhIgd2:\"instagram-logo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),qu8fB0LXD&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xt4bpe-container\",layoutDependency:layoutDependency,layoutId:\"H0a0cRfcn-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"H0a0cRfcn\",layoutId:\"H0a0cRfcn\",nrJTr6hwx:Ff_MVPYTM,pn9DhIgd2:\"facebook\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),rvdnWRxhA&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1njvtku-container\",layoutDependency:layoutDependency,layoutId:\"P6Sopyjw8-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"P6Sopyjw8\",layoutId:\"P6Sopyjw8\",nrJTr6hwx:YLQjnahCC,pn9DhIgd2:\"youtube\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hbKWG.framer-10stx93, .framer-hbKWG .framer-10stx93 { display: block; }\",\".framer-hbKWG.framer-1y8ivwd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 384px; }\",\".framer-hbKWG .framer-magh4m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 128px); overflow: hidden; position: relative; width: 128px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hbKWG .framer-114dbsy { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hbKWG .framer-ewy69a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hbKWG .framer-1utemfs, .framer-hbKWG .framer-1bjvusr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hbKWG .framer-1myf4vl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hbKWG .framer-1po2ych-container, .framer-hbKWG .framer-1xxquul-container, .framer-hbKWG .framer-1dw1vfv-container, .framer-hbKWG .framer-1xt4bpe-container, .framer-hbKWG .framer-1njvtku-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hbKWG.framer-1y8ivwd, .framer-hbKWG .framer-ewy69a, .framer-hbKWG .framer-1myf4vl { gap: 0px; } .framer-hbKWG.framer-1y8ivwd > *, .framer-hbKWG .framer-1myf4vl > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-hbKWG.framer-1y8ivwd > :first-child, .framer-hbKWG .framer-1myf4vl > :first-child { margin-left: 0px; } .framer-hbKWG.framer-1y8ivwd > :last-child, .framer-hbKWG .framer-1myf4vl > :last-child { margin-right: 0px; } .framer-hbKWG .framer-ewy69a > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-hbKWG .framer-ewy69a > :first-child { margin-top: 0px; } .framer-hbKWG .framer-ewy69a > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 176\n * @framerIntrinsicWidth 384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DCDfNB_KK\":\"image\",\"T0pfezFsv\":\"name1\",\"UiSe9OaM2\":\"role\",\"QcfVkMcsk\":\"x\",\"PuznUSawE\":\"xLink\",\"nC5qOcGcT\":\"linkedin\",\"X8tA5ntn1\":\"linkedinLink\",\"qu8fB0LXD\":\"facebook\",\"Ff_MVPYTM\":\"facebookLink\",\"HjFqUk4iD\":\"instagram\",\"dwfEO63SU\":\"instagramLink\",\"rvdnWRxhA\":\"youtube\",\"YLQjnahCC\":\"youtubeLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfQkdlzj7H=withCSS(Component,css,\"framer-hbKWG\");export default FramerfQkdlzj7H;FramerfQkdlzj7H.displayName=\"Card / Team member\";FramerfQkdlzj7H.defaultProps={height:176,width:384};addPropertyControls(FramerfQkdlzj7H,{DCDfNB_KK:{title:\"Image\",type:ControlType.ResponsiveImage},T0pfezFsv:{defaultValue:\"Drew Cano\",displayTextArea:false,title:\"Name\",type:ControlType.String},UiSe9OaM2:{defaultValue:\"CEO & Co-Founder\",displayTextArea:false,title:\"Role\",type:ControlType.String},QcfVkMcsk:{defaultValue:true,title:\"X\",type:ControlType.Boolean},PuznUSawE:{title:\"X link\",type:ControlType.Link},nC5qOcGcT:{defaultValue:true,title:\"linkedin\",type:ControlType.Boolean},X8tA5ntn1:{title:\"Linkedin link\",type:ControlType.Link},qu8fB0LXD:{defaultValue:true,title:\"Facebook\",type:ControlType.Boolean},Ff_MVPYTM:{title:\"Facebook link\",type:ControlType.Link},HjFqUk4iD:{defaultValue:false,title:\"Instagram\",type:ControlType.Boolean},dwfEO63SU:{title:\"Instagram link\",type:ControlType.Link},rvdnWRxhA:{defaultValue:false,title:\"Youtube\",type:ControlType.Boolean},YLQjnahCC:{title:\"Youtube link\",type:ControlType.Link}});addFonts(FramerfQkdlzj7H,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...SocialIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfQkdlzj7H\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"DCDfNB_KK\\\":\\\"image\\\",\\\"T0pfezFsv\\\":\\\"name1\\\",\\\"UiSe9OaM2\\\":\\\"role\\\",\\\"QcfVkMcsk\\\":\\\"x\\\",\\\"PuznUSawE\\\":\\\"xLink\\\",\\\"nC5qOcGcT\\\":\\\"linkedin\\\",\\\"X8tA5ntn1\\\":\\\"linkedinLink\\\",\\\"qu8fB0LXD\\\":\\\"facebook\\\",\\\"Ff_MVPYTM\\\":\\\"facebookLink\\\",\\\"HjFqUk4iD\\\":\\\"instagram\\\",\\\"dwfEO63SU\\\":\\\"instagramLink\\\",\\\"rvdnWRxhA\\\":\\\"youtube\\\",\\\"YLQjnahCC\\\":\\\"youtubeLink\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"384\",\"framerIntrinsicHeight\":\"176\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CardTeamMember from\"https://framerusercontent.com/modules/eo2AKUJMjLpRIxVNhnoi/WRdCCUS8QDrtD5arLD6Y/fQkdlzj7H.js\";const CardTeamMemberFonts=getFonts(CardTeamMember);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"WgCFz4GUw\",\"CoccodJ8n\",\"j_iAouD8Y\"];const serializationHash=\"framer-RhTRK\";const variantClassNames={CoccodJ8n:\"framer-v-hhrtur\",j_iAouD8Y:\"framer-v-1w3i6b0\",WgCFz4GUw:\"framer-v-limx81\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition2={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={damping:80,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const transition4={damping:80,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const transition5={damping:80,delay:.7,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const transition6={damping:80,delay:.8,mass:1,stiffness:500,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:40};const transition7={damping:80,delay:.9,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:40};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"WgCFz4GUw\",Phone:\"j_iAouD8Y\",Tablet:\"CoccodJ8n\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WgCFz4GUw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WgCFz4GUw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-limx81\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WgCFz4GUw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CoccodJ8n:{\"data-framer-name\":\"Tablet\"},j_iAouD8Y:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15t44a\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ERrPFgoGQ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qtgeia\",\"data-framer-name\":\"Wrap\",layoutDependency:layoutDependency,layoutId:\"v5YtKvWbD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hfwsvm\",\"data-framer-name\":\"Grid\",layoutDependency:layoutDependency,layoutId:\"tlJVsK1jc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 64px) / 3, 1px)`,...addPropertyOverrides({CoccodJ8n:{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 15px) / 2, 1px)`},j_iAouD8Y:{width:`max(min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px), 440px), 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-crhc41-container\",layoutDependency:layoutDependency,layoutId:\"r1p3BsJn5-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardTeamMember,{DCDfNB_KK:addImageAlt({src:\"https://framerusercontent.com/images/dp8kCYJT8isRWvl7qQb3VVs8g8.png\",srcSet:\"https://framerusercontent.com/images/dp8kCYJT8isRWvl7qQb3VVs8g8.png 528w\"},\"\"),dwfEO63SU:\"https://www.instagram.com/\",Ff_MVPYTM:\"https://facebook.com/\",height:\"100%\",HjFqUk4iD:false,id:\"r1p3BsJn5\",layoutId:\"r1p3BsJn5\",nC5qOcGcT:true,PuznUSawE:\"https://x.com/chibinya_\",QcfVkMcsk:true,qu8fB0LXD:true,rvdnWRxhA:false,style:{width:\"100%\"},T0pfezFsv:\"Olivia Rhye\",UiSe9OaM2:\"CEO & Co-Founder\",width:\"100%\",X8tA5ntn1:\"https://www.linkedin.com/\",YLQjnahCC:\"youtube.com\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 64px) / 3, 1px)`,...addPropertyOverrides({CoccodJ8n:{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 15px) / 2, 1px)`},j_iAouD8Y:{width:`max(min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px), 440px), 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-f07im3-container\",layoutDependency:layoutDependency,layoutId:\"VEcLzB4SQ-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardTeamMember,{DCDfNB_KK:addImageAlt({src:\"https://framerusercontent.com/images/1HN2kcLukClqg4KqfjGPnGBo.png\",srcSet:\"https://framerusercontent.com/images/1HN2kcLukClqg4KqfjGPnGBo.png 528w\"},\"\"),dwfEO63SU:\"https://www.instagram.com/\",Ff_MVPYTM:\"https://facebook.com/\",height:\"100%\",HjFqUk4iD:false,id:\"VEcLzB4SQ\",layoutId:\"VEcLzB4SQ\",nC5qOcGcT:true,PuznUSawE:\"https://x.com/chibinya_\",QcfVkMcsk:true,qu8fB0LXD:true,rvdnWRxhA:false,style:{width:\"100%\"},T0pfezFsv:\"Drew Cano\",UiSe9OaM2:\"Head Of Marketing\",width:\"100%\",X8tA5ntn1:\"https://www.linkedin.com/\",YLQjnahCC:\"youtube.com\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 64px) / 3, 1px)`,...addPropertyOverrides({CoccodJ8n:{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 15px) / 2, 1px)`},j_iAouD8Y:{width:`max(min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px), 440px), 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12v8rp5-container\",layoutDependency:layoutDependency,layoutId:\"HBnKVXtm5-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardTeamMember,{DCDfNB_KK:addImageAlt({src:\"https://framerusercontent.com/images/cXGFEEFO4ugJf2NARKiHPfX2N2c.png\",srcSet:\"https://framerusercontent.com/images/cXGFEEFO4ugJf2NARKiHPfX2N2c.png 528w\"},\"\"),dwfEO63SU:\"https://www.instagram.com/\",Ff_MVPYTM:\"https://facebook.com/\",height:\"100%\",HjFqUk4iD:false,id:\"HBnKVXtm5\",layoutId:\"HBnKVXtm5\",nC5qOcGcT:true,PuznUSawE:\"https://x.com/chibinya_\",QcfVkMcsk:true,qu8fB0LXD:true,rvdnWRxhA:false,style:{width:\"100%\"},T0pfezFsv:\"Marc Spector\",UiSe9OaM2:\"Head of Programmer\",width:\"100%\",X8tA5ntn1:\"https://www.linkedin.com/\",YLQjnahCC:\"youtube.com\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 64px) / 3, 1px)`,...addPropertyOverrides({CoccodJ8n:{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 15px) / 2, 1px)`},j_iAouD8Y:{width:`max(min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px), 440px), 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-73qo87-container\",layoutDependency:layoutDependency,layoutId:\"tWTE4he2o-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardTeamMember,{DCDfNB_KK:addImageAlt({src:\"https://framerusercontent.com/images/DreLHkdauIuf4S1ul05LS4sB82M.png\",srcSet:\"https://framerusercontent.com/images/DreLHkdauIuf4S1ul05LS4sB82M.png 544w\"},\"\"),dwfEO63SU:\"https://www.instagram.com/\",Ff_MVPYTM:\"https://facebook.com/\",height:\"100%\",HjFqUk4iD:false,id:\"tWTE4he2o\",layoutId:\"tWTE4he2o\",nC5qOcGcT:true,PuznUSawE:\"https://x.com/chibinya_\",QcfVkMcsk:true,qu8fB0LXD:true,rvdnWRxhA:false,style:{width:\"100%\"},T0pfezFsv:\"Ava Wright\",UiSe9OaM2:\"VP Of Finance\",width:\"100%\",X8tA5ntn1:\"https://www.linkedin.com/\",YLQjnahCC:\"youtube.com\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 64px) / 3, 1px)`,...addPropertyOverrides({CoccodJ8n:{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 15px) / 2, 1px)`},j_iAouD8Y:{width:`max(min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px), 440px), 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-yt9tzn-container\",layoutDependency:layoutDependency,layoutId:\"OSrwC7B41-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardTeamMember,{DCDfNB_KK:addImageAlt({src:\"https://framerusercontent.com/images/upsYTTzP6emcEdFRokIzEkLLEIs.png\",srcSet:\"https://framerusercontent.com/images/upsYTTzP6emcEdFRokIzEkLLEIs.png?scale-down-to=512 512w,https://framerusercontent.com/images/upsYTTzP6emcEdFRokIzEkLLEIs.png 1024w\"},\"\"),dwfEO63SU:\"https://www.instagram.com/\",Ff_MVPYTM:\"https://facebook.com/\",height:\"100%\",HjFqUk4iD:false,id:\"OSrwC7B41\",layoutId:\"OSrwC7B41\",nC5qOcGcT:true,PuznUSawE:\"https://x.com/chibinya_\",QcfVkMcsk:true,qu8fB0LXD:true,rvdnWRxhA:false,style:{width:\"100%\"},T0pfezFsv:\"Boyce Chi\",UiSe9OaM2:\"UXUI Manager\",width:\"100%\",X8tA5ntn1:\"https://www.linkedin.com/\",YLQjnahCC:\"youtube.com\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 64px) / 3, 1px)`,...addPropertyOverrides({CoccodJ8n:{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px) - 15px) / 2, 1px)`},j_iAouD8Y:{width:`max(min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1216px), 440px), 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2elc8m-container\",layoutDependency:layoutDependency,layoutId:\"Yr2qQS6fW-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardTeamMember,{DCDfNB_KK:addImageAlt({src:\"https://framerusercontent.com/images/kasiaoYCREQf7py18AgyjSvhxCU.jpg\"},\"\"),dwfEO63SU:\"https://www.instagram.com/\",Ff_MVPYTM:\"https://facebook.com/\",height:\"100%\",HjFqUk4iD:false,id:\"Yr2qQS6fW\",layoutId:\"Yr2qQS6fW\",nC5qOcGcT:true,PuznUSawE:\"https://x.com/chibinya_\",QcfVkMcsk:true,qu8fB0LXD:true,rvdnWRxhA:false,style:{width:\"100%\"},T0pfezFsv:\"Loki Bright\",UiSe9OaM2:\"VP Of Technology\",width:\"100%\",X8tA5ntn1:\"https://www.linkedin.com/\",YLQjnahCC:\"youtube.com\"})})})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RhTRK.framer-gnwjx6, .framer-RhTRK .framer-gnwjx6 { display: block; }\",\".framer-RhTRK.framer-limx81 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-RhTRK .framer-15t44a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 112px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RhTRK .framer-qtgeia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RhTRK .framer-hfwsvm { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RhTRK .framer-crhc41-container, .framer-RhTRK .framer-f07im3-container, .framer-RhTRK .framer-12v8rp5-container, .framer-RhTRK .framer-73qo87-container, .framer-RhTRK .framer-yt9tzn-container, .framer-RhTRK .framer-2elc8m-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RhTRK.framer-limx81, .framer-RhTRK .framer-15t44a, .framer-RhTRK .framer-qtgeia { gap: 0px; } .framer-RhTRK.framer-limx81 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-RhTRK.framer-limx81 > :first-child { margin-left: 0px; } .framer-RhTRK.framer-limx81 > :last-child { margin-right: 0px; } .framer-RhTRK .framer-15t44a > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } .framer-RhTRK .framer-15t44a > :first-child, .framer-RhTRK .framer-qtgeia > :first-child { margin-top: 0px; } .framer-RhTRK .framer-15t44a > :last-child, .framer-RhTRK .framer-qtgeia > :last-child { margin-bottom: 0px; } .framer-RhTRK .framer-qtgeia > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-RhTRK.framer-v-hhrtur.framer-limx81 { width: 810px; }\",\".framer-RhTRK.framer-v-hhrtur .framer-hfwsvm { gap: 15px; grid-template-columns: repeat(2, minmax(1px, 1fr)); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RhTRK.framer-v-hhrtur .framer-hfwsvm { gap: 0px; } .framer-RhTRK.framer-v-hhrtur .framer-hfwsvm > *, .framer-RhTRK.framer-v-hhrtur .framer-hfwsvm > :first-child, .framer-RhTRK.framer-v-hhrtur .framer-hfwsvm > :last-child { margin: 0px; } }\",\".framer-RhTRK.framer-v-1w3i6b0.framer-limx81 { width: 390px; }\",\".framer-RhTRK.framer-v-1w3i6b0 .framer-hfwsvm { gap: 0px; grid-template-columns: repeat(1, minmax(1px, 1fr)); max-width: 440px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RhTRK.framer-v-1w3i6b0 .framer-hfwsvm { gap: 0px; } .framer-RhTRK.framer-v-1w3i6b0 .framer-hfwsvm > *, .framer-RhTRK.framer-v-1w3i6b0 .framer-hfwsvm > :first-child, .framer-RhTRK.framer-v-1w3i6b0 .framer-hfwsvm > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 384\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CoccodJ8n\":{\"layout\":[\"fixed\",\"auto\"]},\"j_iAouD8Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrGkB_JwYx=withCSS(Component,css,\"framer-RhTRK\");export default FramerrGkB_JwYx;FramerrGkB_JwYx.displayName=\"Section/Team\";FramerrGkB_JwYx.defaultProps={height:384,width:1200};addPropertyControls(FramerrGkB_JwYx,{variant:{options:[\"WgCFz4GUw\",\"CoccodJ8n\",\"j_iAouD8Y\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrGkB_JwYx,[{explicitInter:true,fonts:[]},...CardTeamMemberFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrGkB_JwYx\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CoccodJ8n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j_iAouD8Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"384\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rGkB_JwYx.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import SectionBrands from\"#framer/local/canvasComponent/G1quos_R8/G1quos_R8.js\";import CardPartner from\"#framer/local/canvasComponent/jU7GKk5Nh/jU7GKk5Nh.js\";import Button from\"#framer/local/canvasComponent/KF7UbbSfc/KF7UbbSfc.js\";import SectionCTA from\"#framer/local/canvasComponent/LpjyIZj0_/LpjyIZj0_.js\";import SectionFooter from\"#framer/local/canvasComponent/lS9TvqxVt/lS9TvqxVt.js\";import BackgroundGrid from\"#framer/local/canvasComponent/pwVXWPq1Q/pwVXWPq1Q.js\";import SectionTeam from\"#framer/local/canvasComponent/rGkB_JwYx/rGkB_JwYx.js\";import TopNavigationBar from\"#framer/local/canvasComponent/sltkc74h7/sltkc74h7.js\";import*as sharedStyle from\"#framer/local/css/InAVlAauN/InAVlAauN.js\";import*as sharedStyle2 from\"#framer/local/css/iWwuCnlxd/iWwuCnlxd.js\";import*as sharedStyle3 from\"#framer/local/css/Jjj2T4gpQ/Jjj2T4gpQ.js\";import*as sharedStyle1 from\"#framer/local/css/oEPT_ciXE/oEPT_ciXE.js\";import*as sharedStyle5 from\"#framer/local/css/pP7JHpqrA/pP7JHpqrA.js\";import*as sharedStyle4 from\"#framer/local/css/ZtqXN38zW/ZtqXN38zW.js\";import metadataProvider from\"#framer/local/webPageMetadata/FJPpMOPTF/FJPpMOPTF.js\";const BackgroundGridFonts=getFonts(BackgroundGrid);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const TopNavigationBarFonts=getFonts(TopNavigationBar);const SectionBrandsFonts=getFonts(SectionBrands);const ImageWithFX=withFX(Image);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const CardPartnerFonts=getFonts(CardPartner);const SectionTeamFonts=getFonts(SectionTeam);const SectionCTAFonts=getFonts(SectionCTA);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={ABM8eVSAK:\"(min-width: 810px) and (max-width: 1299px)\",BNLYBCREr:\"(max-width: 809px)\",dbQFtDr99:\"(min-width: 1300px) and (max-width: 1919px)\",SpD5SdNyC:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-T4Dbb\";const variantClassNames={ABM8eVSAK:\"framer-v-nk01li\",BNLYBCREr:\"framer-v-jn3uco\",dbQFtDr99:\"framer-v-1xuen7k\",SpD5SdNyC:\"framer-v-1mvbc3\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:80,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:80,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const transition4={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const transition5={damping:80,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const transition6={damping:80,delay:.8,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:40};const transition7={damping:80,delay:1,mass:1,stiffness:500,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:40};const transition8={damping:80,delay:1.2,mass:1,stiffness:500,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:40};const transition9={damping:80,delay:1.4,mass:1,stiffness:500,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:40};const transition10={damping:80,delay:1.6,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:40};const transition11={damping:80,delay:1.8,mass:1,stiffness:500,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:40};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-40,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-40,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:-40,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-40,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:-40,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:-40,y:0};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:2.5,skewX:0,skewY:0,transformPerspective:1200,x:-40,y:0};const transition12={damping:80,delay:2.4,mass:1,stiffness:500,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:2.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:-40,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:-40,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:-40,y:0};const transition13={damping:80,delay:1.5,mass:1,stiffness:500,type:\"spring\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:-40,y:0};const transition14={damping:80,delay:1.3,mass:1,stiffness:500,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:-40,y:0};const transition15={damping:80,delay:1.1,mass:1,stiffness:500,type:\"spring\"};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:-40,y:0};const transition16={damping:80,delay:2.1,mass:1,stiffness:500,type:\"spring\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:-40,y:0};const transition17={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"Desktop-1920\":\"SpD5SdNyC\",Desktop:\"dbQFtDr99\",Phone:\"BNLYBCREr\",Tablet:\"ABM8eVSAK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SpD5SdNyC\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ABM8eVSAK\")return false;return true;};const elementId=useRouteElementId(\"Kwo6jIQQZ\");const ref2=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"SpD5SdNyC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1mvbc3\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-11z29de\",\"data-framer-name\":\"Section - Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjcjmp\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.5302)`,y:(componentViewport?.y||0)+0+0+1},BNLYBCREr:{height:723,width:`calc(${componentViewport?.width||\"100vw\"} + 964px)`,y:(componentViewport?.y||0)+0+0+-113},dbQFtDr99:{width:\"1600px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:727,width:\"1920px\",y:(componentViewport?.y||0)+0+0+-120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-658xl3-container\",children:/*#__PURE__*/_jsx(BackgroundGrid,{height:\"100%\",id:\"Dpdne3Mpw\",layoutId:\"Dpdne3Mpw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l9nvmo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15o5ra3\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4ox813\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z6cws\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qvjigk\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10 6\"><path d=\"M 9.454 4.528 C 6.339 3.645 6.252 1.351 6.25 1.243 C 6.247 0.832 5.912 0.499 5.5 0.499 C 5.308 0.499 4.696 0.504 4.507 0.503 L 4.5 0.503 C 4.092 0.503 3.758 0.833 3.75 1.242 C 3.748 1.34 3.669 3.642 0.546 4.527 C 0.186 4.629 -0.044 4.981 0.007 5.352 C 0.059 5.723 0.376 5.999 0.75 5.999 L 9.25 5.999 C 9.624 5.999 9.941 5.723 9.993 5.352 C 10.044 4.981 9.814 4.63 9.454 4.528 Z\" fill=\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) /* {&quot;name&quot;:&quot;Brand - Primary&quot;} */\"></path></svg>',svgContentId:12508965154,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dts7my\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 12\"><path d=\"M 15.999 2.71 C 15.978 2.312 15.648 2 15.25 2 L 13.618 2 C 13.664 1.617 13.708 1.226 13.747 0.821 C 13.767 0.611 13.697 0.402 13.555 0.245 C 13.413 0.089 13.211 -0.001 13 -0.001 L 3 -0.001 C 2.789 -0.001 2.587 0.088 2.445 0.245 C 2.302 0.401 2.233 0.61 2.253 0.821 C 2.292 1.226 2.335 1.617 2.382 2 L 0.75 2 C 0.352 2 0.022 2.312 0.001 2.71 C -0.006 2.838 -0.148 5.877 1.481 7.597 C 2.15 8.304 3.015 8.673 4.037 8.728 C 4.963 10.725 6.197 11.826 7.75 12 L 8 12 L 8.335 11.995 C 9.844 11.823 11.057 10.724 11.973 8.727 C 12.991 8.67 13.852 8.302 14.519 7.597 C 16.149 5.877 16.006 2.838 15.999 2.71 Z M 2.572 6.568 C 1.78 5.735 1.567 4.342 1.512 3.5 L 2.591 3.5 C 2.809 4.867 3.084 6.067 3.415 7.107 C 3.094 6.995 2.812 6.821 2.572 6.568 Z M 13.427 6.568 C 13.188 6.819 12.907 6.994 12.588 7.106 C 12.916 6.067 13.19 4.867 13.408 3.501 L 14.487 3.501 C 14.432 4.343 14.219 5.735 13.427 6.568 Z\" fill=\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) /* {&quot;name&quot;:&quot;Brand - Primary&quot;} */\"></path></svg>',svgContentId:10615693968,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-xqgfa3\",\"data-styles-preset\":\"InAVlAauN\",style:{\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\"},children:\"The Soft Wind Story\"})}),className:\"framer-isbcnn\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfuexd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Building a community, revolutionizing an industry\"})})},BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"center\"},children:\"Building a community, revolutionizing an industry\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Building a community, revolutionizing an industry\"})})}),className:\"framer-143ht9m\",\"data-framer-name\":\"Improving Safety & Productivity for Carriers\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"SaaS Wind is America\u2019s fastest growing platform for the Navigation industry, providing navigational assistance and freight matching.\"})}),className:\"framer-86uddr\",\"data-framer-name\":\"To be the technology platform that eliminates inefficiencies in the transportation industry.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1389eqz\",\"data-border\":true,\"data-framer-name\":\"Video container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-176cu7w-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,topLeftRadius:12,topRightRadius:12}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:true,height:\"100%\",id:\"smWbyszYH\",isMixedBorderRadius:false,layoutId:\"smWbyszYH\",loop:false,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/IuYk1LdQCkQ3L3vPAe0exUtFwyU.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/oGGSprzHMfRI2Wfs1Likx2EBak.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:5,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18eyy42\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ehifw-container hidden-nk01li\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{style:{width:\"100%\"},variant:\"wLpyUMyTT\"}},children:/*#__PURE__*/_jsx(TopNavigationBar,{height:\"100%\",id:\"ghw5dY_3L\",layoutId:\"ghw5dY_3L\",QC5fvS0rg:0,sG2_oXGa2:\"rgba(255, 255, 255, 0.78)\",variant:\"tZO_1MKZj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{y:(componentViewport?.y||0)+0+1141},BNLYBCREr:{y:(componentViewport?.y||0)+0+1047}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1304,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nefqa6-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{Ii9PAH3tb:\"0px 0px 20px 0px\",variant:\"wPUtodq0S\"}},children:/*#__PURE__*/_jsx(SectionBrands,{height:\"100%\",id:\"Kwo6jIQQZ\",Ii9PAH3tb:\"0px 60px 20px 60px\",layoutId:\"Kwo6jIQQZ\",style:{width:\"100%\"},variant:\"zgsSv6D90\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1s4oqqr\",\"data-framer-name\":\"Section - Metrics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yloul3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sitvv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8oppmr\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bqco3w\",\"data-framer-name\":\"Subheding\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16j5ltt\",\"data-framer-name\":\"target\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8sgvz1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.5913 3.95079C12.4366 3.57746 12.0713 3.33346 11.6673 3.33346H9.66731V1.33346C9.66731 0.929459 9.42331 0.564125 9.04998 0.409459C8.67664 0.253459 8.24598 0.340125 7.96064 0.626792L4.62731 3.96013C4.43931 4.14813 4.33398 4.40279 4.33398 4.66679V7.25213L0.293977 11.2921C-0.0966901 11.6828 -0.0966901 12.3161 0.293977 12.7068C0.488643 12.9015 0.744643 13.0001 1.00064 13.0001C1.25664 13.0001 1.51264 12.9028 1.70731 12.7068L5.74731 8.66679H8.33264C8.59798 8.66679 8.85264 8.56146 9.03931 8.37346L12.3726 5.04013C12.6593 4.75479 12.7433 4.32413 12.59 3.95079H12.5913Z\" fill=\"#BCD9F5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nx2efn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.0007 21.6667C5.11932 21.6667 0.333984 16.8814 0.333984 11.0001C0.333984 4.46939 6.19665 -0.763944 12.9993 0.526723C13.542 0.629389 13.8993 1.15339 13.7966 1.69472C13.694 2.23872 13.1607 2.59339 12.6273 2.49072C12.0727 2.38539 11.526 2.33206 11.0007 2.33206C6.22198 2.33206 2.33398 6.22006 2.33398 10.9987C2.33398 15.7774 6.22198 19.6654 11.0007 19.6654C15.7793 19.6654 19.6673 15.7774 19.6673 10.9987C19.6673 10.4707 19.614 9.92272 19.51 9.37206C19.406 8.82939 19.762 8.30672 20.3046 8.20272C20.8486 8.09872 21.37 8.45472 21.474 8.99872C21.6033 9.67206 21.6686 10.3454 21.6686 10.9987C21.6686 16.8801 16.8833 21.6654 11.002 21.6654L11.0007 21.6667Z\" fill=\"#BCD9F5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1edsm2l\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.00065 13.6667C3.32465 13.6667 0.333984 10.676 0.333984 7.00004C0.333984 3.32404 3.32465 0.333374 7.00065 0.333374C7.34998 0.333374 7.68465 0.381374 8.01932 0.432041C8.56465 0.516041 8.93932 1.02671 8.85532 1.57204C8.77265 2.11871 8.27132 2.49604 7.71532 2.40804C7.48065 2.37204 7.24598 2.33204 7.00198 2.33204C4.42865 2.33204 2.33532 4.42537 2.33532 6.99871C2.33532 9.57204 4.42865 11.6654 7.00198 11.6654C9.57532 11.6654 11.6687 9.57204 11.6687 6.99871C11.6687 6.75471 11.63 6.52137 11.5927 6.28671C11.5087 5.74137 11.882 5.23071 12.4273 5.14537C12.982 5.06804 13.4846 5.43471 13.5687 5.98004C13.6206 6.31471 13.6673 6.65071 13.6673 7.00004C13.6673 10.676 10.6767 13.6667 7.00065 13.6667Z\" fill=\"#BCD9F5\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(143, 191, 235) 0%, rgb(227, 239, 253) 60%, rgb(126, 196, 247) 100%)\"},children:\"Vision & Mission\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.2395719467745deg, rgba(143, 191, 235, 1) 0%, rgba(227, 239, 253, 1) 60.00000238418579%, rgba(126, 196, 247, 1) 100%)\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Vision & Mission\"})})})}),className:\"framer-au47cd\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:[\"What ignites our drive to \",/*#__PURE__*/_jsx(\"br\",{}),\"move forward?\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"What ignites our drive to move forward?\"})}),className:\"framer-5srfuh\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Vision:\"}),\" \"]}),\"To be the technology platform that eliminates inefficiencies in the transportation industry.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Vision:\"}),\" \"]}),\"To be the technology platform that eliminates inefficiencies in the transportation industry.\"]})}),className:\"framer-h35t6j\",\"data-framer-name\":\"Vision: To be the technology platform that eliminates inefficiencies in the transportation industry.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mission:  \"}),\"Revolutionize freight transport: Fast, reliable, and powered by cutting-edge tech for our community.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mission:  \"}),\"Revolutionize freight transport: Fast, reliable, and powered by cutting-edge tech for our community.\"]})}),className:\"framer-e36j5q\",\"data-framer-name\":\"Mission: Revolutionize freight transport: Fast, reliable, and powered by cutting-edge tech for our community.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k6qwtb\",\"data-framer-name\":\"Metric\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6qq0hc\",\"data-border\":true,\"data-framer-name\":\"Frame\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"12,000+\"})})})},BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"12,000+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"12,000+\"})})}),className:\"framer-1ewavuq\",\"data-framer-name\":\"Heading 3 \u2192 5,000+\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"Users\"})}),className:\"framer-1xz98f3\",\"data-framer-name\":\"Heading 4 \u2192 Organizations trust Lattice\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1z05mnn\",\"data-border\":true,\"data-framer-name\":\"Frame\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"5,000+\"})})})},BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"5,000+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"5,000+\"})})}),className:\"framer-3qruad\",\"data-framer-name\":\"Heading 3 \u2192 5,000+\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"Miles\"})}),className:\"framer-3cbxht\",\"data-framer-name\":\"Heading 4 \u2192 Organizations trust Lattice\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h7wdac\",\"data-border\":true,\"data-framer-name\":\"Frame\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"800k+\"})})})},BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"800k+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"800k+\"})})}),className:\"framer-18ey1d8\",\"data-framer-name\":\"Heading 3 \u2192 5.55M\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"Places\"})}),className:\"framer-tg2oro\",\"data-framer-name\":\"Heading 4 \u2192 Pieces of Feedback Shared\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y9cvbs\",\"data-border\":true,\"data-framer-name\":\"Frame\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"5.55M\"})})})},BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"5.55M\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(166.24deg, rgb(146, 198, 245) 0%, rgb(227, 239, 253) 60%, rgb(113, 195, 255) 100%)\"},children:\"5.55M\"})})}),className:\"framer-1nea42f\",\"data-framer-name\":\"Heading 3 \u2192 5.55M\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"Places\"})}),className:\"framer-bwx6ru\",\"data-framer-name\":\"Heading 4 \u2192 Pieces of Feedback Shared\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:655,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1392+-209),pixelHeight:800,pixelWidth:1310,sizes:\"1905.7225px\",src:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png 1310w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:655,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298+-209),pixelHeight:800,pixelWidth:1310,sizes:\"1589.3575px\",src:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png 1310w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:655,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1555+-209),pixelHeight:800,pixelWidth:1310,sizes:\"1486.5225px\",src:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png 1310w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:655,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1555+-209),pixelHeight:800,pixelWidth:1310,sizes:\"1617.5225px\",src:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mF0ID2zsM0jPJR4WRzfhzWLptQ.png 1310w\"},className:\"framer-1wa8wna\",\"data-framer-name\":\"Grid\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uim7ch\",\"data-framer-name\":\"Bg-Light-right\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m0glp2\",\"data-framer-name\":\"Bg-Light-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:493,intrinsicWidth:721,svg:'<svg width=\"721\" height=\"493\" viewBox=\"0 0 721 493\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\" clip-path=\"url(#clip0_1130_29380)\">\\n<mask id=\"mask0_1130_29380\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"721\" height=\"493\">\\n<path d=\"M721 0H0V493H721V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1130_29380)\">\\n<g opacity=\"0.2\" filter=\"url(#filter0_f_1130_29380)\">\\n<path d=\"M1376.02 -544.129L1409.55 -510.575L821.13 78.0625L410.623 468.977L787.59 44.5102L1376.02 -544.129Z\" fill=\"url(#paint0_linear_1130_29380)\" fill-opacity=\"0.54\"/>\\n</g>\\n<g opacity=\"0.32\" filter=\"url(#filter1_f_1130_29380)\">\\n<path d=\"M1096.41 -529.976L1129.95 -496.424L541.526 92.2148L131.02 483.128L507.986 58.6624L1096.41 -529.976Z\" fill=\"url(#paint1_linear_1130_29380)\" fill-opacity=\"0.54\"/>\\n</g>\\n<g opacity=\"0.32\" filter=\"url(#filter2_f_1130_29380)\">\\n<path d=\"M989.06 -673.992L1022.6 -640.439L434.179 -51.8009L23.6724 339.112L400.639 -85.3534L989.06 -673.992Z\" fill=\"url(#paint2_linear_1130_29380)\" fill-opacity=\"0.9\"/>\\n</g>\\n<g opacity=\"0.2\" filter=\"url(#filter3_f_1130_29380)\">\\n<path d=\"M1376.02 -544.129L1409.55 -510.575L821.13 78.0625L410.623 468.977L787.59 44.5102L1376.02 -544.129Z\" fill=\"url(#paint3_linear_1130_29380)\" fill-opacity=\"0.54\"/>\\n</g>\\n<g opacity=\"0.32\" filter=\"url(#filter4_f_1130_29380)\">\\n<path d=\"M1096.41 -529.976L1129.95 -496.424L541.526 92.2148L131.02 483.128L507.986 58.6624L1096.41 -529.976Z\" fill=\"url(#paint4_linear_1130_29380)\" fill-opacity=\"0.54\"/>\\n</g>\\n<g opacity=\"0.32\" filter=\"url(#filter5_f_1130_29380)\">\\n<path d=\"M989.06 -673.992L1022.6 -640.439L434.179 -51.8009L23.6724 339.112L400.639 -85.3534L989.06 -673.992Z\" fill=\"url(#paint5_linear_1130_29380)\" fill-opacity=\"0.9\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_1130_29380\" x=\"330.623\" y=\"-624.129\" width=\"1158.93\" height=\"1173.11\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_1130_29380\"/>\\n</filter>\\n<filter id=\"filter1_f_1130_29380\" x=\"51.02\" y=\"-609.976\" width=\"1158.93\" height=\"1173.1\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_1130_29380\"/>\\n</filter>\\n<filter id=\"filter2_f_1130_29380\" x=\"-56.3276\" y=\"-753.992\" width=\"1158.93\" height=\"1173.1\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_1130_29380\"/>\\n</filter>\\n<filter id=\"filter3_f_1130_29380\" x=\"330.623\" y=\"-624.129\" width=\"1158.93\" height=\"1173.11\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_1130_29380\"/>\\n</filter>\\n<filter id=\"filter4_f_1130_29380\" x=\"51.02\" y=\"-609.976\" width=\"1158.93\" height=\"1173.1\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_1130_29380\"/>\\n</filter>\\n<filter id=\"filter5_f_1130_29380\" x=\"-56.3276\" y=\"-753.992\" width=\"1158.93\" height=\"1173.1\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_1130_29380\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_1130_29380\" x1=\"1392.79\" y1=\"-527.352\" x2=\"804.142\" y2=\"61.0693\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_1130_29380\" x1=\"1113.18\" y1=\"-513.199\" x2=\"524.539\" y2=\"75.2217\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_1130_29380\" x1=\"1005.83\" y1=\"-657.215\" x2=\"417.191\" y2=\"-68.7941\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_1130_29380\" x1=\"1392.79\" y1=\"-527.352\" x2=\"804.142\" y2=\"61.0693\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_1130_29380\" x1=\"1113.18\" y1=\"-513.199\" x2=\"524.539\" y2=\"75.2217\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_1130_29380\" x1=\"1005.83\" y1=\"-657.215\" x2=\"417.191\" y2=\"-68.7941\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_1130_29380\">\\n<rect width=\"721\" height=\"493\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2228.8),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png\",srcSet:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png 3840w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1941.6),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png\",srcSet:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png 3840w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2135.8),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png\",srcSet:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2215.8),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png\",srcSet:\"https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qqBs2wtiprWJ7JRX41iq58dQ.png 3840w\"},className:\"framer-guma2c\",\"data-framer-name\":\"Section - Whitebook\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pwhdgy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tjif0f\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Empowering Your Entire  Process\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Empowering Your Entire  Process\"})}),className:\"framer-xkt8ig\",\"data-framer-name\":\"Empowering Your Entire Process\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__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-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Put together everything you need to raise the efficiency of your brokerage and business. \"})}),className:\"framer-c9jgxf\",\"data-framer-name\":\"Put together everything you need to raise the efficiency of your brokerage and business.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:569,intrinsicWidth:1282,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2228.8+60+0+0+209.8),pixelHeight:1707,pixelWidth:3846,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) * 1.05)`,src:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png 3846w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:569,intrinsicWidth:1282,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1941.6+48+0+0+209.8),pixelHeight:1707,pixelWidth:3846,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1200px) * 1.07)`,src:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png 3846w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:569,intrinsicWidth:1282,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2135.8+80+0+0+209.8),pixelHeight:1707,pixelWidth:3846,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) * 1.05)`,src:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png 3846w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:569,intrinsicWidth:1282,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2215.8+80+0+0+209.8),pixelHeight:1707,pixelWidth:3846,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) * 1.06)`,src:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kxr9iQbYyzKBfJPX5nAYp8BD8.png 3846w\"},className:\"framer-14uqjiv\",\"data-framer-name\":\"image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3pdbvq\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{y:(componentViewport?.y||0)+0+2228.8+60+0+0+794.8+0},BNLYBCREr:{width:\"352px\",y:(componentViewport?.y||0)+0+1941.6+48+0+0+794.8+0},dbQFtDr99:{y:(componentViewport?.y||0)+0+2135.8+80+0+0+794.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+2215.8+80+0+0+794.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5yng3q-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"DownloadSimple\",CJwkcCfE5:\"https://framerusercontent.com/assets/VaMBhkZZsWZJY1d5pYGagHOIIE.pdf\",GR68CgLTN:\"Download Whitebook\",height:\"100%\",id:\"Aq_CMxYJo\",layoutId:\"Aq_CMxYJo\",LG5CSJpvD:true,ot18wTv79:true,variant:\"WKIwTYTZF\",w5Hgz19ND:10,width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e720ya\",\"data-framer-name\":\"Section - Partners\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8i9js\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zn5bb6\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qauvx9\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hw08qx\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1teku23\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M5.667 17.333a3.333 3.333 0 1 0 0-6.666 3.333 3.333 0 0 0 0 6.666Z\" fill=\"url(#b)\"/><path d=\"M5.668 18.333a5.701 5.701 0 0 0-5.432 4.048 1 1 0 0 0 .959 1.285h8.947a1 1 0 0 0 .958-1.285 5.7 5.7 0 0 0-5.432-4.048Z\" fill=\"url(#c)\"/><path d=\"M12.001 6.667a3.333 3.333 0 1 0 0-6.667 3.333 3.333 0 0 0 0 6.667Z\" fill=\"url(#d)\"/><path d=\"M14.926 10.697a1 1 0 0 0 .628-1.78c-2.005-1.613-5.1-1.613-7.105 0a1 1 0 1 0 1.254 1.559c1.316-1.06 3.282-1.06 4.598 0a.999.999 0 0 0 .625.221Z\" fill=\"url(#e)\"/><path d=\"M18.335 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\" fill=\"url(#f)\"/><path d=\"M23.766 22.381a5.7 5.7 0 0 0-5.432-4.048 5.701 5.701 0 0 0-5.432 4.048 1 1 0 0 0 .959 1.285h8.947a1 1 0 0 0 .958-1.285Z\" fill=\"url(#g)\"/></g><defs><linearGradient id=\"b\" x1=\"2.44\" y1=\"10.388\" x2=\"5.655\" y2=\"17.339\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".14\" stop-color=\"#70C8F4\"/><stop offset=\"1\" stop-color=\"#068DD0\"/></linearGradient><linearGradient id=\"c\" x1=\".368\" y1=\"18.11\" x2=\"1.816\" y2=\"24.535\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".14\" stop-color=\"#70C8F4\"/><stop offset=\"1\" stop-color=\"#068DD0\"/></linearGradient><linearGradient id=\"d\" x1=\"8.774\" y1=\"-.279\" x2=\"11.989\" y2=\"6.672\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".14\" stop-color=\"#70C8F4\"/><stop offset=\"1\" stop-color=\"#068DD0\"/></linearGradient><linearGradient id=\"e\" x1=\"8.2\" y1=\"7.582\" x2=\"8.847\" y2=\"11.253\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".14\" stop-color=\"#70C8F4\"/><stop offset=\"1\" stop-color=\"#068DD0\"/></linearGradient><linearGradient id=\"f\" x1=\"15.43\" y1=\"10.749\" x2=\"18.324\" y2=\"17.005\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".14\" stop-color=\"#70C8F4\"/><stop offset=\"1\" stop-color=\"#068DD0\"/></linearGradient><linearGradient id=\"g\" x1=\"13.034\" y1=\"18.11\" x2=\"14.482\" y2=\"24.535\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".14\" stop-color=\"#70C8F4\"/><stop offset=\"1\" stop-color=\"#068DD0\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\"},children:\"PARTNERSHIPS\"})}),className:\"framer-1xru8r\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Connects with America's biggest navigation network.\"})})})},BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Connects with America's biggest navigation network.\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Connects with America's biggest navigation network.\"})})}),className:\"framer-as4het\",\"data-framer-name\":\"Heading 2 \u2192 Our team is growing\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"TruckLoads connects you to a huge network of U.S. truckers, with over 600,000 users from America's top navigation app.\"})})},BNLYBCREr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"TruckLoads connects you to a huge network of U.S. truckers, with over 600,000 users from America's top navigation app.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__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-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",children:\"TruckLoads connects you to a huge network of U.S. truckers, with over 600,000 users from America's top navigation app.\"})}),className:\"framer-1nsz8jz\",\"data-framer-name\":\"TruckLoads connects you to a huge network of U.S. truckers, with over 600,000 users from America's top trucking app, Trucker Path.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{y:(componentViewport?.y||0)+0+3183.6000000000004+60+0+0+0+255.8},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2872.3999999999996+48+0+0+0+255.8},dbQFtDr99:{y:(componentViewport?.y||0)+0+3130.6000000000004+80+0+0+255.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+3210.6000000000004+80+0+0+255.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hcqxw6-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{CJwkcCfE5:resolvedLinks[2]},BNLYBCREr:{CJwkcCfE5:resolvedLinks[3],style:{width:\"100%\"}},dbQFtDr99:{CJwkcCfE5:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"DownloadSimple\",CJwkcCfE5:resolvedLinks[0],GR68CgLTN:\"Contact Us\",height:\"100%\",id:\"Xve3iBDAE\",layoutId:\"Xve3iBDAE\",LG5CSJpvD:false,ot18wTv79:false,variant:\"WKIwTYTZF\",w5Hgz19ND:10,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hwfw6j\",\"data-framer-name\":\"Right Card\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3183.6000000000004+60+0+327.8+0+0},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2872.3999999999996+48+0+295.8+32+0},dbQFtDr99:{y:(componentViewport?.y||0)+0+3130.6000000000004+80+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:\"591px\",y:(componentViewport?.y||0)+0+3210.6000000000004+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12v3pd3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{EopIswqgQ:resolvedLinks1[2],variant:\"SVaCIoAOn\"},BNLYBCREr:{EopIswqgQ:resolvedLinks1[3],variant:\"SVaCIoAOn\"},dbQFtDr99:{EopIswqgQ:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CardPartner,{bqy2YqjjW:\"THEFREETMS.COM\",EopIswqgQ:resolvedLinks1[0],height:\"100%\",id:\"poYLss14K\",layoutId:\"poYLss14K\",style:{width:\"100%\"},Ty93WIvHI:\"The top web TMS to run your logistics, accessible on any device. No contracts or setup, linked to Trucker Path.\",variant:\"K2_F2o2zL\",width:\"100%\",zyoUvPKRI:addImageAlt({src:\"https://framerusercontent.com/images/RXznzyjPg8RJDlYwqWmCwYVZLX0.png\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3183.6000000000004+60+0+327.8+0+0},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2872.3999999999996+48+0+295.8+32+304},dbQFtDr99:{y:(componentViewport?.y||0)+0+3130.6000000000004+80+0+0+320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:\"591px\",y:(componentViewport?.y||0)+0+3210.6000000000004+80+0+0+320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b1tx3j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{EopIswqgQ:resolvedLinks2[2],variant:\"SVaCIoAOn\"},BNLYBCREr:{EopIswqgQ:resolvedLinks2[3],variant:\"SVaCIoAOn\"},dbQFtDr99:{EopIswqgQ:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(CardPartner,{bqy2YqjjW:\"POSTEVERYWHERE.COM\",EopIswqgQ:resolvedLinks2[0],height:\"100%\",id:\"YpLJAGdUZ\",layoutId:\"YpLJAGdUZ\",style:{width:\"100%\"},Ty93WIvHI:\"PostEverywhere: Post loads to 50+ boards at once. For shippers and brokers, it boosts visibility and finds trucks fast.\",variant:\"K2_F2o2zL\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3183.6000000000004+60+0+327.8+0+312},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2872.3999999999996+48+0+295.8+32+608},dbQFtDr99:{y:(componentViewport?.y||0)+0+3130.6000000000004+80+0+0+640}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:\"591px\",y:(componentViewport?.y||0)+0+3210.6000000000004+80+0+0+640,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x5wt38-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{EopIswqgQ:resolvedLinks3[2],variant:\"SVaCIoAOn\"},BNLYBCREr:{EopIswqgQ:resolvedLinks3[3],variant:\"SVaCIoAOn\"},dbQFtDr99:{EopIswqgQ:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(CardPartner,{bqy2YqjjW:\"THEFREETMS.COM\",EopIswqgQ:resolvedLinks3[0],height:\"100%\",id:\"xzfSlB6oE\",layoutId:\"xzfSlB6oE\",style:{width:\"100%\"},Ty93WIvHI:\"The top web TMS to run your logistics, accessible on any device. No contracts or setup, linked to Trucker Path.\",variant:\"K2_F2o2zL\",width:\"100%\",zyoUvPKRI:addImageAlt({src:\"https://framerusercontent.com/images/Lj6jFLNAa30S8wRUUPYxItLT1l8.png\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3183.6000000000004+60+0+327.8+0+312},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2872.3999999999996+48+0+295.8+32+912},dbQFtDr99:{y:(componentViewport?.y||0)+0+3130.6000000000004+80+0+0+960}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:\"591px\",y:(componentViewport?.y||0)+0+3210.6000000000004+80+0+0+960,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aseoup-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{EopIswqgQ:resolvedLinks4[2],variant:\"SVaCIoAOn\"},BNLYBCREr:{EopIswqgQ:resolvedLinks4[3],variant:\"SVaCIoAOn\"},dbQFtDr99:{EopIswqgQ:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(CardPartner,{bqy2YqjjW:\"POSTEVERYWHERE.COM\",EopIswqgQ:resolvedLinks4[0],height:\"100%\",id:\"vb9zuBxKf\",layoutId:\"vb9zuBxKf\",style:{width:\"100%\"},Ty93WIvHI:\"PostEverywhere: Post loads to 50+ boards at once. For shippers and brokers, it boosts visibility and finds trucks fast.\",variant:\"K2_F2o2zL\",width:\"100%\",zyoUvPKRI:addImageAlt({src:\"https://framerusercontent.com/images/To2bkE3NcdnLFrHzjuqJc55f0o.png\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3183.6000000000004+60+0+327.8+0+624},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2872.3999999999996+48+0+295.8+32+1216},dbQFtDr99:{y:(componentViewport?.y||0)+0+3130.6000000000004+80+0+0+1280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:\"591px\",y:(componentViewport?.y||0)+0+3210.6000000000004+80+0+0+1280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12yk4vl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{EopIswqgQ:resolvedLinks5[2],variant:\"SVaCIoAOn\"},BNLYBCREr:{EopIswqgQ:resolvedLinks5[3],variant:\"SVaCIoAOn\"},dbQFtDr99:{EopIswqgQ:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(CardPartner,{bqy2YqjjW:\"POSTEVERYWHERE.COM\",EopIswqgQ:resolvedLinks5[0],height:\"100%\",id:\"qcHDRBUi5\",layoutId:\"qcHDRBUi5\",style:{width:\"100%\"},Ty93WIvHI:\"The top web TMS to run your logistics, accessible on any device. No contracts or setup, linked to Trucker Path.\",variant:\"K2_F2o2zL\",width:\"100%\",zyoUvPKRI:addImageAlt({src:\"https://framerusercontent.com/images/um18HghJjqFpqS6Q4KB5aDgDrK4.png\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined},{href:{pathVariables:{PrtYd7Cnx:\"how-to-develop-svg-icon-in-sketch\"},unresolvedPathSlugs:{PrtYd7Cnx:{collectionId:\"wi5ius45d\",collectionItemId:\"IlrhK01EF\"}},webPageId:\"JFORGoI9I\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3183.6000000000004+60+0+327.8+0+624},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2872.3999999999996+48+0+295.8+32+1520},dbQFtDr99:{y:(componentViewport?.y||0)+0+3130.6000000000004+80+0+0+1600}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:\"591px\",y:(componentViewport?.y||0)+0+3210.6000000000004+80+0+0+1600,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1udy2tw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{EopIswqgQ:resolvedLinks6[2],variant:\"SVaCIoAOn\"},BNLYBCREr:{EopIswqgQ:resolvedLinks6[3],variant:\"SVaCIoAOn\"},dbQFtDr99:{EopIswqgQ:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(CardPartner,{bqy2YqjjW:\"POSTEVERYWHERE.COM\",EopIswqgQ:resolvedLinks6[0],height:\"100%\",id:\"l1SbcNtKA\",layoutId:\"l1SbcNtKA\",style:{width:\"100%\"},Ty93WIvHI:\"PostEverywhere: Post loads to 50+ boards at once. For shippers and brokers, it boosts visibility and finds trucks fast.\",variant:\"K2_F2o2zL\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4kexv\",\"data-framer-name\":\"Section - Team\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e15nu3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Meet the People\"})}),className:\"framer-172xy9e\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"From a small group to a family, our team members bring diverse skills and creativity. Meet the talented individuals behind our success.\"})}),className:\"framer-165895m\",\"data-framer-name\":\"Come join us on the journey to make work meaningful.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{y:(componentViewport?.y||0)+0+4543.400000000001+60+233.8},BNLYBCREr:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1200px)`,y:(componentViewport?.y||0)+0+5104.2+40+205.8},dbQFtDr99:{y:(componentViewport?.y||0)+0+5178.6+80+233.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:384,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+5258.6+80+233.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1epub1h-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{variant:\"CoccodJ8n\"},BNLYBCREr:{variant:\"j_iAouD8Y\"}},children:/*#__PURE__*/_jsx(SectionTeam,{height:\"100%\",id:\"grkXqDFax\",layoutId:\"grkXqDFax\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WgCFz4GUw\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pubhyo\",\"data-framer-name\":\"Section - Career\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ob5ha1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x0b977\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5nqvtg\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6jyhe5\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Be Part of Our Global Team's \",/*#__PURE__*/_jsx(\"br\",{}),\"Exciting Journey\"]})}),className:\"framer-1npubx0\",\"data-framer-name\":\"Heading 2 \u2192 Our team is growing\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Come join us on the journey to make work meaningful.\"})}),className:\"framer-1e6k50s\",\"data-framer-name\":\"Come join us on the journey to make work meaningful.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"S0W8aHN7H\"},implicitPathVariables:undefined},{href:{webPageId:\"S0W8aHN7H\"},implicitPathVariables:undefined},{href:{webPageId:\"S0W8aHN7H\"},implicitPathVariables:undefined},{href:{webPageId:\"S0W8aHN7H\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{y:(componentViewport?.y||0)+0+5281.200000000001+60+0+0+0+0+0+217.8},BNLYBCREr:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+5774+48+0+0+0+0+0+217.8},dbQFtDr99:{y:(componentViewport?.y||0)+0+5956.400000000001+80+0+0+0+0+0+217.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+6036.400000000001+80+0+0+0+0+0+217.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w5e6dw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{CJwkcCfE5:resolvedLinks7[2]},BNLYBCREr:{CJwkcCfE5:resolvedLinks7[3],style:{width:\"100%\"}},dbQFtDr99:{CJwkcCfE5:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"DownloadSimple\",CJwkcCfE5:resolvedLinks7[0],GR68CgLTN:\"Careers In Soft Wind\",height:\"100%\",id:\"ZMVNWKZg6\",layoutId:\"ZMVNWKZg6\",LG5CSJpvD:false,ot18wTv79:false,variant:\"WKIwTYTZF\",w5Hgz19ND:10,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13hrksj\",\"data-framer-name\":\"Frame 427321010\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xuynbs\",\"data-framer-name\":\"San Fransisco\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mis2v4\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c3e5a6\",\"data-framer-name\":\"Featured icon\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><g id=\"ss11457706269_1\"><path d=\"M 14 64 C 6.268 64 0 64 0 64 L 0 0 C 0 0 6.268 0 14 0 L 50 0 C 57.732 0 64 0 64 0 L 64 64 C 64 64 57.732 64 50 64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 14 63.5 C 6.544 63.5 0.5 63.5 0.5 63.5 L 0.5 0.5 C 0.5 0.5 6.544 0.5 14 0.5 L 50 0.5 C 57.456 0.5 63.5 0.5 63.5 0.5 L 63.5 63.5 C 63.5 63.5 57.456 63.5 50 63.5 Z\" fill=\"transparent\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 47.585 25.495 C 45.512 25.234 43.607 24.226 42.225 22.66 C 40.843 21.093 40.08 19.077 40.079 16.988 C 40.079 19.263 39.175 21.445 37.566 23.054 C 35.958 24.663 33.776 25.566 31.501 25.566 C 29.226 25.566 27.044 24.663 25.435 23.054 C 23.826 21.445 22.922 19.263 22.922 16.988 C 22.939 19.091 22.181 21.127 20.795 22.709 C 19.409 24.29 17.489 25.307 15.402 25.566\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 15.416 34.145 L 47.584 34.145\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 34.717 34.145 L 34.717 24.952\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 40.079 34.145 L 40.093 16.988\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 45.44 34.144 L 45.44 24.937\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 28.283 34.145 L 28.283 24.952\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 22.923 34.145 L 22.923 16.988\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 17.561 34.144 L 17.561 24.937\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 37.935 39.506 L 37.935 34.145 L 42.224 34.145 L 42.224 39.506\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 25.067 39.506 L 25.067 34.145 L 20.778 34.145 L 20.778 39.506\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 15.416 47.011 C 16.46 47.011 17.49 46.766 18.421 46.294 C 19.353 45.822 20.16 45.137 20.777 44.295 C 21.395 45.137 22.202 45.822 23.133 46.294 C 24.065 46.766 25.094 47.012 26.139 47.012 C 27.183 47.012 28.212 46.766 29.144 46.294 C 30.075 45.822 30.883 45.137 31.5 44.295 C 32.117 45.137 32.925 45.822 33.856 46.294 C 34.788 46.766 35.817 47.012 36.861 47.012 C 37.906 47.012 38.935 46.766 39.867 46.294 C 40.798 45.822 41.605 45.137 42.223 44.295 C 42.84 45.137 43.647 45.822 44.579 46.294 C 45.51 46.766 46.54 47.011 47.584 47.011\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:11457706269,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hbojbo\",\"data-framer-name\":\"Frame 427321003\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"San Fransisco\"})}),className:\"framer-1d0gbyx\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"The majority of the office is based in San Fransisco.\"})}),className:\"framer-1ylpk6l\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ge42zf\",\"data-framer-name\":\"Beijing\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kn6dmm\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mzcxdu\",\"data-framer-name\":\"Featured icon\",layout:\"position\",opacity:1,radius:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><g id=\"ss11305100246_1\"><path d=\"M 14 64 C 6.268 64 0 64 0 64 L 0 0 C 0 0 6.268 0 14 0 L 50 0 C 57.732 0 64 0 64 0 L 64 64 C 64 64 57.732 64 50 64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 14 63.5 C 6.544 63.5 0.5 63.5 0.5 63.5 L 0.5 0.5 C 0.5 0.5 6.544 0.5 14 0.5 L 50 0.5 C 57.456 0.5 63.5 0.5 63.5 0.5 L 63.5 63.5 C 63.5 63.5 57.456 63.5 50 63.5 Z\" fill=\"transparent\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 15.559 24.882 C 25.491 28.192 28.057 29.623 34.145 36.32\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 24.137 28.16 L 24.137 19.163 L 15.559 19.163 L 15.559 24.882\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 34.145 43.468 L 34.145 24.167 C 34.145 23.977 34.22 23.796 34.354 23.662 C 34.488 23.527 34.67 23.452 34.859 23.452 L 36.289 23.452 C 36.383 23.452 36.476 23.471 36.563 23.507 C 36.649 23.543 36.728 23.595 36.794 23.662 C 36.861 23.728 36.914 23.807 36.95 23.893 C 36.985 23.98 37.004 24.073 37.004 24.167 L 37.004 26.311 L 39.863 26.311 L 39.863 24.167 C 39.863 24.073 39.882 23.98 39.918 23.893 C 39.954 23.807 40.006 23.728 40.073 23.662 C 40.139 23.595 40.218 23.543 40.305 23.507 C 40.391 23.471 40.484 23.452 40.578 23.452 L 42.008 23.452 C 42.197 23.452 42.379 23.527 42.513 23.662 C 42.647 23.796 42.723 23.977 42.723 24.167 L 42.723 26.311 L 45.582 26.311 L 45.582 24.167 C 45.582 23.977 45.657 23.796 45.791 23.662 C 45.925 23.527 46.107 23.452 46.297 23.452 L 47.727 23.452 C 47.916 23.452 48.098 23.527 48.232 23.662 C 48.366 23.796 48.441 23.977 48.441 24.167 L 48.441 39.179 C 45.873 41.142 43.691 43.566 42.008 46.327\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 24.137 24.882 C 27.626 25.924 30.984 27.363 34.145 29.171\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 34.145 39.179 C 30.069 39.944 23.422 40.767 16.273 46.327\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 34.145 43.468 L 33.967 43.498 C 31.25 43.95 28.643 44.91 26.281 46.327\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 34.145 43.468 L 37.004 43.468 L 37.004 34.532 C 37.004 33.3 37.493 32.118 38.365 31.247 C 39.236 30.375 40.418 29.886 41.65 29.886 C 42.693 29.886 43.693 30.3 44.431 31.037 C 45.168 31.775 45.582 32.775 45.582 33.817 L 45.582 41.718\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 18.418 25.857 L 18.418 23.452 C 18.418 23.073 18.569 22.709 18.837 22.441 C 19.105 22.173 19.468 22.023 19.848 22.023 C 20.227 22.023 20.59 22.173 20.859 22.441 C 21.127 22.709 21.277 23.073 21.277 23.452 L 21.277 26.916\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 15.559 24.882 L 15.559 30.601 C 18.297 31.16 20.875 32.326 23.103 34.013 C 25.331 35.7 27.153 37.865 28.434 40.349\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 19.848 19.163 L 19.848 17.733\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 15.559 19.163 L 15.559 17.733\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 24.137 19.163 L 24.137 17.733\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:11305100246,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rmv1q8\",\"data-framer-name\":\"Frame 427321003\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Beijing\"})}),className:\"framer-oo82wk\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"The majority of the office is based in San Fransisco.\"})}),className:\"framer-zncsch\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-svbnu6\",\"data-framer-name\":\"Tokyo\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-aztl14\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sdvq8e\",\"data-framer-name\":\"Featured icon\",layout:\"position\",opacity:1,radius:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><g id=\"ss9581008370_1\"><path d=\"M 14 64 C 6.268 64 0 64 0 64 L 0 0 C 0 0 6.268 0 14 0 L 50 0 C 57.732 0 64 0 64 0 L 64 64 C 64 64 57.732 64 50 64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 14 63.5 C 6.544 63.5 0.5 63.5 0.5 63.5 L 0.5 0.5 C 0.5 0.5 6.544 0.5 14 0.5 L 50 0.5 C 57.456 0.5 63.5 0.5 63.5 0.5 L 63.5 63.5 C 63.5 63.5 57.456 63.5 50 63.5 Z\" fill=\"transparent\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(15.5 15)\" id=\"ss9581008370_4\"><path d=\"M 0 34 L 0 0 L 34 0 L 34 34 Z\" fill=\"transparent\"></path><path d=\"M 3.188 11.067 L 7.438 11.067 L 7.438 28.687 L 3.188 28.687 Z\" fill=\"transparent\" stroke-width=\"1.59375\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 2.479 28.688 L 8.146 28.688 C 8.522 28.688 8.882 28.837 9.148 29.102 C 9.413 29.368 9.563 29.728 9.563 30.104 L 9.563 32.229 C 9.563 32.417 9.488 32.597 9.355 32.73 C 9.222 32.863 9.042 32.938 8.854 32.938 L 1.771 32.938 C 1.583 32.938 1.403 32.863 1.27 32.73 C 1.137 32.597 1.063 32.417 1.063 32.229 L 1.063 30.104 C 1.063 29.728 1.212 29.368 1.477 29.102 C 1.743 28.837 2.103 28.688 2.479 28.688 Z\" fill=\"transparent\" stroke-width=\"1.59375\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 26.563 11.067 L 30.813 11.067 L 30.813 28.687 L 26.563 28.687 Z\" fill=\"transparent\" stroke-width=\"1.59375\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 25.854 28.688 L 31.521 28.688 C 31.897 28.688 32.257 28.837 32.523 29.102 C 32.788 29.368 32.938 29.728 32.938 30.104 L 32.938 32.229 C 32.938 32.417 32.863 32.597 32.73 32.73 C 32.597 32.863 32.417 32.938 32.229 32.938 L 25.146 32.938 C 24.958 32.938 24.778 32.863 24.645 32.73 C 24.512 32.597 24.438 32.417 24.438 32.229 L 24.438 30.104 C 24.438 29.728 24.587 29.368 24.852 29.102 C 25.118 28.837 25.478 28.688 25.854 28.688 Z\" fill=\"transparent\" stroke-width=\"1.59375\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 32.938 1.063 L 31.875 11.067 L 2.125 11.067 L 1.063 1.063 C 10.465 5.026 21.441 6.891 32.938 1.063 Z\" fill=\"transparent\" stroke-width=\"1.59375\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 1.063 17.442 L 32.938 17.442\" fill=\"transparent\" stroke-width=\"1.59375\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 13.813 11.067 L 20.188 11.067 L 20.188 17.442 L 13.813 17.442 Z\" fill=\"transparent\" stroke-width=\"1.59375\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></g></svg>',svgContentId:9581008370,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jj70z\",\"data-framer-name\":\"Frame 427321003\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Tokyo\"})}),className:\"framer-8tzmce\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"The majority of the office is based in San Fransisco.\"})}),className:\"framer-pjwkjg\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g68a5f\",\"data-framer-name\":\"Netherland\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ebtm99\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4u5k99\",\"data-framer-name\":\"Featured icon\",layout:\"position\",opacity:1,radius:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><g id=\"ss9658498406_1\"><path d=\"M 14 64 C 6.268 64 0 64 0 64 L 0 0 C 0 0 6.268 0 14 0 L 50 0 C 57.732 0 64 0 64 0 L 64 64 C 64 64 57.732 64 50 64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 14 63.5 C 6.544 63.5 0.5 63.5 0.5 63.5 L 0.5 0.5 C 0.5 0.5 6.544 0.5 14 0.5 L 50 0.5 C 57.456 0.5 63.5 0.5 63.5 0.5 L 63.5 63.5 C 63.5 63.5 57.456 63.5 50 63.5 Z\" fill=\"transparent\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 33.773 22.91 L 37.26 16.901 C 37.641 16.268 38.255 15.811 38.969 15.627 C 39.684 15.443 40.443 15.548 41.081 15.918 C 41.72 16.289 42.187 16.896 42.382 17.608 C 42.578 18.32 42.485 19.08 42.124 19.724 L 39.02 25.076\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 34.618 27.725 L 41.139 31.51 C 41.771 31.89 42.229 32.504 42.413 33.219 C 42.597 33.934 42.492 34.693 42.121 35.331 C 41.751 35.97 41.144 36.437 40.432 36.632 C 39.72 36.827 38.96 36.734 38.316 36.374 L 32.964 33.269\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 30.399 28.734 L 26.529 35.388 C 26.148 36.021 25.534 36.478 24.82 36.662 C 24.105 36.846 23.346 36.741 22.707 36.371 C 22.069 36 21.602 35.394 21.407 34.682 C 21.212 33.97 21.304 33.21 21.665 32.565 L 24.77 27.213\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 28.811 24.35 L 22.651 20.78 C 22.018 20.399 21.561 19.785 21.377 19.07 C 21.193 18.355 21.297 17.597 21.668 16.958 C 22.039 16.32 22.645 15.853 23.357 15.658 C 24.069 15.463 24.829 15.555 25.474 15.915 L 30.826 19.02\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 37.531 41.468 L 38.792 45.257 C 38.905 45.595 38.935 45.955 38.882 46.307 C 38.828 46.66 38.691 46.994 38.483 47.283 C 38.274 47.573 38 47.808 37.683 47.971 C 37.365 48.133 37.014 48.218 36.658 48.218 L 27.152 48.218 C 26.796 48.218 26.444 48.133 26.127 47.971 C 25.81 47.808 25.536 47.573 25.327 47.283 C 25.119 46.994 24.982 46.66 24.928 46.307 C 24.874 45.955 24.905 45.595 25.018 45.257 L 26.281 41.468\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 28.53 25.718 C 28.53 26.613 28.886 27.471 29.519 28.104 C 30.152 28.737 31.01 29.093 31.905 29.093 C 32.8 29.093 33.659 28.737 34.292 28.104 C 34.925 27.471 35.28 26.613 35.28 25.718 C 35.28 24.823 34.925 23.964 34.292 23.331 C 33.659 22.698 32.8 22.343 31.905 22.343 C 31.01 22.343 30.152 22.698 29.519 23.331 C 28.886 23.964 28.53 24.823 28.53 25.718 Z\" fill=\"transparent\" stroke-width=\"1.6875\" stroke=\"rgb(6,141,208)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9658498406,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5j740\",\"data-framer-name\":\"Frame 427321003\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Netherland\"})}),className:\"framer-15m9k87\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"The majority of the office is based in San Fransisco.\"})}),className:\"framer-b5yoea\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__animate:{transition:transition10},__framer__enter:animation12,__framer__exit:animation20}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2F2ZWF0LTcwMA==\",\"--framer-font-family\":'\"Caveat\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90.6596deg, rgb(0, 99, 249) 0%, rgb(22, 129, 255) 48%, rgb(2, 250, 146) 100%)\"},children:\"Life at Soft Wind Team :)\"})})}),className:\"framer-1bmc9uj\",fonts:[\"GF;Caveat-700\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1bzhgnc\",\"data-framer-name\":\"Photos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x5ucwr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+87.5+11),sizes:\"207px\",src:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png\",srcSet:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png?scale-down-to=1024 682w,https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png 800w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+-2+11),sizes:\"141.5px\",src:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png\",srcSet:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png?scale-down-to=1024 682w,https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png 800w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+83+11),sizes:\"194.568px\",src:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png\",srcSet:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png?scale-down-to=1024 682w,https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+83+11),sizes:\"194.568px\",src:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png\",srcSet:\"https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png?scale-down-to=1024 682w,https://framerusercontent.com/images/KfXqGqqRhDbpfKcVKMXE3Pv1V0.png 800w\"},className:\"framer-5osp4z\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q9minu\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+0+11),sizes:\"546.5px\",src:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png\",srcSet:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png 1024w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+-2+11),sizes:\"385px\",src:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png\",srcSet:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png 1024w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+0+11),sizes:\"515.8698px\",src:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png\",srcSet:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+0+11),sizes:\"515.8698px\",src:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png\",srcSet:\"https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/vMimlNUMDgqrhBTnlER5lD2tk4.png 1024w\"},className:\"framer-10vbl5i\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-45065t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+440+11),sizes:\"207px\",src:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png\",srcSet:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png?scale-down-to=1024 682w,https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png 800w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+250+11),sizes:\"141.5px\",src:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png\",srcSet:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png?scale-down-to=1024 682w,https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png 800w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+416.7275390625+11),sizes:\"194.568px\",src:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png\",srcSet:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png?scale-down-to=1024 682w,https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+416.7275390625+11),sizes:\"194.568px\",src:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png\",srcSet:\"https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png?scale-down-to=1024 682w,https://framerusercontent.com/images/6isUSi7Q7zGAuooTvp73p2o9220.png 800w\"},className:\"framer-1ehqatp\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c4b1ik\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+390.5+11),sizes:\"154px\",src:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png\",srcSet:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png?scale-down-to=512 512w,https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png 800w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+213.5+11),sizes:\"104px\",src:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png\",srcSet:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png?scale-down-to=512 512w,https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png 800w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+369.99365234375+11),sizes:\"143.9763px\",src:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png\",srcSet:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png?scale-down-to=512 512w,https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+369.99365234375+11),sizes:\"143.9763px\",src:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png\",srcSet:\"https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png?scale-down-to=512 512w,https://framerusercontent.com/images/nhn0VCvMX5zTKEvJYs4tG83Seo.png 800w\"},className:\"framer-1fylja\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rzz7m5\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+346.5+11),sizes:\"167px\",src:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png\",srcSet:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png 1024w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+243.5+11),sizes:\"112.5px\",src:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png\",srcSet:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png 1024w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+327.5146484375+11),sizes:\"156.4023px\",src:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png\",srcSet:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+327.5146484375+11),sizes:\"156.4023px\",src:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png\",srcSet:\"https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/S4daACbPfWaHLdQF1Qju3PGVI.png 1024w\"},className:\"framer-3jtup8\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ncg40d\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+346.5+11),sizes:\"296.5px\",src:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png\",srcSet:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png 800w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+243.5+11),sizes:\"205.5px\",src:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png\",srcSet:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png 800w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+327.5146484375+11),sizes:\"279.7751px\",src:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png\",srcSet:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+327.5146484375+11),sizes:\"279.7751px\",src:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png\",srcSet:\"https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/7JqBp5BXzHgjwv1TvomdVzths5E.png 800w\"},className:\"framer-1b0p0m3\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pexvcy\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+87.5+11),positionX:\"center\",positionY:\"center\",sizes:\"422.5px\",src:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png\",srcSet:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png 1596w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+-2+11),positionX:\"center\",positionY:\"center\",sizes:\"296px\",src:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png\",srcSet:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png 1596w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+83.3076171875+11),positionX:\"center\",positionY:\"center\",sizes:\"398.71px\",src:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png\",srcSet:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png 1596w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+83.3076171875+11),positionX:\"center\",positionY:\"center\",sizes:\"398.71px\",src:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png\",srcSet:\"https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KuUgUjIkbGw1VPJor0ChOnDcFpE.png 1596w\"},className:\"framer-hngmme\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BNLYBCREr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a4c85c\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.200000000001+60+0+832.8+392.5+11),sizes:\"232.5px\",src:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png\",srcSet:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png 800w\"}},BNLYBCREr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5774+48+0+1038.8+215.5+11),sizes:\"160px\",src:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png\",srcSet:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png 800w\"}},dbQFtDr99:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5956.400000000001+80+0+676.8+370.36669921875+11),sizes:\"219px\",src:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png\",srcSet:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6036.400000000001+80+0+676.8+370.36669921875+11),sizes:\"219px\",src:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png\",srcSet:\"https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Q8jvVebS3D52qcwCNBFgz03k0.png 800w\"},className:\"framer-iteg7j\",\"data-framer-name\":\"CleanShot 2024-02-03 at 15.57 1\"})})})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{y:(componentViewport?.y||0)+0+7029.000000000001},BNLYBCREr:{y:(componentViewport?.y||0)+0+7421.8},dbQFtDr99:{y:(componentViewport?.y||0)+0+7531.229296875001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:322,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7611.229296875001,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lpxoj0-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{variant:\"bxCCCX6Qn\"},BNLYBCREr:{variant:\"b5pZoR74d\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"M1wKib4bN\",layoutId:\"M1wKib4bN\",style:{width:\"100%\"},variant:\"RmqJkb9gf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{y:(componentViewport?.y||0)+0+7351.000000000001},BNLYBCREr:{y:(componentViewport?.y||0)+0+7743.8},dbQFtDr99:{y:(componentViewport?.y||0)+0+7853.229296875001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:573,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7933.229296875001,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16iqgsf-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABM8eVSAK:{variant:\"F3zm5FrZx\"},BNLYBCREr:{variant:\"TfR8Rq4xe\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"q3Jnzstwl\",layoutId:\"q3Jnzstwl\",style:{width:\"100%\"},variant:\"Rnrfca9Uv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T4Dbb.framer-1dtr7c1, .framer-T4Dbb .framer-1dtr7c1 { display: block; }\",\".framer-T4Dbb.framer-1mvbc3 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-T4Dbb .framer-11z29de { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 71.71678720974496%, rgba(240, 240, 240, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 283px 0px 110px 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1rjcjmp { -webkit-filter: blur(100px); align-content: center; align-items: center; background-color: rgba(0, 102, 255, 0.23); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; bottom: 294px; display: flex; filter: blur(100px); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; opacity: 0.22; overflow: hidden; padding: 0px; position: absolute; right: -419px; top: -380px; width: 1428px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-T4Dbb .framer-658xl3-container { flex: none; height: 727px; left: calc(50.00000000000002% - 1920px / 2); position: absolute; top: -120px; width: 1920px; z-index: 0; }\",\".framer-T4Dbb .framer-l9nvmo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-15o5ra3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-4ox813, .framer-T4Dbb .framer-bqco3w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-T4Dbb .framer-z6cws { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-T4Dbb .framer-1qvjigk { flex: none; height: 6px; left: 4px; position: absolute; top: 11px; width: 10px; }\",\".framer-T4Dbb .framer-dts7my { flex: none; height: 12px; left: 1px; position: absolute; top: 1px; width: 16px; }\",\".framer-T4Dbb .framer-isbcnn, .framer-T4Dbb .framer-au47cd, .framer-T4Dbb .framer-1ewavuq, .framer-T4Dbb .framer-3qruad, .framer-T4Dbb .framer-18ey1d8, .framer-T4Dbb .framer-1nea42f, .framer-T4Dbb .framer-xkt8ig, .framer-T4Dbb .framer-1xru8r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-T4Dbb .framer-vfuexd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-143ht9m { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-86uddr, .framer-T4Dbb .framer-5srfuh, .framer-T4Dbb .framer-172xy9e, .framer-T4Dbb .framer-165895m, .framer-T4Dbb .framer-1npubx0, .framer-T4Dbb .framer-1e6k50s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-1389eqz { --border-bottom-width: 6px; --border-color: #ffffff; --border-left-width: 6px; --border-right-width: 6px; --border-style: solid; --border-top-width: 6px; align-content: center; align-items: center; border-bottom-left-radius: 29px; border-bottom-right-radius: 29px; border-top-left-radius: 29px; border-top-right-radius: 29px; box-shadow: 0px 0.6520564323925646px 3.260282161962823px -0.25px rgba(9, 27, 41, 0.03), 0px 1.7757228240632683px 8.878614120316342px -0.5px rgba(9, 27, 41, 0.03484), 0px 3.8988446302624657px 19.49422315131233px -0.75px rgba(9, 27, 41, 0.04063), 0px 8.654544874006534px 43.27272437003267px -1px rgba(9, 27, 41, 0.0536), 0px 22px 110px -1.25px rgba(9, 27, 41, 0.09); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 6px; position: relative; width: 960px; will-change: var(--framer-will-change-override, transform); }\",\".framer-T4Dbb .framer-176cu7w-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); position: relative; width: 100%; z-index: 1; }\",\".framer-T4Dbb .framer-18eyy42 { -webkit-filter: blur(100px); align-content: center; align-items: center; background-color: #3dbbff; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; filter: blur(100px); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 804px; justify-content: center; left: -183px; opacity: 0.08; overflow: hidden; padding: 0px; position: absolute; top: -30px; width: 1076px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-T4Dbb .framer-18ehifw-container { flex: none; height: auto; left: 50%; position: fixed; top: 20px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-T4Dbb .framer-1nefqa6-container, .framer-T4Dbb .framer-1lpxoj0-container, .framer-T4Dbb .framer-16iqgsf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1s4oqqr { align-content: center; align-items: center; background: radial-gradient(100.00004607497192% 837.9079946396706% at 1.5885489269426991% -0.0000610783830623518%, #366d9a 0%, rgba(4, 31, 53, 0.9800000190734863) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 140px 40px 140px 40px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1yloul3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-5sitvv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-T4Dbb .framer-8oppmr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-16j5ltt { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-T4Dbb .framer-8sgvz1 { bottom: 11px; flex: none; left: 11px; position: absolute; right: 1px; top: 0px; }\",\".framer-T4Dbb .framer-nx2efn { bottom: 2px; flex: none; left: 1px; position: absolute; right: 2px; top: 1px; }\",\".framer-T4Dbb .framer-1edsm2l { bottom: 6px; flex: none; left: 5px; position: absolute; right: 6px; top: 5px; }\",\".framer-T4Dbb .framer-h35t6j, .framer-T4Dbb .framer-e36j5q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-1k6qwtb { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 590px; }\",\".framer-T4Dbb .framer-6qq0hc, .framer-T4Dbb .framer-1z05mnn, .framer-T4Dbb .framer-h7wdac, .framer-T4Dbb .framer-y9cvbs { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: rgba(0, 8, 20, 0.25); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 28px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-T4Dbb .framer-1xz98f3, .framer-T4Dbb .framer-3cbxht, .framer-T4Dbb .framer-tg2oro, .framer-T4Dbb .framer-bwx6ru { --framer-paragraph-spacing: 0px; flex: none; height: 29px; position: relative; white-space: pre-wrap; width: 226px; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-1wa8wna { aspect-ratio: 1.6375 / 1; bottom: -118px; flex: none; left: 50%; overflow: visible; position: absolute; top: -209px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 1339px); z-index: 1; }\",\".framer-T4Dbb .framer-1uim7ch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -1px; top: 1px; width: 721px; z-index: 1; }\",\".framer-T4Dbb .framer-1m0glp2 { flex: none; height: 493px; position: relative; width: 721px; }\",\".framer-T4Dbb .framer-guma2c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1pwhdgy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-tjif0f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-T4Dbb .framer-c9jgxf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-14uqjiv { aspect-ratio: 2.2530755711775043 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 89px); overflow: visible; position: relative; width: 106%; }\",\".framer-T4Dbb .framer-3pdbvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-T4Dbb .framer-5yng3q-container, .framer-T4Dbb .framer-1hcqxw6-container, .framer-T4Dbb .framer-1w5e6dw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-T4Dbb .framer-e720ya { align-content: flex-start; align-items: flex-start; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 86px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1q8i9js { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-T4Dbb .framer-zn5bb6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 180px; width: 523px; will-change: transform; z-index: 1; }\",\".framer-T4Dbb .framer-qauvx9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1hw08qx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-T4Dbb .framer-1teku23 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-T4Dbb .framer-as4het, .framer-T4Dbb .framer-1nsz8jz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 523px; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-hwfw6j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-T4Dbb .framer-12v3pd3-container, .framer-T4Dbb .framer-b1tx3j-container, .framer-T4Dbb .framer-x5wt38-container, .framer-T4Dbb .framer-aseoup-container, .framer-T4Dbb .framer-12yk4vl-container, .framer-T4Dbb .framer-1udy2tw-container { flex: none; height: auto; position: relative; width: 591px; }\",\".framer-T4Dbb .framer-b4kexv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-e15nu3, .framer-T4Dbb .framer-6jyhe5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1epub1h-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-pubhyo { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 80px 160px 80px 160px; position: relative; width: 1920px; }\",\".framer-T4Dbb .framer-1ob5ha1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-T4Dbb .framer-1x0b977 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-T4Dbb .framer-5nqvtg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-13hrksj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-xuynbs, .framer-T4Dbb .framer-1ge42zf, .framer-T4Dbb .framer-svbnu6, .framer-T4Dbb .framer-g68a5f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-T4Dbb .framer-mis2v4, .framer-T4Dbb .framer-kn6dmm, .framer-T4Dbb .framer-aztl14, .framer-T4Dbb .framer-1ebtm99 { --border-bottom-width: 1px; --border-color: var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, #dfe3e7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.11), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.09534), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0375); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-T4Dbb .framer-1c3e5a6 { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-T4Dbb .framer-hbojbo, .framer-T4Dbb .framer-1rmv1q8, .framer-T4Dbb .framer-jj70z, .framer-T4Dbb .framer-1x5j740 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T4Dbb .framer-1d0gbyx, .framer-T4Dbb .framer-oo82wk, .framer-T4Dbb .framer-8tzmce, .framer-T4Dbb .framer-15m9k87 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-1ylpk6l, .framer-T4Dbb .framer-zncsch, .framer-T4Dbb .framer-pjwkjg, .framer-T4Dbb .framer-b5yoea { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-T4Dbb .framer-1mzcxdu, .framer-T4Dbb .framer-sdvq8e, .framer-T4Dbb .framer-4u5k99 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-T4Dbb .framer-1bmc9uj { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 552px; position: absolute; top: 547px; white-space: pre-wrap; width: 246px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-T4Dbb .framer-1bzhgnc { aspect-ratio: 1.6259517136800654 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 738px); overflow: visible; position: relative; width: 1200px; }\",\".framer-T4Dbb .framer-x5ucwr { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 321px; justify-content: flex-start; left: 550px; overflow: visible; padding: 11px; position: absolute; top: 83px; width: 217px; }\",\".framer-T4Dbb .framer-5osp4z, .framer-T4Dbb .framer-1ehqatp { aspect-ratio: 0.6500731581480333 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 308px); position: relative; width: 1px; }\",\".framer-T4Dbb .framer-q9minu { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 315px; justify-content: flex-start; left: 0px; overflow: visible; padding: 11px; position: absolute; top: 0px; width: 538px; }\",\".framer-T4Dbb .framer-10vbl5i { aspect-ratio: 1.7601147113494764 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 114px); position: relative; width: 1px; }\",\".framer-T4Dbb .framer-45065t { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 321px; justify-content: flex-start; left: 550px; overflow: visible; padding: 11px; position: absolute; top: 417px; width: 217px; }\",\".framer-T4Dbb .framer-c4b1ik { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 218px; justify-content: flex-start; left: 779px; overflow: visible; padding: 11px; position: absolute; top: 370px; width: 166px; }\",\".framer-T4Dbb .framer-1fylja { aspect-ratio: 0.7332891031989236 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 273px); position: relative; width: 1px; }\",\".framer-T4Dbb .framer-rzz7m5 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 241px; justify-content: flex-start; left: 359px; overflow: visible; padding: 11px; position: absolute; top: 328px; width: 178px; }\",\".framer-T4Dbb .framer-3jtup8 { aspect-ratio: 0.7156935930101833 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 279px); position: relative; width: 1px; }\",\".framer-T4Dbb .framer-ncg40d { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 293px; justify-content: flex-start; left: 45px; overflow: visible; padding: 11px; position: absolute; top: 328px; width: 302px; }\",\".framer-T4Dbb .framer-1b0p0m3 { aspect-ratio: 1.032763828356783 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 194px); position: relative; width: 1px; }\",\".framer-T4Dbb .framer-pexvcy { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 274px; justify-content: flex-start; left: 779px; overflow: visible; padding: 11px; position: absolute; top: 83px; width: 421px; }\",\".framer-T4Dbb .framer-hngmme { aspect-ratio: 1.5805497342327373 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 127px); position: relative; width: 1px; }\",\".framer-T4Dbb .framer-1a4c85c { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 142px; justify-content: flex-start; left: 959px; overflow: visible; padding: 11px; position: absolute; top: 370px; width: 241px; }\",\".framer-T4Dbb .framer-iteg7j { aspect-ratio: 1.825 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 110px); position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-T4Dbb.framer-1mvbc3, .framer-T4Dbb .framer-11z29de, .framer-T4Dbb .framer-1rjcjmp, .framer-T4Dbb .framer-l9nvmo, .framer-T4Dbb .framer-15o5ra3, .framer-T4Dbb .framer-4ox813, .framer-T4Dbb .framer-vfuexd, .framer-T4Dbb .framer-1389eqz, .framer-T4Dbb .framer-18eyy42, .framer-T4Dbb .framer-1s4oqqr, .framer-T4Dbb .framer-1yloul3, .framer-T4Dbb .framer-5sitvv, .framer-T4Dbb .framer-8oppmr, .framer-T4Dbb .framer-bqco3w, .framer-T4Dbb .framer-6qq0hc, .framer-T4Dbb .framer-1z05mnn, .framer-T4Dbb .framer-h7wdac, .framer-T4Dbb .framer-y9cvbs, .framer-T4Dbb .framer-1uim7ch, .framer-T4Dbb .framer-guma2c, .framer-T4Dbb .framer-1pwhdgy, .framer-T4Dbb .framer-tjif0f, .framer-T4Dbb .framer-3pdbvq, .framer-T4Dbb .framer-e720ya, .framer-T4Dbb .framer-zn5bb6, .framer-T4Dbb .framer-qauvx9, .framer-T4Dbb .framer-1hw08qx, .framer-T4Dbb .framer-hwfw6j, .framer-T4Dbb .framer-b4kexv, .framer-T4Dbb .framer-e15nu3, .framer-T4Dbb .framer-pubhyo, .framer-T4Dbb .framer-1ob5ha1, .framer-T4Dbb .framer-1x0b977, .framer-T4Dbb .framer-5nqvtg, .framer-T4Dbb .framer-6jyhe5, .framer-T4Dbb .framer-13hrksj, .framer-T4Dbb .framer-xuynbs, .framer-T4Dbb .framer-mis2v4, .framer-T4Dbb .framer-hbojbo, .framer-T4Dbb .framer-1ge42zf, .framer-T4Dbb .framer-kn6dmm, .framer-T4Dbb .framer-1rmv1q8, .framer-T4Dbb .framer-svbnu6, .framer-T4Dbb .framer-aztl14, .framer-T4Dbb .framer-jj70z, .framer-T4Dbb .framer-g68a5f, .framer-T4Dbb .framer-1ebtm99, .framer-T4Dbb .framer-1x5j740, .framer-T4Dbb .framer-x5ucwr, .framer-T4Dbb .framer-q9minu, .framer-T4Dbb .framer-45065t, .framer-T4Dbb .framer-c4b1ik, .framer-T4Dbb .framer-rzz7m5, .framer-T4Dbb .framer-ncg40d, .framer-T4Dbb .framer-pexvcy, .framer-T4Dbb .framer-1a4c85c { gap: 0px; } .framer-T4Dbb.framer-1mvbc3 > *, .framer-T4Dbb .framer-1389eqz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-T4Dbb.framer-1mvbc3 > :first-child, .framer-T4Dbb .framer-11z29de > :first-child, .framer-T4Dbb .framer-l9nvmo > :first-child, .framer-T4Dbb .framer-15o5ra3 > :first-child, .framer-T4Dbb .framer-vfuexd > :first-child, .framer-T4Dbb .framer-1389eqz > :first-child, .framer-T4Dbb .framer-1s4oqqr > :first-child, .framer-T4Dbb .framer-5sitvv > :first-child, .framer-T4Dbb .framer-8oppmr > :first-child, .framer-T4Dbb .framer-6qq0hc > :first-child, .framer-T4Dbb .framer-1z05mnn > :first-child, .framer-T4Dbb .framer-h7wdac > :first-child, .framer-T4Dbb .framer-y9cvbs > :first-child, .framer-T4Dbb .framer-guma2c > :first-child, .framer-T4Dbb .framer-1pwhdgy > :first-child, .framer-T4Dbb .framer-tjif0f > :first-child, .framer-T4Dbb .framer-zn5bb6 > :first-child, .framer-T4Dbb .framer-qauvx9 > :first-child, .framer-T4Dbb .framer-hwfw6j > :first-child, .framer-T4Dbb .framer-b4kexv > :first-child, .framer-T4Dbb .framer-e15nu3 > :first-child, .framer-T4Dbb .framer-1ob5ha1 > :first-child, .framer-T4Dbb .framer-1x0b977 > :first-child, .framer-T4Dbb .framer-5nqvtg > :first-child, .framer-T4Dbb .framer-6jyhe5 > :first-child, .framer-T4Dbb .framer-xuynbs > :first-child, .framer-T4Dbb .framer-hbojbo > :first-child, .framer-T4Dbb .framer-1ge42zf > :first-child, .framer-T4Dbb .framer-1rmv1q8 > :first-child, .framer-T4Dbb .framer-svbnu6 > :first-child, .framer-T4Dbb .framer-jj70z > :first-child, .framer-T4Dbb .framer-g68a5f > :first-child, .framer-T4Dbb .framer-1x5j740 > :first-child { margin-top: 0px; } .framer-T4Dbb.framer-1mvbc3 > :last-child, .framer-T4Dbb .framer-11z29de > :last-child, .framer-T4Dbb .framer-l9nvmo > :last-child, .framer-T4Dbb .framer-15o5ra3 > :last-child, .framer-T4Dbb .framer-vfuexd > :last-child, .framer-T4Dbb .framer-1389eqz > :last-child, .framer-T4Dbb .framer-1s4oqqr > :last-child, .framer-T4Dbb .framer-5sitvv > :last-child, .framer-T4Dbb .framer-8oppmr > :last-child, .framer-T4Dbb .framer-6qq0hc > :last-child, .framer-T4Dbb .framer-1z05mnn > :last-child, .framer-T4Dbb .framer-h7wdac > :last-child, .framer-T4Dbb .framer-y9cvbs > :last-child, .framer-T4Dbb .framer-guma2c > :last-child, .framer-T4Dbb .framer-1pwhdgy > :last-child, .framer-T4Dbb .framer-tjif0f > :last-child, .framer-T4Dbb .framer-zn5bb6 > :last-child, .framer-T4Dbb .framer-qauvx9 > :last-child, .framer-T4Dbb .framer-hwfw6j > :last-child, .framer-T4Dbb .framer-b4kexv > :last-child, .framer-T4Dbb .framer-e15nu3 > :last-child, .framer-T4Dbb .framer-1ob5ha1 > :last-child, .framer-T4Dbb .framer-1x0b977 > :last-child, .framer-T4Dbb .framer-5nqvtg > :last-child, .framer-T4Dbb .framer-6jyhe5 > :last-child, .framer-T4Dbb .framer-xuynbs > :last-child, .framer-T4Dbb .framer-hbojbo > :last-child, .framer-T4Dbb .framer-1ge42zf > :last-child, .framer-T4Dbb .framer-1rmv1q8 > :last-child, .framer-T4Dbb .framer-svbnu6 > :last-child, .framer-T4Dbb .framer-jj70z > :last-child, .framer-T4Dbb .framer-g68a5f > :last-child, .framer-T4Dbb .framer-1x5j740 > :last-child { margin-bottom: 0px; } .framer-T4Dbb .framer-11z29de > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-T4Dbb .framer-1rjcjmp > *, .framer-T4Dbb .framer-18eyy42 > *, .framer-T4Dbb .framer-1uim7ch > *, .framer-T4Dbb .framer-mis2v4 > *, .framer-T4Dbb .framer-kn6dmm > *, .framer-T4Dbb .framer-aztl14 > *, .framer-T4Dbb .framer-1ebtm99 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-T4Dbb .framer-1rjcjmp > :first-child, .framer-T4Dbb .framer-4ox813 > :first-child, .framer-T4Dbb .framer-18eyy42 > :first-child, .framer-T4Dbb .framer-1yloul3 > :first-child, .framer-T4Dbb .framer-bqco3w > :first-child, .framer-T4Dbb .framer-1uim7ch > :first-child, .framer-T4Dbb .framer-3pdbvq > :first-child, .framer-T4Dbb .framer-e720ya > :first-child, .framer-T4Dbb .framer-1hw08qx > :first-child, .framer-T4Dbb .framer-pubhyo > :first-child, .framer-T4Dbb .framer-13hrksj > :first-child, .framer-T4Dbb .framer-mis2v4 > :first-child, .framer-T4Dbb .framer-kn6dmm > :first-child, .framer-T4Dbb .framer-aztl14 > :first-child, .framer-T4Dbb .framer-1ebtm99 > :first-child, .framer-T4Dbb .framer-x5ucwr > :first-child, .framer-T4Dbb .framer-q9minu > :first-child, .framer-T4Dbb .framer-45065t > :first-child, .framer-T4Dbb .framer-c4b1ik > :first-child, .framer-T4Dbb .framer-rzz7m5 > :first-child, .framer-T4Dbb .framer-ncg40d > :first-child, .framer-T4Dbb .framer-pexvcy > :first-child, .framer-T4Dbb .framer-1a4c85c > :first-child { margin-left: 0px; } .framer-T4Dbb .framer-1rjcjmp > :last-child, .framer-T4Dbb .framer-4ox813 > :last-child, .framer-T4Dbb .framer-18eyy42 > :last-child, .framer-T4Dbb .framer-1yloul3 > :last-child, .framer-T4Dbb .framer-bqco3w > :last-child, .framer-T4Dbb .framer-1uim7ch > :last-child, .framer-T4Dbb .framer-3pdbvq > :last-child, .framer-T4Dbb .framer-e720ya > :last-child, .framer-T4Dbb .framer-1hw08qx > :last-child, .framer-T4Dbb .framer-pubhyo > :last-child, .framer-T4Dbb .framer-13hrksj > :last-child, .framer-T4Dbb .framer-mis2v4 > :last-child, .framer-T4Dbb .framer-kn6dmm > :last-child, .framer-T4Dbb .framer-aztl14 > :last-child, .framer-T4Dbb .framer-1ebtm99 > :last-child, .framer-T4Dbb .framer-x5ucwr > :last-child, .framer-T4Dbb .framer-q9minu > :last-child, .framer-T4Dbb .framer-45065t > :last-child, .framer-T4Dbb .framer-c4b1ik > :last-child, .framer-T4Dbb .framer-rzz7m5 > :last-child, .framer-T4Dbb .framer-ncg40d > :last-child, .framer-T4Dbb .framer-pexvcy > :last-child, .framer-T4Dbb .framer-1a4c85c > :last-child { margin-right: 0px; } .framer-T4Dbb .framer-l9nvmo > *, .framer-T4Dbb .framer-5sitvv > *, .framer-T4Dbb .framer-guma2c > *, .framer-T4Dbb .framer-1pwhdgy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-T4Dbb .framer-15o5ra3 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-T4Dbb .framer-4ox813 > *, .framer-T4Dbb .framer-bqco3w > *, .framer-T4Dbb .framer-pubhyo > *, .framer-T4Dbb .framer-x5ucwr > *, .framer-T4Dbb .framer-q9minu > *, .framer-T4Dbb .framer-45065t > *, .framer-T4Dbb .framer-c4b1ik > *, .framer-T4Dbb .framer-rzz7m5 > *, .framer-T4Dbb .framer-ncg40d > *, .framer-T4Dbb .framer-pexvcy > *, .framer-T4Dbb .framer-1a4c85c > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-T4Dbb .framer-vfuexd > *, .framer-T4Dbb .framer-zn5bb6 > *, .framer-T4Dbb .framer-5nqvtg > *, .framer-T4Dbb .framer-xuynbs > *, .framer-T4Dbb .framer-1ge42zf > *, .framer-T4Dbb .framer-svbnu6 > *, .framer-T4Dbb .framer-g68a5f > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-T4Dbb .framer-1s4oqqr > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-T4Dbb .framer-1yloul3 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-T4Dbb .framer-8oppmr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-T4Dbb .framer-6qq0hc > *, .framer-T4Dbb .framer-1z05mnn > *, .framer-T4Dbb .framer-h7wdac > *, .framer-T4Dbb .framer-y9cvbs > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-T4Dbb .framer-tjif0f > *, .framer-T4Dbb .framer-qauvx9 > *, .framer-T4Dbb .framer-e15nu3 > *, .framer-T4Dbb .framer-6jyhe5 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-T4Dbb .framer-3pdbvq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-T4Dbb .framer-e720ya > * { margin: 0px; margin-left: calc(86px / 2); margin-right: calc(86px / 2); } .framer-T4Dbb .framer-1hw08qx > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-T4Dbb .framer-hwfw6j > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-T4Dbb .framer-b4kexv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-T4Dbb .framer-1ob5ha1 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-T4Dbb .framer-1x0b977 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-T4Dbb .framer-13hrksj > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-T4Dbb .framer-hbojbo > *, .framer-T4Dbb .framer-1rmv1q8 > *, .framer-T4Dbb .framer-jj70z > *, .framer-T4Dbb .framer-1x5j740 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-T4Dbb[data-border=\"true\"]::after, .framer-T4Dbb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1300px) and (max-width: 1919px) { .framer-T4Dbb.framer-1mvbc3 { width: 1300px; } .framer-T4Dbb .framer-1rjcjmp { order: 1; } .framer-T4Dbb .framer-658xl3-container { left: calc(50.00000000000002% - 1600px / 2); order: 2; width: 1600px; } .framer-T4Dbb .framer-l9nvmo { order: 4; } .framer-T4Dbb .framer-1389eqz { order: 5; } .framer-T4Dbb .framer-18eyy42 { order: 0; } .framer-T4Dbb .framer-18ehifw-container { z-index: 4; } .framer-T4Dbb .framer-1s4oqqr { padding: 100px 60px 100px 60px; } .framer-T4Dbb .framer-14uqjiv { width: 105%; } .framer-T4Dbb .framer-pubhyo { width: 100%; }}\",\"@media (min-width: 810px) and (max-width: 1299px) { .framer-T4Dbb.framer-1mvbc3 { width: 810px; } .framer-T4Dbb .framer-11z29de { gap: 50px; padding: 170px 40px 90px 40px; } .framer-T4Dbb .framer-1rjcjmp { order: 1; top: -3px; width: 842px; } .framer-T4Dbb .framer-658xl3-container { left: calc(50.00000000000002% - 153.0246913580247% / 2); order: 2; top: 1px; width: 153%; } .framer-T4Dbb .framer-l9nvmo { align-content: center; align-items: center; gap: 12px; order: 4; } .framer-T4Dbb .framer-vfuexd, .framer-T4Dbb .framer-qauvx9 { align-content: center; align-items: center; } .framer-T4Dbb .framer-86uddr { width: 70%; } .framer-T4Dbb .framer-1389eqz { order: 5; width: 85%; } .framer-T4Dbb .framer-18eyy42 { height: 395px; order: 0; width: 529px; } .framer-T4Dbb .framer-1s4oqqr, .framer-T4Dbb .framer-guma2c, .framer-T4Dbb .framer-e720ya, .framer-T4Dbb .framer-b4kexv { padding: 60px 40px 60px 40px; } .framer-T4Dbb .framer-1yloul3 { flex-direction: column; gap: 40px; } .framer-T4Dbb .framer-5sitvv { flex: none; width: 100%; } .framer-T4Dbb .framer-1k6qwtb, .framer-T4Dbb .framer-1x0b977 { width: 100%; } .framer-T4Dbb .framer-14uqjiv { width: 105%; } .framer-T4Dbb .framer-1q8i9js { align-content: center; align-items: center; flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-T4Dbb .framer-zn5bb6 { align-content: center; align-items: center; position: relative; top: unset; } .framer-T4Dbb .framer-hwfw6j { align-content: unset; align-items: unset; display: grid; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; width: 100%; } .framer-T4Dbb .framer-12v3pd3-container, .framer-T4Dbb .framer-b1tx3j-container, .framer-T4Dbb .framer-x5wt38-container, .framer-T4Dbb .framer-aseoup-container, .framer-T4Dbb .framer-12yk4vl-container, .framer-T4Dbb .framer-1udy2tw-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-T4Dbb .framer-pubhyo { padding: 60px 40px 60px 40px; width: 100%; } .framer-T4Dbb .framer-1ob5ha1 { flex: 1 0 0px; gap: 50px; width: 1px; } .framer-T4Dbb .framer-1bmc9uj { left: unset; position: sticky; top: 100px; will-change: transform; } .framer-T4Dbb .framer-1bzhgnc { aspect-ratio: unset; height: 795px; overflow: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; } .framer-T4Dbb .framer-x5ucwr { height: 339px; left: 582px; top: 88px; width: 229px; } .framer-T4Dbb .framer-q9minu { height: 333px; width: 569px; } .framer-T4Dbb .framer-45065t { bottom: 43px; height: unset; left: 582px; top: 440px; width: 229px; } .framer-T4Dbb .framer-c4b1ik { bottom: 202px; height: unset; left: 824px; top: 391px; width: 176px; } .framer-T4Dbb .framer-rzz7m5 { bottom: 223px; height: unset; left: 380px; top: 347px; width: 189px; } .framer-T4Dbb .framer-ncg40d { bottom: 168px; height: unset; left: 49px; top: 347px; width: 319px; } .framer-T4Dbb .framer-pexvcy { height: 290px; left: 824px; top: 88px; width: 445px; } .framer-T4Dbb .framer-1a4c85c { bottom: 281px; height: unset; left: 1013px; top: 393px; width: 255px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-T4Dbb .framer-11z29de, .framer-T4Dbb .framer-l9nvmo, .framer-T4Dbb .framer-1yloul3, .framer-T4Dbb .framer-1q8i9js, .framer-T4Dbb .framer-hwfw6j, .framer-T4Dbb .framer-1ob5ha1 { gap: 0px; } .framer-T4Dbb .framer-11z29de > *, .framer-T4Dbb .framer-1ob5ha1 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-T4Dbb .framer-11z29de > :first-child, .framer-T4Dbb .framer-l9nvmo > :first-child, .framer-T4Dbb .framer-1yloul3 > :first-child, .framer-T4Dbb .framer-1q8i9js > :first-child, .framer-T4Dbb .framer-1ob5ha1 > :first-child { margin-top: 0px; } .framer-T4Dbb .framer-11z29de > :last-child, .framer-T4Dbb .framer-l9nvmo > :last-child, .framer-T4Dbb .framer-1yloul3 > :last-child, .framer-T4Dbb .framer-1q8i9js > :last-child, .framer-T4Dbb .framer-1ob5ha1 > :last-child { margin-bottom: 0px; } .framer-T4Dbb .framer-l9nvmo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-T4Dbb .framer-1yloul3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-T4Dbb .framer-1q8i9js > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-T4Dbb .framer-hwfw6j > *, .framer-T4Dbb .framer-hwfw6j > :first-child, .framer-T4Dbb .framer-hwfw6j > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-T4Dbb.framer-1mvbc3 { width: 390px; } .framer-T4Dbb .framer-11z29de { gap: 40px; padding: 120px 16px 60px 16px; } .framer-T4Dbb .framer-1rjcjmp { bottom: 586px; order: 1; right: -150px; top: -8px; width: 439px; } .framer-T4Dbb .framer-658xl3-container { height: 723px; left: -482px; order: 2; right: -482px; top: -113px; width: unset; } .framer-T4Dbb .framer-l9nvmo { gap: 12px; order: 4; } .framer-T4Dbb .framer-15o5ra3 { gap: 8px; } .framer-T4Dbb .framer-vfuexd { align-content: center; align-items: center; gap: 16px; } .framer-T4Dbb .framer-1389eqz { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7226247621292714px 3.613123810646357px -0.41666666666666663px rgba(9, 27, 41, 0.03), 0px 2.7462399638921484px 13.731199819460743px -0.8333333333333333px rgba(9, 27, 41, 0.04373), 0px 12px 60px -1.25px rgba(9, 27, 41, 0.09); order: 5; width: 100%; } .framer-T4Dbb .framer-18eyy42 { height: 412px; left: unset; order: 0; right: -271px; width: 551px; } .framer-T4Dbb .framer-18ehifw-container { top: 0px; width: 100%; } .framer-T4Dbb .framer-1s4oqqr, .framer-T4Dbb .framer-guma2c, .framer-T4Dbb .framer-e720ya { padding: 48px 16px 48px 16px; } .framer-T4Dbb .framer-1yloul3 { flex-direction: column; gap: 24px; } .framer-T4Dbb .framer-5sitvv { flex: none; order: 0; width: 100%; } .framer-T4Dbb .framer-h35t6j, .framer-T4Dbb .framer-e36j5q, .framer-T4Dbb .framer-tjif0f, .framer-T4Dbb .framer-c9jgxf, .framer-T4Dbb .framer-as4het, .framer-T4Dbb .framer-1nsz8jz, .framer-T4Dbb .framer-1hcqxw6-container, .framer-T4Dbb .framer-12v3pd3-container, .framer-T4Dbb .framer-b1tx3j-container, .framer-T4Dbb .framer-x5wt38-container, .framer-T4Dbb .framer-aseoup-container, .framer-T4Dbb .framer-12yk4vl-container, .framer-T4Dbb .framer-1udy2tw-container, .framer-T4Dbb .framer-1w5e6dw-container { width: 100%; } .framer-T4Dbb .framer-1k6qwtb { gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(120px, 1fr)); grid-template-rows: repeat(2, min-content); justify-content: start; order: 1; width: 100%; } .framer-T4Dbb .framer-6qq0hc { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; gap: 4px; height: min-content; padding: 20px 20px 16px 20px; } .framer-T4Dbb .framer-1xz98f3, .framer-T4Dbb .framer-3cbxht, .framer-T4Dbb .framer-tg2oro, .framer-T4Dbb .framer-bwx6ru { white-space: pre; width: auto; } .framer-T4Dbb .framer-1z05mnn, .framer-T4Dbb .framer-h7wdac, .framer-T4Dbb .framer-y9cvbs { gap: 4px; height: min-content; padding: 20px 20px 16px 20px; } .framer-T4Dbb .framer-xkt8ig { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-T4Dbb .framer-14uqjiv { width: 107%; } .framer-T4Dbb .framer-3pdbvq { gap: 12px; max-width: 430px; width: 352px; } .framer-T4Dbb .framer-5yng3q-container { flex: 1 0 0px; width: 1px; } .framer-T4Dbb .framer-1q8i9js { flex-direction: column; } .framer-T4Dbb .framer-zn5bb6 { position: relative; top: unset; width: 100%; } .framer-T4Dbb .framer-qauvx9 { align-content: center; align-items: center; } .framer-T4Dbb .framer-hwfw6j { gap: 16px; padding: 32px 0px 0px 0px; width: 100%; } .framer-T4Dbb .framer-b4kexv { gap: 12px; padding: 40px 16px 40px 16px; } .framer-T4Dbb .framer-pubhyo { padding: 48px 16px 48px 16px; width: 100%; } .framer-T4Dbb .framer-1ob5ha1 { flex: 1 0 0px; gap: 36px; width: 1px; } .framer-T4Dbb .framer-1x0b977 { gap: 47px; order: 0; width: 100%; } .framer-T4Dbb .framer-13hrksj { align-content: unset; align-items: unset; display: grid; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-T4Dbb .framer-xuynbs, .framer-T4Dbb .framer-1ge42zf, .framer-T4Dbb .framer-svbnu6, .framer-T4Dbb .framer-g68a5f { align-self: start; flex: none; gap: 16px; height: 100%; justify-self: start; width: 100%; } .framer-T4Dbb .framer-1bmc9uj { left: unset; order: 1; position: sticky; top: 100px; will-change: transform; } .framer-T4Dbb .framer-1bzhgnc { aspect-ratio: unset; height: 513px; order: 2; overflow: auto; position: sticky; top: 180px; width: 100%; will-change: transform; z-index: 1; } .framer-T4Dbb .framer-x5ucwr { height: 243px; left: 414px; top: -2px; width: 164px; } .framer-T4Dbb .framer-q9minu { height: 238px; left: -2px; top: -2px; width: 407px; } .framer-T4Dbb .framer-45065t { height: 243px; left: 414px; top: 250px; width: 164px; } .framer-T4Dbb .framer-c4b1ik { height: 166px; left: 586px; top: 214px; width: 126px; } .framer-T4Dbb .framer-rzz7m5 { height: 182px; left: 270px; top: 244px; width: 135px; } .framer-T4Dbb .framer-ncg40d { height: 221px; left: 33px; top: 244px; width: 228px; } .framer-T4Dbb .framer-pexvcy { height: 207px; left: 587px; top: -2px; width: 318px; } .framer-T4Dbb .framer-1a4c85c { height: 107px; left: 722px; top: 216px; width: 182px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-T4Dbb .framer-11z29de, .framer-T4Dbb .framer-l9nvmo, .framer-T4Dbb .framer-15o5ra3, .framer-T4Dbb .framer-vfuexd, .framer-T4Dbb .framer-1yloul3, .framer-T4Dbb .framer-1k6qwtb, .framer-T4Dbb .framer-6qq0hc, .framer-T4Dbb .framer-1z05mnn, .framer-T4Dbb .framer-h7wdac, .framer-T4Dbb .framer-y9cvbs, .framer-T4Dbb .framer-3pdbvq, .framer-T4Dbb .framer-1q8i9js, .framer-T4Dbb .framer-hwfw6j, .framer-T4Dbb .framer-b4kexv, .framer-T4Dbb .framer-1ob5ha1, .framer-T4Dbb .framer-1x0b977, .framer-T4Dbb .framer-13hrksj, .framer-T4Dbb .framer-xuynbs, .framer-T4Dbb .framer-1ge42zf, .framer-T4Dbb .framer-svbnu6, .framer-T4Dbb .framer-g68a5f { gap: 0px; } .framer-T4Dbb .framer-11z29de > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-T4Dbb .framer-11z29de > :first-child, .framer-T4Dbb .framer-l9nvmo > :first-child, .framer-T4Dbb .framer-15o5ra3 > :first-child, .framer-T4Dbb .framer-vfuexd > :first-child, .framer-T4Dbb .framer-1yloul3 > :first-child, .framer-T4Dbb .framer-6qq0hc > :first-child, .framer-T4Dbb .framer-1z05mnn > :first-child, .framer-T4Dbb .framer-h7wdac > :first-child, .framer-T4Dbb .framer-y9cvbs > :first-child, .framer-T4Dbb .framer-hwfw6j > :first-child, .framer-T4Dbb .framer-b4kexv > :first-child, .framer-T4Dbb .framer-1ob5ha1 > :first-child, .framer-T4Dbb .framer-1x0b977 > :first-child, .framer-T4Dbb .framer-xuynbs > :first-child, .framer-T4Dbb .framer-1ge42zf > :first-child, .framer-T4Dbb .framer-svbnu6 > :first-child, .framer-T4Dbb .framer-g68a5f > :first-child { margin-top: 0px; } .framer-T4Dbb .framer-11z29de > :last-child, .framer-T4Dbb .framer-l9nvmo > :last-child, .framer-T4Dbb .framer-15o5ra3 > :last-child, .framer-T4Dbb .framer-vfuexd > :last-child, .framer-T4Dbb .framer-1yloul3 > :last-child, .framer-T4Dbb .framer-6qq0hc > :last-child, .framer-T4Dbb .framer-1z05mnn > :last-child, .framer-T4Dbb .framer-h7wdac > :last-child, .framer-T4Dbb .framer-y9cvbs > :last-child, .framer-T4Dbb .framer-hwfw6j > :last-child, .framer-T4Dbb .framer-b4kexv > :last-child, .framer-T4Dbb .framer-1ob5ha1 > :last-child, .framer-T4Dbb .framer-1x0b977 > :last-child, .framer-T4Dbb .framer-xuynbs > :last-child, .framer-T4Dbb .framer-1ge42zf > :last-child, .framer-T4Dbb .framer-svbnu6 > :last-child, .framer-T4Dbb .framer-g68a5f > :last-child { margin-bottom: 0px; } .framer-T4Dbb .framer-l9nvmo > *, .framer-T4Dbb .framer-b4kexv > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-T4Dbb .framer-15o5ra3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-T4Dbb .framer-vfuexd > *, .framer-T4Dbb .framer-hwfw6j > *, .framer-T4Dbb .framer-xuynbs > *, .framer-T4Dbb .framer-1ge42zf > *, .framer-T4Dbb .framer-svbnu6 > *, .framer-T4Dbb .framer-g68a5f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-T4Dbb .framer-1yloul3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-T4Dbb .framer-1k6qwtb > *, .framer-T4Dbb .framer-1k6qwtb > :first-child, .framer-T4Dbb .framer-1k6qwtb > :last-child, .framer-T4Dbb .framer-1q8i9js > *, .framer-T4Dbb .framer-1q8i9js > :first-child, .framer-T4Dbb .framer-1q8i9js > :last-child, .framer-T4Dbb .framer-13hrksj > *, .framer-T4Dbb .framer-13hrksj > :first-child, .framer-T4Dbb .framer-13hrksj > :last-child { margin: 0px; } .framer-T4Dbb .framer-6qq0hc > *, .framer-T4Dbb .framer-1z05mnn > *, .framer-T4Dbb .framer-h7wdac > *, .framer-T4Dbb .framer-y9cvbs > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-T4Dbb .framer-3pdbvq > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-T4Dbb .framer-3pdbvq > :first-child { margin-left: 0px; } .framer-T4Dbb .framer-3pdbvq > :last-child { margin-right: 0px; } .framer-T4Dbb .framer-1ob5ha1 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-T4Dbb .framer-1x0b977 > * { margin: 0px; margin-bottom: calc(47px / 2); margin-top: calc(47px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7989\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dbQFtDr99\":{\"layout\":[\"fixed\",\"auto\"]},\"ABM8eVSAK\":{\"layout\":[\"fixed\",\"auto\"]},\"BNLYBCREr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FramerFJPpMOPTF=withCSS(Component,css,\"framer-T4Dbb\");export default FramerFJPpMOPTF;FramerFJPpMOPTF.displayName=\"About\";FramerFJPpMOPTF.defaultProps={height:7989,width:1920};addFonts(FramerFJPpMOPTF,[{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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Caveat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIejYBxPigs.woff2\",weight:\"700\"}]},...BackgroundGridFonts,...VideoFonts,...TopNavigationBarFonts,...SectionBrandsFonts,...ButtonFonts,...CardPartnerFonts,...SectionTeamFonts,...SectionCTAFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFJPpMOPTF\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1920\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7989\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dbQFtDr99\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ABM8eVSAK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BNLYBCREr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ButtonFonts", "getFonts", "KF7UbbSfc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "describtion", "height", "id", "link", "logoImage", "name1", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zyoUvPKRI", "bqy2YqjjW", "Ty93WIvHI", "EopIswqgQ", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText", "ComponentViewportProvider", "css", "FramerjU7GKk5Nh", "withCSS", "jU7GKk5Nh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SocialIconFonts", "getFonts", "HGWWDsCNm_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "facebook", "facebookLink", "height", "id", "image", "instagram", "instagramLink", "linkedin", "linkedinLink", "name1", "role", "width", "xLink", "youtube", "youtubeLink", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DCDfNB_KK", "T0pfezFsv", "UiSe9OaM2", "QcfVkMcsk", "PuznUSawE", "nC5qOcGcT", "X8tA5ntn1", "qu8fB0LXD", "Ff_MVPYTM", "HjFqUk4iD", "dwfEO63SU", "rvdnWRxhA", "YLQjnahCC", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "RichText", "ComponentViewportProvider", "HGWWDsCNm_default", "css", "FramerfQkdlzj7H", "withCSS", "fQkdlzj7H_default", "addPropertyControls", "ControlType", "addFonts", "SocialIconFonts", "getFontsFromSharedStyle", "fonts", "CardTeamMemberFonts", "getFonts", "fQkdlzj7H_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "addImageAlt", "image", "alt", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "transition7", "animation6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "css", "FramerrGkB_JwYx", "withCSS", "rGkB_JwYx_default", "addPropertyControls", "ControlType", "addFonts", "BackgroundGridFonts", "getFonts", "pwVXWPq1Q_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText", "VideoFonts", "Video", "TopNavigationBarFonts", "sltkc74h7_default", "SectionBrandsFonts", "G1quos_R8_default", "ImageWithFX", "Image2", "ButtonFonts", "KF7UbbSfc_default", "ContainerWithFX", "Container", "CardPartnerFonts", "jU7GKk5Nh_default", "SectionTeamFonts", "rGkB_JwYx_default", "SectionCTAFonts", "LpjyIZj0_default", "SectionFooterFonts", "lS9TvqxVt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "transition8", "animation8", "transition9", "animation9", "transition10", "animation10", "transition11", "animation11", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "animation12", "animation13", "animation14", "animation15", "animation16", "animation17", "animation18", "transition12", "animation19", "animation20", "animation21", "transition13", "animation22", "transition14", "animation23", "transition15", "animation24", "transition16", "animation25", "transition17", "animation26", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "SVG", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "css", "FramerFJPpMOPTF", "withCSS", "FJPpMOPTF_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
