{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/74JzhEPcbTJfz8QYChjm/BpubYnKGKi94jO07Qdwm/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,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:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(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??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??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//     !isStaticRenderer\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??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import List from\"#framer/local/canvasComponent/a51a4_r95/a51a4_r95.js\";import Solutions from\"#framer/local/canvasComponent/b0zhT0zZV/b0zhT0zZV.js\";import Overline from\"#framer/local/canvasComponent/eSgkW1mH_/eSgkW1mH_.js\";import KeyFigure from\"#framer/local/canvasComponent/HN3J9YEIR/HN3J9YEIR.js\";import Shape from\"#framer/local/canvasComponent/vsPAVuyRp/vsPAVuyRp.js\";import Blog from\"#framer/local/canvasComponent/w19d_aWrI/w19d_aWrI.js\";import Push from\"#framer/local/canvasComponent/yKEREDcYA/yKEREDcYA.js\";import Button from\"#framer/local/canvasComponent/ZeUlEicnd/ZeUlEicnd.js\";import Divider from\"#framer/local/canvasComponent/ZnoG6S3F7/ZnoG6S3F7.js\";import Blog1 from\"#framer/local/collection/PVWJD0wz5/PVWJD0wz5.js\";import*as sharedStyle4 from\"#framer/local/css/A9FA556dW/A9FA556dW.js\";import*as sharedStyle2 from\"#framer/local/css/Ay_NmTyId/Ay_NmTyId.js\";import*as sharedStyle1 from\"#framer/local/css/CNy_si5rz/CNy_si5rz.js\";import*as sharedStyle3 from\"#framer/local/css/KMi4f8ULm/KMi4f8ULm.js\";import*as sharedStyle from\"#framer/local/css/ytrO_6WiQ/ytrO_6WiQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const ContainerWithFX=withFX(Container);const ShapeFonts=getFonts(Shape);const DividerFonts=getFonts(Divider);const ButtonFonts=getFonts(Button);const KeyFigureFonts=getFonts(KeyFigure);const SolutionsFonts=getFonts(Solutions);const PushFonts=getFonts(Push);const OverlineFonts=getFonts(Overline);const ListFonts=getFonts(List);const BlogFonts=getFonts(Blog);const breakpoints={a6z0SFsLD:\"(max-width: 809px)\",kDyXjToVs:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1U1b1\";const variantClassNames={a6z0SFsLD:\"framer-v-wy39py\",kDyXjToVs:\"framer-v-1oei9eg\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:0,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:3,skewY:0,x:24,y:32};const transition2={bounce:.2,delay:.3,duration:.8,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:3,skewY:0,transition:transition2,x:24,y:32};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32};const transition3={bounce:.2,delay:.2,duration:.8,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:32};const transition4={delay:0,duration:50,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"a6z0SFsLD\",Tablet:\"kDyXjToVs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,mRsJ4eBH8R5hDFqVo3,rIdtRTLXSR5hDFqVo3,f_q4ns08XR5hDFqVo3,Vv1prmaNvR5hDFqVo3,idR5hDFqVo3,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v6bjoj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12o00k5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vr42kl\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xucjnt\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1gcn9x3\",\"data-framer-appear-id\":\"1gcn9x3\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1c48v07\",\"data-styles-preset\":\"ytrO_6WiQ\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"Global Core Lab services for your Clinical Trials\"})}),className:\"framer-1kskofx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9p1qax\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ev5df9-container\",id:\"ev5df9\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EKZO2KaMV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"EKZO2KaMV\",isMixedBorderRadius:false,layoutId:\"EKZO2KaMV\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/nS8PV5Bqvic9dJXKh10OO2STDk.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+0+0+0+80+0+0+117+-86},kDyXjToVs:{y:(componentViewport?.y||0)+0+0+0+80+0+0+117+-86}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:216,width:\"212px\",y:(componentViewport?.y||0)+0+0+0+80+0+0+-86,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tlpvv7-container\",nodeId:\"cJ0HhoWGb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Shape,{height:\"100%\",id:\"cJ0HhoWGb\",layoutId:\"cJ0HhoWGb\",qHbtuO7Bt:\"var(--token-2398c0c8-4550-40b1-be12-c544597df3af, rgb(255, 253, 101))\",style:{height:\"100%\",width:\"100%\"},variant:\"aoMrdpdPy\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq5g91\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+80+489+0+0},kDyXjToVs:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 80px)`,y:(componentViewport?.y||0)+0+0+0+80+489+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 160px)`,y:(componentViewport?.y||0)+0+0+0+80+372+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lmhpug-container\",nodeId:\"fz4rHYR4w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",huuCHQzAn:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",id:\"fz4rHYR4w\",layoutId:\"fz4rHYR4w\",style:{height:\"100%\",width:\"100%\"},variant:\"RPXAEETkl\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ewfqy2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5b3jj0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nssjnh\",\"data-styles-preset\":\"CNy_si5rz\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"      Banook is a\\xa0global core lab\\xa0with\\xa0over 25\\xa0years of experience\\xa0in clinical trials from Phase I to Phase IV. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nssjnh\",\"data-styles-preset\":\"CNy_si5rz\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"We are one of the few companies that can offer broad expertise in Cardiac Safety, Central Imaging, eCOA/ePRO, and Endpoint Adjudication services. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nssjnh\",\"data-styles-preset\":\"CNy_si5rz\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"Partnering with us means accessing a wealth of knowledge and specialized skills that can elevate the quality and success of your clinical trials.\"})]}),className:\"framer-gxfh9k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oqt44p\",\"data-framer-name\":\"Graphic\",fill:'var(--token-2398c0c8-4550-40b1-be12-c544597df3af, rgb(255, 253, 101)) /* {\"name\":\"Yellow\"} */',intrinsicHeight:14,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.5 0 0 5.348 2.865 14h9.27L15 5.348 7.5 0Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Q6Y_GNvhO\"},motionChild:true,nodeId:\"vHIcZJ_fk\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-o30fmq framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+0+0+0+80+489+0+41+0+0+0+492+0},kDyXjToVs:{y:(componentViewport?.y||0)+0+0+0+80+489+0+41+0+0+0+492+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+80+372+0+41+0+0+492+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a6gs3c-container\",nodeId:\"XIx7_sOBO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bGlCsQenY:\"0px 0px 0px 4px\",CWGrMKdsV:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",height:\"100%\",id:\"XIx7_sOBO\",ik9I5qIGz:true,J1R6F2Hi8:false,JWF4sdyJZ:{borderColor:\"var(--token-c87f07b6-477a-4725-9f37-42b9c507637a, rgba(255, 255, 255, 0.4))\",borderStyle:\"solid\",borderWidth:1},KJK1sV1GB:\"Banook at a glance\",layoutId:\"XIx7_sOBO\",Mun_bUXZx:\"14px 16px 14px 16px\",o8P64cr1v:true,RmkZjgJwi:\"ArrowLineUpRight\",sSvm9skyv:\"var(--token-470b7d6b-4fa1-4c0e-b7dd-c55d2e1cdd75, rgb(255, 255, 255))\",UsLusPFRg:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",variant:\"uRKwElk_8\",width:\"100%\",zeCa8yac1:{borderColor:\"var(--token-b1aad756-17a4-4927-9af7-e7eef628d29c, rgba(25, 29, 58, 0.2))\",borderStyle:\"solid\",borderWidth:1},zFEb23IBy:\"ArrowBendUpRight\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nq7bno\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nlpn8w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+80+489+0+41+0+616+0+0+0+0},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 104px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+489+0+41+0+616+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 224px) / 1.75, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+372+0+41+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qid4d5-container\",nodeId:\"AfpXnQSw2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(KeyFigure,{aF6JrAYpK:0,c0W95Aygq:\"+\",FmyMgcCg5:0,height:\"100%\",id:\"AfpXnQSw2\",layoutId:\"AfpXnQSw2\",QCfTIFj_p:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",style:{height:\"100%\",width:\"100%\"},TWhrcr6GV:2500,variant:\"y2UIdL0za\",vyxlSGXMS:\"studies\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+80+489+0+41+0+616+0+0+0+265},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 104px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+489+0+41+0+616+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 224px) / 1.75, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+372+0+41+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ptfgdb-container\",nodeId:\"a9RIgNqj0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(KeyFigure,{aF6JrAYpK:0,c0W95Aygq:\"+\",FmyMgcCg5:0,height:\"100%\",id:\"a9RIgNqj0\",layoutId:\"a9RIgNqj0\",QCfTIFj_p:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",style:{width:\"100%\"},TWhrcr6GV:11e3,variant:\"y2UIdL0za\",vyxlSGXMS:\"sites\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-181x534\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+80+489+0+41+0+616+0+530+0+0},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 104px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+489+0+41+0+616+0+265+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 224px) / 1.75, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+372+0+41+0+0+265+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11d3f86-container\",nodeId:\"GRMVaT1T8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(KeyFigure,{aF6JrAYpK:24,c0W95Aygq:\"/7\",FmyMgcCg5:0,height:\"100%\",id:\"GRMVaT1T8\",layoutId:\"GRMVaT1T8\",QCfTIFj_p:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",style:{width:\"100%\"},TWhrcr6GV:24,variant:\"y2UIdL0za\",vyxlSGXMS:\"support\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+80+489+0+41+0+616+0+530+0+265},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 104px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+489+0+41+0+616+0+265+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 224px) / 1.75, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+80+372+0+41+0+0+265+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewl3pv-container\",nodeId:\"Fnfo0IjKo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(KeyFigure,{aF6JrAYpK:0,c0W95Aygq:\"+\",FmyMgcCg5:0,height:\"100%\",id:\"Fnfo0IjKo\",layoutId:\"Fnfo0IjKo\",QCfTIFj_p:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",style:{height:\"100%\",width:\"100%\"},TWhrcr6GV:25,variant:\"y2UIdL0za\",vyxlSGXMS:\"years of experience\",width:\"100%\"})})})})})]})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+2358},kDyXjToVs:{y:(componentViewport?.y||0)+0+1828}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1095,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17p4mlx-container\",nodeId:\"kCudqs_2X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{variant:\"dWR_3e5Dm\"},kDyXjToVs:{XpMJoBUHJ:\"0px 24px 0px 24px\"}},children:/*#__PURE__*/_jsx(Solutions,{height:\"100%\",id:\"kCudqs_2X\",layoutId:\"kCudqs_2X\",style:{width:\"100%\"},variant:\"bB17_KEKr\",width:\"100%\",XpMJoBUHJ:\"0px 48px 0px 48px\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-230gss\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxjobi\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KzV4CsAtO\"},implicitPathVariables:undefined},{href:{webPageId:\"KzV4CsAtO\"},implicitPathVariables:undefined},{href:{webPageId:\"KzV4CsAtO\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,y:(componentViewport?.y||0)+0+3058+0+0+48+0},kDyXjToVs:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 80px)`,y:(componentViewport?.y||0)+0+2528+0+48+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 160px)`,y:(componentViewport?.y||0)+0+1795+0+48+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12wwoj3-container\",nodeId:\"tuWPqqP1u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{FxupjhQq5:resolvedLinks[2],variant:\"QeP8S999W\"},kDyXjToVs:{FxupjhQq5:resolvedLinks[1],variant:\"QeP8S999W\"}},children:/*#__PURE__*/_jsx(Push,{FxupjhQq5:resolvedLinks[0],height:\"100%\",id:\"tuWPqqP1u\",jqDwPnWHq:\"Contact us\",layoutId:\"tuWPqqP1u\",style:{width:\"100%\"},variant:\"z3u1Glo8c\",width:\"100%\",X6X7XC2AG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We would be pleased to provide a quote for your clinical trials.\"})}),YA8EXULdb:\"Ask for a quote\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9jk45\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14gd62x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+3058+0+0+48+180+0+0+0},kDyXjToVs:{y:(componentViewport?.y||0)+0+2528+0+48+180+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+1795+0+48+180+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cp115l-container\",nodeId:\"Jmm_vM6UL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Overline,{BsOxxC_nd:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\",El9j67beE:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",fcDwlw39l:\"Why Banook\",height:\"100%\",id:\"Jmm_vM6UL\",layoutId:\"Jmm_vM6UL\",variant:\"eg6FagKud\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o7zeg2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{background:{alt:\"office man with folded arms\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3058+0+0+48+180+0+54+0+0),pixelHeight:836,pixelWidth:1254,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,src:\"https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp 1254w\"}},kDyXjToVs:{background:{alt:\"office man with folded arms\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2528+0+48+180+0+54+0),pixelHeight:836,pixelWidth:1254,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 120px) / 2, 1px)`,src:\"https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp 1254w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"office man with folded arms\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1795+0+48+180+0+54+0),pixelHeight:836,pixelWidth:1254,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 240px) / 2, 1px)`,src:\"https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c7IuxiR1eW2L8Xs176A0P7K6Taw.webp 1254w\"},className:\"framer-1m8cwt0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+3058+0+0+48+180+0+54+0+0+478-214},kDyXjToVs:{y:(componentViewport?.y||0)+0+2528+0+48+180+0+54+0+478-214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:\"335px\",y:(componentViewport?.y||0)+0+1795+0+48+180+0+54+0+478-214,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yrtapu-container\",nodeId:\"RmC9bc4gP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Shape,{height:\"100%\",id:\"RmC9bc4gP\",layoutId:\"RmC9bc4gP\",qHbtuO7Bt:\"var(--token-2398c0c8-4550-40b1-be12-c544597df3af, rgb(255, 253, 101))\",style:{height:\"100%\",width:\"100%\"},variant:\"kqayetFgJ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zj5l17\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jtx8fo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nssjnh\",\"data-styles-preset\":\"CNy_si5rz\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"We are driving the future of healthcare through cutting-edge technology, global expertise, and high-impact services that accelerate clinical development and improve patient outcomes.\"})}),className:\"framer-1sbkj00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vbk7ub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 520px)`,y:(componentViewport?.y||0)+0+3058+0+0+48+180+0+54+0+502+0+0+0+164+0+0},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2528+0+48+180+0+54+0+0+0+0+164+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 240px) / 2, 1px), 520px) - 48px)`,y:(componentViewport?.y||0)+0+1795+0+48+180+0+54+0+0+0+0+164+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kpmyok-container\",nodeId:\"hBN32f8qx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(List,{height:\"100%\",id:\"hBN32f8qx\",layoutId:\"hBN32f8qx\",style:{width:\"100%\"},variant:\"VwKwMJhSF\",width:\"100%\",Z6Q0Nrwzy:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Excellence\"}),\": We deliver top-tier support with a focus on quality, integrity, and operational precision \u2014 ensuring every project runs smoothly from start to finish.\"]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 520px)`,y:(componentViewport?.y||0)+0+3058+0+0+48+180+0+54+0+502+0+0+0+164+0+36},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2528+0+48+180+0+54+0+0+0+0+164+0+36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 240px) / 2, 1px), 520px) - 48px)`,y:(componentViewport?.y||0)+0+1795+0+48+180+0+54+0+0+0+0+164+0+36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k8q8jx-container\",nodeId:\"vRn49Qw0j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(List,{height:\"100%\",id:\"vRn49Qw0j\",layoutId:\"vRn49Qw0j\",style:{width:\"100%\"},variant:\"VwKwMJhSF\",width:\"100%\",Z6Q0Nrwzy:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Global Perspective\"}),\": We tap into global perspectives to fuel fresh thinking and agile problem-solving, creating solutions that reflect the needs of a complex world.\"]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 520px)`,y:(componentViewport?.y||0)+0+3058+0+0+48+180+0+54+0+502+0+0+0+164+0+72},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2528+0+48+180+0+54+0+0+0+0+164+0+72}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 240px) / 2, 1px), 520px) - 48px)`,y:(componentViewport?.y||0)+0+1795+0+48+180+0+54+0+0+0+0+164+0+72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hcgjc2-container\",nodeId:\"uqVvDpC4Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(List,{height:\"100%\",id:\"uqVvDpC4Z\",layoutId:\"uqVvDpC4Z\",style:{width:\"100%\"},variant:\"VwKwMJhSF\",width:\"100%\",Z6Q0Nrwzy:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Innovation\"}),\": Our proprietary, end-to-end platform is developed in-house and tailored to each study. From AI tools to biosensors and scientific research, we\u2019re pushing boundaries to stay ahead.\"]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 520px)`,y:(componentViewport?.y||0)+0+3058+0+0+48+180+0+54+0+502+0+0+0+164+0+108},kDyXjToVs:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2528+0+48+180+0+54+0+0+0+0+164+0+108}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 240px) / 2, 1px), 520px) - 48px)`,y:(componentViewport?.y||0)+0+1795+0+48+180+0+54+0+0+0+0+164+0+108,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mdzubt-container\",nodeId:\"QuxemaiMD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(List,{height:\"100%\",id:\"QuxemaiMD\",layoutId:\"QuxemaiMD\",style:{width:\"100%\"},variant:\"VwKwMJhSF\",width:\"100%\",Z6Q0Nrwzy:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Global Impact\"}),\": With teams across Europe, North America, and Asia-Pacific, we offer seamless international coverage \u2014 accelerating timelines and driving results where they matter most.\"]})})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nssjnh\",\"data-styles-preset\":\"CNy_si5rz\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"Let\u2019s advance healthcare together!\"})}),className:\"framer-vsna3v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12il8ci\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-keehe3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1drynnv\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9fa9jz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+4382+0+0+80+0+0+0+0},kDyXjToVs:{y:(componentViewport?.y||0)+0+3368+0+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2635+0+80+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s1h0wb-container\",nodeId:\"RVqXpVivw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Overline,{BsOxxC_nd:\"var(--token-470b7d6b-4fa1-4c0e-b7dd-c55d2e1cdd75, rgb(255, 255, 255))\",El9j67beE:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",fcDwlw39l:\"About us\",height:\"100%\",id:\"RVqXpVivw\",layoutId:\"RVqXpVivw\",variant:\"eg6FagKud\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yld8en\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14gc39z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{background:{alt:\"smiling office lady\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4382+0+0+80+0+0+62+0+0+-51),pixelHeight:3584,pixelWidth:5376,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,src:\"https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg 5376w\"}},kDyXjToVs:{background:{alt:\"smiling office lady\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3368+0+80+0+0+62+0+0+-40),pixelHeight:3584,pixelWidth:5376,sizes:\"291px\",src:\"https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg 5376w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"smiling office lady\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2635+0+80+0+0+62+0+-40),pixelHeight:3584,pixelWidth:5376,sizes:\"291px\",src:\"https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KFYDcPbvF7BsXzlSUQK3PXNC2U.jpg 5376w\"},className:\"framer-fxmips\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nac1ao\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cbqs78\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b63fu5\",\"data-styles-preset\":\"Ay_NmTyId\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Banook at a glance\"})})}),className:\"framer-9d4mzv\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2hrk62\",\"data-styles-preset\":\"KMi4f8ULm\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"Over the past 25 years, the company has evolved significantly, but its core values remain unchanged. What began as a small family business continues to grow with determination and ambition\"})}),className:\"framer-1xymj5f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Q6Y_GNvhO\"},motionChild:true,nodeId:\"gteZUCH3B\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6pqf0 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+4382+0+0+80+0+0+62+0+0+290+0+0+0+0+168+0},kDyXjToVs:{y:(componentViewport?.y||0)+0+3368+0+80+0+0+62+0+0+290+0+0+0+0+168+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+2635+0+80+0+0+62+0+290+0+0+0+0+168+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hoymt7-container\",nodeId:\"iY_aos3y0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bGlCsQenY:\"0px 0px 0px 4px\",CWGrMKdsV:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",height:\"100%\",id:\"iY_aos3y0\",ik9I5qIGz:true,J1R6F2Hi8:false,JWF4sdyJZ:{borderColor:\"var(--token-c87f07b6-477a-4725-9f37-42b9c507637a, rgba(255, 255, 255, 0.4))\",borderStyle:\"solid\",borderWidth:1},KJK1sV1GB:\"Learn more\",layoutId:\"iY_aos3y0\",Mun_bUXZx:\"14px 16px 14px 16px\",o8P64cr1v:true,RmkZjgJwi:\"ArrowLineUpRight\",sSvm9skyv:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\",UsLusPFRg:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",variant:\"uRKwElk_8\",width:\"100%\",zeCa8yac1:{borderColor:\"var(--token-b1aad756-17a4-4927-9af7-e7eef628d29c, rgba(25, 29, 58, 0.2))\",borderStyle:\"solid\",borderWidth:1},zFEb23IBy:\"ArrowBendUpRight\"})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yk8wsq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uk0cpg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17itbii\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c4tgc6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11lp1nh\",\"data-styles-preset\":\"A9FA556dW\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Sustainability\"})})}),className:\"framer-1yw6odl\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2hrk62\",\"data-styles-preset\":\"KMi4f8ULm\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"We place Corporate Social Responsibility (CSR) at the heart of our mission. Discover our commitment in environmental sustainability, social inclusion and ethical governance.\"})}),className:\"framer-1nf9quj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Bu6pHZ21U\"},motionChild:true,nodeId:\"ZyfeGct_p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vb8f9r framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+4382+0+0+80+0+0+62+0+598+0+0+56+0+0+192+0+161+0},kDyXjToVs:{y:(componentViewport?.y||0)+0+3368+0+80+0+0+62+0+598+0+0+56+0+0+0+161+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+2635+0+80+0+0+62+0+0+0+56+-29+0+0+161+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s3kxs7-container\",nodeId:\"mw84jjrDV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bGlCsQenY:\"0px 0px 0px 4px\",CWGrMKdsV:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",height:\"100%\",id:\"mw84jjrDV\",ik9I5qIGz:true,J1R6F2Hi8:false,JWF4sdyJZ:{borderColor:\"var(--token-c87f07b6-477a-4725-9f37-42b9c507637a, rgba(255, 255, 255, 0.4))\",borderStyle:\"solid\",borderWidth:1},KJK1sV1GB:\"Learn more\",layoutId:\"mw84jjrDV\",Mun_bUXZx:\"14px 16px 14px 16px\",o8P64cr1v:true,RmkZjgJwi:\"ArrowLineUpRight\",sSvm9skyv:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\",UsLusPFRg:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",variant:\"uRKwElk_8\",width:\"100%\",zeCa8yac1:{borderColor:\"var(--token-b1aad756-17a4-4927-9af7-e7eef628d29c, rgba(25, 29, 58, 0.2))\",borderStyle:\"solid\",borderWidth:1},zFEb23IBy:\"ArrowBendUpRight\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{background:{alt:\"4 children playing in nature\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4382+0+0+80+0+0+62+0+598+0+0+56+0+0+0),pixelHeight:836,pixelWidth:1254,sizes:\"150px\",src:\"https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg 1254w\"}},kDyXjToVs:{background:{alt:\"4 children playing in nature\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3368+0+80+0+0+62+0+598+0+0+56+0+0),pixelHeight:836,pixelWidth:1254,sizes:\"150px\",src:\"https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg 1254w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"4 children playing in nature\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2635+0+80+0+0+62+0+0+0+56+-29+0),pixelHeight:836,pixelWidth:1254,sizes:\"150px\",src:\"https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PT36H8KM9aqFKgpEGfypHnSQ.jpg 1254w\"},className:\"framer-1vy9c1r\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11rwohc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s4dui4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-188yunv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11lp1nh\",\"data-styles-preset\":\"A9FA556dW\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"People\"})})}),className:\"framer-kjur7w\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2hrk62\",\"data-styles-preset\":\"KMi4f8ULm\",style:{\"--framer-text-color\":\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"},children:\"At Banook, we value diversity, foster collaboration, and uphold the highest standards to make a meaningful impact on patients and customers every day.\"})}),className:\"framer-1kcixt9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"enAVAHmio\"},motionChild:true,nodeId:\"x4gsw0VdR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1b3mg6w framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+4382+0+0+80+0+0+62+0+598+0+549+56+0+0+192+0+161+0},kDyXjToVs:{y:(componentViewport?.y||0)+0+3368+0+80+0+0+62+0+598+0+357+56+0+0+0+161+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+2635+0+80+0+0+62+0+0+299+56+-29+0+0+161+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1asumul-container\",nodeId:\"KSbrUDG5j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bGlCsQenY:\"0px 0px 0px 4px\",CWGrMKdsV:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",height:\"100%\",id:\"KSbrUDG5j\",ik9I5qIGz:true,J1R6F2Hi8:false,JWF4sdyJZ:{borderColor:\"var(--token-c87f07b6-477a-4725-9f37-42b9c507637a, rgba(255, 255, 255, 0.4))\",borderStyle:\"solid\",borderWidth:1},KJK1sV1GB:\"Learn more\",layoutId:\"KSbrUDG5j\",Mun_bUXZx:\"14px 16px 14px 16px\",o8P64cr1v:true,RmkZjgJwi:\"ArrowLineUpRight\",sSvm9skyv:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\",UsLusPFRg:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",variant:\"uRKwElk_8\",width:\"100%\",zeCa8yac1:{borderColor:\"var(--token-b1aad756-17a4-4927-9af7-e7eef628d29c, rgba(25, 29, 58, 0.2))\",borderStyle:\"solid\",borderWidth:1},zFEb23IBy:\"ArrowBendUpRight\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{background:{alt:\"several smiling co-workers\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4382+0+0+80+0+0+62+0+598+0+549+56+0+0+0),pixelHeight:816,pixelWidth:1456,positionX:\"30.8%\",positionY:\"18.4%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg 1456w\"}},kDyXjToVs:{background:{alt:\"several smiling co-workers\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3368+0+80+0+0+62+0+598+0+357+56+0+0),pixelHeight:816,pixelWidth:1456,positionX:\"30.8%\",positionY:\"18.4%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg 1456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"several smiling co-workers\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:223,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2635+0+80+0+0+62+0+0+299+56+-29+0),pixelHeight:816,pixelWidth:1456,positionX:\"30.8%\",positionY:\"18.4%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/syoNSdQ2SHTD9YEmZTfuMmT2SoE.jpeg 1456w\"},className:\"framer-1hvba3q\"})})]})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-78ks5x\",\"data-framer-name\":\"Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hl4140\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c86btw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lr3im7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1px)`,y:(componentViewport?.y||0)+0+6276+0+0+80+0+0+0+0},kDyXjToVs:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+4878+0+0+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px, 1px)`,y:(componentViewport?.y||0)+0+3431+0+0+80+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-myaifk-container\",nodeId:\"WROX8n0Rn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Overline,{BsOxxC_nd:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\",El9j67beE:\"var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, rgb(246, 129, 197))\",fcDwlw39l:\"Latest blog posts\",height:\"100%\",id:\"WROX8n0Rn\",layoutId:\"WROX8n0Rn\",style:{width:\"100%\"},variant:\"eg6FagKud\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ptet58\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"R5hDFqVo3\",data:Blog1,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"R5hDFqVo3\",name:\"mRsJ4eBH8\",type:\"Identifier\"},{collection:\"R5hDFqVo3\",name:\"rIdtRTLXS\",type:\"Identifier\"},{collection:\"R5hDFqVo3\",name:\"f_q4ns08X\",type:\"Identifier\"},{collection:\"R5hDFqVo3\",name:\"Vv1prmaNv\",type:\"Identifier\"},{collection:\"R5hDFqVo3\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({f_q4ns08X:f_q4ns08XR5hDFqVo3,id:idR5hDFqVo3,mRsJ4eBH8:mRsJ4eBH8R5hDFqVo3,rIdtRTLXS:rIdtRTLXSR5hDFqVo3,Vv1prmaNv:Vv1prmaNvR5hDFqVo3},index)=>{mRsJ4eBH8R5hDFqVo3??=\"\";rIdtRTLXSR5hDFqVo3??=\"\";f_q4ns08XR5hDFqVo3??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`R5hDFqVo3-${idR5hDFqVo3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{mRsJ4eBH8:mRsJ4eBH8R5hDFqVo3},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{mRsJ4eBH8:mRsJ4eBH8R5hDFqVo3},webPageId:\"twT1Tp2dP\"},motionChild:true,nodeId:\"NH1V5pXqJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mbdtq1 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 50px)`},kDyXjToVs:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:466,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 208px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8cqiay-container\",nodeId:\"bZEczstHQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Blog,{gY1uHoqMx:false,height:\"100%\",id:\"bZEczstHQ\",JJdsjxddb:\"\",JsWI8omBE:toResponsiveImage(Vv1prmaNvR5hDFqVo3),layoutId:\"bZEczstHQ\",qv8H08CkH:f_q4ns08XR5hDFqVo3,qw57kOqA7:true,style:{height:\"100%\",width:\"100%\"},sUFebgSHI:rIdtRTLXSR5hDFqVo3,TDzsOUffP:[\"rkij8qhIu\",\"jcK0p1N_z\"],variant:\"GuLe_bGw8\",width:\"100%\",XxmKTMkJo:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(8, 53, 32))\"})})})})})})})},idR5hDFqVo3);})})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Bq99xV6l5\"},motionChild:true,nodeId:\"noLRQBWMM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1j8chag framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6z0SFsLD:{y:(componentViewport?.y||0)+0+6276+0+0+80+1018+0},kDyXjToVs:{y:(componentViewport?.y||0)+0+4878+0+0+80+1018+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+3431+0+0+80+1018+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14yravh-container\",nodeId:\"stzwUwFo1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bGlCsQenY:\"0px 0px 0px 4px\",CWGrMKdsV:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",height:\"100%\",id:\"stzwUwFo1\",ik9I5qIGz:true,J1R6F2Hi8:false,JWF4sdyJZ:{borderColor:\"var(--token-c87f07b6-477a-4725-9f37-42b9c507637a, rgba(255, 255, 255, 0.4))\",borderStyle:\"solid\",borderWidth:1},KJK1sV1GB:\"All blog posts\",layoutId:\"stzwUwFo1\",Mun_bUXZx:\"14px 16px 14px 16px\",o8P64cr1v:true,RmkZjgJwi:\"ArrowLineUpRight\",sSvm9skyv:\"var(--token-470b7d6b-4fa1-4c0e-b7dd-c55d2e1cdd75, rgb(255, 255, 255))\",UsLusPFRg:\"var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, rgb(0, 0, 251))\",variant:\"uRKwElk_8\",width:\"100%\",zeCa8yac1:{borderColor:\"var(--token-b1aad756-17a4-4927-9af7-e7eef628d29c, rgba(25, 29, 58, 0.2))\",borderStyle:\"solid\",borderWidth:1},zFEb23IBy:\"ArrowBendUpRight\"})})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1U1b1.framer-lux5qc, .framer-1U1b1 .framer-lux5qc { display: block; }\",\".framer-1U1b1.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-1U1b1 .framer-1v6bjoj { align-content: center; align-items: center; background-color: var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, #f681c5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-12o00k5 { align-content: flex-start; align-items: flex-start; background-color: var(--token-2f6c7440-b9d6-4f98-9cc5-09896b5cbb7f, #f681c5); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 80px 80px 96px 80px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-vr42kl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-xucjnt { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.75 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 56px 0px 0px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-1gcn9x3 { 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: hidden; padding: 0px 0px 8px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1U1b1 .framer-1kskofx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1U1b1 .framer-9p1qax { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-ev5df9-container { aspect-ratio: 1.7533333333333334 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 114px); position: relative; width: 1px; z-index: 2; }\",\".framer-1U1b1 .framer-tlpvv7-container { bottom: 170px; flex: none; left: -136px; position: absolute; top: -86px; width: 212px; z-index: 1; }\",\".framer-1U1b1 .framer-1yq5g91, .framer-1U1b1 .framer-c86btw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-lmhpug-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-ewfqy2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-5b3jj0 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.75 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-gxfh9k, .framer-1U1b1 .framer-1sbkj00, .framer-1U1b1 .framer-vsna3v, .framer-1U1b1 .framer-9d4mzv, .framer-1U1b1 .framer-1xymj5f, .framer-1U1b1 .framer-1yw6odl, .framer-1U1b1 .framer-1nf9quj, .framer-1U1b1 .framer-kjur7w, .framer-1U1b1 .framer-1kcixt9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1U1b1 .framer-oqt44p { aspect-ratio: 1.0714285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 0px; position: absolute; top: 7px; width: 13px; z-index: 1; }\",\".framer-1U1b1 .framer-o30fmq, .framer-1U1b1 .framer-1j8chag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1U1b1 .framer-1a6gs3c-container, .framer-1U1b1 .framer-1cp115l-container, .framer-1U1b1 .framer-s1h0wb-container, .framer-1U1b1 .framer-1hoymt7-container, .framer-1U1b1 .framer-s3kxs7-container, .framer-1U1b1 .framer-1asumul-container, .framer-1U1b1 .framer-14yravh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1U1b1 .framer-1nq7bno { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-nlpn8w, .framer-1U1b1 .framer-181x534, .framer-1U1b1 .framer-yld8en { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1qid4d5-container, .framer-1U1b1 .framer-ewl3pv-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-ptfgdb-container, .framer-1U1b1 .framer-11d3f86-container, .framer-1U1b1 .framer-myaifk-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-17p4mlx-container, .framer-1U1b1 .framer-12wwoj3-container, .framer-1U1b1 .framer-kpmyok-container, .framer-1U1b1 .framer-1k8q8jx-container, .framer-1U1b1 .framer-hcgjc2-container, .framer-1U1b1 .framer-mdzubt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-230gss { align-content: center; align-items: center; background-color: var(--token-470b7d6b-4fa1-4c0e-b7dd-c55d2e1cdd75, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1sxjobi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 48px 80px 80px 80px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-1k9jk45 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-14gd62x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1039px; }\",\".framer-1U1b1 .framer-o7zeg2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1m8cwt0 { aspect-ratio: 1.0050251256281406 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 199px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1U1b1 .framer-1yrtapu-container { bottom: -121px; flex: none; height: 335px; position: absolute; right: -97px; width: 335px; z-index: 1; }\",\".framer-1U1b1 .framer-zj5l17 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-1jtx8fo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 520px; overflow: hidden; padding: 0px 48px 0px 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1vbk7ub { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-12il8ci { align-content: center; align-items: center; background-color: var(--token-7868933d-e4cb-4c9e-8e2b-47b1fc4e1cf4, #083520); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-keehe3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 80px; position: relative; width: 1px; z-index: 1; }\",\".framer-1U1b1 .framer-1drynnv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-9fa9jz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-14gc39z { align-content: flex-start; align-items: flex-start; background-color: var(--token-470b7d6b-4fa1-4c0e-b7dd-c55d2e1cdd75, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 290px 0px 56px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1U1b1 .framer-fxmips { -webkit-mask: url('https://framerusercontent.com/images/YNt6Y6m9vu0rRxibOJazSQ9fJ5s.svg') alpha no-repeat center / cover add; aspect-ratio: 1.0050251256281406 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 289px); left: 20px; mask: url('https://framerusercontent.com/images/YNt6Y6m9vu0rRxibOJazSQ9fJ5s.svg') alpha no-repeat center / cover add; position: absolute; top: -40px; width: 291px; z-index: 1; }\",\".framer-1U1b1 .framer-nac1ao { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-1U1b1 .framer-1cbqs78 { 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; overflow: hidden; padding: 0px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-6pqf0, .framer-1U1b1 .framer-1vb8f9r, .framer-1U1b1 .framer-1b3mg6w { 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: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1U1b1 .framer-yk8wsq { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-uk0cpg, .framer-1U1b1 .framer-11rwohc { align-content: flex-start; align-items: flex-start; background-color: var(--token-470b7d6b-4fa1-4c0e-b7dd-c55d2e1cdd75, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: visible; padding: 56px 40px 56px 40px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-17itbii, .framer-1U1b1 .framer-1s4dui4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-c4tgc6, .framer-1U1b1 .framer-188yunv { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1U1b1 .framer-1vy9c1r, .framer-1U1b1 .framer-1hvba3q { -webkit-mask: url('https://framerusercontent.com/images/YNt6Y6m9vu0rRxibOJazSQ9fJ5s.svg') alpha no-repeat center / cover add; aspect-ratio: 1.0050251256281406 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 168px); mask: url('https://framerusercontent.com/images/YNt6Y6m9vu0rRxibOJazSQ9fJ5s.svg') alpha no-repeat center / cover add; position: relative; width: 150px; z-index: 1; }\",\".framer-1U1b1 .framer-78ks5x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1hl4140 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1lr3im7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1ptet58 { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-1U1b1 .framer-1mbdtq1 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: 466px; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-1U1b1 .framer-8cqiay-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-1U1b1.framer-72rtr7 { width: 810px; } .framer-1U1b1 .framer-12o00k5 { padding: 80px 40px 96px 40px; } .framer-1U1b1 .framer-vr42kl { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-1U1b1 .framer-xucjnt, .framer-1U1b1 .framer-9p1qax, .framer-1U1b1 .framer-1nq7bno, .framer-1U1b1 .framer-14gc39z { flex: none; width: 100%; } .framer-1U1b1 .framer-ewfqy2, .framer-1U1b1 .framer-yld8en { flex-direction: column; } .framer-1U1b1 .framer-5b3jj0, .framer-1U1b1 .framer-yk8wsq { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-1U1b1 .framer-1sxjobi { padding: 48px 40px 80px 40px; } .framer-1U1b1 .framer-o7zeg2 { gap: 40px; } .framer-1U1b1 .framer-zj5l17 { justify-content: flex-start; } .framer-1U1b1 .framer-1jtx8fo { max-width: unset; padding: 0px; } .framer-1U1b1 .framer-keehe3, .framer-1U1b1 .framer-1hl4140 { padding: 80px 40px 80px 40px; } .framer-1U1b1 .framer-uk0cpg, .framer-1U1b1 .framer-11rwohc { flex: none; height: min-content; }}\",\"@media (max-width: 809px) { .framer-1U1b1.framer-72rtr7 { width: 390px; } .framer-1U1b1 .framer-1v6bjoj, .framer-1U1b1 .framer-vr42kl, .framer-1U1b1 .framer-ewfqy2, .framer-1U1b1 .framer-nlpn8w, .framer-1U1b1 .framer-181x534, .framer-1U1b1 .framer-230gss, .framer-1U1b1 .framer-12il8ci, .framer-1U1b1 .framer-yld8en, .framer-1U1b1 .framer-17itbii, .framer-1U1b1 .framer-1s4dui4 { flex-direction: column; } .framer-1U1b1 .framer-12o00k5 { flex: none; padding: 80px 32px 96px 32px; width: 100%; } .framer-1U1b1 .framer-xucjnt { flex: none; padding: 0px; width: 100%; } .framer-1U1b1 .framer-9p1qax, .framer-1U1b1 .framer-1nq7bno, .framer-1U1b1 .framer-ptfgdb-container, .framer-1U1b1 .framer-11d3f86-container, .framer-1U1b1 .framer-1m8cwt0, .framer-1U1b1 .framer-zj5l17, .framer-1U1b1 .framer-14gc39z { flex: none; width: 100%; } .framer-1U1b1 .framer-5b3jj0 { align-self: unset; flex: none; height: min-content; padding: 0px; width: 100%; } .framer-1U1b1 .framer-1qid4d5-container, .framer-1U1b1 .framer-ewl3pv-container { align-self: unset; flex: none; width: 100%; } .framer-1U1b1 .framer-1sxjobi { flex: none; padding: 48px 32px 80px 32px; width: 100%; } .framer-1U1b1 .framer-o7zeg2 { flex-direction: column; gap: 24px; } .framer-1U1b1 .framer-1jtx8fo { padding: 0px; } .framer-1U1b1 .framer-keehe3 { flex: none; padding: 80px 32px 80px 32px; width: 100%; } .framer-1U1b1 .framer-fxmips { height: var(--framer-aspect-ratio-supported, 199px); left: unset; right: -2px; top: -51px; width: 100%; } .framer-1U1b1 .framer-yk8wsq { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-1U1b1 .framer-uk0cpg, .framer-1U1b1 .framer-11rwohc { flex: none; height: min-content; } .framer-1U1b1 .framer-c4tgc6, .framer-1U1b1 .framer-188yunv { flex: none; order: 1; width: 100%; } .framer-1U1b1 .framer-1vy9c1r, .framer-1U1b1 .framer-1hvba3q { order: 0; } .framer-1U1b1 .framer-1hl4140 { padding: 80px 32px 80px 32px; } .framer-1U1b1 .framer-1ptet58 { grid-template-columns: repeat(1, minmax(50px, 1fr)); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5043\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kDyXjToVs\":{\"layout\":[\"fixed\",\"auto\"]},\"a6z0SFsLD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-1U1b1\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5043,width:1200};addFonts(FrameraugiA20Il,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...VideoFonts,...ShapeFonts,...DividerFonts,...ButtonFonts,...KeyFigureFonts,...SolutionsFonts,...PushFonts,...OverlineFonts,...ListFonts,...BlogFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5043\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kDyXjToVs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a6z0SFsLD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "VideoFonts", "getFonts", "Video", "ContainerWithFX", "withFX", "Container", "ShapeFonts", "vsPAVuyRp_default", "DividerFonts", "ZnoG6S3F7_default", "ButtonFonts", "ZeUlEicnd_default", "KeyFigureFonts", "HN3J9YEIR_default", "SolutionsFonts", "b0zhT0zZV_default", "PushFonts", "yKEREDcYA_default", "OverlineFonts", "eSgkW1mH_default", "ListFonts", "a51a4_r95_default", "BlogFonts", "w19d_aWrI_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "mRsJ4eBH8R5hDFqVo3", "rIdtRTLXSR5hDFqVo3", "f_q4ns08XR5hDFqVo3", "Vv1prmaNvR5hDFqVo3", "idR5hDFqVo3", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithOptimizedAppearEffect", "RichText2", "ComponentViewportProvider", "ContainerWithFX", "Video", "PropertyOverrides2", "vsPAVuyRp_default", "Container", "ZnoG6S3F7_default", "SVG", "Link", "ZeUlEicnd_default", "HN3J9YEIR_default", "b0zhT0zZV_default", "ResolveLinks", "resolvedLinks", "yKEREDcYA_default", "eSgkW1mH_default", "getLoadingLazyAtYPosition", "Image2", "a51a4_r95_default", "ChildrenCanSuspend", "PVWJD0wz5_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "w19d_aWrI_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "VideoFonts", "ShapeFonts", "DividerFonts", "ButtonFonts", "KeyFigureFonts", "SolutionsFonts", "PushFonts", "OverlineFonts", "ListFonts", "BlogFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
